源战役
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
703 B

%%%--------------------------------------
%%% @Module : joy_wish.hrl
%%% @Author : lhy
%%% @Created : 2019-05-24
%%% @Description: 欢乐许愿
%%%--------------------------------------
-record(joy_wish, {
wish_times = #{} %% 活动开启期间的许愿次数 {Type, SubType} => Times
}).
-define(sql_joy_wish_select,
<<"select `act_type`, `sub_type`, `times` from `custom_act_joy_wish_times` where `role_id` = ~p">>).
-define(sql_joy_wish_replace,
<<"replace into `custom_act_joy_wish_times` (`role_id`,`act_type`,`sub_type`,`times`) values(~p,~p,~p,~p)">>).
-define(sql_joy_wish_delete,
<<"delete from `custom_act_joy_wish_times` where act_type=~p and sub_type = ~p ">>).