12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2021-12-21 14:42:31
- ////////////////////
- /**
- * Static Model hero_levelexp_costitem 英雄的升级——成长可消耗的道具表
- */
- class sm_hero_levelexp_costitem
- {
- /**
- * @var Int32 物品id
- */
- public $typeId;
- /**
- * @var String 名称
- */
- public $name;
- /**
- * @var Int32 提供的经验值 default(0)
- */
- public $dogExp;
- /**
- * @var Int32 消耗金币
- */
- public $costGold;
- }
|