123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2021-12-21 14:42:47
- ////////////////////
- /**
- * Static Model weapon_levelexp 武器等级,品质,等级双索引
- */
- class sm_weapon_levelexp
- {
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。
- */
- public $id;
- /**
- * @var Int32 武器品质 1 N 2 R 3 SR 4 SSR 5 UR default(0)
- */
- public $type;
- /**
- * @var Int32 当前等级
- */
- public $level;
- /**
- * @var Int32 达到当前等级所需经验 default(0)
- */
- public $needExp;
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。 default(0)
- */
- public $requiredExp;
- }
|