|
|
@@ -56,6 +56,7 @@ public class WsPunchClock extends DataEntity<WsPunchClock> {
|
|
|
private String bnkflg; // Y:开户行是招商银行 N:开户行是他行
|
|
|
private String eacbnk; // 他行开户行(他行时必填)
|
|
|
private String rcveaa; // 他行开户地址(他行时必填)
|
|
|
+ private Date dayTime; //导出所用上班卡日期
|
|
|
|
|
|
public WsPunchClock() {
|
|
|
super();
|
|
|
@@ -109,6 +110,7 @@ public class WsPunchClock extends DataEntity<WsPunchClock> {
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
@NotNull(message = "上班卡不能为空")
|
|
|
+ @ExcelField(title = "上班卡时间", align = 2, sort = 4)
|
|
|
public Date getStartPunchClock() {
|
|
|
return startPunchClock;
|
|
|
}
|
|
|
@@ -134,6 +136,7 @@ public class WsPunchClock extends DataEntity<WsPunchClock> {
|
|
|
}
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @ExcelField(title = "下班卡时间", align = 2, sort = 5)
|
|
|
public Date getEndPunchClock() {
|
|
|
return endPunchClock;
|
|
|
}
|
|
|
@@ -142,6 +145,7 @@ public class WsPunchClock extends DataEntity<WsPunchClock> {
|
|
|
this.endPunchClock = endPunchClock;
|
|
|
}
|
|
|
|
|
|
+ @ExcelField(title = "打卡工时", align = 2, sort = 6)
|
|
|
public Integer getDuration() {
|
|
|
return duration;
|
|
|
}
|
|
|
@@ -158,6 +162,7 @@ public class WsPunchClock extends DataEntity<WsPunchClock> {
|
|
|
this.companyName = companyName;
|
|
|
}
|
|
|
|
|
|
+ @ExcelField(title = "员工名", align = 2, sort = 2)
|
|
|
public String getUserName() {
|
|
|
return userName;
|
|
|
}
|
|
|
@@ -166,6 +171,7 @@ public class WsPunchClock extends DataEntity<WsPunchClock> {
|
|
|
this.userName = userName;
|
|
|
}
|
|
|
|
|
|
+ @ExcelField(title = "员工手机号", align = 2, sort = 3)
|
|
|
public String getPhone() {
|
|
|
return phone;
|
|
|
}
|
|
|
@@ -190,7 +196,7 @@ public class WsPunchClock extends DataEntity<WsPunchClock> {
|
|
|
this.wsSetting = wsSetting;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "身份证", align = 2, sort = 3)
|
|
|
+
|
|
|
public String getIdcardNumber() {
|
|
|
return idcardNumber;
|
|
|
}
|
|
|
@@ -207,7 +213,7 @@ public class WsPunchClock extends DataEntity<WsPunchClock> {
|
|
|
this.countDuration = countDuration;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "姓名", align = 2, sort = 2)
|
|
|
+
|
|
|
public String getRealName() {
|
|
|
return realName;
|
|
|
}
|
|
|
@@ -216,7 +222,7 @@ public class WsPunchClock extends DataEntity<WsPunchClock> {
|
|
|
this.realName = realName;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "在离职", align = 2, sort = 5, dictType = "out_status")
|
|
|
+
|
|
|
public Integer getStatus() {
|
|
|
return status;
|
|
|
}
|
|
|
@@ -225,7 +231,7 @@ public class WsPunchClock extends DataEntity<WsPunchClock> {
|
|
|
this.status = status;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "银行卡号", align = 2, sort = 4)
|
|
|
+
|
|
|
public String getCardNumber() {
|
|
|
return cardNumber;
|
|
|
}
|
|
|
@@ -250,7 +256,7 @@ public class WsPunchClock extends DataEntity<WsPunchClock> {
|
|
|
this.endDate = endDate;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "ID", align = 2, sort = 1)
|
|
|
+
|
|
|
public String getStaffId() {
|
|
|
return staffId;
|
|
|
}
|
|
|
@@ -259,7 +265,7 @@ public class WsPunchClock extends DataEntity<WsPunchClock> {
|
|
|
this.staffId = staffId;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "预支金额", align = 2, sort = 6)
|
|
|
+
|
|
|
public Double getNextMoney() {
|
|
|
return nextMoney;
|
|
|
}
|
|
|
@@ -365,4 +371,14 @@ public class WsPunchClock extends DataEntity<WsPunchClock> {
|
|
|
public void setRcveaa(String rcveaa) {
|
|
|
this.rcveaa = rcveaa;
|
|
|
}
|
|
|
+
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @ExcelField(title = "日期", align = 2, sort = 1)
|
|
|
+ public Date getDayTime() {
|
|
|
+ return dayTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDayTime(Date dayTime) {
|
|
|
+ this.dayTime = dayTime;
|
|
|
+ }
|
|
|
}
|