12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2021-03-18 16:14:22
- ////////////////////
- /**
- * Static Model yanlingLeve 言灵等级
- */
- class sm_yanlingLeve
- {
- /**
- * @var Int32 等级 default(0)
- */
- public $id;
- /**
- * @var Int32 金币消耗 default(0)
- */
- public $goldCost;
- /**
- * @var Int32 资源点消耗 default(0)
- */
- public $pointCost;
- /**
- * @var String 用途未知!!请到数据库中添加字段注释。
- */
- public $etc;
- }
|