充值兑换码相关接口

This commit is contained in:
张松
2025-10-21 14:06:03 +08:00
parent 02cbb27eac
commit 80c5bc6fec
21 changed files with 1496 additions and 0 deletions

View File

@@ -22,6 +22,23 @@ public interface TableValueConstant {
}
}
}
interface EnableConfig {
@Getter
enum Type {
RECHARGE_REDEMPTION("RECHARGE_REDEMPTION", "充值兑换"),
PAY("PAY", "购买会员增积分"),
MEMBER_TASK("MEMBER_TASK", "会员周奖励"),
COST("COST", "消费增积分");
private final String code;
private final String msg;
Type(String code, String msg) {
this.code = code;
this.msg = msg;
}
}
}
interface ConsumeDiscount {