12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2021-12-21 14:42:32
- ////////////////////
- /**
- * 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;
- }
|