12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2019-12-05 18:20:35
- ////////////////////
- /**
- * Static Model item_segment
- */
- class sm_item_segment
- {
- /**
- * @var Int32 查询用的ID
- */
- public $typeId;
- /**
- * @var Int32 有效时长(单位s) default(0)
- */
- public $expireTs;
- /**
- * @var Int32 原型英雄的ID
- */
- public $protoHeroID;
- /**
- * @var Int32 元素
- */
- public $element;
- /**
- * @var Int32 合成需要的数量
- */
- public $mergeCount;
- }
|