sm_weapon_levelexp.php 806 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. ////////////////////
  3. // 由CodeGenerator创建。
  4. // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  5. // author: gwang
  6. // 日期: 2021-12-21 14:42:47
  7. ////////////////////
  8. /**
  9. * Static Model weapon_levelexp 武器等级,品质,等级双索引
  10. */
  11. class sm_weapon_levelexp
  12. {
  13. /**
  14. * @var Int32 用途未知!!请到数据库中添加字段注释。
  15. */
  16. public $id;
  17. /**
  18. * @var Int32 武器品质 1 N 2 R 3 SR 4 SSR 5 UR default(0)
  19. */
  20. public $type;
  21. /**
  22. * @var Int32 当前等级
  23. */
  24. public $level;
  25. /**
  26. * @var Int32 达到当前等级所需经验 default(0)
  27. */
  28. public $needExp;
  29. /**
  30. * @var Int32 用途未知!!请到数据库中添加字段注释。 default(0)
  31. */
  32. public $requiredExp;
  33. }