添加员工折扣

This commit is contained in:
牛叉闪闪
2024-08-20 17:17:55 +08:00
parent 6b436da4d3
commit 653254f9f3
7 changed files with 173 additions and 21 deletions

View File

@@ -100,6 +100,8 @@ public class TbOrderInfo implements Serializable {
private String outNumber;
private Integer staffId;
private static final long serialVersionUID = 1L;
public TbOrderInfo(){
super();

View File

@@ -14,6 +14,8 @@ public class TbPlussShopStaff implements Serializable {
private String password;
private String discountType;
private BigDecimal maxDiscountAmount;
private Boolean status;
@@ -72,6 +74,14 @@ public class TbPlussShopStaff implements Serializable {
this.password = password == null ? null : password.trim();
}
public String getDiscountType() {
return discountType;
}
public void setDiscountType(String discountType) {
this.discountType = discountType;
}
public BigDecimal getMaxDiscountAmount() {
return maxDiscountAmount;
}