liuyu
21 小时以前 6eef0b6730d940ef44e0f66dd8e7d178f1cd2d1f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package jnpf.tmsEntity.person;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Data
public class TmsPersonTaskSignResult {
 
    @Schema(description = "签到时间")
    private String signTime;
 
    @Schema(description = "个人状态")
    private String bizStatus;
 
    @Schema(description = "是否已签到")
    private Boolean signed;
 
    @Schema(description = "当前是否可在线签到")
    private Boolean canSign;
 
    @Schema(description = "不可签到原因")
    private String signTip;
 
    @Schema(description = "是否可考")
    private Boolean canExam;
 
    @Schema(description = "考试提示")
    private String examTip;
 
    @Schema(description = "系统提示")
    private String message;
}