|
@@ -17,6 +17,7 @@ import { CashNormalData } from "./module/CashNormalData";
|
|
|
import { ReceiptNoticeData } from "./module/ReceiptNoticeData";
|
|
import { ReceiptNoticeData } from "./module/ReceiptNoticeData";
|
|
|
import { BlessingBagData } from "./module/BlessingBagData";
|
|
import { BlessingBagData } from "./module/BlessingBagData";
|
|
|
import CashProData from "./module/CashProData";
|
|
import CashProData from "./module/CashProData";
|
|
|
|
|
+import { RedBagCashData } from "./module/RedBagCashData";
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 数据集合全局类
|
|
* 数据集合全局类
|
|
@@ -50,6 +51,8 @@ class GData {
|
|
|
public sign: SignData;
|
|
public sign: SignData;
|
|
|
/** 到账通知 */
|
|
/** 到账通知 */
|
|
|
public receiptNotice: ReceiptNoticeData;
|
|
public receiptNotice: ReceiptNoticeData;
|
|
|
|
|
+ /** 红包提现 */
|
|
|
|
|
+ public redBagCash: RedBagCashData;
|
|
|
/** 红包提现(常规提现) */
|
|
/** 红包提现(常规提现) */
|
|
|
public cashNormal: CashNormalData;
|
|
public cashNormal: CashNormalData;
|
|
|
/** 更多游戏 */
|
|
/** 更多游戏 */
|
|
@@ -75,6 +78,7 @@ class GData {
|
|
|
this.pigbank = new PigBankData();
|
|
this.pigbank = new PigBankData();
|
|
|
this.sign = new SignData();
|
|
this.sign = new SignData();
|
|
|
this.receiptNotice = new ReceiptNoticeData();
|
|
this.receiptNotice = new ReceiptNoticeData();
|
|
|
|
|
+ this.redBagCash = new RedBagCashData();
|
|
|
this.cashNormal = new CashNormalData();
|
|
this.cashNormal = new CashNormalData();
|
|
|
this.moreGame = new MoreGameData();
|
|
this.moreGame = new MoreGameData();
|
|
|
this.blessingBag = new BlessingBagData();
|
|
this.blessingBag = new BlessingBagData();
|
|
@@ -88,6 +92,7 @@ class GData {
|
|
|
this.moduleData.set(Fun.blessingBag, this.blessingBag);
|
|
this.moduleData.set(Fun.blessingBag, this.blessingBag);
|
|
|
this.moduleData.set(Fun.sign, this.sign);
|
|
this.moduleData.set(Fun.sign, this.sign);
|
|
|
this.moduleData.set(Fun.cashNormal, this.cashNormal);
|
|
this.moduleData.set(Fun.cashNormal, this.cashNormal);
|
|
|
|
|
+ this.moduleData.set(Fun.redBagCash, this.redBagCash);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -102,6 +107,7 @@ export enum Fun {
|
|
|
blessingBag = 5, //福袋
|
|
blessingBag = 5, //福袋
|
|
|
sign = 6, //签到
|
|
sign = 6, //签到
|
|
|
cashNormal = 7, //常规提现
|
|
cashNormal = 7, //常规提现
|
|
|
|
|
+ redBagCash = 8, //红包提现
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
declare global {
|
|
declare global {
|