123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543 |
- package com.ruoyi.system.domain;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- import java.util.List;
- /**
- * 提案信息对象 proposal_info
- *
- * @author boman
- * @date 2024-03-07
- */
- public class ProposalInfo extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 提案ID */
- private Long proposalId;
- /** 提案人ID */
- @Excel(name = "提案人ID")
- private Long proposalUserId;
- /** 提案号 */
- @Excel(name = "提案号")
- private String proposalNumber;
- /** 标题 */
- @Excel(name = "标题")
- private String title;
- /** 提案人姓名 */
- @Excel(name = "提案人姓名")
- private String proposalName;
- /** 提案人手机号码 */
- @Excel(name = "提案人手机号码")
- private String proposalPhone;
- /** 界别 */
- @Excel(name = "界别")
- private String boundary;
- /** 党派 */
- @Excel(name = "党派")
- private String partyAffiliation;
- /** 联系地址 */
- @Excel(name = "联系地址")
- private String contactAddress;
- /** 提案类别id */
- @Excel(name = "提案类别id")
- private Long categoryId;
- /** 提案类别 */
- @Excel(name = "提案类别")
- private String categoryName;
- /** 提案类型(0大会提案 1平时提案) */
- @Excel(name = "提案类型", readConverterExp = "0=大会提案,1=平时提案")
- private String proposalType;
- /** 提案内容 */
- @Excel(name = "提案内容")
- private String proposalContent;
- /** 联名提案(0是 1否) */
- @Excel(name = "联名提案", readConverterExp = "0=是,1=否")
- private String isJointly;
- /** 同意公开(0是 1否) */
- @Excel(name = "同意公开", readConverterExp = "0=是,1=否")
- private String isPublicity;
- /** 内容公开(0是 1否) */
- @Excel(name = "内容公开", readConverterExp = "0=是,1=否")
- private String contentPublicity;
- /** 经过调研(0是 1否) */
- @Excel(name = "经过调研", readConverterExp = "0=是,1=否")
- private String isSurvey;
- /** 第一次提出(0是 1否) */
- @Excel(name = "第一次提出", readConverterExp = "0=是,1=否")
- private String isFirst;
- /** 由本人撰写(0是 1否) */
- @Excel(name = "由本人撰写", readConverterExp = "0=是,1=否")
- private String isPerson;
- /** 是否立案(0是 1否) */
- @Excel(name = "是否立案", readConverterExp = "0=是,1=否")
- private String isRecord;
- /** 需要办理的协商方式 */
- @Excel(name = "需要办理的协商方式")
- private String negotiateType;
- /** 建议承办单位 */
- @Excel(name = "建议承办单位")
- private String proposedContractor;
- /** 提案进度(0:提交提案,1:提案审查,2:提案立案,3:提案交办,4:办理提案,5:提案反馈,6:办结审核,7:已办结) */
- @Excel(name = "提案进度(0:提交提案,1:提案审查,2:提案立案,3:提案交办,4:办理提案,5:提案反馈,6:办结审核,7:已办结)")
- private String proposalProgress;
- /** 滚动办理(0是 1否) */
- @Excel(name = "滚动办理", readConverterExp = "0=是,1=否")
- private String rollingProcess;
- /** 提案答复类型(A:A类,B:B类,C:C类) */
- @Excel(name = "提案答复类型(A:A类,B:B类,C:C类)")
- private String complexType;
- /** 是否被并案(0是 1否) */
- @Excel(name = "是否被并案", readConverterExp = "0=是,1=否")
- private String isCasesTogether;
- /** 被并案的案件id */
- @Excel(name = "被并案的案件id")
- private Long uniteProposalId;
- /** 委员满意程度(0:不满意,1:一般,2:满意,3:非常满意) */
- @Excel(name = "委员满意程度", readConverterExp = "0=:不满意,1:一般,2:满意,3:非常满意")
- private String satisfaction;
- /** 委员意见 */
- @Excel(name = "委员意见")
- private String membersOpinion;
- /** 政协满意程度(0:不满意,1:一般,2:满意,3:非常满意) */
- @Excel(name = "政协满意程度", readConverterExp = "0=:不满意,1:一般,2:满意,3:非常满意")
- private String zxSatisfaction;
- /** 政协意见 */
- @Excel(name = "政协意见")
- private String zxOpinion;
- /** 是否推荐重点(0是 1否) */
- @Excel(name = "是否推荐重点", readConverterExp = "0=是,1=否")
- private String isKeyPoint;
- /** 推荐重点理由 */
- @Excel(name = "推荐重点理由")
- private String keyPointArgument;
- /** 是否推荐优秀(0是 1否) */
- @Excel(name = "是否推荐优秀", readConverterExp = "0=是,1=否")
- private String isOutstanding;
- /** 推荐优秀理由 */
- @Excel(name = "推荐优秀理由")
- private String outstandingArgument;
- /** 提案人员 */
- private List<ProposalUser> proposalUserList;
- /** 附件 */
- private List<ZxFj> zxFjList;
- /** 单位回复 */
- private List<ProposalUnitReply> proposalUnitReplyList;
- public String getIsKeyPoint() {
- return isKeyPoint;
- }
- public void setIsKeyPoint(String isKeyPoint) {
- this.isKeyPoint = isKeyPoint;
- }
- public String getKeyPointArgument() {
- return keyPointArgument;
- }
- public void setKeyPointArgument(String keyPointArgument) {
- this.keyPointArgument = keyPointArgument;
- }
- public String getIsOutstanding() {
- return isOutstanding;
- }
- public void setIsOutstanding(String isOutstanding) {
- this.isOutstanding = isOutstanding;
- }
- public String getOutstandingArgument() {
- return outstandingArgument;
- }
- public void setOutstandingArgument(String outstandingArgument) {
- this.outstandingArgument = outstandingArgument;
- }
- public List<ProposalUnitReply> getProposalUnitReplyList() {
- return proposalUnitReplyList;
- }
- public String getZxSatisfaction() {
- return zxSatisfaction;
- }
- public void setZxSatisfaction(String zxSatisfaction) {
- this.zxSatisfaction = zxSatisfaction;
- }
- public String getZxOpinion() {
- return zxOpinion;
- }
- public void setZxOpinion(String zxOpinion) {
- this.zxOpinion = zxOpinion;
- }
- public void setProposalUnitReplyList(List<ProposalUnitReply> proposalUnitReplyList) {
- this.proposalUnitReplyList = proposalUnitReplyList;
- }
- public List<ZxFj> getZxFjList() {
- return zxFjList;
- }
- public void setZxFjList(List<ZxFj> zxFjList) {
- this.zxFjList = zxFjList;
- }
- public List<ProposalUser> getProposalUserList() {
- return proposalUserList;
- }
- public void setProposalUserList(List<ProposalUser> proposalUserList) {
- this.proposalUserList = proposalUserList;
- }
- public void setProposalId(Long proposalId)
- {
- this.proposalId = proposalId;
- }
- public Long getProposalId()
- {
- return proposalId;
- }
- public void setProposalUserId(Long proposalUserId)
- {
- this.proposalUserId = proposalUserId;
- }
- public Long getProposalUserId()
- {
- return proposalUserId;
- }
- public void setProposalNumber(String proposalNumber)
- {
- this.proposalNumber = proposalNumber;
- }
- public String getProposalNumber()
- {
- return proposalNumber;
- }
- public void setTitle(String title)
- {
- this.title = title;
- }
- public String getTitle()
- {
- return title;
- }
- public void setProposalName(String proposalName)
- {
- this.proposalName = proposalName;
- }
- public String getProposalName()
- {
- return proposalName;
- }
- public void setProposalPhone(String proposalPhone)
- {
- this.proposalPhone = proposalPhone;
- }
- public String getProposalPhone()
- {
- return proposalPhone;
- }
- public void setBoundary(String boundary)
- {
- this.boundary = boundary;
- }
- public String getBoundary()
- {
- return boundary;
- }
- public void setPartyAffiliation(String partyAffiliation)
- {
- this.partyAffiliation = partyAffiliation;
- }
- public String getPartyAffiliation()
- {
- return partyAffiliation;
- }
- public void setContactAddress(String contactAddress)
- {
- this.contactAddress = contactAddress;
- }
- public String getContactAddress()
- {
- return contactAddress;
- }
- public void setCategoryId(Long categoryId)
- {
- this.categoryId = categoryId;
- }
- public Long getCategoryId()
- {
- return categoryId;
- }
- public void setCategoryName(String categoryName)
- {
- this.categoryName = categoryName;
- }
- public String getCategoryName()
- {
- return categoryName;
- }
- public void setProposalType(String proposalType)
- {
- this.proposalType = proposalType;
- }
- public String getProposalType()
- {
- return proposalType;
- }
- public void setProposalContent(String proposalContent)
- {
- this.proposalContent = proposalContent;
- }
- public String getProposalContent()
- {
- return proposalContent;
- }
- public void setIsJointly(String isJointly)
- {
- this.isJointly = isJointly;
- }
- public String getIsJointly()
- {
- return isJointly;
- }
- public void setIsPublicity(String isPublicity)
- {
- this.isPublicity = isPublicity;
- }
- public String getIsPublicity()
- {
- return isPublicity;
- }
- public void setContentPublicity(String contentPublicity)
- {
- this.contentPublicity = contentPublicity;
- }
- public String getContentPublicity()
- {
- return contentPublicity;
- }
- public void setIsSurvey(String isSurvey)
- {
- this.isSurvey = isSurvey;
- }
- public String getIsSurvey()
- {
- return isSurvey;
- }
- public void setIsFirst(String isFirst)
- {
- this.isFirst = isFirst;
- }
- public String getIsFirst()
- {
- return isFirst;
- }
- public void setIsPerson(String isPerson)
- {
- this.isPerson = isPerson;
- }
- public String getIsPerson()
- {
- return isPerson;
- }
- public void setIsRecord(String isRecord)
- {
- this.isRecord = isRecord;
- }
- public String getIsRecord()
- {
- return isRecord;
- }
- public void setNegotiateType(String negotiateType)
- {
- this.negotiateType = negotiateType;
- }
- public String getNegotiateType()
- {
- return negotiateType;
- }
- public void setProposedContractor(String proposedContractor)
- {
- this.proposedContractor = proposedContractor;
- }
- public String getProposedContractor()
- {
- return proposedContractor;
- }
- public void setProposalProgress(String proposalProgress)
- {
- this.proposalProgress = proposalProgress;
- }
- public String getProposalProgress()
- {
- return proposalProgress;
- }
- public void setRollingProcess(String rollingProcess)
- {
- this.rollingProcess = rollingProcess;
- }
- public String getRollingProcess()
- {
- return rollingProcess;
- }
- public void setComplexType(String complexType)
- {
- this.complexType = complexType;
- }
- public String getComplexType()
- {
- return complexType;
- }
- public void setIsCasesTogether(String isCasesTogether)
- {
- this.isCasesTogether = isCasesTogether;
- }
- public String getIsCasesTogether()
- {
- return isCasesTogether;
- }
- public void setUniteProposalId(Long uniteProposalId)
- {
- this.uniteProposalId = uniteProposalId;
- }
- public Long getUniteProposalId()
- {
- return uniteProposalId;
- }
- public void setSatisfaction(String satisfaction)
- {
- this.satisfaction = satisfaction;
- }
- public String getSatisfaction()
- {
- return satisfaction;
- }
- public void setMembersOpinion(String membersOpinion)
- {
- this.membersOpinion = membersOpinion;
- }
- public String getMembersOpinion()
- {
- return membersOpinion;
- }
- @Override
- public String toString() {
- return "ProposalInfo{" +
- "proposalId=" + proposalId +
- ", proposalUserId=" + proposalUserId +
- ", proposalNumber='" + proposalNumber + '\'' +
- ", title='" + title + '\'' +
- ", proposalName='" + proposalName + '\'' +
- ", proposalPhone='" + proposalPhone + '\'' +
- ", boundary='" + boundary + '\'' +
- ", partyAffiliation='" + partyAffiliation + '\'' +
- ", contactAddress='" + contactAddress + '\'' +
- ", categoryId=" + categoryId +
- ", categoryName='" + categoryName + '\'' +
- ", proposalType='" + proposalType + '\'' +
- ", proposalContent='" + proposalContent + '\'' +
- ", isJointly='" + isJointly + '\'' +
- ", isPublicity='" + isPublicity + '\'' +
- ", contentPublicity='" + contentPublicity + '\'' +
- ", isSurvey='" + isSurvey + '\'' +
- ", isFirst='" + isFirst + '\'' +
- ", isPerson='" + isPerson + '\'' +
- ", isRecord='" + isRecord + '\'' +
- ", negotiateType='" + negotiateType + '\'' +
- ", proposedContractor='" + proposedContractor + '\'' +
- ", proposalProgress='" + proposalProgress + '\'' +
- ", rollingProcess='" + rollingProcess + '\'' +
- ", complexType='" + complexType + '\'' +
- ", isCasesTogether='" + isCasesTogether + '\'' +
- ", uniteProposalId=" + uniteProposalId +
- ", satisfaction='" + satisfaction + '\'' +
- ", membersOpinion='" + membersOpinion + '\'' +
- ", zxSatisfaction='" + zxSatisfaction + '\'' +
- ", zxOpinion='" + zxOpinion + '\'' +
- ", isKeyPoint='" + isKeyPoint + '\'' +
- ", keyPointArgument='" + keyPointArgument + '\'' +
- ", isOutstanding='" + isOutstanding + '\'' +
- ", outstandingArgument='" + outstandingArgument + '\'' +
- '}';
- }
- }
|