增加-预付款充值和消费的功能

This commit is contained in:
季圣华
2017-06-27 23:43:38 +08:00
parent 882f32ceac
commit a571968393
16 changed files with 262 additions and 23 deletions

View File

@@ -21,6 +21,7 @@ public class DepotHeadModel implements Serializable
private Double ChangeAmount;
private Long AllocationProjectId;
private Double TotalPrice;
private String PayType = "";
private String Remark = "";
private String BeginTime; //查询开始时间
@@ -158,6 +159,14 @@ public class DepotHeadModel implements Serializable
TotalPrice = totalPrice;
}
public String getPayType() {
return PayType;
}
public void setPayType(String payType) {
PayType = payType;
}
public String getRemark() {
return Remark;
}