客户对账单优化
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user