ZQN
2024-06-17 3a2b86071fca71b4c789762ccb2dfaf7423b0c07
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
44
45
46
package com.project.enforce.domain.vo;
 
import com.project.common.annotation.Excel;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
 
/**
 * 执法评价答案视图对象 mall_package
 *
 * @author manton
 */
@Data
@ApiModel("执法评价答案视图对象")
public class EnforceEvaluateAnswerVo {
    private static final long serialVersionUID = 1L;
 
    /** 答案ID */
    @ApiModelProperty("答案ID")
    private Long answerId;
 
    @Excel(name = "答案")
    @ApiModelProperty("答案")
    private String answerName;
    @Excel(name = "题目ID")
    @ApiModelProperty("题目ID")
    private Long questionId;
    @Excel(name = "题目")
    @ApiModelProperty("题目")
    private String questionName;
    @Excel(name = "是否得分" , readConverterExp = "0=不得分,1得分")
    @ApiModelProperty("是否得分(0不得分,1得分)")
    private Integer isScore;
    @Excel(name = "答案补充")
    @ApiModelProperty("答案补充")
    private String answerRemark;
    @Excel(name = "使用状态:0正常,1禁用")
    @ApiModelProperty("使用状态:0正常,1禁用")
    private Integer answerStatus;
    @Excel(name = "备注")
    @ApiModelProperty("备注")
    private String remark;
 
}