package com.java110.dto.question;
|
|
import com.java110.dto.PageDto;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @ClassName FloorDto
|
* @Description 问卷题目选项数据层封装
|
* @Author wuxw
|
* @Date 2019/4/24 8:52
|
* @Version 1.0
|
* add by wuxw 2019/4/24
|
**/
|
public class QuestionTitleValueDto extends PageDto implements Serializable {
|
|
private String score;
|
private String valueId;
|
private String titleId;
|
|
private String[] titleIds;
|
|
private String communityId;
|
private String qaValue;
|
private String titleType;
|
private String seq;
|
|
|
private Date createTime;
|
|
private String statusCd = "0";
|
|
private String qaId;
|
private String[] qaIds;
|
|
private int personCount;
|
|
|
|
public String getScore() {
|
return score;
|
}
|
|
public void setScore(String score) {
|
this.score = score;
|
}
|
|
public String getValueId() {
|
return valueId;
|
}
|
|
public void setValueId(String valueId) {
|
this.valueId = valueId;
|
}
|
|
public String getTitleId() {
|
return titleId;
|
}
|
|
public void setTitleId(String titleId) {
|
this.titleId = titleId;
|
}
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getQaValue() {
|
return qaValue;
|
}
|
|
public void setQaValue(String qaValue) {
|
this.qaValue = qaValue;
|
}
|
|
public String getSeq() {
|
return seq;
|
}
|
|
public void setSeq(String seq) {
|
this.seq = seq;
|
}
|
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
|
public String[] getTitleIds() {
|
return titleIds;
|
}
|
|
public void setTitleIds(String[] titleIds) {
|
this.titleIds = titleIds;
|
}
|
|
public String getQaId() {
|
return qaId;
|
}
|
|
public void setQaId(String qaId) {
|
this.qaId = qaId;
|
}
|
|
public int getPersonCount() {
|
return personCount;
|
}
|
|
public void setPersonCount(int personCount) {
|
this.personCount = personCount;
|
}
|
|
public String[] getQaIds() {
|
return qaIds;
|
}
|
|
public void setQaIds(String[] qaIds) {
|
this.qaIds = qaIds;
|
}
|
|
public String getTitleType() {
|
return titleType;
|
}
|
|
public void setTitleType(String titleType) {
|
this.titleType = titleType;
|
}
|
}
|