添加员工折扣字段
This commit is contained in:
@@ -49,6 +49,8 @@ public class TbPlussShopStaffDto implements Serializable {
|
|||||||
/** 密码 */
|
/** 密码 */
|
||||||
private String password;
|
private String password;
|
||||||
|
|
||||||
|
private String discountType;
|
||||||
|
|
||||||
/** 最大优惠金额 */
|
/** 最大优惠金额 */
|
||||||
private BigDecimal maxDiscountAmount;
|
private BigDecimal maxDiscountAmount;
|
||||||
|
|
||||||
|
|||||||
@@ -57,6 +57,10 @@ public class TbPlussShopStaff implements Serializable {
|
|||||||
@ApiModelProperty(value = "密码")
|
@ApiModelProperty(value = "密码")
|
||||||
private String password;
|
private String password;
|
||||||
|
|
||||||
|
@Column(name = "`discount_type`")
|
||||||
|
@ApiModelProperty(value = "优惠类型 1 折扣 0 金额")
|
||||||
|
private String discountType;
|
||||||
|
|
||||||
@Column(name = "`max_discount_amount`")
|
@Column(name = "`max_discount_amount`")
|
||||||
@ApiModelProperty(value = "最大优惠金额")
|
@ApiModelProperty(value = "最大优惠金额")
|
||||||
private BigDecimal maxDiscountAmount;
|
private BigDecimal maxDiscountAmount;
|
||||||
|
|||||||
Reference in New Issue
Block a user