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 TmsPersonTaskLearnResult {
 
    @Schema(description = "已学秒数")
    private Integer learnedSeconds;
 
    @Schema(description = "要求秒数")
    private Integer requiredSeconds;
 
    @Schema(description = "学习进度")
    private String learnStatus;
 
    @Schema(description = "个人状态")
    private String bizStatus;
 
    @Schema(description = "是否可考")
    private Boolean canExam;
 
    @Schema(description = "考试提示")
    private String examTip;
 
    @Schema(description = "本次是否刚自动完成")
    private Boolean autoCompleted;
 
    @Schema(description = "系统提示")
    private String message;
}