|
@@ -14,13 +14,18 @@ ALTER TABLE developments
|
14
|
14
|
add COLUMN if not exists create_time TIMESTAMP;
|
15
|
15
|
comment on column developments.create_time is '创建时间';
|
16
|
16
|
|
17
|
|
-INSERT INTO "public"."sys_menu" ("menu_id", "menu_name", "parent_id", "order_num", "path", "component", "query", "is_frame", "is_cache", "menu_type", "visible", "status", "perms", "icon", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (2286, '发展定位', 2200, 1, 'development', 'info/development/index', NULL, 'f', 't', 'C', 't', 't', 'info:development:list', 'operation', 'admin', '2024-12-13 08:08:34.901945', '', NULL, '发展定位菜单');
|
18
|
|
-INSERT INTO "public"."sys_menu" ("menu_id", "menu_name", "parent_id", "order_num", "path", "component", "query", "is_frame", "is_cache", "menu_type", "visible", "status", "perms", "icon", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (2287, '发展定位查询', 2286, 1, '#', '', NULL, 'f', 't', 'F', 't', 't', 'info:development:query', '#', 'admin', '2024-12-13 08:08:34.901945', '', NULL, '');
|
19
|
|
-INSERT INTO "public"."sys_menu" ("menu_id", "menu_name", "parent_id", "order_num", "path", "component", "query", "is_frame", "is_cache", "menu_type", "visible", "status", "perms", "icon", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (2288, '发展定位新增', 2286, 2, '#', '', NULL, 'f', 't', 'F', 't', 't', 'info:development:add', '#', 'admin', '2024-12-13 08:08:34.901945', '', NULL, '');
|
20
|
|
-INSERT INTO "public"."sys_menu" ("menu_id", "menu_name", "parent_id", "order_num", "path", "component", "query", "is_frame", "is_cache", "menu_type", "visible", "status", "perms", "icon", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (2289, '发展定位修改', 2286, 3, '#', '', NULL, 'f', 't', 'F', 't', 't', 'info:development:edit', '#', 'admin', '2024-12-13 08:08:34.901945', '', NULL, '');
|
21
|
|
-INSERT INTO "public"."sys_menu" ("menu_id", "menu_name", "parent_id", "order_num", "path", "component", "query", "is_frame", "is_cache", "menu_type", "visible", "status", "perms", "icon", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (2290, '发展定位删除', 2286, 4, '#', '', NULL, 'f', 't', 'F', 't', 't', 'info:development:remove', '#', 'admin', '2024-12-13 08:08:34.901945', '', NULL, '');
|
22
|
|
-INSERT INTO "public"."sys_menu" ("menu_id", "menu_name", "parent_id", "order_num", "path", "component", "query", "is_frame", "is_cache", "menu_type", "visible", "status", "perms", "icon", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (2291, '发展定位导出', 2286, 5, '#', '', NULL, 'f', 't', 'F', 't', 't', 'info:development:export', '#', 'admin', '2024-12-13 08:08:34.901945', '', NULL, '');
|
23
|
|
-
|
|
17
|
+-- 菜单 SQL
|
|
18
|
+with temp_menu as (
|
|
19
|
+insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
|
20
|
+values('发展定位', '2200', '1', 'development', 'info/development/index', false, true, 'C', true, true, 'info:development:list', 'operation', 'admin', now(), '', null, '发展定位菜单') returning menu_id
|
|
21
|
+ )
|
|
22
|
+-- 按钮 SQL
|
|
23
|
+insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
|
24
|
+values('发展定位查询', (select * from temp_menu), '1', '#', '', false, true, 'F', true, true, 'info:development:query', '#', 'admin', now(), '', null, ''),
|
|
25
|
+ ('发展定位新增', (select * from temp_menu), '2', '#', '', false, true, 'F', true, true, 'info:development:add', '#', 'admin', now(), '', null, ''),
|
|
26
|
+ ('发展定位修改', (select * from temp_menu), '3', '#', '', false, true, 'F', true, true, 'info:development:edit', '#', 'admin', now(), '', null, ''),
|
|
27
|
+ ('发展定位删除', (select * from temp_menu), '4', '#', '', false, true, 'F', true, true, 'info:development:remove', '#', 'admin', now(), '', null, ''),
|
|
28
|
+ ('发展定位导出', (select * from temp_menu), '5', '#', '', false, true, 'F', true, true, 'info:development:export', '#', 'admin', now(), '', null, '');
|
24
|
29
|
|
25
|
30
|
-- 菜单 SQL
|
26
|
31
|
with temp_menu as (
|
|
@@ -70,3 +75,7 @@ comment on column equipment_info.park_id is '园区id';
|
70
|
75
|
ALTER TABLE sys_dict_data
|
71
|
76
|
add COLUMN if not exists park_id int;
|
72
|
77
|
comment on column sys_dict_data.park_id is '园区id';
|
|
78
|
+
|
|
79
|
+ALTER TABLE model_info
|
|
80
|
+ add COLUMN if not exists trans jsonb;
|
|
81
|
+comment on column model_info.trans is '园区id';
|