123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <?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
- */
- #[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();
- 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);
- }
- }
- }
|