M_ActivityFishingCeleBaseInfo.ts 609 B

12345678910111213141516171819202122
  1. // Key:Key, Value:数值, StringValue:字符串
  2. export default class M_ActivityFishingCeleBaseInfo {
  3. private static data =
  4. {"GiftLotteryRewardItem":{"Key":"GiftLotteryRewardItem","Value":1,"StringValue":"抽礼包5次奖励道具ID"}
  5. ,"LotteryDiamond":{"Key":"LotteryDiamond","Value":20,"StringValue":"抽奖钻石消耗"}
  6. }// Key:Key, Value:数值, StringValue:字符串
  7. static getData(key: any): any {
  8. if (key == null || key == undefined)
  9. return null;
  10. return this.data[key];
  11. }
  12. static getAllData(): any {
  13. return this.data;
  14. }
  15. }