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