12345678910111213141516171819202122232425262728293031323334 |
- <?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;
- }
|