admin
2021-06-26 5d9e2fbeab87327ce11080485bf4d971f93f542a
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
47
48
49
50
51
52
53
54
55
56
package com.matrix.system.app.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
/**
 * @author wzy
 * @date 2020-12-28
 **/
@ApiModel(value = "QuestionAnswerItemDto", description = "问题答案接收类")
public class QuestionAnswerItemDto {
 
    @ApiModelProperty(value = "问题ID")
    private Long questionId;
 
    @ApiModelProperty(value = "会员ID")
    private Long vipId;
 
    @ApiModelProperty(value = "答案Ids,逗号隔开")
    private String answerId;
 
    @ApiModelProperty(value = "文本答案")
    private String answerText;
 
    public Long getVipId() {
        return vipId;
    }
 
    public void setVipId(Long vipId) {
        this.vipId = vipId;
    }
 
    public Long getQuestionId() {
        return questionId;
    }
 
    public void setQuestionId(Long questionId) {
        this.questionId = questionId;
    }
 
    public String getAnswerId() {
        return answerId;
    }
 
    public void setAnswerId(String answerId) {
        this.answerId = answerId;
    }
 
    public String getAnswerText() {
        return answerText;
    }
 
    public void setAnswerText(String answerText) {
        this.answerText = answerText;
    }
}