1.补充创建表语句

This commit is contained in:
chenweilong 2022-12-09 17:08:22 +08:00
parent acbc45124c
commit 20922e68a2
1 changed files with 6 additions and 1 deletions

View File

@ -43,7 +43,12 @@ CREATE TABLE `base_data` (
`content_name` varchar(30) NULL,
PRIMARY KEY (`id`)
);
CREATE TABLE `base_role` (
`id` varchar(255) NOT NULL,
`role_str` text NULL,
`role_name` varchar(30) NULL DEFAULT NULL,
PRIMARY KEY (`id`)
);
INSERT INTO `base_data`(`id`, `type`, `attribution`, `content`, `content_type`, `content_name`) VALUES ('0927941726325838', 'sectionClassification', 'costCenter', '[银行科目, 预付科目, 预收科目]', 'List', 'sectionClassificationList');
INSERT INTO `base_data`(`id`, `type`, `attribution`, `content`, `content_type`, `content_name`) VALUES ('3927088550655742', 'businessCategory', 'costCenter', '[运输业务, 全货船业务, 进出岛仓干配]', 'List', 'businessCategoryList');