176035ab95
2、新增应收应付
33 lines
2.6 KiB
SQL
33 lines
2.6 KiB
SQL
-- ----------------------------
|
|
-- Table structure for blade_insurance_ocr_template
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `blade_insurance_ocr_template`;
|
|
CREATE TABLE `blade_insurance_ocr_template` (
|
|
`id` bigint(20) NOT NULL COMMENT '主键',
|
|
`tenant_id` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '000000' COMMENT '租户ID',
|
|
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '模板名称',
|
|
`mapping_config` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字段映射配置JSON',
|
|
`create_user` bigint(20) DEFAULT NULL COMMENT '创建人',
|
|
`create_dept` bigint(20) DEFAULT NULL COMMENT '创建部门',
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|
`update_user` bigint(20) DEFAULT NULL COMMENT '更新人',
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|
`status` int(11) NOT NULL DEFAULT '1' COMMENT '状态',
|
|
`is_deleted` int(11) NOT NULL DEFAULT '0' COMMENT '是否已删除',
|
|
PRIMARY KEY (`id`) USING BTREE,
|
|
KEY `idx_insurance_ocr_template_name` (`tenant_id`, `name`) USING BTREE,
|
|
KEY `idx_insurance_ocr_template_status` (`status`) USING BTREE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='保险OCR识别模板';
|
|
|
|
-- ----------------------------
|
|
-- Menu data for insurance OCR template
|
|
-- parent_id:基础配置 1164733399668962201
|
|
-- ----------------------------
|
|
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES
|
|
(2086000000000000001, 1164733399668962201, 'insurance_ocr_template', '保险OCR识别模板', 'insurance_ocr_template', '/base/insurance-ocr-template', 'iconfont iconicon_doc', 90, 1, 0, 1, NULL, '', 0),
|
|
(2086000000000000002, 2086000000000000001, 'insurance_ocr_template_add', '新增', 'insurance_ocr_template_add', '', '', 1, 2, 0, 1, NULL, '', 0),
|
|
(2086000000000000003, 2086000000000000001, 'insurance_ocr_template_edit', '编辑', 'insurance_ocr_template_edit', '', '', 2, 2, 0, 1, NULL, '', 0),
|
|
(2086000000000000004, 2086000000000000001, 'insurance_ocr_template_delete', '删除', 'insurance_ocr_template_delete', '', '', 3, 2, 0, 1, NULL, '', 0),
|
|
(2086000000000000005, 2086000000000000001, 'insurance_ocr_template_view', '查看', 'insurance_ocr_template_view', '', '', 4, 2, 0, 1, NULL, '', 0),
|
|
(2086000000000000006, 2086000000000000001, 'insurance_ocr_template_list', '列表', 'insurance_ocr_template_list', '/blade-transport/insurance-ocr-template/list', '', 5, 2, 0, 1, NULL, '', 0);
|