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; }