充值兑换码相关接口
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user