This commit is contained in:
2025-03-13 17:03:37 +08:00
parent 3a2b2064d5
commit ee0411263f
10 changed files with 184 additions and 74 deletions

View File

@ -117,6 +117,11 @@ public class WgzAttendance implements Serializable {
@ApiModelProperty("类型0正常 1迟到 2早退 3上班缺卡 4下班缺卡 5补卡 6请假")
private String exceptionType;
/** 结算标识 */
@Excel(name = "结算标识" )
@ApiModelProperty("结算标识")
private Integer settlement;
/** 删除标志0代表存在 2代表删除 */
@Excel(name = "删除标志" , readConverterExp = "0=代表存在,2=代表删除")
@ApiModelProperty("删除标志0代表存在 2代表删除")

View File

@ -111,6 +111,11 @@ public class WgzDailyClock implements Serializable {
@ApiModelProperty("日报状态0正常 1补卡")
private String status;
/** 补卡理由 */
@Excel(name = "补卡理由")
@ApiModelProperty("补卡理由")
private String reason;
/** 删除标志0代表存在 2代表删除 */
@Excel(name = "删除标志" , readConverterExp = "0=代表存在,2=代表删除")
@ApiModelProperty("删除标志0代表存在 2代表删除")