|
@@ -8,6 +8,7 @@ import { StorageData } from "./StorageData";
|
|
|
import { WechatData } from "./WechatData";
|
|
import { WechatData } from "./WechatData";
|
|
|
import { HelpData } from "./module/HelpData";
|
|
import { HelpData } from "./module/HelpData";
|
|
|
import { PigBankData } from "./module/PigBankData";
|
|
import { PigBankData } from "./module/PigBankData";
|
|
|
|
|
+import { SignData } from "./module/SignData";
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 数据集合全局类
|
|
* 数据集合全局类
|
|
@@ -28,6 +29,7 @@ class g {
|
|
|
public storageData:StorageData;
|
|
public storageData:StorageData;
|
|
|
public help:HelpData;
|
|
public help:HelpData;
|
|
|
public pigbank:PigBankData;
|
|
public pigbank:PigBankData;
|
|
|
|
|
+ public sign:SignData;
|
|
|
|
|
|
|
|
public moduleDataMap:Map<string,Data>;
|
|
public moduleDataMap:Map<string,Data>;
|
|
|
|
|
|
|
@@ -39,6 +41,7 @@ class g {
|
|
|
this.httpData = new HttpData();
|
|
this.httpData = new HttpData();
|
|
|
this.adData = new AdData();
|
|
this.adData = new AdData();
|
|
|
this.storageData = new StorageData();
|
|
this.storageData = new StorageData();
|
|
|
|
|
+ this.sign = new SignData();
|
|
|
|
|
|
|
|
this.help = new HelpData();
|
|
this.help = new HelpData();
|
|
|
this.pigbank = new PigBankData();
|
|
this.pigbank = new PigBankData();
|