Bladeren bron

上报EL展示实体类

[user3] 3 jaren geleden
bovenliggende
commit
df7e379482

+ 784 - 0
src/main/java/com/jeeplus/modules/ruralprojectrecords/entity/ProjectRecordsReported.java

@@ -0,0 +1,784 @@
+/**
+ * Copyright &copy; 2015-2020 <a href="http://www.jeeplus.org/">JeePlus</a> All rights reserved.
+ */
+package com.jeeplus.modules.ruralprojectrecords.entity;
+
+import com.google.common.collect.Lists;
+import com.jeeplus.common.persistence.ActEntity;
+import com.jeeplus.modules.sys.entity.Office;
+import com.jeeplus.modules.sys.entity.User;
+import com.jeeplus.modules.workclientinfo.entity.WorkClientAttachment;
+import com.jeeplus.modules.workcontractinfo.entity.WorkContractInfo;
+
+import java.util.Date;
+import java.util.List;
+
+
+/**
+ * 项目登记Entity
+ * @author ppt
+ * @version 2018-05-02
+ */
+public class ProjectRecordsReported extends ActEntity<ProjectRecordsReported> {
+
+	public static final String SERIAL_BIZCODE ="1";
+	private WorkContractInfo workContractInfo;		// 合同信息
+	private String projectId;		// 项目id
+	private String projectRecordId;		// 项目编号
+	private List<User> projectLeaders; //项目负责人
+	private String projectName;		// 项目名称
+	private String xmFZR;		//项目负责人
+	private String leaderNameStr;   //项目负责人
+	private String weiTuoDW;		//委托单位
+	private String lianXiDH;		//委托单位电话
+	private String touZiXZ;    //投资性质
+	private String projectType;    //咨询项目类型
+	private String heTongLeiXing;   //合同类型
+	private String ziXunHTBH;      //合同编号
+	private String dangABH;   //出具报告号
+	private String baoGaoShuQianFaDate;  //出具报告日期
+	private String ziXunShouRu;   //咨询收入
+	private String zaoJiaShiZhengHao;   //造价师注册证号
+	private List<ReportedConsultant> reportedConsultantList= Lists.newArrayList();;//咨询员列表
+
+
+	//项目信息
+	private String s1;				//工程所在省份
+	private String s2;				//工程所在地级市
+	private String s3;				//工程所在区县
+	private String porjectStruct;	//工程结构
+	private Integer floorUp;		//地上层数
+	private Integer floorDown;		//地下层数
+	private String gCGMValue;		//建筑面积或规模
+	private String gCGMUnit;		//计量单位
+	private String porjectUse;		//工程用途
+	private String ziXunBDE;		//咨询标的额(万元)
+	private String ziXunBDETJ;		//其中土建造价(万元)
+	private String ziXunBDEAZ;		//其中安装造价(万元)
+	private String calTJPercent;	//其中土建百分比(%)
+	private String calAZPercent;	//其中安装百分比(%)
+	private String calZZJUnit;	//单位造价(元)
+
+	private String calZZJTJUnit;	//其中土建单位造价(元)
+	private String calZZJAZUnit;	//其中安装单位造价(元)
+	private String heTongJia;		//合同价(万元)
+	private String songShenJia;		//送审价(万元)
+	private String shenDingJia;		//审定价(万元)
+	private String jingHeJianE;		//审核增减额(万元)
+	private String jingHeJianLv;	//审核增减率(%)
+
+
+	//主要材料和人工消耗量指标
+	private String gCYL;			//钢材用量(t)
+	private String sNYL;			//水泥用量(t)
+	private String yBTYL;			//预拌砼用量(m³)
+	private String rGGRYL;			//人工工日用量(工日)
+	private String gCYLPerUnit;	//钢材消耗指标(kg)
+	private String sNYLPerUnit;	//水泥消耗指标(kg)
+	private String yBTYLPerUnit;	//预拌砼消耗指标(m³)
+	private String rGGRYLPerUnit;	//人工工日消耗指标(工日)
+
+	private List<String> tJProjectList;		//土建工程
+	private List<String> zSProjectList;	//装饰工程
+	private List<String> aZProjectList;	//安装工程
+	private List<String> sZProjectList;	//市政工程
+	private List<String> fGYLProjectList;		//仿古园林工程
+
+	private String tJProject;//土建工程
+	private String zSProject;//装饰工程
+	private String aZProject;//安装工程
+	private String sZProject;//市政工程
+	private String fGYLProject;//仿古园林工程
+	private String qTProjec;	//其他专业工程咨询项目造价包含内容说明
+
+	private String province;   	//省
+	private String city;		//市
+	private String county;     	//区县
+	private String processInstanceId;
+	private Office company;	// 公司
+	private Office office;	// 部门
+	private String reportStatus;  //上报状态
+	private String home;
+
+	private String projectCode;	//项目代码
+	private String projectSection;	//项目标段
+	private String projectClassify;	//项目分类
+	private String gCGMValueParameter;	//建筑规模参数
+	private List<String> contentsIncludeList = Lists.newArrayList();		//咨询项目造价包含内容说明(勾选)
+	private String contentsInclude;//咨询项目造价包含内容说明(勾选)
+	private String projectTotalInvestment;	//项目总投资
+	private Date beginDate;	//作业期开始日期
+	private Date endDate;	//作业期结束日期
+	private String archivesNo;   //咨询档案编号
+
+	private String advisoryIncome;	//全过程咨询收入
+	private String projectSupervisionIncome;	//工程监理收入
+	private String tenderingAgencyIncome;	//招标代理收入
+	private String designIncome;	//设计收入
+	private String otherIncome;	//其他收入
+	private List<WorkClientAttachment> workAttachments = Lists.newArrayList();	//附件信息
+
+	public WorkContractInfo getWorkContractInfo() {
+		return workContractInfo;
+	}
+
+	public void setWorkContractInfo(WorkContractInfo workContractInfo) {
+		this.workContractInfo = workContractInfo;
+	}
+
+	public String getProjectId() {
+		return projectId;
+	}
+
+	public void setProjectId(String projectId) {
+		this.projectId = projectId;
+	}
+
+	public String getProjectRecordId() {
+		return projectRecordId;
+	}
+
+	public void setProjectRecordId(String projectRecordId) {
+		this.projectRecordId = projectRecordId;
+	}
+
+	public List<User> getProjectLeaders() {
+		return projectLeaders;
+	}
+
+	public void setProjectLeaders(List<User> projectLeaders) {
+		this.projectLeaders = projectLeaders;
+	}
+
+	public String getProjectName() {
+		return projectName;
+	}
+
+	public void setProjectName(String projectName) {
+		this.projectName = projectName;
+	}
+
+	public String getXmFZR() {
+		return xmFZR;
+	}
+
+	public void setXmFZR(String xmFZR) {
+		this.xmFZR = xmFZR;
+	}
+
+	public String getLeaderNameStr() {
+		return leaderNameStr;
+	}
+
+	public void setLeaderNameStr(String leaderNameStr) {
+		this.leaderNameStr = leaderNameStr;
+	}
+
+	public String getWeiTuoDW() {
+		return weiTuoDW;
+	}
+
+	public void setWeiTuoDW(String weiTuoDW) {
+		this.weiTuoDW = weiTuoDW;
+	}
+
+	public String getLianXiDH() {
+		return lianXiDH;
+	}
+
+	public void setLianXiDH(String lianXiDH) {
+		this.lianXiDH = lianXiDH;
+	}
+
+	public String getTouZiXZ() {
+		return touZiXZ;
+	}
+
+	public void setTouZiXZ(String touZiXZ) {
+		this.touZiXZ = touZiXZ;
+	}
+
+	public String getProjectType() {
+		return projectType;
+	}
+
+	public void setProjectType(String projectType) {
+		this.projectType = projectType;
+	}
+
+	public String getHeTongLeiXing() {
+		return heTongLeiXing;
+	}
+
+	public void setHeTongLeiXing(String heTongLeiXing) {
+		this.heTongLeiXing = heTongLeiXing;
+	}
+
+	public String getZiXunHTBH() {
+		return ziXunHTBH;
+	}
+
+	public void setZiXunHTBH(String ziXunHTBH) {
+		this.ziXunHTBH = ziXunHTBH;
+	}
+
+	public String getDangABH() {
+		return dangABH;
+	}
+
+	public void setDangABH(String dangABH) {
+		this.dangABH = dangABH;
+	}
+
+	public String getBaoGaoShuQianFaDate() {
+		return baoGaoShuQianFaDate;
+	}
+
+	public void setBaoGaoShuQianFaDate(String baoGaoShuQianFaDate) {
+		this.baoGaoShuQianFaDate = baoGaoShuQianFaDate;
+	}
+
+	public String getZiXunShouRu() {
+		return ziXunShouRu;
+	}
+
+	public void setZiXunShouRu(String ziXunShouRu) {
+		this.ziXunShouRu = ziXunShouRu;
+	}
+
+	public String getZaoJiaShiZhengHao() {
+		return zaoJiaShiZhengHao;
+	}
+
+	public void setZaoJiaShiZhengHao(String zaoJiaShiZhengHao) {
+		this.zaoJiaShiZhengHao = zaoJiaShiZhengHao;
+	}
+
+	public List<ReportedConsultant> getReportedConsultantList() {
+		return reportedConsultantList;
+	}
+
+	public void setReportedConsultantList(List<ReportedConsultant> reportedConsultantList) {
+		this.reportedConsultantList = reportedConsultantList;
+	}
+
+	public String getS1() {
+		return s1;
+	}
+
+	public void setS1(String s1) {
+		this.s1 = s1;
+	}
+
+	public String getS2() {
+		return s2;
+	}
+
+	public void setS2(String s2) {
+		this.s2 = s2;
+	}
+
+	public String getS3() {
+		return s3;
+	}
+
+	public void setS3(String s3) {
+		this.s3 = s3;
+	}
+
+	public String getPorjectStruct() {
+		return porjectStruct;
+	}
+
+	public void setPorjectStruct(String porjectStruct) {
+		this.porjectStruct = porjectStruct;
+	}
+
+	public Integer getFloorUp() {
+		return floorUp;
+	}
+
+	public void setFloorUp(Integer floorUp) {
+		this.floorUp = floorUp;
+	}
+
+	public Integer getFloorDown() {
+		return floorDown;
+	}
+
+	public void setFloorDown(Integer floorDown) {
+		this.floorDown = floorDown;
+	}
+
+	public String getgCGMValue() {
+		return gCGMValue;
+	}
+
+	public void setgCGMValue(String gCGMValue) {
+		this.gCGMValue = gCGMValue;
+	}
+
+	public String getgCGMUnit() {
+		return gCGMUnit;
+	}
+
+	public void setgCGMUnit(String gCGMUnit) {
+		this.gCGMUnit = gCGMUnit;
+	}
+
+	public String getPorjectUse() {
+		return porjectUse;
+	}
+
+	public void setPorjectUse(String porjectUse) {
+		this.porjectUse = porjectUse;
+	}
+
+	public String getZiXunBDE() {
+		return ziXunBDE;
+	}
+
+	public void setZiXunBDE(String ziXunBDE) {
+		this.ziXunBDE = ziXunBDE;
+	}
+
+	public String getZiXunBDETJ() {
+		return ziXunBDETJ;
+	}
+
+	public void setZiXunBDETJ(String ziXunBDETJ) {
+		this.ziXunBDETJ = ziXunBDETJ;
+	}
+
+	public String getZiXunBDEAZ() {
+		return ziXunBDEAZ;
+	}
+
+	public void setZiXunBDEAZ(String ziXunBDEAZ) {
+		this.ziXunBDEAZ = ziXunBDEAZ;
+	}
+
+	public String getCalTJPercent() {
+		return calTJPercent;
+	}
+
+	public void setCalTJPercent(String calTJPercent) {
+		this.calTJPercent = calTJPercent;
+	}
+
+	public String getCalAZPercent() {
+		return calAZPercent;
+	}
+
+	public void setCalAZPercent(String calAZPercent) {
+		this.calAZPercent = calAZPercent;
+	}
+
+	public String getCalZZJUnit() {
+		return calZZJUnit;
+	}
+
+	public void setCalZZJUnit(String calZZJUnit) {
+		this.calZZJUnit = calZZJUnit;
+	}
+
+	public String getCalZZJTJUnit() {
+		return calZZJTJUnit;
+	}
+
+	public void setCalZZJTJUnit(String calZZJTJUnit) {
+		this.calZZJTJUnit = calZZJTJUnit;
+	}
+
+	public String getCalZZJAZUnit() {
+		return calZZJAZUnit;
+	}
+
+	public void setCalZZJAZUnit(String calZZJAZUnit) {
+		this.calZZJAZUnit = calZZJAZUnit;
+	}
+
+	public String getHeTongJia() {
+		return heTongJia;
+	}
+
+	public void setHeTongJia(String heTongJia) {
+		this.heTongJia = heTongJia;
+	}
+
+	public String getSongShenJia() {
+		return songShenJia;
+	}
+
+	public void setSongShenJia(String songShenJia) {
+		this.songShenJia = songShenJia;
+	}
+
+	public String getShenDingJia() {
+		return shenDingJia;
+	}
+
+	public void setShenDingJia(String shenDingJia) {
+		this.shenDingJia = shenDingJia;
+	}
+
+	public String getJingHeJianE() {
+		return jingHeJianE;
+	}
+
+	public void setJingHeJianE(String jingHeJianE) {
+		this.jingHeJianE = jingHeJianE;
+	}
+
+	public String getJingHeJianLv() {
+		return jingHeJianLv;
+	}
+
+	public void setJingHeJianLv(String jingHeJianLv) {
+		this.jingHeJianLv = jingHeJianLv;
+	}
+
+	public String getgCYL() {
+		return gCYL;
+	}
+
+	public void setgCYL(String gCYL) {
+		this.gCYL = gCYL;
+	}
+
+	public String getsNYL() {
+		return sNYL;
+	}
+
+	public void setsNYL(String sNYL) {
+		this.sNYL = sNYL;
+	}
+
+	public String getyBTYL() {
+		return yBTYL;
+	}
+
+	public void setyBTYL(String yBTYL) {
+		this.yBTYL = yBTYL;
+	}
+
+	public String getrGGRYL() {
+		return rGGRYL;
+	}
+
+	public void setrGGRYL(String rGGRYL) {
+		this.rGGRYL = rGGRYL;
+	}
+
+	public String getgCYLPerUnit() {
+		return gCYLPerUnit;
+	}
+
+	public void setgCYLPerUnit(String gCYLPerUnit) {
+		this.gCYLPerUnit = gCYLPerUnit;
+	}
+
+	public String getsNYLPerUnit() {
+		return sNYLPerUnit;
+	}
+
+	public void setsNYLPerUnit(String sNYLPerUnit) {
+		this.sNYLPerUnit = sNYLPerUnit;
+	}
+
+	public String getyBTYLPerUnit() {
+		return yBTYLPerUnit;
+	}
+
+	public void setyBTYLPerUnit(String yBTYLPerUnit) {
+		this.yBTYLPerUnit = yBTYLPerUnit;
+	}
+
+	public String getrGGRYLPerUnit() {
+		return rGGRYLPerUnit;
+	}
+
+	public void setrGGRYLPerUnit(String rGGRYLPerUnit) {
+		this.rGGRYLPerUnit = rGGRYLPerUnit;
+	}
+
+	public List<String> gettJProjectList() {
+		return tJProjectList;
+	}
+
+	public void settJProjectList(List<String> tJProjectList) {
+		this.tJProjectList = tJProjectList;
+	}
+
+	public List<String> getzSProjectList() {
+		return zSProjectList;
+	}
+
+	public void setzSProjectList(List<String> zSProjectList) {
+		this.zSProjectList = zSProjectList;
+	}
+
+	public List<String> getaZProjectList() {
+		return aZProjectList;
+	}
+
+	public void setaZProjectList(List<String> aZProjectList) {
+		this.aZProjectList = aZProjectList;
+	}
+
+	public List<String> getsZProjectList() {
+		return sZProjectList;
+	}
+
+	public void setsZProjectList(List<String> sZProjectList) {
+		this.sZProjectList = sZProjectList;
+	}
+
+	public List<String> getfGYLProjectList() {
+		return fGYLProjectList;
+	}
+
+	public void setfGYLProjectList(List<String> fGYLProjectList) {
+		this.fGYLProjectList = fGYLProjectList;
+	}
+
+	public String gettJProject() {
+		return tJProject;
+	}
+
+	public void settJProject(String tJProject) {
+		this.tJProject = tJProject;
+	}
+
+	public String getzSProject() {
+		return zSProject;
+	}
+
+	public void setzSProject(String zSProject) {
+		this.zSProject = zSProject;
+	}
+
+	public String getaZProject() {
+		return aZProject;
+	}
+
+	public void setaZProject(String aZProject) {
+		this.aZProject = aZProject;
+	}
+
+	public String getsZProject() {
+		return sZProject;
+	}
+
+	public void setsZProject(String sZProject) {
+		this.sZProject = sZProject;
+	}
+
+	public String getfGYLProject() {
+		return fGYLProject;
+	}
+
+	public void setfGYLProject(String fGYLProject) {
+		this.fGYLProject = fGYLProject;
+	}
+
+	public String getqTProjec() {
+		return qTProjec;
+	}
+
+	public void setqTProjec(String qTProjec) {
+		this.qTProjec = qTProjec;
+	}
+
+	public String getProvince() {
+		return province;
+	}
+
+	public void setProvince(String province) {
+		this.province = province;
+	}
+
+	public String getCity() {
+		return city;
+	}
+
+	public void setCity(String city) {
+		this.city = city;
+	}
+
+	public String getCounty() {
+		return county;
+	}
+
+	public void setCounty(String county) {
+		this.county = county;
+	}
+
+	public String getProcessInstanceId() {
+		return processInstanceId;
+	}
+
+	public void setProcessInstanceId(String processInstanceId) {
+		this.processInstanceId = processInstanceId;
+	}
+
+	public Office getCompany() {
+		return company;
+	}
+
+	public void setCompany(Office company) {
+		this.company = company;
+	}
+
+	public Office getOffice() {
+		return office;
+	}
+
+	public void setOffice(Office office) {
+		this.office = office;
+	}
+
+	public String getReportStatus() {
+		return reportStatus;
+	}
+
+	public void setReportStatus(String reportStatus) {
+		this.reportStatus = reportStatus;
+	}
+
+	public String getHome() {
+		return home;
+	}
+
+	public void setHome(String home) {
+		this.home = home;
+	}
+
+	public String getProjectCode() {
+		return projectCode;
+	}
+
+	public void setProjectCode(String projectCode) {
+		this.projectCode = projectCode;
+	}
+
+	public String getProjectSection() {
+		return projectSection;
+	}
+
+	public void setProjectSection(String projectSection) {
+		this.projectSection = projectSection;
+	}
+
+	public String getProjectClassify() {
+		return projectClassify;
+	}
+
+	public void setProjectClassify(String projectClassify) {
+		this.projectClassify = projectClassify;
+	}
+
+	public String getgCGMValueParameter() {
+		return gCGMValueParameter;
+	}
+
+	public void setgCGMValueParameter(String gCGMValueParameter) {
+		this.gCGMValueParameter = gCGMValueParameter;
+	}
+
+	public List<String> getContentsIncludeList() {
+		return contentsIncludeList;
+	}
+
+	public void setContentsIncludeList(List<String> contentsIncludeList) {
+		this.contentsIncludeList = contentsIncludeList;
+	}
+
+	public String getContentsInclude() {
+		return contentsInclude;
+	}
+
+	public void setContentsInclude(String contentsInclude) {
+		this.contentsInclude = contentsInclude;
+	}
+
+	public String getProjectTotalInvestment() {
+		return projectTotalInvestment;
+	}
+
+	public void setProjectTotalInvestment(String projectTotalInvestment) {
+		this.projectTotalInvestment = projectTotalInvestment;
+	}
+
+	public Date getBeginDate() {
+		return beginDate;
+	}
+
+	public void setBeginDate(Date beginDate) {
+		this.beginDate = beginDate;
+	}
+
+	public Date getEndDate() {
+		return endDate;
+	}
+
+	public void setEndDate(Date endDate) {
+		this.endDate = endDate;
+	}
+
+	public String getArchivesNo() {
+		return archivesNo;
+	}
+
+	public void setArchivesNo(String archivesNo) {
+		this.archivesNo = archivesNo;
+	}
+
+	public String getAdvisoryIncome() {
+		return advisoryIncome;
+	}
+
+	public void setAdvisoryIncome(String advisoryIncome) {
+		this.advisoryIncome = advisoryIncome;
+	}
+
+	public String getProjectSupervisionIncome() {
+		return projectSupervisionIncome;
+	}
+
+	public void setProjectSupervisionIncome(String projectSupervisionIncome) {
+		this.projectSupervisionIncome = projectSupervisionIncome;
+	}
+
+	public String getTenderingAgencyIncome() {
+		return tenderingAgencyIncome;
+	}
+
+	public void setTenderingAgencyIncome(String tenderingAgencyIncome) {
+		this.tenderingAgencyIncome = tenderingAgencyIncome;
+	}
+
+	public String getDesignIncome() {
+		return designIncome;
+	}
+
+	public void setDesignIncome(String designIncome) {
+		this.designIncome = designIncome;
+	}
+
+	public String getOtherIncome() {
+		return otherIncome;
+	}
+
+	public void setOtherIncome(String otherIncome) {
+		this.otherIncome = otherIncome;
+	}
+
+	public List<WorkClientAttachment> getWorkAttachments() {
+		return workAttachments;
+	}
+
+	public void setWorkAttachments(List<WorkClientAttachment> workAttachments) {
+		this.workAttachments = workAttachments;
+	}
+}