Bladeren bron

新增ProjectReportSignatureInfo类

[user3] 3 jaren geleden
bovenliggende
commit
a594fee785

+ 488 - 0
src/main/java/com/jeeplus/modules/ruralprojectrecords/entity/ProjectReportSignatureInfo.java

@@ -0,0 +1,488 @@
+/**
+ * Copyright &copy; 2015-2020 <a href="http://www.jeeplus.org/">JeePlus</a> All rights reserved.
+ */
+package com.jeeplus.modules.ruralprojectrecords.entity;
+
+import com.jeeplus.common.persistence.ActEntity;
+import com.jeeplus.common.utils.excel.annotation.ExcelField;
+
+import javax.net.ssl.SSLContext;
+import java.util.Date;
+
+/**
+ * 造价审核导入B级项目信息表
+ * @author 徐滕
+ * @version 2021-10-08 09:45
+ */
+public class ProjectReportSignatureInfo extends ActEntity<ProjectReportSignatureInfo> {
+	private static final long serialVersionUID = 1L;
+
+	private String projectReportId;  //报告号
+	private String submitFee;        //送审金额
+	private String authorizeFee;     //审定金额
+	private String constructionUnitAssessmentFee; //施工单位考核费
+	private String authorizeFeeDeductAssessmentFee; //扣除考核费后审定金额
+	private String constructionUnit; //施工单位
+	private String descriptionOfDeduction;//核减情况说明
+	private String descriptionOfExceedingTheContractAmount; //超合同额情况说明
+	private String descriptionOfSpecialMatters;  //特殊事项说明
+	private Date stampDate;          //盖章日期
+	private String printQuantity;    //打印数量
+	private Date reportPreparationDate;//报告编制日期
+	private Date agreedStartDate;    //约定开始日期
+	private Date agreedEndDate;      //约定结束日期
+	private String consultant;       //咨询员
+	private String selfCalibrationOpinion;//自校意见
+	private String reviewOpinion;    //复核意见
+	private Date reviewDate;         //复核日期
+	private Date dateOfConsultationReport;//咨询报告日期
+	private Date startDateOfConsultingOperation;//咨询作业开始日期
+	private Date endDateOfConsultation;//咨询作业结束日期
+	private Date startAuditDate;       //开始审核日期
+	private String projectScaleContentScope;//工程规模内容和范围
+	private String mainContentsOfProject;//工程主要内容
+	private String totalContractPrice; //合同总价
+	private Date ContractStartDate; //合同开工日期
+	private Date ContractEndDate;   //合同竣工日期
+	private Date actualStartDate;   //实际开工日期
+	private Date actualEndDate;     //实际竣工日期
+	private Date completionAcceptanceDate;//竣工验收日期
+	private String designUnit;      //设计单位
+	private String constructionControlUnit;//监理单位
+	private String followUpAuditUnit;//跟踪审计单位
+	private String engineeringDesignChangeOrder;//工程设计变更单
+	private String confirmationSheetOfQuantities;//工程量确认单
+	private String projectVisa;     //工程签证
+	private String qualityPriceConfirmationOfEngineeringMaterials;//工程材料设备认质认价单
+	private String listmaterialsEquipmentByA;//工程甲供材料设备清单
+	private String projectRewardAndDamages;//工程索赔奖励及违约金
+	private String charge;          //取费
+	private String taxes;           //税金
+	private String durationDifferenceCausesAndResponsibilities;//工期差异原因与责任
+	private String qualityDifferenceCausesAndResponsibilities;//质量差异原因与责任
+	private String otherContentsAndExpenses;//其它内容及费用
+	private String projectCostConsultingContract;//工程造价咨询合同
+	private String settlementPricingBasisDocument;//结算计价依据文件
+	private String materialsAndEquipmentByA;//甲供材及设备情况
+	private String AMaterialsByB;    //甲控乙供材情况
+	private String rewardAndPunishmentFees;//奖惩费情况
+	private String waterAndElectricityFeesHandleSituation;//水电费处理情况
+	private String constructionQualityWarrantyDeposit;//工程质量保修金处理情况
+	private String taxDifferenceCalculationAndProcessing;//税金差额计算处理
+
+	public String getProjectReportId() {
+		return projectReportId;
+	}
+
+	public void setProjectReportId(String projectReportId) {
+		this.projectReportId = projectReportId;
+	}
+
+	public String getSubmitFee() {
+		return submitFee;
+	}
+
+	public void setSubmitFee(String submitFee) {
+		this.submitFee = submitFee;
+	}
+
+	public String getAuthorizeFee() {
+		return authorizeFee;
+	}
+
+	public void setAuthorizeFee(String authorizeFee) {
+		this.authorizeFee = authorizeFee;
+	}
+
+	public String getConstructionUnitAssessmentFee() {
+		return constructionUnitAssessmentFee;
+	}
+
+	public void setConstructionUnitAssessmentFee(String constructionUnitAssessmentFee) {
+		this.constructionUnitAssessmentFee = constructionUnitAssessmentFee;
+	}
+
+	public String getAuthorizeFeeDeductAssessmentFee() {
+		return authorizeFeeDeductAssessmentFee;
+	}
+
+	public void setAuthorizeFeeDeductAssessmentFee(String authorizeFeeDeductAssessmentFee) {
+		this.authorizeFeeDeductAssessmentFee = authorizeFeeDeductAssessmentFee;
+	}
+
+	public String getConstructionUnit() {
+		return constructionUnit;
+	}
+
+	public void setConstructionUnit(String constructionUnit) {
+		this.constructionUnit = constructionUnit;
+	}
+
+	public String getDescriptionOfDeduction() {
+		return descriptionOfDeduction;
+	}
+
+	public void setDescriptionOfDeduction(String descriptionOfDeduction) {
+		this.descriptionOfDeduction = descriptionOfDeduction;
+	}
+
+	public String getDescriptionOfExceedingTheContractAmount() {
+		return descriptionOfExceedingTheContractAmount;
+	}
+
+	public void setDescriptionOfExceedingTheContractAmount(String descriptionOfExceedingTheContractAmount) {
+		this.descriptionOfExceedingTheContractAmount = descriptionOfExceedingTheContractAmount;
+	}
+
+	public String getDescriptionOfSpecialMatters() {
+		return descriptionOfSpecialMatters;
+	}
+
+	public void setDescriptionOfSpecialMatters(String descriptionOfSpecialMatters) {
+		this.descriptionOfSpecialMatters = descriptionOfSpecialMatters;
+	}
+
+	public Date getStampDate() {
+		return stampDate;
+	}
+
+	public void setStampDate(Date stampDate) {
+		this.stampDate = stampDate;
+	}
+
+	public String getPrintQuantity() {
+		return printQuantity;
+	}
+
+	public void setPrintQuantity(String printQuantity) {
+		this.printQuantity = printQuantity;
+	}
+
+	public Date getReportPreparationDate() {
+		return reportPreparationDate;
+	}
+
+	public void setReportPreparationDate(Date reportPreparationDate) {
+		this.reportPreparationDate = reportPreparationDate;
+	}
+
+	public Date getAgreedStartDate() {
+		return agreedStartDate;
+	}
+
+	public void setAgreedStartDate(Date agreedStartDate) {
+		this.agreedStartDate = agreedStartDate;
+	}
+
+	public Date getAgreedEndDate() {
+		return agreedEndDate;
+	}
+
+	public void setAgreedEndDate(Date agreedEndDate) {
+		this.agreedEndDate = agreedEndDate;
+	}
+
+	public String getConsultant() {
+		return consultant;
+	}
+
+	public void setConsultant(String consultant) {
+		this.consultant = consultant;
+	}
+
+	public String getSelfCalibrationOpinion() {
+		return selfCalibrationOpinion;
+	}
+
+	public void setSelfCalibrationOpinion(String selfCalibrationOpinion) {
+		this.selfCalibrationOpinion = selfCalibrationOpinion;
+	}
+
+	public String getReviewOpinion() {
+		return reviewOpinion;
+	}
+
+	public void setReviewOpinion(String reviewOpinion) {
+		this.reviewOpinion = reviewOpinion;
+	}
+
+	public Date getReviewDate() {
+		return reviewDate;
+	}
+
+	public void setReviewDate(Date reviewDate) {
+		this.reviewDate = reviewDate;
+	}
+
+	public Date getDateOfConsultationReport() {
+		return dateOfConsultationReport;
+	}
+
+	public void setDateOfConsultationReport(Date dateOfConsultationReport) {
+		this.dateOfConsultationReport = dateOfConsultationReport;
+	}
+
+	public Date getStartDateOfConsultingOperation() {
+		return startDateOfConsultingOperation;
+	}
+
+	public void setStartDateOfConsultingOperation(Date startDateOfConsultingOperation) {
+		this.startDateOfConsultingOperation = startDateOfConsultingOperation;
+	}
+
+	public Date getEndDateOfConsultation() {
+		return endDateOfConsultation;
+	}
+
+	public void setEndDateOfConsultation(Date endDateOfConsultation) {
+		this.endDateOfConsultation = endDateOfConsultation;
+	}
+
+	public Date getStartAuditDate() {
+		return startAuditDate;
+	}
+
+	public void setStartAuditDate(Date startAuditDate) {
+		this.startAuditDate = startAuditDate;
+	}
+
+	public String getProjectScaleContentScope() {
+		return projectScaleContentScope;
+	}
+
+	public void setProjectScaleContentScope(String projectScaleContentScope) {
+		this.projectScaleContentScope = projectScaleContentScope;
+	}
+
+	public String getMainContentsOfProject() {
+		return mainContentsOfProject;
+	}
+
+	public void setMainContentsOfProject(String mainContentsOfProject) {
+		this.mainContentsOfProject = mainContentsOfProject;
+	}
+
+	public String getTotalContractPrice() {
+		return totalContractPrice;
+	}
+
+	public void setTotalContractPrice(String totalContractPrice) {
+		this.totalContractPrice = totalContractPrice;
+	}
+
+	public Date getContractStartDate() {
+		return ContractStartDate;
+	}
+
+	public void setContractStartDate(Date contractStartDate) {
+		ContractStartDate = contractStartDate;
+	}
+
+	public Date getContractEndDate() {
+		return ContractEndDate;
+	}
+
+	public void setContractEndDate(Date contractEndDate) {
+		ContractEndDate = contractEndDate;
+	}
+
+	public Date getActualStartDate() {
+		return actualStartDate;
+	}
+
+	public void setActualStartDate(Date actualStartDate) {
+		this.actualStartDate = actualStartDate;
+	}
+
+	public Date getActualEndDate() {
+		return actualEndDate;
+	}
+
+	public void setActualEndDate(Date actualEndDate) {
+		this.actualEndDate = actualEndDate;
+	}
+
+	public Date getCompletionAcceptanceDate() {
+		return completionAcceptanceDate;
+	}
+
+	public void setCompletionAcceptanceDate(Date completionAcceptanceDate) {
+		this.completionAcceptanceDate = completionAcceptanceDate;
+	}
+
+	public String getDesignUnit() {
+		return designUnit;
+	}
+
+	public void setDesignUnit(String designUnit) {
+		this.designUnit = designUnit;
+	}
+
+	public String getConstructionControlUnit() {
+		return constructionControlUnit;
+	}
+
+	public void setConstructionControlUnit(String constructionControlUnit) {
+		this.constructionControlUnit = constructionControlUnit;
+	}
+
+	public String getFollowUpAuditUnit() {
+		return followUpAuditUnit;
+	}
+
+	public void setFollowUpAuditUnit(String followUpAuditUnit) {
+		this.followUpAuditUnit = followUpAuditUnit;
+	}
+
+	public String getEngineeringDesignChangeOrder() {
+		return engineeringDesignChangeOrder;
+	}
+
+	public void setEngineeringDesignChangeOrder(String engineeringDesignChangeOrder) {
+		this.engineeringDesignChangeOrder = engineeringDesignChangeOrder;
+	}
+
+	public String getConfirmationSheetOfQuantities() {
+		return confirmationSheetOfQuantities;
+	}
+
+	public void setConfirmationSheetOfQuantities(String confirmationSheetOfQuantities) {
+		this.confirmationSheetOfQuantities = confirmationSheetOfQuantities;
+	}
+
+	public String getProjectVisa() {
+		return projectVisa;
+	}
+
+	public void setProjectVisa(String projectVisa) {
+		this.projectVisa = projectVisa;
+	}
+
+	public String getQualityPriceConfirmationOfEngineeringMaterials() {
+		return qualityPriceConfirmationOfEngineeringMaterials;
+	}
+
+	public void setQualityPriceConfirmationOfEngineeringMaterials(String qualityPriceConfirmationOfEngineeringMaterials) {
+		this.qualityPriceConfirmationOfEngineeringMaterials = qualityPriceConfirmationOfEngineeringMaterials;
+	}
+
+	public String getListmaterialsEquipmentByA() {
+		return listmaterialsEquipmentByA;
+	}
+
+	public void setListmaterialsEquipmentByA(String listmaterialsEquipmentByA) {
+		this.listmaterialsEquipmentByA = listmaterialsEquipmentByA;
+	}
+
+	public String getProjectRewardAndDamages() {
+		return projectRewardAndDamages;
+	}
+
+	public void setProjectRewardAndDamages(String projectRewardAndDamages) {
+		this.projectRewardAndDamages = projectRewardAndDamages;
+	}
+
+	public String getCharge() {
+		return charge;
+	}
+
+	public void setCharge(String charge) {
+		this.charge = charge;
+	}
+
+	public String getTaxes() {
+		return taxes;
+	}
+
+	public void setTaxes(String taxes) {
+		this.taxes = taxes;
+	}
+
+	public String getDurationDifferenceCausesAndResponsibilities() {
+		return durationDifferenceCausesAndResponsibilities;
+	}
+
+	public void setDurationDifferenceCausesAndResponsibilities(String durationDifferenceCausesAndResponsibilities) {
+		this.durationDifferenceCausesAndResponsibilities = durationDifferenceCausesAndResponsibilities;
+	}
+
+	public String getQualityDifferenceCausesAndResponsibilities() {
+		return qualityDifferenceCausesAndResponsibilities;
+	}
+
+	public void setQualityDifferenceCausesAndResponsibilities(String qualityDifferenceCausesAndResponsibilities) {
+		this.qualityDifferenceCausesAndResponsibilities = qualityDifferenceCausesAndResponsibilities;
+	}
+
+	public String getOtherContentsAndExpenses() {
+		return otherContentsAndExpenses;
+	}
+
+	public void setOtherContentsAndExpenses(String otherContentsAndExpenses) {
+		this.otherContentsAndExpenses = otherContentsAndExpenses;
+	}
+
+	public String getProjectCostConsultingContract() {
+		return projectCostConsultingContract;
+	}
+
+	public void setProjectCostConsultingContract(String projectCostConsultingContract) {
+		this.projectCostConsultingContract = projectCostConsultingContract;
+	}
+
+	public String getSettlementPricingBasisDocument() {
+		return settlementPricingBasisDocument;
+	}
+
+	public void setSettlementPricingBasisDocument(String settlementPricingBasisDocument) {
+		this.settlementPricingBasisDocument = settlementPricingBasisDocument;
+	}
+
+	public String getMaterialsAndEquipmentByA() {
+		return materialsAndEquipmentByA;
+	}
+
+	public void setMaterialsAndEquipmentByA(String materialsAndEquipmentByA) {
+		this.materialsAndEquipmentByA = materialsAndEquipmentByA;
+	}
+
+	public String getAMaterialsByB() {
+		return AMaterialsByB;
+	}
+
+	public void setAMaterialsByB(String AMaterialsByB) {
+		this.AMaterialsByB = AMaterialsByB;
+	}
+
+	public String getRewardAndPunishmentFees() {
+		return rewardAndPunishmentFees;
+	}
+
+	public void setRewardAndPunishmentFees(String rewardAndPunishmentFees) {
+		this.rewardAndPunishmentFees = rewardAndPunishmentFees;
+	}
+
+	public String getWaterAndElectricityFeesHandleSituation() {
+		return waterAndElectricityFeesHandleSituation;
+	}
+
+	public void setWaterAndElectricityFeesHandleSituation(String waterAndElectricityFeesHandleSituation) {
+		this.waterAndElectricityFeesHandleSituation = waterAndElectricityFeesHandleSituation;
+	}
+
+	public String getConstructionQualityWarrantyDeposit() {
+		return constructionQualityWarrantyDeposit;
+	}
+
+	public void setConstructionQualityWarrantyDeposit(String constructionQualityWarrantyDeposit) {
+		this.constructionQualityWarrantyDeposit = constructionQualityWarrantyDeposit;
+	}
+
+	public String getTaxDifferenceCalculationAndProcessing() {
+		return taxDifferenceCalculationAndProcessing;
+	}
+
+	public void setTaxDifferenceCalculationAndProcessing(String taxDifferenceCalculationAndProcessing) {
+		this.taxDifferenceCalculationAndProcessing = taxDifferenceCalculationAndProcessing;
+	}
+}