源战役
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.

29 lines
1.2 KiB

  1. %%----------------------------------------------------
  2. %% @Describe 版本更新信息
  3. %% @Creator yxf
  4. %% @Date 20171121
  5. %%----------------------------------------------------
  6. -define(VERSION_USING, 1). %% 版本启用
  7. -define(VERSION_NOT_USING, 0). %% 版本未启用
  8. -define(VersionUpgradeBagOpenLv, 30).
  9. %%----------------------------------------------------
  10. %% 功能表
  11. %%---------------------------------------------------
  12. -record(version_upgradebag,{
  13. state = 0, %% 领取状态
  14. rewards = [] %% 奖励
  15. }).
  16. %%----------------------------------------------------
  17. %% 更新配置信息
  18. %%----------------------------------------------------
  19. -record(base_version_upgradebag_reward,{
  20. version_code = 0, %% 编号
  21. color = 0, %% 公告颜色
  22. content = "", %% 公告内容
  23. name = "", %% 礼包名称
  24. rewards = [], %% 奖励
  25. starttime = 0, %% 开始时间
  26. endtime = 0, %% 结束时间
  27. state = 0 %% 状态
  28. }).