|
@@ -9,7 +9,7 @@ public class Settlement {
|
|
private String remarks;//备注
|
|
private String remarks;//备注
|
|
private String status;//数据核对 0-核对一致 1-核对不一致
|
|
private String status;//数据核对 0-核对一致 1-核对不一致
|
|
private String theAmount;//比对金额:json
|
|
private String theAmount;//比对金额:json
|
|
- private String delFlag;//删除
|
|
|
|
|
|
+ private String reason;//原因
|
|
|
|
|
|
public String getId() {
|
|
public String getId() {
|
|
return id;
|
|
return id;
|
|
@@ -58,12 +58,12 @@ public class Settlement {
|
|
this.theAmount = theAmount;
|
|
this.theAmount = theAmount;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getDelFlag() {
|
|
|
|
- return delFlag;
|
|
|
|
|
|
+ public String getReason() {
|
|
|
|
+ return reason;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setDelFlag(String delFlag) {
|
|
|
|
- this.delFlag = delFlag;
|
|
|
|
|
|
+ public void setReason(String reason) {
|
|
|
|
+ this.reason = reason;
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
@@ -75,7 +75,7 @@ public class Settlement {
|
|
", remarks='" + remarks + '\'' +
|
|
", remarks='" + remarks + '\'' +
|
|
", status='" + status + '\'' +
|
|
", status='" + status + '\'' +
|
|
", theAmount='" + theAmount + '\'' +
|
|
", theAmount='" + theAmount + '\'' +
|
|
- ", delFlag='" + delFlag + '\'' +
|
|
|
|
|
|
+ ", reason='" + reason + '\'' +
|
|
'}';
|
|
'}';
|
|
}
|
|
}
|
|
}
|
|
}
|