|
@@ -1,5 +1,6 @@
|
|
package com.jeeplus.modules.sg.financial.erpcredit.entity;
|
|
package com.jeeplus.modules.sg.financial.erpcredit.entity;
|
|
|
|
|
|
|
|
+import com.jeeplus.common.utils.excel.annotation.ExcelField;
|
|
import com.jeeplus.core.persistence.DataEntity;
|
|
import com.jeeplus.core.persistence.DataEntity;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.ArrayList;
|
|
@@ -26,7 +27,7 @@ public class ErpCredit extends DataEntity<ErpCredit>{
|
|
private List<ErpCreditChild2> erpCreditChild2s = new ArrayList<ErpCreditChild2>();
|
|
private List<ErpCreditChild2> erpCreditChild2s = new ArrayList<ErpCreditChild2>();
|
|
private List<ErpCreditChild3> erpCreditChild3s = new ArrayList<ErpCreditChild3>();
|
|
private List<ErpCreditChild3> erpCreditChild3s = new ArrayList<ErpCreditChild3>();
|
|
|
|
|
|
-
|
|
|
|
|
|
+ @ExcelField(title="项目定义编码", align=2, sort=1)
|
|
public String getItemId() {
|
|
public String getItemId() {
|
|
return itemId;
|
|
return itemId;
|
|
}
|
|
}
|
|
@@ -34,7 +35,7 @@ public class ErpCredit extends DataEntity<ErpCredit>{
|
|
public void setItemId(String itemId) {
|
|
public void setItemId(String itemId) {
|
|
this.itemId = itemId;
|
|
this.itemId = itemId;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ @ExcelField(title="项目名称", align=2, sort=2)
|
|
public String getItemName() {
|
|
public String getItemName() {
|
|
return itemName;
|
|
return itemName;
|
|
}
|
|
}
|
|
@@ -42,7 +43,7 @@ public class ErpCredit extends DataEntity<ErpCredit>{
|
|
public void setItemName(String itemName) {
|
|
public void setItemName(String itemName) {
|
|
this.itemName = itemName;
|
|
this.itemName = itemName;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ @ExcelField(title="实际投资", align=2, sort=3)
|
|
public Double getActualInvestment() {
|
|
public Double getActualInvestment() {
|
|
return actualInvestment;
|
|
return actualInvestment;
|
|
}
|
|
}
|
|
@@ -50,7 +51,7 @@ public class ErpCredit extends DataEntity<ErpCredit>{
|
|
public void setActualInvestment(Double actualInvestment) {
|
|
public void setActualInvestment(Double actualInvestment) {
|
|
this.actualInvestment = actualInvestment;
|
|
this.actualInvestment = actualInvestment;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ @ExcelField(title="移交生产的资产总值", align=2, sort=4)
|
|
public Double getTransferAssets() {
|
|
public Double getTransferAssets() {
|
|
return transferAssets;
|
|
return transferAssets;
|
|
}
|
|
}
|
|
@@ -58,7 +59,7 @@ public class ErpCredit extends DataEntity<ErpCredit>{
|
|
public void setTransferAssets(Double transferAssets) {
|
|
public void setTransferAssets(Double transferAssets) {
|
|
this.transferAssets = transferAssets;
|
|
this.transferAssets = transferAssets;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ @ExcelField(title="建筑费", align=2, sort=5)
|
|
public Double getConsBuildingFee() {
|
|
public Double getConsBuildingFee() {
|
|
return consBuildingFee;
|
|
return consBuildingFee;
|
|
}
|
|
}
|
|
@@ -66,7 +67,7 @@ public class ErpCredit extends DataEntity<ErpCredit>{
|
|
public void setConsBuildingFee(Double consBuildingFee) {
|
|
public void setConsBuildingFee(Double consBuildingFee) {
|
|
this.consBuildingFee = consBuildingFee;
|
|
this.consBuildingFee = consBuildingFee;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ @ExcelField(title="安装费", align=2, sort=6)
|
|
public Double getConsInstallFee() {
|
|
public Double getConsInstallFee() {
|
|
return consInstallFee;
|
|
return consInstallFee;
|
|
}
|
|
}
|
|
@@ -74,7 +75,7 @@ public class ErpCredit extends DataEntity<ErpCredit>{
|
|
public void setConsInstallFee(Double consInstallFee) {
|
|
public void setConsInstallFee(Double consInstallFee) {
|
|
this.consInstallFee = consInstallFee;
|
|
this.consInstallFee = consInstallFee;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ @ExcelField(title="施工:合计", align=2, sort=7)
|
|
public Double getConsTotalFee() {
|
|
public Double getConsTotalFee() {
|
|
return consTotalFee;
|
|
return consTotalFee;
|
|
}
|
|
}
|
|
@@ -82,7 +83,7 @@ public class ErpCredit extends DataEntity<ErpCredit>{
|
|
public void setConsTotalFee(Double consTotalFee) {
|
|
public void setConsTotalFee(Double consTotalFee) {
|
|
this.consTotalFee = consTotalFee;
|
|
this.consTotalFee = consTotalFee;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ @ExcelField(title="监理费", align=2, sort=8)
|
|
public Double getOtherSupervisorFee() {
|
|
public Double getOtherSupervisorFee() {
|
|
return otherSupervisorFee;
|
|
return otherSupervisorFee;
|
|
}
|
|
}
|
|
@@ -90,7 +91,7 @@ public class ErpCredit extends DataEntity<ErpCredit>{
|
|
public void setOtherSupervisorFee(Double otherSupervisorFee) {
|
|
public void setOtherSupervisorFee(Double otherSupervisorFee) {
|
|
this.otherSupervisorFee = otherSupervisorFee;
|
|
this.otherSupervisorFee = otherSupervisorFee;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ @ExcelField(title="设计费", align=2, sort=9)
|
|
public Double getOtherDesignFee() {
|
|
public Double getOtherDesignFee() {
|
|
return otherDesignFee;
|
|
return otherDesignFee;
|
|
}
|
|
}
|
|
@@ -98,7 +99,7 @@ public class ErpCredit extends DataEntity<ErpCredit>{
|
|
public void setOtherDesignFee(Double otherDesignFee) {
|
|
public void setOtherDesignFee(Double otherDesignFee) {
|
|
this.otherDesignFee = otherDesignFee;
|
|
this.otherDesignFee = otherDesignFee;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ @ExcelField(title="项目前期工作费", align=2, sort=10)
|
|
public Double getOtherBeWorkFee() {
|
|
public Double getOtherBeWorkFee() {
|
|
return otherBeWorkFee;
|
|
return otherBeWorkFee;
|
|
}
|
|
}
|
|
@@ -106,7 +107,7 @@ public class ErpCredit extends DataEntity<ErpCredit>{
|
|
public void setOtherBeWorkFee(Double otherBeWorkFee) {
|
|
public void setOtherBeWorkFee(Double otherBeWorkFee) {
|
|
this.otherBeWorkFee = otherBeWorkFee;
|
|
this.otherBeWorkFee = otherBeWorkFee;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ @ExcelField(title="建设期贷款利息", align=2, sort=11)
|
|
public Double getOtherBuildLoan() {
|
|
public Double getOtherBuildLoan() {
|
|
return otherBuildLoan;
|
|
return otherBuildLoan;
|
|
}
|
|
}
|
|
@@ -114,7 +115,7 @@ public class ErpCredit extends DataEntity<ErpCredit>{
|
|
public void setOtherBuildLoan(Double otherBuildLoan) {
|
|
public void setOtherBuildLoan(Double otherBuildLoan) {
|
|
this.otherBuildLoan = otherBuildLoan;
|
|
this.otherBuildLoan = otherBuildLoan;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ @ExcelField(title="线路施工赔偿费", align=2, sort=12)
|
|
public Double getOtherLineDamages() {
|
|
public Double getOtherLineDamages() {
|
|
return otherLineDamages;
|
|
return otherLineDamages;
|
|
}
|
|
}
|
|
@@ -122,7 +123,7 @@ public class ErpCredit extends DataEntity<ErpCredit>{
|
|
public void setOtherLineDamages(Double otherLineDamages) {
|
|
public void setOtherLineDamages(Double otherLineDamages) {
|
|
this.otherLineDamages = otherLineDamages;
|
|
this.otherLineDamages = otherLineDamages;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ @ExcelField(title="法人管理费", align=2, sort=13)
|
|
public Double getOtherLegalManage() {
|
|
public Double getOtherLegalManage() {
|
|
return otherLegalManage;
|
|
return otherLegalManage;
|
|
}
|
|
}
|
|
@@ -130,7 +131,7 @@ public class ErpCredit extends DataEntity<ErpCredit>{
|
|
public void setOtherLegalManage(Double otherLegalManage) {
|
|
public void setOtherLegalManage(Double otherLegalManage) {
|
|
this.otherLegalManage = otherLegalManage;
|
|
this.otherLegalManage = otherLegalManage;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ @ExcelField(title="其他费用:合计", align=2, sort=14)
|
|
public Double getOtherTotalFee() {
|
|
public Double getOtherTotalFee() {
|
|
return otherTotalFee;
|
|
return otherTotalFee;
|
|
}
|
|
}
|