PaperSectionVO.java 786 字节
package com.skua.modules.edu.vo;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.jeecgframework.poi.excel.annotation.Excel;

/**
 * @auther kangwei
 * @create 2025-02-25-17:18
 */
@Data
@ApiModel(value="随机组卷--章节对象", description="随机组卷--章节")
public class PaperSectionVO {

    @ApiModelProperty(value = "题库编号")
    private String dbId;

    @ApiModelProperty(value = "试题类型:1 单选、2多选、3判断")
    private String questionType;

    //@ApiModelProperty(value = "试题难易程度")
    //private String qLevel;

    @ApiModelProperty(value = "试题数量")
    private String qNums;

    @ApiModelProperty(value = "试题分值")
    private String qScore;
}