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.
14 lines
1.3 KiB
14 lines
1.3 KiB
CREATE TABLE `file_class` ( |
|
`id` int NOT NULL AUTO_INCREMENT, |
|
`class_title` varchar(255) NOT NULL, |
|
`class_remarks` varchar(255) DEFAULT NULL, |
|
`problem_sources_code` varchar(40) NOT NULL COMMENT '问题来源', |
|
`sort_id` int DEFAULT NULL, |
|
PRIMARY KEY (`id`) |
|
) ENGINE=InnoDB AUTO_INCREMENT=6 COMMENT='文件分类'; |
|
|
|
INSERT INTO `negative`.`file_class`(`id`, `class_title`, `class_remarks`, `problem_sources_code`, `sort_id`) VALUES (1, '容错免责样本申请表', NULL, '2', 1); |
|
INSERT INTO `negative`.`file_class`(`id`, `class_title`, `class_remarks`, `problem_sources_code`, `sort_id`) VALUES (2, '针对群众不满意原因,提供无过错的音视频、微信或短信截图等证明资料', NULL, '2', 2); |
|
INSERT INTO `negative`.`file_class`(`id`, `class_title`, `class_remarks`, `problem_sources_code`, `sort_id`) VALUES (3, '110、122接处警开始、结束及处置过程中的视频截图', '需体现单警装备', '2', 3); |
|
INSERT INTO `negative`.`file_class`(`id`, `class_title`, `class_remarks`, `problem_sources_code`, `sort_id`) VALUES (4, '自动回访不满意后所对的回访录音', NULL, '2', 4); |
|
INSERT INTO `negative`.`file_class`(`id`, `class_title`, `class_remarks`, `problem_sources_code`, `sort_id`) VALUES (5, '单位/个人所做其他工作', NULL, '2', 5);
|
|
|