generated from root/miduo_server
新增活动类型
parent
260871f9ca
commit
d59c783382
|
@ -170,4 +170,5 @@ public interface ActivityType {
|
||||||
int SEASON_ACTIVITY = 800; //赛季活动
|
int SEASON_ACTIVITY = 800; //赛季活动
|
||||||
|
|
||||||
int QUE_QUE_EMPTY = 213;//千千渠道活动
|
int QUE_QUE_EMPTY = 213;//千千渠道活动
|
||||||
|
int SUPER_DISCOUNT_STORE = 214;//超级折扣商店
|
||||||
}
|
}
|
||||||
|
|
|
@ -131,10 +131,8 @@ public enum ActivityTypeEnum {
|
||||||
GENERAL_PROGRESS_RANK(ActivityType.GENERAL_PROGRESS_RANK, GeneralProgressRankActivity::new),//开服冲榜,契约养成榜
|
GENERAL_PROGRESS_RANK(ActivityType.GENERAL_PROGRESS_RANK, GeneralProgressRankActivity::new),//开服冲榜,契约养成榜
|
||||||
ADJUTANT_PROGRESS_RANK(ActivityType.ADJUTANT_PROGRESS_RANK, AdjutantProgressRankActivity::new),//开服冲榜,先驱养成榜
|
ADJUTANT_PROGRESS_RANK(ActivityType.ADJUTANT_PROGRESS_RANK, AdjutantProgressRankActivity::new),//开服冲榜,先驱养成榜
|
||||||
|
|
||||||
/**
|
|
||||||
* 千千的空活动
|
|
||||||
*/
|
|
||||||
QUE_QUE_EMPTY(ActivityType.QUE_QUE_EMPTY, DefaultEmptyActivity::new),//千千空活动
|
QUE_QUE_EMPTY(ActivityType.QUE_QUE_EMPTY, DefaultEmptyActivity::new),//千千空活动
|
||||||
|
SUPER_DISCOUNT_STORE(ActivityType.SUPER_DISCOUNT_STORE, DefaultEmptyActivity::new),//超级折扣商店
|
||||||
;
|
;
|
||||||
private int type;
|
private int type;
|
||||||
private Function<Integer, AbstractActivity> toActivityFunction;
|
private Function<Integer, AbstractActivity> toActivityFunction;
|
||||||
|
|
Loading…
Reference in New Issue