实现多级树形结构查询 比如分类(父分类、子分类)

数据库表结构

1
2
3
4
5
6
7
8
9
10
CREATE TABLE `course_category` (
`id` varchar(20) NOT NULL COMMENT '主键',
`name` varchar(32) NOT NULL COMMENT '分类名称',
`label` varchar(32) DEFAULT NULL COMMENT '分类标签默认和名称一样',
`parentid` varchar(20) NOT NULL DEFAULT '0' COMMENT '父结点id(第一级的父节点是0,自关联字段id)',
`is_show` tinyint DEFAULT NULL COMMENT '是否显示',
`orderby` int DEFAULT NULL COMMENT '排序字段',
`is_leaf` tinyint DEFAULT NULL COMMENT '是否叶子',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 ROW_FORMAT=DYNAMIC COMMENT='课程分类';

仅用于分类级别固定

比如固定两级或者三级可以用 表的自连接

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SELECT
one.id one_id,
one.label one_label,
two.id two_id,
two.label two_label
FROM
course_category one
INNER JOIN course_category two ON one.id = two.parentid
WHERE
one.parentid = '1'
AND one.is_show = '1'
AND two.is_show = '1'
ORDER BY
one.orderby,
two.orderby;

image-20240522162346133

递归查询方法mysql8支持(灵活)

递归并不会降低数据库的性能,但是为了避免无限递归 默认递归次数为1000次,可以通过设置cte_max_recursion_depth参数增加递归深度还可以设置max_execution_time限制执行时间,超过此时间也会终止递归操作。

根据子查到所有的父

1
2
3
4
5
6
WITH recursive t1 as(
select * from course_category where id ='1-1-1'
UNION all
select course_category.* from course_category INNER JOIN t1 on t1.parentid= course_category.id
)
SELECT * from t1 order by t1.id, t1.orderby;

image-20240522162403624

根据父查到所有的子

1
2
3
4
5
6
WITH recursive t2 as(
select * from course_category where id ='1'
UNION all
select course_category.* from course_category INNER JOIN t2 on t2.id= course_category.parentid
)
SELECT * from t2 order by t2.id, t2.orderby;

image-20240522162420892

java 代码实现

实体类po
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.jhj.content.model.po;

import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;

import java.io.Serializable;

/**
* <p>
* 课程分类
* </p>
*
* @author jhj
*/
@Data
@TableName("course_category")
public class CourseCategory implements Serializable {

private static final long serialVersionUID = 1L;

/**
* 主键
*/
private String id;

/**
* 分类名称
*/
private String name;

/**
* 分类标签默认和名称一样
*/
private String label;

/**
* 父结点id(第一级的父节点是0,自关联字段id)
*/
private String parentid;

/**
* 是否显示
*/
private Integer isShow;

/**
* 排序字段
*/
private Integer orderby;

/**
* 是否叶子
*/
private Integer isLeaf;


}
返回信息封装
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.jhj.content.model.dto;

import com.jhj.content.model.po.CourseCategory;
import lombok.Data;
import lombok.ToString;

import java.io.Serializable;
import java.util.List;

/**
* @author jhj
* @version 1.0.0
* @ClassName CourseCategoryTreeDto.java
* @Description 课程分类树形结构
* @createTime 2024年05月22日 15:18:00
*/
@Data
@ToString
public class CourseCategoryTreeDto extends CourseCategory implements Serializable {
List<CourseCategoryTreeDto> childrenTreeNodes;
}
mapper.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.jhj.content.mapper.CourseCategoryMapper">

<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="com.jhj.content.model.po.CourseCategory">
<id column="id" property="id" />
<result column="name" property="name" />
<result column="label" property="label" />
<result column="parentid" property="parentid" />
<result column="is_show" property="isShow" />
<result column="orderby" property="orderby" />
<result column="is_leaf" property="isLeaf" />
</resultMap>

<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
id, name, label, parentid, is_show, orderby, is_leaf
</sql>

<select id="selectTreeNode" parameterType="string" resultType="com.jhj.content.model.dto.CourseCategoryTreeDto">
WITH recursive t2 as(
select * from course_category where id =#{id}
UNION all
select course_category.* from course_category INNER JOIN t2 on t2.id= course_category.parentid
)
SELECT * from t2 order by t2.id, t2.orderby;
</select>
</mapper>
mapper
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.jhj.content.mapper;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.jhj.content.model.dto.CourseCategoryTreeDto;
import com.jhj.content.model.po.CourseCategory;

import java.util.List;

/**
* <p>
* 课程分类 Mapper 接口
* </p>
*
* @author jhj
*/
public interface CourseCategoryMapper extends BaseMapper<CourseCategory> {

//使用递归查询分类
public List<CourseCategoryTreeDto> selectTreeNode(String id);
}
service
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.jhj.content.service;

import com.jhj.content.model.dto.CourseCategoryTreeDto;

import java.util.List;

/**
* @author jhj
* @version 1.0.0
* @ClassName CourseCategoryService.java
* @Description 课程分类实现接口
* @createTime 2024年05月22日 18:10:00
*/
public interface CourseCategoryService {
public List<CourseCategoryTreeDto> queryTreeNodes(String id);
}
serviceImpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.jhj.content.service.impl;

import com.jhj.content.mapper.CourseCategoryMapper;
import com.jhj.content.model.dto.CourseCategoryTreeDto;
import com.jhj.content.service.CourseCategoryService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;

/**
* @author jhj
* @version 1.0.0
* @ClassName CourseCategoryServiceImpl.java
* @Description 课程分类实现类
* @createTime 2024年05月22日 18:10:00
*/
@Service
@Slf4j
public class CourseCategoryServiceImpl implements CourseCategoryService {

@Autowired
CourseCategoryMapper courseCategoryMapper;

@Override
public List<CourseCategoryTreeDto> queryTreeNodes(String id) {
List<CourseCategoryTreeDto> res=new ArrayList<>();
//调用mapper 递归查询出分类信息
List<CourseCategoryTreeDto> courseCategoryTreeDtos = courseCategoryMapper.selectTreeNode(id);
//找到每个节点的子节点,最终封装成List<CourseCategoryTreeDto>
//先将list 转换为map key为节点id,value为对象 目的是方便从map 获取节点 filter(item->!id.equals(item.getId()))排除根节点
Map<String, CourseCategoryTreeDto> map = courseCategoryTreeDtos.stream().filter(item->!id.equals(item.getId())).collect(Collectors.toMap(key -> key.getId(), value -> value, (key1, key2) -> key2));
courseCategoryTreeDtos.stream().filter(item->!id.equals(item.getId())).forEach(item->{
if(item.getParentid().equals(id)){
res.add(item);
}
//找到父节点
CourseCategoryTreeDto courseCategoryTreeDto = map.get(item.getParentid());
if(courseCategoryTreeDto!=null) {
//如果子为空 则new一个
if (courseCategoryTreeDto.getChildrenTreeNodes() == null) {
courseCategoryTreeDto.setChildrenTreeNodes(new ArrayList<CourseCategoryTreeDto>());
}
//往子里放
courseCategoryTreeDto.getChildrenTreeNodes().add(item);
}

});
//从头遍历list 一边遍历一边查找子节点放在父节点的childrenTreeNodes中

return res;
}
}
controller
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.jhj.content.api;

import com.jhj.content.model.dto.CourseCategoryTreeDto;
import com.jhj.content.service.CourseCategoryService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;

/**
* @author jhj
* @version 1.0.0
* @ClassName CourseCategoryController.java
* @Description 课程分类接口
* @createTime 2024年05月13日 01:00:00
*/
@Tag(name = "课程分类管理接口",description = "课程分类管理接口")
@RestController
public class CourseCategoryController {
@Autowired
CourseCategoryService courseCategoryService;

@Operation(summary = "课程分类树形数据")
@GetMapping("/course-category/tree-nodes")
public List<CourseCategoryTreeDto> queryTreeNodes(){

return courseCategoryService.queryTreeNodes("1");
}
}
接口响应结果
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
[
{
"id": "1-1",
"name": "前端开发",
"label": "前端开发",
"parentid": "1",
"isShow": 1,
"orderby": 1,
"isLeaf": 0,
"childrenTreeNodes": [
{
"id": "1-1-1",
"name": "HTML/CSS",
"label": "HTML/CSS",
"parentid": "1-1",
"isShow": 1,
"orderby": 1,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-1-10",
"name": "其它",
"label": "其它",
"parentid": "1-1",
"isShow": 1,
"orderby": 10,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-1-2",
"name": "JavaScript",
"label": "JavaScript",
"parentid": "1-1",
"isShow": 1,
"orderby": 2,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-1-3",
"name": "jQuery",
"label": "jQuery",
"parentid": "1-1",
"isShow": 1,
"orderby": 3,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-1-4",
"name": "ExtJS",
"label": "ExtJS",
"parentid": "1-1",
"isShow": 1,
"orderby": 4,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-1-5",
"name": "AngularJS",
"label": "AngularJS",
"parentid": "1-1",
"isShow": 1,
"orderby": 5,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-1-6",
"name": "ReactJS",
"label": "ReactJS",
"parentid": "1-1",
"isShow": 1,
"orderby": 6,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-1-7",
"name": "Bootstrap",
"label": "Bootstrap",
"parentid": "1-1",
"isShow": 1,
"orderby": 7,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-1-8",
"name": "Node.js",
"label": "Node.js",
"parentid": "1-1",
"isShow": 1,
"orderby": 8,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-1-9",
"name": "Vue",
"label": "Vue",
"parentid": "1-1",
"isShow": 1,
"orderby": 9,
"isLeaf": 1,
"childrenTreeNodes": null
}
]
},
{
"id": "1-10",
"name": "研发管理",
"label": "研发管理",
"parentid": "1",
"isShow": 1,
"orderby": 10,
"isLeaf": 0,
"childrenTreeNodes": [
{
"id": "1-10-1",
"name": "敏捷开发",
"label": "敏捷开发",
"parentid": "1-10",
"isShow": 1,
"orderby": 1,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-10-2",
"name": "软件设计",
"label": "软件设计",
"parentid": "1-10",
"isShow": 1,
"orderby": 2,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-10-3",
"name": "软件测试",
"label": "软件测试",
"parentid": "1-10",
"isShow": 1,
"orderby": 3,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-10-4",
"name": "研发管理",
"label": "研发管理",
"parentid": "1-10",
"isShow": 1,
"orderby": 4,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-10-5",
"name": "其它",
"label": "其它",
"parentid": "1-10",
"isShow": 1,
"orderby": 5,
"isLeaf": 1,
"childrenTreeNodes": null
}
]
},
{
"id": "1-11",
"name": "系统运维",
"label": "系统运维",
"parentid": "1",
"isShow": 1,
"orderby": 11,
"isLeaf": 0,
"childrenTreeNodes": [
{
"id": "1-11-1",
"name": "Linux",
"label": "Linux",
"parentid": "1-11",
"isShow": 1,
"orderby": 1,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-11-10",
"name": "其它",
"label": "其它",
"parentid": "1-11",
"isShow": 1,
"orderby": 10,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-11-2",
"name": "Windows",
"label": "Windows",
"parentid": "1-11",
"isShow": 1,
"orderby": 2,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-11-3",
"name": "UNIX",
"label": "UNIX",
"parentid": "1-11",
"isShow": 1,
"orderby": 3,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-11-4",
"name": "Mac OS",
"label": "Mac OS",
"parentid": "1-11",
"isShow": 1,
"orderby": 4,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-11-5",
"name": "网络技术",
"label": "网络技术",
"parentid": "1-11",
"isShow": 1,
"orderby": 5,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-11-6",
"name": "路由协议",
"label": "路由协议",
"parentid": "1-11",
"isShow": 1,
"orderby": 6,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-11-7",
"name": "无线网络",
"label": "无线网络",
"parentid": "1-11",
"isShow": 1,
"orderby": 7,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-11-8",
"name": "Ngnix",
"label": "Ngnix",
"parentid": "1-11",
"isShow": 1,
"orderby": 8,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-11-9",
"name": "邮件服务器",
"label": "邮件服务器",
"parentid": "1-11",
"isShow": 1,
"orderby": 9,
"isLeaf": 1,
"childrenTreeNodes": null
}
]
},
{
"id": "1-12",
"name": "产品经理",
"label": "产品经理",
"parentid": "1",
"isShow": 1,
"orderby": 12,
"isLeaf": 0,
"childrenTreeNodes": [
{
"id": "1-12-1",
"name": "交互设计",
"label": "交互设计",
"parentid": "1-12",
"isShow": 1,
"orderby": 1,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-12-2",
"name": "产品设计",
"label": "产品设计",
"parentid": "1-12",
"isShow": 1,
"orderby": 2,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-12-3",
"name": "原型设计",
"label": "原型设计",
"parentid": "1-12",
"isShow": 1,
"orderby": 3,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-12-4",
"name": "用户体验",
"label": "用户体验",
"parentid": "1-12",
"isShow": 1,
"orderby": 4,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-12-5",
"name": "需求分析",
"label": "需求分析",
"parentid": "1-12",
"isShow": 1,
"orderby": 5,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-12-6",
"name": "其它",
"label": "其它",
"parentid": "1-12",
"isShow": 1,
"orderby": 6,
"isLeaf": 1,
"childrenTreeNodes": null
}
]
},
{
"id": "1-13",
"name": "企业/办公/职场",
"label": "企业/办公/职场",
"parentid": "1",
"isShow": 1,
"orderby": 13,
"isLeaf": 0,
"childrenTreeNodes": [
{
"id": "1-13-1",
"name": "运营管理",
"label": "运营管理",
"parentid": "1-13",
"isShow": 1,
"orderby": 1,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-13-2",
"name": "企业信息化",
"label": "企业信息化",
"parentid": "1-13",
"isShow": 1,
"orderby": 2,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-13-3",
"name": "网络营销",
"label": "网络营销",
"parentid": "1-13",
"isShow": 1,
"orderby": 3,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-13-4",
"name": "Office/WPS",
"label": "Office/WPS",
"parentid": "1-13",
"isShow": 1,
"orderby": 4,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-13-5",
"name": "招聘/面试",
"label": "招聘/面试",
"parentid": "1-13",
"isShow": 1,
"orderby": 5,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-13-6",
"name": "电子商务",
"label": "电子商务",
"parentid": "1-13",
"isShow": 1,
"orderby": 6,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-13-7",
"name": "CRM",
"label": "CRM",
"parentid": "1-13",
"isShow": 1,
"orderby": 7,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-13-8",
"name": "ERP",
"label": "ERP",
"parentid": "1-13",
"isShow": 1,
"orderby": 8,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-13-9",
"name": "其它",
"label": "其它",
"parentid": "1-13",
"isShow": 1,
"orderby": 9,
"isLeaf": 1,
"childrenTreeNodes": null
}
]
},
{
"id": "1-14",
"name": "信息安全",
"label": "信息安全",
"parentid": "1",
"isShow": 1,
"orderby": 14,
"isLeaf": 0,
"childrenTreeNodes": [
{
"id": "1-14-1",
"name": "密码学/加密/破解",
"label": "密码学/加密/破解",
"parentid": "1-14",
"isShow": 1,
"orderby": 1,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-14-10",
"name": "其它",
"label": "其它",
"parentid": "1-14",
"isShow": 1,
"orderby": 10,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-14-2",
"name": "渗透测试",
"label": "渗透测试",
"parentid": "1-14",
"isShow": 1,
"orderby": 2,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-14-3",
"name": "社会工程",
"label": "社会工程",
"parentid": "1-14",
"isShow": 1,
"orderby": 3,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-14-4",
"name": "漏洞挖掘与利用",
"label": "漏洞挖掘与利用",
"parentid": "1-14",
"isShow": 1,
"orderby": 4,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-14-5",
"name": "云安全",
"label": "云安全",
"parentid": "1-14",
"isShow": 1,
"orderby": 5,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-14-6",
"name": "防护加固",
"label": "防护加固",
"parentid": "1-14",
"isShow": 1,
"orderby": 6,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-14-7",
"name": "代码审计",
"label": "代码审计",
"parentid": "1-14",
"isShow": 1,
"orderby": 7,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-14-8",
"name": "移动安全",
"label": "移动安全",
"parentid": "1-14",
"isShow": 1,
"orderby": 8,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-14-9",
"name": "病毒木马",
"label": "病毒木马",
"parentid": "1-14",
"isShow": 1,
"orderby": 9,
"isLeaf": 1,
"childrenTreeNodes": null
}
]
},
{
"id": "1-15",
"name": "测试目录",
"label": "测试目录",
"parentid": "1",
"isShow": 1,
"orderby": 15,
"isLeaf": 0,
"childrenTreeNodes": [
{
"id": "1-15-1",
"name": "测试目录01",
"label": "测试目录01",
"parentid": "1-15",
"isShow": 1,
"orderby": 1,
"isLeaf": 1,
"childrenTreeNodes": null
}
]
},
{
"id": "1-2",
"name": "移动开发",
"label": "移动开发",
"parentid": "1",
"isShow": 1,
"orderby": 2,
"isLeaf": 0,
"childrenTreeNodes": [
{
"id": "1-2-1",
"name": "微信开发",
"label": "微信开发",
"parentid": "1-2",
"isShow": 1,
"orderby": 1,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-2-2",
"name": "iOS",
"label": "iOS",
"parentid": "1-2",
"isShow": 1,
"orderby": 2,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-2-3",
"name": "手游开发",
"label": "手游开发",
"parentid": "1-2",
"isShow": 1,
"orderby": 3,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-2-4",
"name": "Swift",
"label": "Swift",
"parentid": "1-2",
"isShow": 1,
"orderby": 4,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-2-5",
"name": "Android",
"label": "Android",
"parentid": "1-2",
"isShow": 1,
"orderby": 5,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-2-6",
"name": "ReactNative",
"label": "ReactNative",
"parentid": "1-2",
"isShow": 1,
"orderby": 6,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-2-7",
"name": "Cordova",
"label": "Cordova",
"parentid": "1-2",
"isShow": 1,
"orderby": 7,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-2-8",
"name": "其它",
"label": "其它",
"parentid": "1-2",
"isShow": 1,
"orderby": 8,
"isLeaf": 1,
"childrenTreeNodes": null
}
]
},
{
"id": "1-3",
"name": "编程开发",
"label": "编程开发",
"parentid": "1",
"isShow": 1,
"orderby": 3,
"isLeaf": 0,
"childrenTreeNodes": [
{
"id": "1-3-1",
"name": "C/C++",
"label": "C/C++",
"parentid": "1-3",
"isShow": 1,
"orderby": 1,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-3-2",
"name": "Java",
"label": "Java",
"parentid": "1-3",
"isShow": 1,
"orderby": 2,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-3-3",
"name": ".NET",
"label": ".NET",
"parentid": "1-3",
"isShow": 1,
"orderby": 3,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-3-4",
"name": "Objective-C",
"label": "Objective-C",
"parentid": "1-3",
"isShow": 1,
"orderby": 4,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-3-5",
"name": "Go语言",
"label": "Go语言",
"parentid": "1-3",
"isShow": 1,
"orderby": 5,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-3-6",
"name": "Python",
"label": "Python",
"parentid": "1-3",
"isShow": 1,
"orderby": 6,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-3-7",
"name": "Ruby/Rails",
"label": "Ruby/Rails",
"parentid": "1-3",
"isShow": 1,
"orderby": 7,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-3-8",
"name": "其它",
"label": "其它",
"parentid": "1-3",
"isShow": 1,
"orderby": 8,
"isLeaf": 1,
"childrenTreeNodes": null
}
]
},
{
"id": "1-4",
"name": "数据库",
"label": "数据库",
"parentid": "1",
"isShow": 1,
"orderby": 4,
"isLeaf": 0,
"childrenTreeNodes": [
{
"id": "1-4-1",
"name": "Oracle",
"label": "Oracle",
"parentid": "1-4",
"isShow": 1,
"orderby": 1,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-4-2",
"name": "MySQL",
"label": "MySQL",
"parentid": "1-4",
"isShow": 1,
"orderby": 2,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-4-3",
"name": "SQL Server",
"label": "SQL Server",
"parentid": "1-4",
"isShow": 1,
"orderby": 3,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-4-4",
"name": "DB2",
"label": "DB2",
"parentid": "1-4",
"isShow": 1,
"orderby": 4,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-4-5",
"name": "NoSQL",
"label": "NoSQL",
"parentid": "1-4",
"isShow": 1,
"orderby": 5,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-4-6",
"name": "Mongo DB",
"label": "Mongo DB",
"parentid": "1-4",
"isShow": 1,
"orderby": 6,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-4-7",
"name": "Hbase",
"label": "Hbase",
"parentid": "1-4",
"isShow": 1,
"orderby": 7,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-4-8",
"name": "数据仓库",
"label": "数据仓库",
"parentid": "1-4",
"isShow": 1,
"orderby": 8,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-4-9",
"name": "其它",
"label": "其它",
"parentid": "1-4",
"isShow": 1,
"orderby": 9,
"isLeaf": 1,
"childrenTreeNodes": null
}
]
},
{
"id": "1-5",
"name": "人工智能",
"label": "人工智能",
"parentid": "1",
"isShow": 1,
"orderby": 5,
"isLeaf": 0,
"childrenTreeNodes": [
{
"id": "1-5-1",
"name": "机器学习",
"label": "机器学习",
"parentid": "1-5",
"isShow": 1,
"orderby": 1,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-5-2",
"name": "深度学习",
"label": "深度学习",
"parentid": "1-5",
"isShow": 1,
"orderby": 2,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-5-3",
"name": "语音识别",
"label": "语音识别",
"parentid": "1-5",
"isShow": 1,
"orderby": 3,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-5-4",
"name": "计算机视觉",
"label": "计算机视觉",
"parentid": "1-5",
"isShow": 1,
"orderby": 4,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-5-5",
"name": "NLP",
"label": "NLP",
"parentid": "1-5",
"isShow": 1,
"orderby": 5,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-5-6",
"name": "强化学习",
"label": "强化学习",
"parentid": "1-5",
"isShow": 1,
"orderby": 6,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-5-7",
"name": "其它",
"label": "其它",
"parentid": "1-5",
"isShow": 1,
"orderby": 7,
"isLeaf": 1,
"childrenTreeNodes": null
}
]
},
{
"id": "1-6",
"name": "云计算/大数据",
"label": "云计算/大数据",
"parentid": "1",
"isShow": 1,
"orderby": 6,
"isLeaf": 0,
"childrenTreeNodes": [
{
"id": "1-6-1",
"name": "Spark",
"label": "Spark",
"parentid": "1-6",
"isShow": 1,
"orderby": 1,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-6-2",
"name": "Hadoop",
"label": "Hadoop",
"parentid": "1-6",
"isShow": 1,
"orderby": 2,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-6-3",
"name": "OpenStack",
"label": "OpenStack",
"parentid": "1-6",
"isShow": 1,
"orderby": 3,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-6-4",
"name": "Docker/K8S",
"label": "Docker/K8S",
"parentid": "1-6",
"isShow": 1,
"orderby": 4,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-6-5",
"name": "云计算基础架构",
"label": "云计算基础架构",
"parentid": "1-6",
"isShow": 1,
"orderby": 5,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-6-6",
"name": "虚拟化技术",
"label": "虚拟化技术",
"parentid": "1-6",
"isShow": 1,
"orderby": 6,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-6-7",
"name": "云平台",
"label": "云平台",
"parentid": "1-6",
"isShow": 1,
"orderby": 7,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-6-8",
"name": "ELK",
"label": "ELK",
"parentid": "1-6",
"isShow": 1,
"orderby": 8,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-6-9",
"name": "其它",
"label": "其它",
"parentid": "1-6",
"isShow": 1,
"orderby": 9,
"isLeaf": 1,
"childrenTreeNodes": null
}
]
},
{
"id": "1-7",
"name": "UI设计",
"label": "UI设计",
"parentid": "1",
"isShow": 1,
"orderby": 7,
"isLeaf": 0,
"childrenTreeNodes": [
{
"id": "1-7-1",
"name": "Photoshop",
"label": "Photoshop",
"parentid": "1-7",
"isShow": 1,
"orderby": 1,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-10",
"name": "InDesign",
"label": "InDesign",
"parentid": "1-7",
"isShow": 1,
"orderby": 10,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-11",
"name": "Pro/Engineer",
"label": "Pro/Engineer",
"parentid": "1-7",
"isShow": 1,
"orderby": 11,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-12",
"name": "Cinema 4D",
"label": "Cinema 4D",
"parentid": "1-7",
"isShow": 1,
"orderby": 12,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-13",
"name": "3D Studio",
"label": "3D Studio",
"parentid": "1-7",
"isShow": 1,
"orderby": 13,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-14",
"name": "After Effects(AE)",
"label": "After Effects(AE)",
"parentid": "1-7",
"isShow": 1,
"orderby": 14,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-15",
"name": "原画设计",
"label": "原画设计",
"parentid": "1-7",
"isShow": 1,
"orderby": 15,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-16",
"name": "动画制作",
"label": "动画制作",
"parentid": "1-7",
"isShow": 1,
"orderby": 16,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-17",
"name": "Dreamweaver",
"label": "Dreamweaver",
"parentid": "1-7",
"isShow": 1,
"orderby": 17,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-18",
"name": "Axure",
"label": "Axure",
"parentid": "1-7",
"isShow": 1,
"orderby": 18,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-19",
"name": "其它",
"label": "其它",
"parentid": "1-7",
"isShow": 1,
"orderby": 19,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-2",
"name": "3Dmax",
"label": "3Dmax",
"parentid": "1-7",
"isShow": 1,
"orderby": 2,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-3",
"name": "Illustrator",
"label": "Illustrator",
"parentid": "1-7",
"isShow": 1,
"orderby": 3,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-4",
"name": "Flash",
"label": "Flash",
"parentid": "1-7",
"isShow": 1,
"orderby": 4,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-5",
"name": "Maya",
"label": "Maya",
"parentid": "1-7",
"isShow": 1,
"orderby": 5,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-6",
"name": "AUTOCAD",
"label": "AUTOCAD",
"parentid": "1-7",
"isShow": 1,
"orderby": 6,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-7",
"name": "UG",
"label": "UG",
"parentid": "1-7",
"isShow": 1,
"orderby": 7,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-8",
"name": "SolidWorks",
"label": "SolidWorks",
"parentid": "1-7",
"isShow": 1,
"orderby": 8,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-7-9",
"name": "CorelDraw",
"label": "CorelDraw",
"parentid": "1-7",
"isShow": 1,
"orderby": 9,
"isLeaf": 1,
"childrenTreeNodes": null
}
]
},
{
"id": "1-8",
"name": "游戏开发",
"label": "游戏开发",
"parentid": "1",
"isShow": 1,
"orderby": 8,
"isLeaf": 0,
"childrenTreeNodes": [
{
"id": "1-8-1",
"name": "Cocos",
"label": "Cocos",
"parentid": "1-8",
"isShow": 1,
"orderby": 1,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-8-2",
"name": "Unity3D",
"label": "Unity3D",
"parentid": "1-8",
"isShow": 1,
"orderby": 2,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-8-3",
"name": "Flash",
"label": "Flash",
"parentid": "1-8",
"isShow": 1,
"orderby": 3,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-8-4",
"name": "SpriteKit 2D",
"label": "SpriteKit 2D",
"parentid": "1-8",
"isShow": 1,
"orderby": 4,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-8-5",
"name": "Unreal",
"label": "Unreal",
"parentid": "1-8",
"isShow": 1,
"orderby": 5,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-8-6",
"name": "其它",
"label": "其它",
"parentid": "1-8",
"isShow": 1,
"orderby": 6,
"isLeaf": 1,
"childrenTreeNodes": null
}
]
},
{
"id": "1-9",
"name": "智能硬件/物联网",
"label": "智能硬件/物联网",
"parentid": "1",
"isShow": 1,
"orderby": 9,
"isLeaf": 0,
"childrenTreeNodes": [
{
"id": "1-9-1",
"name": "无线通信",
"label": "无线通信",
"parentid": "1-9",
"isShow": 1,
"orderby": 1,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-9-10",
"name": "物联网技术",
"label": "物联网技术",
"parentid": "1-9",
"isShow": 1,
"orderby": 10,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-9-11",
"name": "其它",
"label": "其它",
"parentid": "1-9",
"isShow": 1,
"orderby": 11,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-9-2",
"name": "电子工程",
"label": "电子工程",
"parentid": "1-9",
"isShow": 1,
"orderby": 2,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-9-3",
"name": "Arduino",
"label": "Arduino",
"parentid": "1-9",
"isShow": 1,
"orderby": 3,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-9-4",
"name": "体感技术",
"label": "体感技术",
"parentid": "1-9",
"isShow": 1,
"orderby": 4,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-9-5",
"name": "智能硬件",
"label": "智能硬件",
"parentid": "1-9",
"isShow": 1,
"orderby": 5,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-9-6",
"name": "驱动/内核开发",
"label": "驱动/内核开发",
"parentid": "1-9",
"isShow": 1,
"orderby": 6,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-9-7",
"name": "单片机/工控",
"label": "单片机/工控",
"parentid": "1-9",
"isShow": 1,
"orderby": 7,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-9-8",
"name": "WinCE",
"label": "WinCE",
"parentid": "1-9",
"isShow": 1,
"orderby": 8,
"isLeaf": 1,
"childrenTreeNodes": null
},
{
"id": "1-9-9",
"name": "嵌入式",
"label": "嵌入式",
"parentid": "1-9",
"isShow": 1,
"orderby": 9,
"isLeaf": 1,
"childrenTreeNodes": null
}
]
}
]

本项目为开源项目,后续会接入多种功能,项目地址https://gitee.com/jhj-coding/jhj-ultimate-project,欢迎大家多多star。