data.ts 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. export default [
  20. {
  21. id_column: '1',
  22. parent_column: null,
  23. name_column: 'root',
  24. count: 10,
  25. },
  26. {
  27. id_column: '2',
  28. parent_column: '1',
  29. name_column: 'software',
  30. count: 10,
  31. },
  32. {
  33. id_column: '3',
  34. parent_column: '1',
  35. name_column: 'hardware',
  36. count: 10,
  37. },
  38. {
  39. id_column: '4',
  40. parent_column: '2',
  41. name_column: 'freeware',
  42. count: 10,
  43. },
  44. {
  45. id_column: '5',
  46. parent_column: '2',
  47. name_column: 'shareware',
  48. count: 10,
  49. },
  50. {
  51. id_column: '6',
  52. parent_column: '2',
  53. name_column: 'opensource',
  54. count: 10,
  55. },
  56. {
  57. id_column: '7',
  58. parent_column: '3',
  59. name_column: 'computer',
  60. count: 10,
  61. },
  62. {
  63. id_column: '8',
  64. parent_column: '3',
  65. name_column: 'cpu',
  66. count: 10,
  67. },
  68. {
  69. id_column: '9',
  70. parent_column: '3',
  71. name_column: 'mouse',
  72. count: 10,
  73. },
  74. {
  75. id_column: '10',
  76. parent_column: '3',
  77. name_column: 'keyboard',
  78. count: 10,
  79. },
  80. {
  81. id_column: '11',
  82. parent_column: '8',
  83. name_column: 'intel',
  84. count: 10,
  85. },
  86. {
  87. id_column: '12',
  88. parent_column: '8',
  89. name_column: 'ryzen',
  90. count: 10,
  91. },
  92. {
  93. id_column: '13',
  94. parent_column: '9',
  95. name_column: 'razor',
  96. count: 10,
  97. },
  98. {
  99. id_column: '14',
  100. parent_column: '10',
  101. name_column: 'Wired',
  102. count: 10,
  103. },
  104. {
  105. id_column: '15',
  106. parent_column: '10',
  107. name_column: 'Wireless',
  108. count: 10,
  109. },
  110. {
  111. id_column: '16',
  112. parent_column: '10',
  113. name_column: 'Ergonomic',
  114. count: 10,
  115. },
  116. {
  117. id_column: '17',
  118. parent_column: '10',
  119. name_column: 'Cherry mx',
  120. count: 10,
  121. },
  122. ];