RankingGroupConfig.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. local root = {
  2. {
  3. id = 101,
  4. isEnabled = true,
  5. timeStartActive = '2021-01-01 00:00:00',
  6. timeStartRegister = '2021-01-01 00:00:00',
  7. timeEndRegister = '2022-06-01 23:59:59',
  8. rankingId = 101
  9. },
  10. {
  11. id = 102,
  12. isEnabled = true,
  13. timeStartActive = '2021-06-02 00:00:00',
  14. timeStartRegister = '2022-06-02 00:00:00',
  15. timeEndRegister = '2022-06-20 00:00:00',
  16. rankingId = 102
  17. },
  18. {
  19. id = 103,
  20. isEnabled = true,
  21. timeStartActive = '2022-06-20 00:00:00',
  22. timeStartRegister = '2022-06-20 00:00:00',
  23. timeEndRegister = '2022-06-27 00:00:00',
  24. rankingId = 103
  25. },
  26. {
  27. id = 104,
  28. isEnabled = true,
  29. timeStartActive = '2022-06-20 00:00:00',
  30. timeEndActive = '2022-07-11 00:00:00',
  31. timeStartRegister = '2022-06-27 00:00:00',
  32. timeEndRegister = '2022-07-04 00:00:00',
  33. rankingId = 104
  34. },
  35. {
  36. id = 105,
  37. isEnabled = true,
  38. timeStartActive = '2022-06-20 00:00:00',
  39. timeEndActive = '2022-07-11 00:00:00',
  40. timeStartRegister = '2022-07-04 00:00:00',
  41. timeEndRegister = '2022-07-11 00:00:00',
  42. rankingId = 105
  43. },
  44. {
  45. id = 10001,
  46. isEnabled = true,
  47. timeStartActive = '2022-07-11 00:00:00',
  48. timeStartRegister = '2022-06-27 00:00:00',
  49. rankingId = 10001
  50. }
  51. }
  52. return root