|
@@ -4,6 +4,8 @@ import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
|
|
+import javax.validation.constraints.NotNull;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* @Description: 打卡界面数据
|
|
* @Description: 打卡界面数据
|
|
* @Author: CaoZixuan
|
|
* @Author: CaoZixuan
|
|
@@ -39,6 +41,9 @@ public class DingElementResult {
|
|
@ApiModelProperty("实际打卡的sop")
|
|
@ApiModelProperty("实际打卡的sop")
|
|
private String dingSopNo;
|
|
private String dingSopNo;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "是否开启人脸,0:不开启,1:开启")
|
|
|
|
+ private Boolean faceOpen;
|
|
|
|
+
|
|
public Long getUserArchivesId() {
|
|
public Long getUserArchivesId() {
|
|
return userArchivesId;
|
|
return userArchivesId;
|
|
}
|
|
}
|
|
@@ -118,4 +123,12 @@ public class DingElementResult {
|
|
public void setDingSopNo(String dingSopNo) {
|
|
public void setDingSopNo(String dingSopNo) {
|
|
this.dingSopNo = dingSopNo;
|
|
this.dingSopNo = dingSopNo;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public Boolean getFaceOpen() {
|
|
|
|
+ return faceOpen;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setFaceOpen(Boolean faceOpen) {
|
|
|
|
+ this.faceOpen = faceOpen;
|
|
|
|
+ }
|
|
}
|
|
}
|