123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2024-03-20 15:21:16
- ////////////////////
- /**
- * Static Model equip_compose 装备合成表
- */
- class sm_equip_compose
- {
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。
- */
- public $id;
- /**
- * @var Int32 品阶 default(0)
- */
- public $qual;
- /**
- * @var Int32 1:typeId一样的 2:同一部位 3:本体(typeId一样)但是品质不同 default(0)
- */
- public $type;
- /**
- * @var Int32 合成需要的品阶要求
- */
- public $costQual;
- /**
- * @var Int32 消耗装备的数量
- */
- public $num;
- }
|