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