|
@@ -0,0 +1,464 @@
|
|
|
+package com.jeeplus.modules.ruralprojectrecords.entity;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 上报数据表
|
|
|
+ * @author: 徐滕
|
|
|
+ * @create: 2021-06-07 13:51
|
|
|
+ **/
|
|
|
+public class RuralProjectReportedInfo {
|
|
|
+
|
|
|
+ private String projectProv; //工程所在省份,必填
|
|
|
+ private String projectHome; //工程所在地,必填
|
|
|
+ private String projectNum; //项目编号,必填
|
|
|
+ private String projectName; //项目名称,必填
|
|
|
+ private String projectSort; //项目分类,必填
|
|
|
+ private String projectSection; //项目标段 ,非必填
|
|
|
+ private String projectCode; //项目代码,必填
|
|
|
+ private String investPropCd; //投资性质,必填
|
|
|
+ private String contractNum; //合同编号,必填
|
|
|
+ private String contractTypeCd; //合同类型,必填
|
|
|
+
|
|
|
+ private String projectTypeCd; //项目类型,必填
|
|
|
+ private String entrustUnit; //委托单位,必填
|
|
|
+ private String entrustPhone; //委托单位联系电话,必填
|
|
|
+ private String recordNum; //造价记录编号,必填
|
|
|
+ private String issueReportDate; //出具咨询报告日期,必填
|
|
|
+ private String incomeFee; //造价咨询营业收入,必填
|
|
|
+
|
|
|
+ private String leaderName; //咨询项目负责人姓名,必填
|
|
|
+ private String leaderLetterNum; //咨询项目负责人身份证号,必填
|
|
|
+ private String leaderIncomePercent; //咨询项目负责人完成营业收入比例(%),必填
|
|
|
+ private String leaderIncomeMoney; //咨询项目负责人完成营业收入 ,非必填
|
|
|
+
|
|
|
+ //咨询员信息(要求json)
|
|
|
+ private List<StaffInfo> staffs; //咨询员列信息
|
|
|
+
|
|
|
+ private String projectStructCd; //工程结构,必填
|
|
|
+ private String floorUp; //房屋地上层数 ,非必填
|
|
|
+ private String floorDown; //房屋地下层数 ,非必填
|
|
|
+ private String projectAreaVal; //建筑规模,必填
|
|
|
+ private String projectAreaUnit; //建筑规模单位,必填
|
|
|
+ private String projectUseCd; //工程用途,必填
|
|
|
+ private String targetFee; //咨询标的额(万元),必填
|
|
|
+ private String contractFee; //合同价(万元) ,非必填
|
|
|
+ private String submitAuditFee; //送审价(万元) ,非必填
|
|
|
+ private String fixedAuditFee; //审定价(万元) ,非必填
|
|
|
+ private String checkCutFee; //审核增减额 ,非必填
|
|
|
+ private String checkCutLv; //审核增减率 ,非必填
|
|
|
+ private String projectContainContent; //咨询项目造价包含内容说明(“,”隔开),必填
|
|
|
+ private String totalInvestment; //工程项目总投资(万元) ,非必填
|
|
|
+ private String chiefConsultant; //总咨询师 ,非必填
|
|
|
+ private String archivesNo; //咨询档案编号 ,非必填
|
|
|
+ private String stage; //作业期(起止时间) 模板:2020-12-12到2021-12-12 ,非必填
|
|
|
+ private String wholeIncomeFee; //全过程工程咨询收入 ,非必填
|
|
|
+ private String supervisorFee; //工程监理收入 ,非必填
|
|
|
+ private String biddingFee; //招标代理收入 ,非必填
|
|
|
+ private String designFee; //设计收入 ,非必填
|
|
|
+ private String otherFee; //其他收入 ,非必填
|
|
|
+ private String delFlag; //项目状态,必填
|
|
|
+
|
|
|
+
|
|
|
+ public String getProjectProv() {
|
|
|
+ return projectProv;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectProv(String projectProv) {
|
|
|
+ this.projectProv = projectProv;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProjectHome() {
|
|
|
+ return projectHome;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectHome(String projectHome) {
|
|
|
+ this.projectHome = projectHome;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProjectNum() {
|
|
|
+ return projectNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectNum(String projectNum) {
|
|
|
+ this.projectNum = projectNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProjectName() {
|
|
|
+ return projectName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectName(String projectName) {
|
|
|
+ this.projectName = projectName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProjectSort() {
|
|
|
+ return projectSort;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectSort(String projectSort) {
|
|
|
+ this.projectSort = projectSort;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProjectSection() {
|
|
|
+ return projectSection;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectSection(String projectSection) {
|
|
|
+ this.projectSection = projectSection;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProjectCode() {
|
|
|
+ return projectCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectCode(String projectCode) {
|
|
|
+ this.projectCode = projectCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getInvestPropCd() {
|
|
|
+ return investPropCd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInvestPropCd(String investPropCd) {
|
|
|
+ this.investPropCd = investPropCd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getContractNum() {
|
|
|
+ return contractNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContractNum(String contractNum) {
|
|
|
+ this.contractNum = contractNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getContractTypeCd() {
|
|
|
+ return contractTypeCd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContractTypeCd(String contractTypeCd) {
|
|
|
+ this.contractTypeCd = contractTypeCd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProjectTypeCd() {
|
|
|
+ return projectTypeCd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectTypeCd(String projectTypeCd) {
|
|
|
+ this.projectTypeCd = projectTypeCd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEntrustUnit() {
|
|
|
+ return entrustUnit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEntrustUnit(String entrustUnit) {
|
|
|
+ this.entrustUnit = entrustUnit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEntrustPhone() {
|
|
|
+ return entrustPhone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEntrustPhone(String entrustPhone) {
|
|
|
+ this.entrustPhone = entrustPhone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRecordNum() {
|
|
|
+ return recordNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRecordNum(String recordNum) {
|
|
|
+ this.recordNum = recordNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIssueReportDate() {
|
|
|
+ return issueReportDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIssueReportDate(String issueReportDate) {
|
|
|
+ this.issueReportDate = issueReportDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIncomeFee() {
|
|
|
+ return incomeFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIncomeFee(String incomeFee) {
|
|
|
+ this.incomeFee = incomeFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLeaderName() {
|
|
|
+ return leaderName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLeaderName(String leaderName) {
|
|
|
+ this.leaderName = leaderName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLeaderLetterNum() {
|
|
|
+ return leaderLetterNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLeaderLetterNum(String leaderLetterNum) {
|
|
|
+ this.leaderLetterNum = leaderLetterNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLeaderIncomePercent() {
|
|
|
+ return leaderIncomePercent;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLeaderIncomePercent(String leaderIncomePercent) {
|
|
|
+ this.leaderIncomePercent = leaderIncomePercent;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLeaderIncomeMoney() {
|
|
|
+ return leaderIncomeMoney;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLeaderIncomeMoney(String leaderIncomeMoney) {
|
|
|
+ this.leaderIncomeMoney = leaderIncomeMoney;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<StaffInfo> getStaffs() {
|
|
|
+ return staffs;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStaffs(List<StaffInfo> staffs) {
|
|
|
+ this.staffs = staffs;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProjectStructCd() {
|
|
|
+ return projectStructCd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectStructCd(String projectStructCd) {
|
|
|
+ this.projectStructCd = projectStructCd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFloorUp() {
|
|
|
+ return floorUp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFloorUp(String floorUp) {
|
|
|
+ this.floorUp = floorUp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFloorDown() {
|
|
|
+ return floorDown;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFloorDown(String floorDown) {
|
|
|
+ this.floorDown = floorDown;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProjectAreaVal() {
|
|
|
+ return projectAreaVal;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectAreaVal(String projectAreaVal) {
|
|
|
+ this.projectAreaVal = projectAreaVal;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProjectAreaUnit() {
|
|
|
+ return projectAreaUnit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectAreaUnit(String projectAreaUnit) {
|
|
|
+ this.projectAreaUnit = projectAreaUnit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProjectUseCd() {
|
|
|
+ return projectUseCd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectUseCd(String projectUseCd) {
|
|
|
+ this.projectUseCd = projectUseCd;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTargetFee() {
|
|
|
+ return targetFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTargetFee(String targetFee) {
|
|
|
+ this.targetFee = targetFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getContractFee() {
|
|
|
+ return contractFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContractFee(String contractFee) {
|
|
|
+ this.contractFee = contractFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSubmitAuditFee() {
|
|
|
+ return submitAuditFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubmitAuditFee(String submitAuditFee) {
|
|
|
+ this.submitAuditFee = submitAuditFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFixedAuditFee() {
|
|
|
+ return fixedAuditFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFixedAuditFee(String fixedAuditFee) {
|
|
|
+ this.fixedAuditFee = fixedAuditFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCheckCutFee() {
|
|
|
+ return checkCutFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCheckCutFee(String checkCutFee) {
|
|
|
+ this.checkCutFee = checkCutFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCheckCutLv() {
|
|
|
+ return checkCutLv;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCheckCutLv(String checkCutLv) {
|
|
|
+ this.checkCutLv = checkCutLv;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProjectContainContent() {
|
|
|
+ return projectContainContent;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectContainContent(String projectContainContent) {
|
|
|
+ this.projectContainContent = projectContainContent;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTotalInvestment() {
|
|
|
+ return totalInvestment;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalInvestment(String totalInvestment) {
|
|
|
+ this.totalInvestment = totalInvestment;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getChiefConsultant() {
|
|
|
+ return chiefConsultant;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setChiefConsultant(String chiefConsultant) {
|
|
|
+ this.chiefConsultant = chiefConsultant;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getArchivesNo() {
|
|
|
+ return archivesNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setArchivesNo(String archivesNo) {
|
|
|
+ this.archivesNo = archivesNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStage() {
|
|
|
+ return stage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStage(String stage) {
|
|
|
+ this.stage = stage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWholeIncomeFee() {
|
|
|
+ return wholeIncomeFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWholeIncomeFee(String wholeIncomeFee) {
|
|
|
+ this.wholeIncomeFee = wholeIncomeFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSupervisorFee() {
|
|
|
+ return supervisorFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSupervisorFee(String supervisorFee) {
|
|
|
+ this.supervisorFee = supervisorFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBiddingFee() {
|
|
|
+ return biddingFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBiddingFee(String biddingFee) {
|
|
|
+ this.biddingFee = biddingFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDesignFee() {
|
|
|
+ return designFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDesignFee(String designFee) {
|
|
|
+ this.designFee = designFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOtherFee() {
|
|
|
+ return otherFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOtherFee(String otherFee) {
|
|
|
+ this.otherFee = otherFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDelFlag() {
|
|
|
+ return delFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDelFlag(String delFlag) {
|
|
|
+ this.delFlag = delFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "{" +
|
|
|
+ "projectProv:'" + projectProv + '\'' +
|
|
|
+ ", projectHome:'" + projectHome + '\'' +
|
|
|
+ ", projectNum:'" + projectNum + '\'' +
|
|
|
+ ", projectName:'" + projectName + '\'' +
|
|
|
+ ", projectSort:'" + projectSort + '\'' +
|
|
|
+ ", projectSection:'" + projectSection + '\'' +
|
|
|
+ ", projectCode:'" + projectCode + '\'' +
|
|
|
+ ", investPropCd:'" + investPropCd + '\'' +
|
|
|
+ ", contractNum:'" + contractNum + '\'' +
|
|
|
+ ", contractTypeCd:'" + contractTypeCd + '\'' +
|
|
|
+ ", projectTypeCd:'" + projectTypeCd + '\'' +
|
|
|
+ ", entrustUnit:'" + entrustUnit + '\'' +
|
|
|
+ ", entrustPhone:'" + entrustPhone + '\'' +
|
|
|
+ ", recordNum:'" + recordNum + '\'' +
|
|
|
+ ", issueReportDate:'" + issueReportDate + '\'' +
|
|
|
+ ", incomeFee:'" + incomeFee + '\'' +
|
|
|
+ ", leaderName:'" + leaderName + '\'' +
|
|
|
+ ", leaderLetterNum:'" + leaderLetterNum + '\'' +
|
|
|
+ ", leaderIncomePercent:'" + leaderIncomePercent + '\'' +
|
|
|
+ ", leaderIncomeMoney:'" + leaderIncomeMoney + '\'' +
|
|
|
+ ", staffs:'" + staffs + '\'' +
|
|
|
+ ", projectStructCd:'" + projectStructCd + '\'' +
|
|
|
+ ", floorUp:'" + floorUp + '\'' +
|
|
|
+ ", floorDown:'" + floorDown + '\'' +
|
|
|
+ ", projectAreaVal:'" + projectAreaVal + '\'' +
|
|
|
+ ", projectAreaUnit:'" + projectAreaUnit + '\'' +
|
|
|
+ ", projectUseCd:'" + projectUseCd + '\'' +
|
|
|
+ ", targetFee:'" + targetFee + '\'' +
|
|
|
+ ", contractFee:'" + contractFee + '\'' +
|
|
|
+ ", submitAuditFee:'" + submitAuditFee + '\'' +
|
|
|
+ ", fixedAuditFee:'" + fixedAuditFee + '\'' +
|
|
|
+ ", checkCutFee:'" + checkCutFee + '\'' +
|
|
|
+ ", checkCutLv:'" + checkCutLv + '\'' +
|
|
|
+ ", projectContainContent:'" + projectContainContent + '\'' +
|
|
|
+ ", totalInvestment:'" + totalInvestment + '\'' +
|
|
|
+ ", chiefConsultant:'" + chiefConsultant + '\'' +
|
|
|
+ ", archivesNo:'" + archivesNo + '\'' +
|
|
|
+ ", stage:'" + stage + '\'' +
|
|
|
+ ", wholeIncomeFee:'" + wholeIncomeFee + '\'' +
|
|
|
+ ", supervisorFee:'" + supervisorFee + '\'' +
|
|
|
+ ", biddingFee:'" + biddingFee + '\'' +
|
|
|
+ ", designFee:'" + designFee + '\'' +
|
|
|
+ ", otherFee:'" + otherFee + '\'' +
|
|
|
+ ", delFlag:'" + delFlag + '\'' +
|
|
|
+ '}';
|
|
|
+ }
|
|
|
+}
|