sm_equip_compose.php 756 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. ////////////////////
  3. // 由CodeGenerator创建。
  4. // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  5. // author: gwang
  6. // 日期: 2024-03-20 15:21:16
  7. ////////////////////
  8. /**
  9. * Static Model equip_compose 装备合成表
  10. */
  11. class sm_equip_compose
  12. {
  13. /**
  14. * @var Int32 用途未知!!请到数据库中添加字段注释。
  15. */
  16. public $id;
  17. /**
  18. * @var Int32 品阶 default(0)
  19. */
  20. public $qual;
  21. /**
  22. * @var Int32 1:typeId一样的 2:同一部位 3:本体(typeId一样)但是品质不同 default(0)
  23. */
  24. public $type;
  25. /**
  26. * @var Int32 合成需要的品阶要求
  27. */
  28. public $costQual;
  29. /**
  30. * @var Int32 消耗装备的数量
  31. */
  32. public $num;
  33. }