添加员工折扣字段

This commit is contained in:
牛叉闪闪 2024-08-20 16:13:13 +08:00
parent 972ab851c8
commit f00ad6a46c
2 changed files with 6 additions and 0 deletions

View File

@ -49,6 +49,8 @@ public class TbPlussShopStaffDto implements Serializable {
/** 密码 */
private String password;
private String discountType;
/** 最大优惠金额 */
private BigDecimal maxDiscountAmount;

View File

@ -57,6 +57,10 @@ public class TbPlussShopStaff implements Serializable {
@ApiModelProperty(value = "密码")
private String password;
@Column(name = "`discount_type`")
@ApiModelProperty(value = "优惠类型 1 折扣 0 金额")
private String discountType;
@Column(name = "`max_discount_amount`")
@ApiModelProperty(value = "最大优惠金额")
private BigDecimal maxDiscountAmount;