M_ReturnBenifitSignCFG.ts 750 B

1234567891011121314151617181920212223242526272829303132
  1. // Day:天数, Item:奖励物品, ItemCount:奖励数量
  2. export default class M_ReturnBenifitSignCFG {
  3. private static data =
  4. {"1":{"Day":1,"Item":1,"ItemCount":88888}
  5. ,"2":{"Day":2,"Item":1,"ItemCount":88888}
  6. ,"3":{"Day":3,"Item":1,"ItemCount":88888}
  7. ,"4":{"Day":4,"Item":1,"ItemCount":88888}
  8. ,"5":{"Day":5,"Item":1,"ItemCount":88888}
  9. ,"6":{"Day":6,"Item":1,"ItemCount":88888}
  10. ,"7":{"Day":7,"Item":1,"ItemCount":188888}
  11. }// Day:天数, Item:奖励物品, ItemCount:奖励数量
  12. static getData(key: any): any {
  13. if (key == null || key == undefined)
  14. return null;
  15. return this.data[key];
  16. }
  17. static getAllData(): any {
  18. return this.data;
  19. }
  20. }