|
@@ -27,15 +27,23 @@ public class SaiApplyExportVO extends BaseEntity
|
|
|
@Excel(name = "姓名")
|
|
|
private String staffName;
|
|
|
|
|
|
+ @Excel(name = "班组")
|
|
|
+ private String staffTeam;
|
|
|
+
|
|
|
@Excel(name = "员工号")
|
|
|
private String staffId;
|
|
|
|
|
|
- @Excel(name = "月份", width = 8)
|
|
|
+// @Excel(name = "月份", width = 8)
|
|
|
private String month;
|
|
|
|
|
|
- @Excel(name = "日期", width = 8)
|
|
|
+// @Excel(name = "日期", width = 8)
|
|
|
private String date;
|
|
|
|
|
|
+ /** 登记时间 */
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
|
|
|
+ @Excel(name = "登记时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ private Date applyDate;
|
|
|
+
|
|
|
/** 不安全行为 */
|
|
|
@Excel(name = "不安全行为", width = 50)
|
|
|
private String unsafeAction;
|
|
@@ -98,6 +106,22 @@ public class SaiApplyExportVO extends BaseEntity
|
|
|
@Excel(name = "SAI类别")
|
|
|
private String category;
|
|
|
|
|
|
+ public Date getApplyDate() {
|
|
|
+ return applyDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setApplyDate(Date applyDate) {
|
|
|
+ this.applyDate = applyDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStaffTeam() {
|
|
|
+ return staffTeam;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStaffTeam(String staffTeam) {
|
|
|
+ this.staffTeam = staffTeam;
|
|
|
+ }
|
|
|
+
|
|
|
public Long getSaiLevel() {
|
|
|
return saiLevel;
|
|
|
}
|