会员积分针对代码格式、功能优化

1.修改积分抵扣单位
This commit is contained in:
xiaqing 2023-08-09 22:31:55 +08:00
parent bae94d06ac
commit 8f43fba629
2 changed files with 5 additions and 5 deletions

View File

@ -17,13 +17,13 @@ public class MemberPointConfigBaseVO {
@Schema(description = "积分抵扣开关", required = true, example = "true")
private Boolean tradeDeductEnable;
@Schema(description = "积分抵扣,单位:", example = "13506")
private BigDecimal tradeDeductUnitPrice;
@Schema(description = "积分抵扣,单位:", example = "13506")
private Integer tradeDeductUnitPrice;
@Schema(description = "积分抵扣最大值", example = "32428")
private Long tradeDeductMaxPrice;
private Integer tradeDeductMaxPrice;
@Schema(description = "1 元赠送多少分")
private Long tradeGivePoint;
private Integer tradeGivePoint;
}

View File

@ -37,7 +37,7 @@ public class MemberPointConfigDO extends BaseDO {
*
* 1 积分抵扣多少分
*/
private BigDecimal tradeDeductUnitPrice;
private Integer tradeDeductUnitPrice;
/**
* 积分抵扣最大值
*/