Pu Zhibing
6 天以前 1730a7fc4bb96f258d9dc8dec2e629cadbfdefc0
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
package com.ruoyi.goods.domain.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class MgtUserAnswersPageVO {
    @ApiModelProperty("排序")
    private Integer sort;
 
    @ApiModelProperty(value = "题干名称")
    private String name;
 
    @ApiModelProperty("选项")
    private String answer;//会有多个选项,用分号隔开
 
    @ApiModelProperty(value = "正确答案选项")
    private String rightAnswer;
 
    @ApiModelProperty(value = "用户选择答案")
    private String userAnswer;
 
    @ApiModelProperty(value = "是否正确(0-否,1-是)")
    private Integer isCorrect;
}