12345678910111213141516171819202122232425262728 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2020-09-02 18:00:43
- ////////////////////
- /**
- * Static Model item_box 宝箱类道具
- */
- class sm_item_box
- {
- /**
- * @var Int32 查询用的ID
- */
- public $typeId;
- /**
- * @var String 奖品池类型id,(boxPool里面的dropType),逗号分隔
- */
- public $contents;
- }
|