12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2023-07-21 11:44:13
- ////////////////////
- /**
- * Static Model exp_skillselect 战斗经验表
- */
- class sm_exp_skillselect
- {
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。
- */
- public $id;
- /**
- * @var Int32 当前等级
- */
- public $level;
- /**
- * @var Int32 达到当前等级所需经验 default(0)
- */
- public $needExp;
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。 default(0)
- */
- public $requiredExp;
- }
|