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
package jnpf.tmsEntity.paper;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class TmsPaperQuestionForm {
 
    @Schema(description = "主键")
    private String id;
 
    @Schema(description = "章节ID(前端临时 key 或已保存 ID)")
    private String sectionId;
 
    @Schema(description = "试题ID")
    private String questionId;
 
    @Schema(description = "试题编号")
    private String questionNo;
 
    @Schema(description = "题干")
    private String stem;
 
    @Schema(description = "题型")
    private String questionType;
 
    @Schema(description = "题库名称")
    private String bankName;
 
    @Schema(description = "本题分值")
    private BigDecimal score;
 
    @Schema(description = "排序")
    private Integer sortNo;
}