|
@@ -11,6 +11,8 @@ public class Settlement {
|
|
private String theAmount;//比对金额:json
|
|
private String theAmount;//比对金额:json
|
|
private String reason;//原因
|
|
private String reason;//原因
|
|
private String del_Flag;
|
|
private String del_Flag;
|
|
|
|
+ private Double totalFee;
|
|
|
|
+ private Double difference;
|
|
|
|
|
|
public String getId() {
|
|
public String getId() {
|
|
return id;
|
|
return id;
|
|
@@ -75,4 +77,20 @@ public class Settlement {
|
|
public void setDel_Flag(String del_Flag) {
|
|
public void setDel_Flag(String del_Flag) {
|
|
this.del_Flag = del_Flag;
|
|
this.del_Flag = del_Flag;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public Double getTotalFee() {
|
|
|
|
+ return totalFee;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTotalFee(Double totalFee) {
|
|
|
|
+ this.totalFee = totalFee;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Double getDifference() {
|
|
|
|
+ return difference;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setDifference(Double difference) {
|
|
|
|
+ this.difference = difference;
|
|
|
|
+ }
|
|
}
|
|
}
|