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
| -- 菜单 SQL
| INSERT INTO system_menu(
| name, permission, type, sort, parent_id,
| path, icon, component, status, component_name
| )
| VALUES (
| '学生管理', '', 2, 0, 888,
| 'student', '', 'infra/demo/index', 0, 'InfraStudent'
| );
|
| -- 按钮父菜单ID
| -- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
| SELECT @parentId := LAST_INSERT_ID();
|
| -- 按钮 SQL
| INSERT INTO system_menu(
| name, permission, type, sort, parent_id,
| path, icon, component, status
| )
| VALUES (
| '学生查询', 'infra:student:query', 3, 1, @parentId,
| '', '', '', 0
| );
| INSERT INTO system_menu(
| name, permission, type, sort, parent_id,
| path, icon, component, status
| )
| VALUES (
| '学生创建', 'infra:student:create', 3, 2, @parentId,
| '', '', '', 0
| );
| INSERT INTO system_menu(
| name, permission, type, sort, parent_id,
| path, icon, component, status
| )
| VALUES (
| '学生更新', 'infra:student:update', 3, 3, @parentId,
| '', '', '', 0
| );
| INSERT INTO system_menu(
| name, permission, type, sort, parent_id,
| path, icon, component, status
| )
| VALUES (
| '学生删除', 'infra:student:delete', 3, 4, @parentId,
| '', '', '', 0
| );
| INSERT INTO system_menu(
| name, permission, type, sort, parent_id,
| path, icon, component, status
| )
| VALUES (
| '学生导出', 'infra:student:export', 3, 5, @parentId,
| '', '', '', 0
| );
|
|