wuxw
2023-11-06 4f3b666cd625381e4acb07d8ae4d68ae9554b1b8
java110-bean/src/main/java/com/java110/dto/questionAnswer/QuestionAnswerDto.java
@@ -1,9 +1,12 @@
package com.java110.dto.questionAnswer;
import com.java110.dto.PageDto;
import com.java110.dto.questionTitle.QuestionTitleDto;
import com.java110.dto.questionTitleValue.QuestionTitleValueDto;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
/**
 * @ClassName FloorDto
@@ -16,21 +19,48 @@
public class QuestionAnswerDto extends PageDto implements Serializable {
    public static final String QA_TYPE_VOTE = "3003";// 业主投票
    public static final String QA_TYPE_QUESTION = "1001";// 业主问卷
    public static final String STATE_WAIT = "W"; // 待发布
    public static final String STATE_COMPLETE = "C"; //发布完成
    private String qaName;
    private String qaType;
    private String qaTypeName;
    private String startTime;
    private String remark;
    private String endTime;
    private String communityId;
    private String content;
    private String qaId;
    private String objType;
    private String objId;
    private String titleType;
    private Date createTime;
    private String statusCd = "0";
    private long voteCount; // 总投票人数
    private long votedCount; // 已投票人数
    private long score;
    private String ownerName;
    private String link;
    private String roomName;
    private List<QuestionTitleValueDto> titleValues;
    private List<QuestionTitleDto> titles;
    private String state;
    private String userQaId;
    public String getQaName() {
        return qaName;
@@ -96,7 +126,6 @@
        this.qaId = qaId;
    }
    public Date getCreateTime() {
        return createTime;
    }
@@ -112,4 +141,116 @@
    public void setStatusCd(String statusCd) {
        this.statusCd = statusCd;
    }
    public List<QuestionTitleValueDto> getTitleValues() {
        return titleValues;
    }
    public void setTitleValues(List<QuestionTitleValueDto> titleValues) {
        this.titleValues = titleValues;
    }
    public long getVoteCount() {
        return voteCount;
    }
    public void setVoteCount(long voteCount) {
        this.voteCount = voteCount;
    }
    public long getVotedCount() {
        return votedCount;
    }
    public void setVotedCount(long votedCount) {
        this.votedCount = votedCount;
    }
    public String getTitleType() {
        return titleType;
    }
    public void setTitleType(String titleType) {
        this.titleType = titleType;
    }
    public String getState() {
        return state;
    }
    public void setState(String state) {
        this.state = state;
    }
    public String getOwnerName() {
        return ownerName;
    }
    public void setOwnerName(String ownerName) {
        this.ownerName = ownerName;
    }
    public String getLink() {
        return link;
    }
    public void setLink(String link) {
        this.link = link;
    }
    public String getRoomName() {
        return roomName;
    }
    public void setRoomName(String roomName) {
        this.roomName = roomName;
    }
    public String getUserQaId() {
        return userQaId;
    }
    public void setUserQaId(String userQaId) {
        this.userQaId = userQaId;
    }
    public List<QuestionTitleDto> getTitles() {
        return titles;
    }
    public void setTitles(List<QuestionTitleDto> titles) {
        this.titles = titles;
    }
    public long getScore() {
        return score;
    }
    public void setScore(long score) {
        this.score = score;
    }
    public String getObjType() {
        return objType;
    }
    public void setObjType(String objType) {
        this.objType = objType;
    }
    public String getObjId() {
        return objId;
    }
    public void setObjId(String objId) {
        this.objId = objId;
    }
    public String getQaTypeName() {
        return qaTypeName;
    }
    public void setQaTypeName(String qaTypeName) {
        this.qaTypeName = qaTypeName;
    }
}