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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package jnpf.tmsEntity.question;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.List;
 
/**
 * 试题详情/保存体(与前端 QuestionEntity 对齐)
 */
@Data
public class TmsQuestionForm {
 
    @Schema(description = "主键")
    private String id;
 
    @Schema(description = "试题编号")
    private String questionNo;
 
    @Schema(description = "题库ID")
    private String bankId;
 
    @Schema(description = "题库名称")
    private String bankName;
 
    @Schema(description = "题型 single/multi/judge/blank/essay")
    private String questionType;
 
    @Schema(description = "难度")
    private String difficulty;
 
    @Schema(description = "来源")
    private String sourceType;
 
    @Schema(description = "题干")
    private String stem;
 
    @Schema(description = "解析")
    private String analysis;
 
    @Schema(description = "管理员用户ID")
    private String adminUserId;
 
    @Schema(description = "管理员姓名")
    private String adminUserName;
 
    @Schema(description = "状态")
    private String bizStatus;
 
    @Schema(description = "创建时间")
    private String creatorTime;
 
    @Schema(description = "填空混杂批改(前端字段,当前库表未落库)")
    private Boolean blankMixMode;
 
    @Schema(description = "选项")
    private List<TmsQuestionOptionForm> options;
}