超级会员相关

This commit is contained in:
张松
2025-09-16 14:05:30 +08:00
parent ec1e94fdaf
commit 696ffc49ae
36 changed files with 1198 additions and 21 deletions

View File

@@ -11,6 +11,7 @@ public interface TableValueConstant {
enum Type {
RECHARGE("RECHARGE", "充值增积分"),
PAY("PAY", "购买会员增积分"),
MEMBER_TASK("MEMBER_TASK", "会员周奖励"),
COST("COST", "消费增积分");
private final String code;
private final String msg;
@@ -22,4 +23,19 @@ public interface TableValueConstant {
}
}
interface ConsumeDiscount {
@Getter
enum DiscountType {
FIXED("fixed", "固定减免"),
RANDOM("random", "随机减免");
private final String code;
private final String msg;
DiscountType(String code, String msg) {
this.code = code;
this.msg = msg;
}
}
}
}