sm_smelting.php 629 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. ////////////////////
  3. // 由CodeGenerator创建。
  4. // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  5. // author: gwang
  6. // 日期: 2020-02-12 08:05:36
  7. ////////////////////
  8. /**
  9. * Static Model smelting 熔炼实验室
  10. */
  11. class sm_smelting
  12. {
  13. /**
  14. * @var Int32 熔炼等级
  15. */
  16. public $grade;
  17. /**
  18. * @var Int32 消耗金币
  19. */
  20. public $spendgold;
  21. /**
  22. * @var Int32 消耗道具数量
  23. */
  24. public $costamoun;
  25. /**
  26. * @var Int32 成功率
  27. */
  28. public $successrate;
  29. /**
  30. * @var Single 属性加成
  31. */
  32. public $attribute;
  33. }