增加租户界面、单据优化
This commit is contained in:
@@ -20,6 +20,8 @@ public class MaterialVo4Unit extends Material{
|
||||
|
||||
private BigDecimal lowDecimal;
|
||||
|
||||
private BigDecimal billPrice;
|
||||
|
||||
private String mBarCode;
|
||||
|
||||
private String commodityUnit;
|
||||
@@ -90,6 +92,14 @@ public class MaterialVo4Unit extends Material{
|
||||
this.lowDecimal = lowDecimal;
|
||||
}
|
||||
|
||||
public BigDecimal getBillPrice() {
|
||||
return billPrice;
|
||||
}
|
||||
|
||||
public void setBillPrice(BigDecimal billPrice) {
|
||||
this.billPrice = billPrice;
|
||||
}
|
||||
|
||||
public String getmBarCode() {
|
||||
return mBarCode;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
public class TenantEx extends Tenant{
|
||||
|
||||
private String createTimeStr;
|
||||
|
||||
public String getCreateTimeStr() {
|
||||
return createTimeStr;
|
||||
}
|
||||
|
||||
public void setCreateTimeStr(String createTimeStr) {
|
||||
this.createTimeStr = createTimeStr;
|
||||
}
|
||||
}
|
||||
@@ -22,6 +22,10 @@ public class UserEx extends User{
|
||||
|
||||
private String userType;
|
||||
|
||||
private String userNumLimit;
|
||||
|
||||
private String billsNumLimit;
|
||||
|
||||
public String getOrgAbr() {
|
||||
return orgAbr;
|
||||
}
|
||||
@@ -77,4 +81,20 @@ public class UserEx extends User{
|
||||
public void setUserType(String userType) {
|
||||
this.userType = userType;
|
||||
}
|
||||
|
||||
public String getUserNumLimit() {
|
||||
return userNumLimit;
|
||||
}
|
||||
|
||||
public void setUserNumLimit(String userNumLimit) {
|
||||
this.userNumLimit = userNumLimit;
|
||||
}
|
||||
|
||||
public String getBillsNumLimit() {
|
||||
return billsNumLimit;
|
||||
}
|
||||
|
||||
public void setBillsNumLimit(String billsNumLimit) {
|
||||
this.billsNumLimit = billsNumLimit;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user