源战役
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 rivejä
843 B

1 kuukausi sitten
  1. %%%-------------------------------------------------------------------
  2. %%% @doc 惊喜红包-头文件
  3. %%% Module : red_packet.hrl
  4. %%% @end
  5. %%% Created : 2020-10-27
  6. %%% @Author : tyl
  7. %%%-------------------------------------------------------------------
  8. %% 配置
  9. -record(base_sup_red_packet, {
  10. id = 0 %% 奖励唯一Id
  11. ,draw_pool = 0 %% 抽签池Id
  12. ,recharge_gold = 1 %% 需要达到的充值勾玉数
  13. ,mid_draw = {0, 0} %% 中档奖励{奖励,权重}
  14. ,up_draw = {0, 0} %% 上档奖励
  15. ,dream_draw = {0, 0} %% 上上档奖励
  16. }).
  17. -record(sup_red_packet, {
  18. draw_times = 0 %% 抽奖次数(用于判断是否首抽)
  19. ,grade = 0 %% 奖励档位
  20. ,draw_id = 0 %% 已经抽取到的奖励Id(对应不同充值金额)
  21. ,box_received = 0 %% 宝箱是否已经领取
  22. }).