建造合同收入明细及财务数据 - 万元
public class ContractIncomeData {
private Long id;
private Long companyId;
private String companyName;
//本月设计合同收入(万元)
private Double designContractIncome;
//本月建造合同收入(万元)
private Double buildContractIncome;
//本月安装合同收入(万元)
private Double installContractIncome;
//本月服务合同收入(万元)
private Double serviceContractIncome;
//本月其他收入(万元)
private Double otherIncome;
//本月维保收入(万元)
private Double maintenanceIncome;
//本月非维保收入(万元)
private Double nonMaintenanceIncome;
//本月收入合计(万元)
private Double totalIncome;
//本月费用合计(万元)
private Double totalCost;
//本月差旅费(万元)
private Double travelCost;
//本月材料费(万元)
private Double materialCost;
//本月财务费用(万元)
private Double financeCost;
//本月税费(万元)
private Double taxCost;
//本月管理费用(万元)
private Double manageCost;
//本月其他费用(万元)
private Double otherCost;
//本月咨询服务费(万元)
private Double consultationCost;
//本月人工成本(万元)
private Double laborCost;
//本月设备费用(万元)
private Double equipmentCost;
//本月折旧费用(万元)
private Double depreciationCost;
//本月利润合计(万元)
private Double totalProfit;
//本月毛利率
private Double grossProfitRate;
//本月直接人工成本率
private Double directLaborCostRate;
//备注
private String remark;
//报表日期
private Date reportDate;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getCompanyId() {
return companyId;
}
public void setCompanyId(Long companyId) {
this.companyId = companyId;
}
public String getCompanyName() {
return companyName;
}
public void setCompanyName(String companyName) {
this.companyName = companyName;
}
public Double getDesignContractIncome() {
return designContractIncome;
}
public void setDesignContractIncome(Double designContractIncome) {
this.designContractIncome = designContractIncome;
}
public Double getBuildContractIncome() {
return buildContractIncome;
}
public void setBuildContractIncome(Double buildContractIncome) {
this.buildContractIncome = buildContractIncome;
}
public Double getInstallContractIncome() {
return installContractIncome;
}
public void setInstallContractIncome(Double installContractIncome) {
this.installContractIncome = installContractIncome;
}
public Double getServiceContractIncome() {
return serviceContractIncome;
}
public void setServiceContractIncome(Double serviceContractIncome) {
this.serviceContractIncome = serviceContractIncome;
}
public Double getOtherIncome() {
return otherIncome;
}
public void setOtherIncome(Double otherIncome) {
this.otherIncome = otherIncome;
}
public Double getMaintenanceIncome() {
return maintenanceIncome;
}
public void setMaintenanceIncome(Double maintenanceIncome) {
this.maintenanceIncome = maintenanceIncome;
}
public Double getNonMaintenanceIncome() {
return nonMaintenanceIncome;
}
public void setNonMaintenanceIncome(Double nonMaintenanceIncome) {
this.nonMaintenanceIncome = nonMaintenanceIncome;
}
public Double getTotalIncome() {
return totalIncome;
}
public void setTotalIncome(Double totalIncome) {
this.totalIncome = totalIncome;
}
public Double getTotalCost() {
return totalCost;
}
public void setTotalCost(Double totalCost) {
this.totalCost = totalCost;
}
public Double getTravelCost() {
return travelCost;
}
public void setTravelCost(Double travelCost) {
this.travelCost = travelCost;
}
public Double getMaterialCost() {
return materialCost;
}
public void setMaterialCost(Double materialCost) {
this.materialCost = materialCost;
}
public Double getFinanceCost() {
return financeCost;
}
public void setFinanceCost(Double financeCost) {
this.financeCost = financeCost;
}
public Double getTaxCost() {
return taxCost;
}
public void setTaxCost(Double taxCost) {
this.taxCost = taxCost;
}
public Double getManageCost() {
return manageCost;
}
public void setManageCost(Double manageCost) {
this.manageCost = manageCost;
}
public Double getOtherCost() {
return otherCost;
}
public void setOtherCost(Double otherCost) {
this.otherCost = otherCost;
}
public Double getConsultationCost() {
return consultationCost;
}
public void setConsultationCost(Double consultationCost) {
this.consultationCost = consultationCost;
}
public Double getLaborCost() {
return laborCost;
}
public void setLaborCost(Double laborCost) {
this.laborCost = laborCost;
}
public Double getEquipmentCost() {
return equipmentCost;
}
public void setEquipmentCost(Double equipmentCost) {
this.equipmentCost = equipmentCost;
}
public Double getDepreciationCost() {
return depreciationCost;
}
public void setDepreciationCost(Double depreciationCost) {
this.depreciationCost = depreciationCost;
}
public Double getTotalProfit() {
return totalProfit;
}
public void setTotalProfit(Double totalProfit) {
this.totalProfit = totalProfit;
}
public Double getGrossProfitRate() {
return grossProfitRate;
}
public void setGrossProfitRate(Double grossProfitRate) {
this.grossProfitRate = grossProfitRate;
}
public Double getDirectLaborCostRate() {
return directLaborCostRate;
}
public void setDirectLaborCostRate(Double directLaborCostRate) {
this.directLaborCostRate = directLaborCostRate;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Date getReportDate() {
return reportDate;
}
public void setReportDate(Date reportDate) {
this.reportDate = reportDate;
}
}
原文地址: https://www.cveoy.top/t/topic/lgDe 著作权归作者所有。请勿转载和采集!