Commit 4cd187aa by mercymodest

feat:- add sql

parent 1926f3f4
alter table store_card alter table store_card
...@@ -103,6 +103,29 @@ alter table store ...@@ -103,6 +103,29 @@ alter table store
alter table card_category alter table card_category
modify uuid BIGINT not null comment '主键ID'; modify uuid BIGINT not null comment '主键ID';
INSERT INTO menus (uuid, company_uuid, name, parent_uuid, sort, create_time, update_time, url, type, classes)
VALUES ('53d789d464534cca867a8113115a8092', 846782090753224704, '卡项统计', 'a1a8809f03df11ecbf1c00163e0434b9', 4,
DEFAULT, DEFAULT, '/data-statistics/card-item', 2, DEFAULT);
INSERT INTO menus (uuid, company_uuid, name, parent_uuid, sort, create_time, update_time, url, type, classes)
VALUES ('ac0c8a7eedd8442c86eafaf0d1fd9ac3', 846782090753224704, '详情', '53d789d464534cca867a8113115a8092', 1, DEFAULT,
DEFAULT, '/data-statistics/card-item/detail', 2, DEFAULT);
INSERT INTO menus (uuid, company_uuid, name, parent_uuid, sort, create_time, update_time, url, type, classes)
VALUES ('e77ffce67fa54633ac6b87c0ea693d1b', 846782090753224704, '导出', '53d789d464534cca867a8113115a8092', 2, DEFAULT,
DEFAULT, '""', DEFAULT, DEFAULT);
INSERT INTO group_menus (menu_uuid, group_uuid, create_time, update_time)
VALUES ('53d789d464534cca867a8113115a8092', '3', DEFAULT, DEFAULT);
INSERT INTO group_menus (menu_uuid, group_uuid, create_time, update_time)
VALUES ('ac0c8a7eedd8442c86eafaf0d1fd9ac3', '3', DEFAULT, DEFAULT);
INSERT INTO group_menus (menu_uuid, group_uuid, create_time, update_time)
VALUES ('e77ffce67fa54633ac6b87c0ea693d1b', '3', DEFAULT, DEFAULT);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment