M_ActivityGetRichDrawCFG.ts 579 B

123456789101112131415161718192021222324
  1. // ID:编号, FullPrice:累充价格, DrawCount:增加抽奖次数
  2. export default class M_ActivityGetRichDrawCFG {
  3. private static data =
  4. {"1":{"ID":1,"FullPrice":48,"DrawCount":1}
  5. ,"2":{"ID":2,"FullPrice":98,"DrawCount":1}
  6. ,"3":{"ID":3,"FullPrice":128,"DrawCount":1}
  7. }// ID:编号, FullPrice:累充价格, DrawCount:增加抽奖次数
  8. static getData(key: any): any {
  9. if (key == null || key == undefined)
  10. return null;
  11. return this.data[key];
  12. }
  13. static getAllData(): any {
  14. return this.data;
  15. }
  16. }