Browse Source

宽度控制

master
zhangyuan 3 years ago
parent
commit
684b330af6
  1. 14
      epmet-module/gov-org/gov-org-server/src/main/java/com/epmet/excel/IcWorkLogExcel.java

14
epmet-module/gov-org/gov-org-server/src/main/java/com/epmet/excel/IcWorkLogExcel.java

@ -12,10 +12,10 @@ import lombok.Data;
@Data
public class IcWorkLogExcel {
@Excel(name = "网格员", width = 25)
@Excel(name = "网格员", width = 15)
private String createdUser;
@Excel(name = "联系电话", width = 25)
@Excel(name = "联系电话", width = 20)
private String mobile;
@Excel(name = "所属镇街", width = 25)
@ -27,19 +27,19 @@ public class IcWorkLogExcel {
@Excel(name = "标题", width = 25)
private String title;
@Excel(name = "日志时间")
@Excel(name = "日志时间", width = 15)
private String logDate;
@Excel(name = "日志类型", width = 25)
@Excel(name = "日志类型", width = 15)
private String logType;
@Excel(name = "内容")
@Excel(name = "内容", width = 100)
private String content;
@Excel(name = "备注")
@Excel(name = "备注", width = 50)
private String remark;
@Excel(name = "照片")
@Excel(name = "照片", width = 50)
private String url;
}
Loading…
Cancel
Save