|
|
@@ -16,7 +16,7 @@ import { AdData } from "./AdData";
|
|
|
import { RewardData } from "./module/RewardData";
|
|
|
import MoreGameData from "./MoreGameData";
|
|
|
import { Data } from "../../mk/data/Data";
|
|
|
-import { RedBagCashData } from "./module/RedBagCashData";
|
|
|
+import { CashNormalData } from "./module/CashNormalData";
|
|
|
import { ReceiptNoticeData } from "./module/ReceiptNoticeData";
|
|
|
|
|
|
/**
|
|
|
@@ -55,7 +55,7 @@ class GData {
|
|
|
/** 到账通知 */
|
|
|
public receiptNotice: ReceiptNoticeData;
|
|
|
/** 红包提现(常规提现) */
|
|
|
- public redBagCash: RedBagCashData;
|
|
|
+ public cashNormal: CashNormalData;
|
|
|
/** 更多游戏 */
|
|
|
public moreGame: MoreGameData;
|
|
|
/** 模块数据 */
|
|
|
@@ -78,7 +78,7 @@ class GData {
|
|
|
this.luckybag = new LuckyBagData();
|
|
|
this.sign = new SignData();
|
|
|
this.receiptNotice = new ReceiptNoticeData();
|
|
|
- this.redBagCash = new RedBagCashData();
|
|
|
+ this.cashNormal = new CashNormalData();
|
|
|
this.moreGame = new MoreGameData();
|
|
|
|
|
|
this.moduleData = new Map<number, Data>();
|
|
|
@@ -88,7 +88,7 @@ class GData {
|
|
|
this.moduleData.set(Fun.pigbank, this.pigbank);
|
|
|
this.moduleData.set(Fun.luckybag, this.luckybag);
|
|
|
this.moduleData.set(Fun.sign, this.sign);
|
|
|
- this.moduleData.set(Fun.redBagCash, this.redBagCash);
|
|
|
+ this.moduleData.set(Fun.cashNormal, this.cashNormal);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -102,7 +102,7 @@ export enum Fun {
|
|
|
pigbank = 4, //存钱罐
|
|
|
luckybag = 5, //福袋
|
|
|
sign = 6, //签到
|
|
|
- redBagCash = 7, //常规提现
|
|
|
+ cashNormal = 7, //常规提现
|
|
|
}
|
|
|
|
|
|
declare global {
|