7 changed files with 104 additions and 20 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; |
||||
|
|
||||
|
} |
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue