|
@@ -140,6 +140,23 @@ public class ProposalInfo extends BaseEntity
|
|
|
@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;
|
|
|
/** 附件 */
|
|
@@ -147,6 +164,39 @@ public class ProposalInfo extends BaseEntity
|
|
|
/** 单位回复 */
|
|
|
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;
|
|
|
}
|
|
@@ -452,41 +502,42 @@ public class ProposalInfo extends BaseEntity
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("proposalId", getProposalId())
|
|
|
- .append("proposalUserId", getProposalUserId())
|
|
|
- .append("proposalNumber", getProposalNumber())
|
|
|
- .append("title", getTitle())
|
|
|
- .append("proposalName", getProposalName())
|
|
|
- .append("proposalPhone", getProposalPhone())
|
|
|
- .append("boundary", getBoundary())
|
|
|
- .append("partyAffiliation", getPartyAffiliation())
|
|
|
- .append("contactAddress", getContactAddress())
|
|
|
- .append("categoryId", getCategoryId())
|
|
|
- .append("categoryName", getCategoryName())
|
|
|
- .append("proposalType", getProposalType())
|
|
|
- .append("proposalContent", getProposalContent())
|
|
|
- .append("isJointly", getIsJointly())
|
|
|
- .append("isPublicity", getIsPublicity())
|
|
|
- .append("contentPublicity", getContentPublicity())
|
|
|
- .append("isSurvey", getIsSurvey())
|
|
|
- .append("isFirst", getIsFirst())
|
|
|
- .append("isPerson", getIsPerson())
|
|
|
- .append("isRecord", getIsRecord())
|
|
|
- .append("negotiateType", getNegotiateType())
|
|
|
- .append("proposedContractor", getProposedContractor())
|
|
|
- .append("proposalProgress", getProposalProgress())
|
|
|
- .append("rollingProcess", getRollingProcess())
|
|
|
- .append("complexType", getComplexType())
|
|
|
- .append("isCasesTogether", getIsCasesTogether())
|
|
|
- .append("uniteProposalId", getUniteProposalId())
|
|
|
- .append("satisfaction", getSatisfaction())
|
|
|
- .append("membersOpinion", getMembersOpinion())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .append("remark", getRemark())
|
|
|
- .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 + '\'' +
|
|
|
+ '}';
|
|
|
}
|
|
|
}
|