You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
731 B
9 lines
731 B
INSERT INTO public.resource (code, name, parent_resource) VALUES ('SHENHE', '审核', 'WENTICHULI');
|
|
INSERT INTO public.resource (code, name, parent_resource) VALUES ('ZHIDINGJIHUA', '制定计划', 'WENTICHULI');
|
|
INSERT INTO public.resource (code, name, parent_resource) VALUES ('CHAKANXIANGQING', '查看详情', 'WENTICHULI');
|
|
DELETE FROM public.user_resource WHERE id = 16;
|
|
DELETE FROM public.user_resource WHERE id = 17;
|
|
DELETE FROM public.user_resource WHERE id = 18;
|
|
INSERT INTO public.user_resource (id,user_id,resource) VALUES (16, 1, 'SHENHE');
|
|
INSERT INTO public.user_resource (id,user_id,resource) VALUES (17, 1, 'ZHIDINGJIHUA');
|
|
INSERT INTO public.user_resource (id,user_id,resource) VALUES (18, 1, 'CHAKANXIANGQING');
|