123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- <?php
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- namespace loyalsoft;
- /**
- * Description of Info_PrivateState
- *
- * @author c'y'zhao
- */
- class Info_PrivateState extends Object_ext {
- /**
- * 章节宝箱的购买记录
- * @var type
- */
- #[ArrayType]
- public $gateGiftReceived = array();
- /**
- * 每日商店的购买记录
- * @var type
- */
- #[ArrayType]
- public $dailyShopReceived = array();
-
- /**
- * 每日商店广告次数
- * @var type
- */
- public $dailyShop_GuangGaoNum = 0;
- public $dailyShop_GuangGaoTs = 0;
-
- /**
- * 每日随机到的信息
- * @var type
- */
- #[ArrayType]
- public $dailyShopRandItems = array();
- /**
- * 金币商店购买记录
- */
- #[ArrayType]
- public $goldShopReceived = array();
- /**
- * 钻石商城的购买记录
- */
- #[ArrayType]
- public $cashShopReceived = array();
- public $supplyBichuDic = null;
- // public $supplyShopNum_JunyongBox = 0;
- //
- // public $supplyShopNum_BujiBox = 0;
- // /**
- // * 军用物资箱 X次必出后重置
- // * @var type
- // */
- // public $supplyShop_JunyongBoxBichuNum = 0;
- //
- // /**
- // * 补给箱 X次必出后重置
- // * @var type
- // */
- // public $supplyShop_BujiBoxBichuNum = 0;
- // /**
- // * 军用物资箱是否已经有必出了
- // * @var type
- // */
- // public $supplyShop_JunyongBoxBichu = 0;
- //
- // /**
- // * 补给箱 是否已经有必出了
- // * @var type
- // */
- // public $supplyShop_BujiBoxBichu = 0;
- /**
- * 每天买的数量,每日重置(S级军备和补给箱)
- * @var type
- */
- public $junbeiShopNumRecord = null;
- /**
- * 总的数量,每日不重置,必出后重置
- * @var type
- */
- public $junbeiShop_AllNumRecord = null;
- public $junbeiShop_XinYuan = null;
-
- /**
- * 登录天数
- * @var array[]
- */
- #[ArrayType]
- public $LoginDays = array();
- /**
- * @var array[] 7日签到领取数据
- */
- #[ArrayType]
- public $day7_drawed = array();
-
- /**
- * 7日 累计
- * @var type
- */
- public $day7_accumulate = 0;
-
- /**
- * 7日 累计奖励领取记录
- * @var type
- */
- #[ArrayType]
- public $day7_accumulateDrawed = array();
- /**
- * 普通宝石免费领取时间记录
- * @var long
- */
- public $lastFreeGetTs_ShopBoxCommon = 0;
- /**
- * 璀璨宝石免费领取时间记录
- * @var type
- */
- public $lastFreeGetTs_ShopBoxBright = 0;
- /**
- * 普通宝石购买次数记录
- * @var type
- */
- public $buyNum_ShopBoxCommon = 0;
- /**
- * 璀璨宝石购买次数记录
- * @var type
- */
- public $buyNum_ShopBoxBright = 0;
-
- /**
- * 金币商城第一个冷却时间记录
- * @var type
- */
- public $goldShop_GuangGaoTs_1 = 0;
- public $goldShop_GuangGaoNum = 0;
- /**
- * 金币商城第二个冷却时间记录
- * @var type
- */
- public $goldShop_GuangGaoTs_2 = 0;
- /**
- * 金币商城第三个冷却时间记录
- * @var type
- */
- public $goldShop_GuangGaoTs_3 = 0;
-
- /**
- * 月卡
- * @var type
- */
- //public $monthCardShop_Received = array();
-
- /**
- * 资源月卡购买时间记录
- * @var int
- */
- public $monthCardShop_ts = 0;
-
- /**
- * 特权月卡购买时间记录
- * @var int
- */
- public $honourCardShop_ts = 0;
-
- public function initialize() {
- $this->junbeiShopNumRecord = new \stdClass();
- $this->junbeiShop_AllNumRecord = new \stdClass();
- $this->junbeiShop_XinYuan = new \stdClass();
- }
- public function __construct($arg = null) {
- if ($arg == null) {
- if ($this->junbeiShopNumRecord == null) {
- $this->junbeiShopNumRecord = new \stdClass();
- $this->junbeiShop_AllNumRecord = new \stdClass();
- $this->junbeiShop_XinYuan = new \stdClass();
- $this->supplyBichuDic = new \stdClass();
- }
- } else {
- parent::__construct($arg);
- }
- }
- }
|