客户对账单优化

This commit is contained in:
季圣华
2017-10-28 00:12:27 +08:00
parent a348bc29f1
commit dfdfce09a0
7 changed files with 274 additions and 34 deletions

View File

@@ -22,6 +22,8 @@ public class AccountHeadModel implements Serializable
private String MonthTime; //查询月份
private String supplierId; //单位Id用于查询单位的收付款
private String supType; //单位类型,客户、供应商
/**
* 分类ID
*/
@@ -233,5 +235,12 @@ public class AccountHeadModel implements Serializable
public void setSupplierId(String supplierId) {
this.supplierId = supplierId;
}
public String getSupType() {
return supType;
}
public void setSupType(String supType) {
this.supType = supType;
}
}

View File

@@ -44,6 +44,7 @@ public class DepotHeadModel implements Serializable
private String supplierId; //单位Id用于查询单位的应收应付
private String MaterialParam; //商品参数
private String dhIds; //单据id列表
private String supType; //单位类型,客户、供应商
/**
* 分类ID
@@ -381,4 +382,12 @@ public class DepotHeadModel implements Serializable
public void setDhIds(String dhIds) {
this.dhIds = dhIds;
}
public String getSupType() {
return supType;
}
public void setSupType(String supType) {
this.supType = supType;
}
}