12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2023-03-14 14:23:00
- ////////////////////
- /**
- * Static Model item_pills 药水类道具
- */
- class sm_item_pills
- {
- /**
- * @var Int32 查询用的ID
- */
- public $typeId;
- /**
- * @var Int32 修改英雄属性的id: 0 hp, 1 mp, 2 体力 default(0)
- */
- public $attrType;
- /**
- * @var Int32 修改数值 default(0)
- */
- public $number;
- /**
- * @var String 备注
- */
- public $desc;
- }
|