M_LotteryChipCFG.ts 695 B

12345678910111213141516171819202122
  1. // Recharge:充值额度, RechargeUp:充值额度, RetChipRate:返回话费碎片百分比, QuickDeduction:速算扣除
  2. export default class M_LotteryChipCFG {
  3. private static data =
  4. {"0":{"Recharge":0,"RechargeUp":200,"RetChipRate":1500,"QuickDeduction":3000}
  5. ,"200":{"Recharge":200,"RechargeUp":-1,"RetChipRate":300,"QuickDeduction":0}
  6. }// Recharge:充值额度, RechargeUp:充值额度, RetChipRate:返回话费碎片百分比, QuickDeduction:速算扣除
  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. }