1234567891011121314151617181920 |
- // ID:ID, LotteryCount:抽奖次数, NeedCount:需要钻石, TicketCount:奖励抽奖券数量
- export default class M_ActivityFishingCeleLotteryTicketShop {
- private static data =
- {"1":{"ID":1,"LotteryCount":1,"NeedCount":20,"TicketCount":1}
- }// ID:ID, LotteryCount:抽奖次数, NeedCount:需要钻石, TicketCount:奖励抽奖券数量
- static getData(key: any): any {
- if (key == null || key == undefined)
- return null;
- return this.data[key];
- }
- static getAllData(): any {
- return this.data;
- }
- }
|