活动优惠编写完成

This commit is contained in:
2023-09-20 16:49:54 +08:00
parent ba828626c8
commit 39d662fce3
16 changed files with 331 additions and 24 deletions

View File

@@ -10,12 +10,11 @@ public enum CouponRangeType {
CATEGORY(3, "分类");
@EnumValue
private Integer code;
private String comment;
private final Integer code;
private final String comment;
CouponRangeType(Integer code, String comment) {
this.code = code;
this.comment = comment;
}
}