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;
|
}
|
}
|