|
@@ -14,6 +14,7 @@ public class FinaceExcelShouFu {
|
|
|
private String id; //收付款编号
|
|
|
private String aopAllWeight; //重量
|
|
|
private String aopRemarks; //备注
|
|
|
+ private String aopPredictPrice; //预估单价
|
|
|
public String getTypeDesc() {
|
|
|
return typeDesc;
|
|
|
}
|
|
@@ -92,9 +93,15 @@ public class FinaceExcelShouFu {
|
|
|
public void setAopRemarks(String aopRemarks) {
|
|
|
this.aopRemarks = aopRemarks;
|
|
|
}
|
|
|
+ public String getAopPredictPrice() {
|
|
|
+ return aopPredictPrice;
|
|
|
+ }
|
|
|
+ public void setAopPredictPrice(String aopPredictPrice) {
|
|
|
+ this.aopPredictPrice = aopPredictPrice;
|
|
|
+ }
|
|
|
public FinaceExcelShouFu(String typeDesc, String priceTypeDesc, String buyer, String seller, String totalMoney,
|
|
|
String totalMoneys, String bankNum, String bankName, String createTime, String termsPayment, String id,
|
|
|
- String aopAllWeight, String aopRemarks) {
|
|
|
+ String aopAllWeight, String aopRemarks, String aopPredictPrice) {
|
|
|
super();
|
|
|
this.typeDesc = typeDesc;
|
|
|
this.priceTypeDesc = priceTypeDesc;
|
|
@@ -109,6 +116,7 @@ public class FinaceExcelShouFu {
|
|
|
this.id = id;
|
|
|
this.aopAllWeight = aopAllWeight;
|
|
|
this.aopRemarks = aopRemarks;
|
|
|
+ this.aopPredictPrice = aopPredictPrice;
|
|
|
}
|
|
|
public FinaceExcelShouFu() {
|
|
|
super();
|
|
@@ -118,9 +126,12 @@ public class FinaceExcelShouFu {
|
|
|
return "FinaceExcelShouFu [typeDesc=" + typeDesc + ", priceTypeDesc=" + priceTypeDesc + ", buyer=" + buyer
|
|
|
+ ", seller=" + seller + ", totalMoney=" + totalMoney + ", totalMoneys=" + totalMoneys + ", bankNum="
|
|
|
+ bankNum + ", bankName=" + bankName + ", createTime=" + createTime + ", termsPayment=" + termsPayment
|
|
|
- + ", id=" + id + ", aopAllWeight=" + aopAllWeight + ", aopRemarks=" + aopRemarks + "]";
|
|
|
+ + ", id=" + id + ", aopAllWeight=" + aopAllWeight + ", aopRemarks=" + aopRemarks + ", aopPredictPrice="
|
|
|
+ + aopPredictPrice + "]";
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
}
|