|
@@ -2,6 +2,7 @@ package com.qmth.sop.business.entity;
|
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
+import com.qmth.sop.common.enums.DingDateTypeEnum;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
@@ -31,6 +32,9 @@ public class TBDingHistory implements Serializable {
|
|
|
@ApiModelProperty(value = "签到日期")
|
|
|
private String signDate;
|
|
|
|
|
|
+ @ApiModelProperty(value = "日期类型:WEEKDAY(工作日),WEEKEND(周末),LEGAL_HOLIDAYS(法定节假日)")
|
|
|
+ private DingDateTypeEnum dateType;
|
|
|
+
|
|
|
@ApiModelProperty(value = "签到时间")
|
|
|
private Long signInTime;
|
|
|
|
|
@@ -62,6 +66,14 @@ public class TBDingHistory implements Serializable {
|
|
|
@ApiModelProperty(value = "创建时间")
|
|
|
private Long createTime;
|
|
|
|
|
|
+ public DingDateTypeEnum getDateType() {
|
|
|
+ return dateType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDateType(DingDateTypeEnum dateType) {
|
|
|
+ this.dateType = dateType;
|
|
|
+ }
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|