1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2020-02-12 08:05:15
- ////////////////////
- /**
- * Static Model item_buffcard buff类道具
- */
- class sm_item_buffcard
- {
- /**
- * @var Int32 查询用的ID
- */
- public $typeId;
- /**
- * @var Int32 有效时间 default(0)
- */
- public $expireTs;
- /**
- * @var Int32 使用等级限制 default(0)
- */
- public $useNeedLvl;
- /**
- * @var Int32 加成buff_id default(0)
- */
- public $buff_ID;
- }
|