Browse Source
# Conflicts: # epmet-module/gov-org/gov-org-server/src/main/java/com/epmet/service/HouseService.javadev
16 changed files with 153 additions and 31 deletions
@ -0,0 +1,30 @@ |
|||
package com.epmet.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import com.epmet.commons.tools.utils.ExcelVerifyInfo; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/3/29 10:24 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class NatImportExcel extends ExcelVerifyInfo { |
|||
|
|||
@Excel(name = "姓名") |
|||
private String name; |
|||
|
|||
@Excel(name = "电话") |
|||
private String mobile; |
|||
|
|||
@Excel(name = "身份证") |
|||
private String idCard; |
|||
|
|||
@Excel(name = "备注") |
|||
private String remark; |
|||
|
|||
@Excel(name = "关注原因") |
|||
private String reason; |
|||
|
|||
} |
@ -0,0 +1,27 @@ |
|||
package com.epmet.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import com.epmet.commons.tools.utils.ExcelVerifyInfo; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/3/29 10:24 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class VaccinationImportExcel extends ExcelVerifyInfo { |
|||
|
|||
@Excel(name = "姓名") |
|||
private String name; |
|||
|
|||
@Excel(name = "电话") |
|||
private String mobile; |
|||
|
|||
@Excel(name = "身份证") |
|||
private String idCard; |
|||
|
|||
@Excel(name = "备注") |
|||
private String remark; |
|||
|
|||
} |
@ -0,0 +1,2 @@ |
|||
alter table ic_trip_report_record MODIFY COLUMN PRESENT_ADDRESS_CODE VARCHAR(32) COMMENT '现居地编码'; |
|||
alter table ic_trip_report_record MODIFY COLUMN SOURCE_ADDRESS_CODE VARCHAR(32) COMMENT '来源地区编码'; |
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue