M_Notice.lua 485 B

123456789101112131415
  1. M_Notice = {}
  2. function M_Notice:getData(key)
  3. if self.datas == nil then
  4. return nil
  5. end
  6. return self.datas[key]
  7. end
  8. function M_Notice:init()
  9. self.datas = {}
  10. self.datas[1] = {ID = 1, Icon = "fish702", Name = "欢迎光临", Content = "各位老板,欢迎您光临本游戏。愿您幸运永存!游戏中,如遇问题可联系我们的客服人员!祝您越玩越开心,收益翻翻翻。", Index = 1, StartTime = "2019.5.16", EndTime = "2019.6.17"}
  11. end
  12. M_Notice:init()