Info_PrivateState.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <?php
  2. /*
  3. * To change this license header, choose License Headers in Project Properties.
  4. * To change this template file, choose Tools | Templates
  5. * and open the template in the editor.
  6. */
  7. namespace loyalsoft;
  8. /**
  9. * Description of Info_PrivateState
  10. *
  11. * @author c'y'zhao
  12. */
  13. class Info_PrivateState extends Object_ext {
  14. /**
  15. * 章节宝箱的购买记录
  16. * @var type
  17. */
  18. #[ArrayType]
  19. public $gateGiftReceived = array();
  20. /**
  21. * 每日商店的购买记录
  22. * @var type
  23. */
  24. #[ArrayType]
  25. public $dailyShopReceived = array();
  26. /**
  27. * 每日商店广告次数
  28. * @var type
  29. */
  30. public $dailyShop_GuangGaoNum = 0;
  31. public $dailyShop_GuangGaoTs = 0;
  32. /**
  33. * 每日随机到的信息
  34. * @var type
  35. */
  36. #[ArrayType]
  37. public $dailyShopRandItems = array();
  38. /**
  39. * 金币商店购买记录
  40. */
  41. #[ArrayType]
  42. public $goldShopReceived = array();
  43. /**
  44. * 钻石商城的购买记录
  45. */
  46. #[ArrayType]
  47. public $cashShopReceived = array();
  48. public $supplyBichuDic = null;
  49. // public $supplyShopNum_JunyongBox = 0;
  50. //
  51. // public $supplyShopNum_BujiBox = 0;
  52. // /**
  53. // * 军用物资箱 X次必出后重置
  54. // * @var type
  55. // */
  56. // public $supplyShop_JunyongBoxBichuNum = 0;
  57. //
  58. // /**
  59. // * 补给箱 X次必出后重置
  60. // * @var type
  61. // */
  62. // public $supplyShop_BujiBoxBichuNum = 0;
  63. // /**
  64. // * 军用物资箱是否已经有必出了
  65. // * @var type
  66. // */
  67. // public $supplyShop_JunyongBoxBichu = 0;
  68. //
  69. // /**
  70. // * 补给箱 是否已经有必出了
  71. // * @var type
  72. // */
  73. // public $supplyShop_BujiBoxBichu = 0;
  74. /**
  75. * 每天买的数量,每日重置(S级军备和补给箱)
  76. * @var type
  77. */
  78. public $junbeiShopNumRecord = null;
  79. /**
  80. * 总的数量,每日不重置,必出后重置
  81. * @var type
  82. */
  83. public $junbeiShop_AllNumRecord = null;
  84. public $junbeiShop_XinYuan = null;
  85. /**
  86. * 登录天数
  87. * @var array[]
  88. */
  89. #[ArrayType]
  90. public $LoginDays = array();
  91. /**
  92. * @var array[] 7日签到领取数据
  93. */
  94. #[ArrayType]
  95. public $day7_drawed = array();
  96. /**
  97. * 7日 累计
  98. * @var type
  99. */
  100. public $day7_accumulate = 0;
  101. /**
  102. * 7日 累计奖励领取记录
  103. * @var type
  104. */
  105. #[ArrayType]
  106. public $day7_accumulateDrawed = array();
  107. /**
  108. * 普通宝石免费领取时间记录
  109. * @var long
  110. */
  111. public $lastFreeGetTs_ShopBoxCommon = 0;
  112. /**
  113. * 璀璨宝石免费领取时间记录
  114. * @var type
  115. */
  116. public $lastFreeGetTs_ShopBoxBright = 0;
  117. /**
  118. * 普通宝石购买次数记录
  119. * @var type
  120. */
  121. public $buyNum_ShopBoxCommon = 0;
  122. /**
  123. * 璀璨宝石购买次数记录
  124. * @var type
  125. */
  126. public $buyNum_ShopBoxBright = 0;
  127. /**
  128. * 金币商城第一个冷却时间记录
  129. * @var type
  130. */
  131. public $goldShop_GuangGaoTs_1 = 0;
  132. public $goldShop_GuangGaoNum = 0;
  133. /**
  134. * 金币商城第二个冷却时间记录
  135. * @var type
  136. */
  137. public $goldShop_GuangGaoTs_2 = 0;
  138. /**
  139. * 金币商城第三个冷却时间记录
  140. * @var type
  141. */
  142. public $goldShop_GuangGaoTs_3 = 0;
  143. /**
  144. * 月卡
  145. * @var type
  146. */
  147. //public $monthCardShop_Received = array();
  148. /**
  149. * 资源月卡购买时间记录
  150. * @var int
  151. */
  152. public $monthCardShop_ts = 0;
  153. /**
  154. * 特权月卡购买时间记录
  155. * @var int
  156. */
  157. public $honourCardShop_ts = 0;
  158. public function initialize() {
  159. $this->junbeiShopNumRecord = new \stdClass();
  160. $this->junbeiShop_AllNumRecord = new \stdClass();
  161. $this->junbeiShop_XinYuan = new \stdClass();
  162. }
  163. public function __construct($arg = null) {
  164. if ($arg == null) {
  165. if ($this->junbeiShopNumRecord == null) {
  166. $this->junbeiShopNumRecord = new \stdClass();
  167. $this->junbeiShop_AllNumRecord = new \stdClass();
  168. $this->junbeiShop_XinYuan = new \stdClass();
  169. $this->supplyBichuDic = new \stdClass();
  170. }
  171. } else {
  172. parent::__construct($arg);
  173. }
  174. }
  175. }