old mode 100644
new mode 100755
| | |
| | | package com.java110.dto.questionAnswer; |
| | | |
| | | import com.java110.dto.PageDto; |
| | | import com.java110.dto.questionTitleValue.QuestionTitleValueDto; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @ClassName FloorDto |
| | | * @Description 答卷数据层封装 |
| | | * @Description 问卷投票数据层封装 |
| | | * @Author wuxw |
| | | * @Date 2019/4/24 8:52 |
| | | * @Version 1.0 |
| | |
| | | **/ |
| | | public class QuestionAnswerDto extends PageDto implements Serializable { |
| | | |
| | | public static final String QA_TYPE_COMMUNITY = "3306";//小区 |
| | | public static final String QA_TYPE_STORE = "3307";//商户ID |
| | | public static final String QA_TYPE_VOTE = "3003";// 业主投票 |
| | | |
| | | private String qaName; |
| | | private String qaType; |
| | | private String qaTypeName; |
| | | private String startTime; |
| | | private String remark; |
| | | private String endTime; |
| | | private String storeId; |
| | | private String objType; |
| | | private String objId; |
| | | private String[] objIds; |
| | | private String communityId; |
| | | private String content; |
| | | private String qaId; |
| | | |
| | | private String titleType; |
| | | |
| | | private Date createTime; |
| | | |
| | | private String statusCd = "0"; |
| | | |
| | | private long voteCount; // 总投票人数 |
| | | |
| | | private long votedCount; // 已投票人数 |
| | | |
| | | private List<QuestionTitleValueDto> titleValues; |
| | | |
| | | public String getQaName() { |
| | | return qaName; |
| | |
| | | this.startTime = startTime; |
| | | } |
| | | |
| | | public String getRemark() { |
| | | return remark; |
| | | } |
| | | |
| | | public void setRemark(String remark) { |
| | | this.remark = remark; |
| | | } |
| | | |
| | | public String getEndTime() { |
| | | return endTime; |
| | | } |
| | |
| | | this.endTime = endTime; |
| | | } |
| | | |
| | | public String getStoreId() { |
| | | return storeId; |
| | | public String getCommunityId() { |
| | | return communityId; |
| | | } |
| | | |
| | | public void setStoreId(String storeId) { |
| | | this.storeId = storeId; |
| | | public void setCommunityId(String communityId) { |
| | | this.communityId = communityId; |
| | | } |
| | | |
| | | public String getObjType() { |
| | | return objType; |
| | | public String getContent() { |
| | | return content; |
| | | } |
| | | |
| | | public void setObjType(String objType) { |
| | | this.objType = objType; |
| | | } |
| | | |
| | | public String getObjId() { |
| | | return objId; |
| | | } |
| | | |
| | | public void setObjId(String objId) { |
| | | this.objId = objId; |
| | | public void setContent(String content) { |
| | | this.content = content; |
| | | } |
| | | |
| | | public String getQaId() { |
| | |
| | | this.statusCd = statusCd; |
| | | } |
| | | |
| | | public String[] getObjIds() { |
| | | return objIds; |
| | | public List<QuestionTitleValueDto> getTitleValues() { |
| | | return titleValues; |
| | | } |
| | | |
| | | public void setObjIds(String[] objIds) { |
| | | this.objIds = objIds; |
| | | public void setTitleValues(List<QuestionTitleValueDto> titleValues) { |
| | | this.titleValues = titleValues; |
| | | } |
| | | |
| | | public String getQaTypeName() { |
| | | return qaTypeName; |
| | | public long getVoteCount() { |
| | | return voteCount; |
| | | } |
| | | |
| | | public void setQaTypeName(String qaTypeName) { |
| | | this.qaTypeName = qaTypeName; |
| | | 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; |
| | | } |
| | | } |