package com.doumee.dao.admin.response; 
 | 
  
 | 
import com.doumee.core.annotation.excel.ExcelColumn; 
 | 
import io.swagger.annotations.ApiModel; 
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
import java.math.BigDecimal; 
 | 
  
 | 
/** 
 | 
 * @author T14 
 | 
 */ 
 | 
@Data 
 | 
@ApiModel("试题信息表") 
 | 
public class ProblemDTO { 
 | 
  
 | 
  
 | 
    @ApiModelProperty(value = "题目") 
 | 
    private String title; 
 | 
  
 | 
    @ApiModelProperty(value = "选项集合") 
 | 
    private String options; 
 | 
  
 | 
    @ApiModelProperty(value = "正确答案") 
 | 
    private String answer; 
 | 
  
 | 
    @ApiModelProperty(value = "排序码") 
 | 
    private Integer sortnu; 
 | 
  
 | 
    @ApiModelProperty(value = "类型 0单选 1多选 ") 
 | 
    private Integer type; 
 | 
  
 | 
    @ApiModelProperty(value = "分值") 
 | 
    private BigDecimal score; 
 | 
} 
 |