This commit is contained in:
777
2025-09-25 01:20:29 +08:00
parent 633b5fd187
commit afd018f79f
11 changed files with 77 additions and 14 deletions

View File

@@ -12,6 +12,7 @@ import lombok.Setter;
*/
@Getter
public enum SystemConfigEnum {
TD_KF("", "土豆客服账号",SystemConfigGroupEnum.BUSINESS),
RANK_LOVE_DAY_AWARD("13800,10800,8800,5800,3800,2800,2800,2800,2800,2800,2800", "魅力榜日榜前10名奖励", SystemConfigGroupEnum.BUSINESS, new NumberListSystemConfigCheck(10)),
RANK_LOVE_WEEK_AWARD("88800,58800,38800,28800,18800,13800,13800,13800,13800,13800,13800,13800", "魅力榜周榜前10名奖励",SystemConfigGroupEnum.BUSINESS, new NumberListSystemConfigCheck(10)),
RANK_INVITE_DAY_AWARD("13800,10800,8800,5800,3800,2800,2800,2800,2800,2800,2800", "邀请榜日榜前10名奖励",SystemConfigGroupEnum.BUSINESS,new NumberListSystemConfigCheck(10)),

View File

@@ -13,6 +13,9 @@ public enum AnchorListQueryTypeEnum {
ACTIVE(1,"活跃查询"),
NEW(2,"新人查询"),
CITY(3,"同城查询"),
SERVICE_TIME(4,"时长"),
LOVE(5,"魅力"),
LOCATION(6,"附近"),
;
private final Integer code;
private final String text;