forked from rongchao/epmet-cloud-rizhao
10 changed files with 277 additions and 37 deletions
@ -0,0 +1,35 @@ |
|||||
|
package com.epmet.excel; |
||||
|
|
||||
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @author yan Lu |
||||
|
* @description 描述 |
||||
|
* @create 2023/6/26 15:37 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class EnterpriseInterviewImportExcel { |
||||
|
|
||||
|
@Excel(name = "企业名称") |
||||
|
private String unitName; |
||||
|
|
||||
|
@Excel(name = "走访时间") |
||||
|
private String invTime; |
||||
|
|
||||
|
@Excel(name = "走访人员(多个以“,”相隔)") |
||||
|
private String staffs; |
||||
|
|
||||
|
@Excel(name = "走访人员职务") |
||||
|
private String jobType; |
||||
|
|
||||
|
@Excel(name = "走访方式") |
||||
|
private String interviewType; |
||||
|
|
||||
|
@Excel(name = "企业问题") |
||||
|
private String problem; |
||||
|
|
||||
|
@Excel(name = "备注") |
||||
|
private String remark; |
||||
|
|
||||
|
} |
@ -0,0 +1,31 @@ |
|||||
|
package com.epmet.excel; |
||||
|
|
||||
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @author yan Lu |
||||
|
* @description 描述 |
||||
|
* @create 2023/6/26 15:57 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class EnterpriseInvestigateImportExcel { |
||||
|
|
||||
|
@Excel(name = "排查企业名称") |
||||
|
private String unitName; |
||||
|
|
||||
|
@Excel(name = "排查主题") |
||||
|
private String title; |
||||
|
|
||||
|
@Excel(name = "排查时间") |
||||
|
private String invTime; |
||||
|
|
||||
|
@Excel(name = "排查人员(多个以“,”相隔)") |
||||
|
private String staffs; |
||||
|
|
||||
|
@Excel(name = "排查结果") |
||||
|
private String consequence; |
||||
|
|
||||
|
@Excel(name = "备注") |
||||
|
private String remark; |
||||
|
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue