nidapeng
2024-04-25 f89719902615823be2a1ddc1b5082f52eed31984
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
package com.doumee.dao.web.response;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.doumee.core.annotation.excel.ExcelColumn;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2023/12/7 11:19
 */
@Data
public class ProblemsVO {
 
    @ApiModelProperty(value = "主键", example = "1")
    private Integer id;
 
    @ApiModelProperty(value = "备注")
    private String remark;
 
    @ApiModelProperty(value = "题目")
    private String title;
 
    @ApiModelProperty(value = "选项集合")
    private String options;
 
    @ApiModelProperty(value = "正确答案")
    private String answer;
 
    @ApiModelProperty(value = "类型 0单选 1多选 ", example = "1")
    private Integer type;
 
    @ApiModelProperty(value = "分值", example = "1")
    private BigDecimal score;
 
}