增加-预付款充值和消费的功能
This commit is contained in:
@@ -31,12 +31,17 @@ public class SupplierModel implements Serializable
|
||||
/**
|
||||
* 电子邮箱
|
||||
*/
|
||||
private String email = "";
|
||||
|
||||
/**
|
||||
* 期初应收
|
||||
private String email = "";
|
||||
|
||||
/**
|
||||
* 预付款
|
||||
*/
|
||||
private Double BeginNeedGet;
|
||||
private Double AdvanceIn;
|
||||
|
||||
/**
|
||||
* 期初应收
|
||||
*/
|
||||
private Double BeginNeedGet;
|
||||
|
||||
/**
|
||||
* 期初应付
|
||||
@@ -135,6 +140,14 @@ public class SupplierModel implements Serializable
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public Double getAdvanceIn() {
|
||||
return AdvanceIn;
|
||||
}
|
||||
|
||||
public void setAdvanceIn(Double advanceIn) {
|
||||
AdvanceIn = advanceIn;
|
||||
}
|
||||
|
||||
public void setBeginNeedGet(Double beginNeedGet)
|
||||
{
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user