diff --git a/esua-epdc/epdc-module/epdc-custom/epdc-custom-server/src/main/java/com/elink/esua/epdc/modules/epidemic/excel/EpidemicExcel.java b/esua-epdc/epdc-module/epdc-custom/epdc-custom-server/src/main/java/com/elink/esua/epdc/modules/epidemic/excel/EpidemicExcel.java index 63fd7469c..8df4dc69e 100644 --- a/esua-epdc/epdc-module/epdc-custom/epdc-custom-server/src/main/java/com/elink/esua/epdc/modules/epidemic/excel/EpidemicExcel.java +++ b/esua-epdc/epdc-module/epdc-custom/epdc-custom-server/src/main/java/com/elink/esua/epdc/modules/epidemic/excel/EpidemicExcel.java @@ -31,11 +31,8 @@ import java.util.Date; @Data public class EpidemicExcel { - @Excel(name = "上报人") - private String reporter; - - @Excel(name = "上报人电话") - private String mobile; + @Excel(name = "区域名称") + private String allDeptNames; @Excel(name = "上报地点") private String address; @@ -43,11 +40,14 @@ public class EpidemicExcel { @Excel(name = "上报内容") private String content; - @Excel(name = "区域名称") - private String allDeptNames; - @Excel(name = "提交时间", format = "yyyy-MM-dd HH:mm:ss") private Date createdTime; + @Excel(name = "上报人") + private String reporter; + + @Excel(name = "电话") + private String mobile; + -} \ No newline at end of file +}