package jnpf.tmsEntity.evalmode; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; @Data public class TmsEvalModeForm { @Schema(description = "主键") private String id; @Schema(description = "方式编码") private String modeCode; @Schema(description = "方式名称") private String modeName; @Schema(description = "需要试卷 0/1") private String needPaper; @Schema(description = "需要提问预设 0/1") private String needQuiz; @Schema(description = "需要实操评分 0/1") private String needPractice; @Schema(description = "启用状态 0/1") private String enabled; @Schema(description = "备注") private String remark; }