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