## 会员等级添加银卡、金卡;

This commit is contained in:
cabbage 2025-10-27 11:32:31 +08:00
parent 2f449c8970
commit 20751ae6fc
1 changed files with 11 additions and 1 deletions

View File

@ -27,7 +27,17 @@ public enum EGrade {
/** /**
* 会员 * 会员
*/ */
MEMBER(2, 30, "V1", 0, MemberFrameworkConstants.Hi_Pink), MEMBER(2, 30, "会员", 0, MemberFrameworkConstants.Hi_Pink),
/**
* 银卡
*/
HAI_FAN(3, 40, "银卡", 0, MemberFrameworkConstants.YOU_KE),
/**
* 金卡
*/
YOU_KE(4, 50, "金卡", 0, MemberFrameworkConstants.MAKER),
; ;