超级会员购买相关

This commit is contained in:
张松
2025-09-12 10:36:50 +08:00
parent 5dd5e09770
commit bd47a96228
14 changed files with 278 additions and 23 deletions

View File

@@ -0,0 +1,25 @@
package com.czg.constant;
import lombok.Getter;
/**
* @author Administrator
*/
public interface TableValueConstant {
interface MemberExpFlow {
@Getter
enum Type {
RECHARGE("RECHARGE", "充值增积分"),
PAY("PAY", "购买会员增积分"),
COST("COST", "消费增积分");
private final String code;
private final String msg;
Type(String code, String msg) {
this.code = code;
this.msg = msg;
}
}
}
}