diff --git a/main/java/shkd/repc/recos/domain/Calculation.java b/main/java/shkd/repc/recos/domain/Calculation.java index 0ab8d17..23aebff 100644 --- a/main/java/shkd/repc/recos/domain/Calculation.java +++ b/main/java/shkd/repc/recos/domain/Calculation.java @@ -26,9 +26,13 @@ public class Calculation { //工程量 Double entry_workload; + //估算口径 + String entry_measureplanidx; + //备注 + String entry_description; - public Calculation(String entry_longnumber, String entry_accountname, String entry_workloadunit, Double entry_adjustcoefficient, Double entry_amount,Double entry_price,Double entry_workload) { + public Calculation(String entry_longnumber, String entry_accountname, String entry_workloadunit, Double entry_adjustcoefficient, Double entry_amount,Double entry_price,Double entry_workload,String entry_measureplanidx,String entry_description) { this.entry_longnumber = entry_longnumber; this.entry_accountname = entry_accountname; this.entry_workloadunit = entry_workloadunit; @@ -36,6 +40,8 @@ public class Calculation { this.entry_amount = entry_amount; this.entry_price = entry_price; this.entry_workload = entry_workload; + this.entry_measureplanidx = entry_measureplanidx; + this.entry_description = entry_description; } public String getEntry_longnumber() { @@ -95,6 +101,22 @@ public class Calculation { this.entry_workload = entry_workload; } + public String getEntry_measureplanidx() { + return entry_measureplanidx; + } + + public void setEntry_measureplanidx(String entry_measureplanidx) { + this.entry_measureplanidx = entry_measureplanidx; + } + + public String getEntry_description() { + return entry_description; + } + + public void setEntry_description(String entry_description) { + this.entry_description = entry_description; + } + public Calculation() { } } diff --git a/main/java/shkd/repc/recos/formplugin/MeasureciFormPlugin.java b/main/java/shkd/repc/recos/formplugin/MeasureciFormPlugin.java index 6016e3a..c653702 100644 --- a/main/java/shkd/repc/recos/formplugin/MeasureciFormPlugin.java +++ b/main/java/shkd/repc/recos/formplugin/MeasureciFormPlugin.java @@ -41,16 +41,7 @@ public class MeasureciFormPlugin extends AbstractFormPlugin { DynamicObjectCollection qeug_entryentity = gcl.getDynamicObjectCollection("qeug_entryentity");//面积 for (int i = 0; i