1234567891011121314151617181920212223242526272829303132 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2024-11-01 16:19:57
- ////////////////////
- /**
- * Static Model equip_compose 装备合成表
- */
- class sm_equip_compose
- {
- /**
- * @var Int32 自增
- */
- public $id;
- /**
- * @var Int32 品阶
- */
- public $qual;
- /**
- * @var String 合成需要的装备条件;1:本体类型 2:同部位类型
- */
- public $compose_condition;
- }
|