INSERT INTO `blade_menu`(`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`, `belong_application`, `keep_alive`) VALUES (1566738898702618625, 0, 'cnc', '刀具管理', 'app', '/cnc', 'iconfont saber-daojuguanli', 10, 0, 0, 1, '', 0, 'CPS', 1), (1566739257311416322, 1566738898702618625, 'cnc_monitoring', '刀具监控', 'cnc_monitoring', '/cnc/cnc-monitoring', '', 2, 1, 0, 1, '', 0, 'CPS', 1), (1566739431463112705, 1566738898702618625, 'toolChange_record', '换刀记录', 'toolChange_record', '/cnc/toolChange-record', '', 3, 1, 0, 1, '', 0, 'CPS', 1), (1566739825134686210, 1566738898702618625, 'cnc_information', '刀具管理(信息)', 'cnc_information', '/cnc/info/index', '', 1, 1, 0, 1, '', 0, 'CPS', 1); INSERT INTO `blade_tool_category` (`id`, `status`, `is_deleted`, `create_user`, `create_dept`, `create_time`, `update_user`, `update_time`, `tenant_id`, `parent_id`, `name`, `sort`, `tool_prefix_code`, `code_length`) VALUES (1, 1, 0, NULL, NULL, '2022-09-05 09:37:52', NULL, '2022-09-05 09:37:59', '000000', 0, '所有的', 0, NULL, NULL); DROP TABLE IF EXISTS `blade_tool_parameter`; CREATE TABLE `blade_tool_parameter` ( `id` bigint(20) NOT NULL COMMENT '主键', `status` tinyint(3) UNSIGNED NULL DEFAULT NULL COMMENT '状态', `is_deleted` int(11) UNSIGNED NULL DEFAULT 0 COMMENT '删除状态:0-未删除,1-已删除', `create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人', `create_dept` bigint(20) NULL DEFAULT NULL COMMENT '创建部门', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', `update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人', `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', `tenant_id` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '000000' COMMENT '租户ID', `tool_parameter_name` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '参数名称', `tool_parameter_unit` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '参数单位', `tool_parameter_code` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '参数编号', `is_update` int(3) UNSIGNED NULL DEFAULT 0 COMMENT '是否更新 1-是 0-否', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '刀具参数' ROW_FORMAT = Dynamic; DROP TABLE IF EXISTS `blade_tool_change_record`; CREATE TABLE `blade_tool_change_record` ( `id` bigint(20) NOT NULL COMMENT '主键', `status` tinyint(3) UNSIGNED NULL DEFAULT NULL COMMENT '状态', `is_deleted` tinyint(3) UNSIGNED NULL DEFAULT 0 COMMENT '删除状态:0-未删除,1-已删除', `create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人', `create_dept` bigint(20) NULL DEFAULT NULL COMMENT '创建部门', `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间', `update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人', `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间', `tenant_id` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '000000' COMMENT '租户ID', `tool_code` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '刀具编号', `tool_category_id` bigint(20) NULL DEFAULT NULL COMMENT '刀具类型id', `tool_category` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '刀具类型', `tool_model_id` bigint(20) NULL DEFAULT NULL COMMENT '刀具型号id', `tool_model` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '刀具型号', `tool_prefix_code` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '刀具前缀编号', `life_count_method` int(11) NULL DEFAULT NULL COMMENT '寿命计数方式(1.按次数 2.按时间)', `initial_life` int(45) NULL DEFAULT NULL COMMENT '初始寿命', `used_life` int(45) NULL DEFAULT NULL COMMENT '已用寿命', `remain_life` int(45) NULL DEFAULT NULL COMMENT '剩余寿命', `warning_value` int(45) NULL DEFAULT NULL COMMENT '预警值', `life_state` int(4) NULL DEFAULT NULL COMMENT '寿命状态(1.正常 2.警告 3.报警)', `use_state` int(4) NULL DEFAULT NULL COMMENT '使用状态(1.已装刀 0.已卸刀)', `workstation_id` bigint(20) NULL DEFAULT NULL COMMENT '工位Id', `workstation_code` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '工位编号', `workstation_name` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '工位名称', `tool_position` int(11) NULL DEFAULT NULL COMMENT '机床刀位', `operation_type` int(10) NULL DEFAULT NULL COMMENT '操作类型(1.装刀 0.卸刀)', `employee_id` bigint(20) NULL DEFAULT NULL COMMENT '操作人', `parameter1` varchar(45) NULL DEFAULT NULL COMMENT '参数1', `parameter2` varchar(45) NULL DEFAULT NULL COMMENT '参数2', `parameter3` varchar(45) NULL DEFAULT NULL COMMENT '参数3', `parameter4` varchar(45) NULL DEFAULT NULL COMMENT '参数4', `parameter5` varchar(45) NULL DEFAULT NULL COMMENT '参数5', `parameter6` varchar(45) NULL DEFAULT NULL COMMENT '参数6', `parameter7` varchar(45) NULL DEFAULT NULL COMMENT '参数7', `parameter8` varchar(45) NULL DEFAULT NULL COMMENT '参数8', `parameter9` varchar(45) NULL DEFAULT NULL COMMENT '参数9', `parameter10` varchar(45) NULL DEFAULT NULL COMMENT '参数10', `employee_name` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '操作人姓名', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '刀具装卸记录' ROW_FORMAT = Dynamic; -- 菜单 INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582192508220342274, 1566739825134686210, 'tool_category_add', '添加刀具类型', 'tool_category_add', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582195279531212801, 1566739825134686210, 'tool_category_rename', '刀具类型重命名', 'tool_category_rename', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582195569005297666, 1566739825134686210, 'tool_category_delete', '刀具类型删除', 'tool_category_delete', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582196133717999617, 1566739825134686210, 'tool_model_add', '新建刀具型号', 'tool_model_add', '', '', 4, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582196444398485505, 1566739825134686210, 'tool_model_update', '刀具型号编辑', 'tool_model_update', '', '', 5, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582196610295791617, 1566739825134686210, 'tool_model_delete', '刀具型号删除', 'tool_model_delete', '', '', 6, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582197672343896066, 1566739825134686210, 'tool_parameter_add', '新建刀具参数', 'tool_parameter_add', '', '', 7, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582197812228128770, 1566739825134686210, 'tool_parameter_update', '刀具参数编辑', 'tool_parameter_add', '', '', 8, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582199434790436865, 1566739825134686210, 'tool_paramater_delete', '刀具参数删除', 'tool_paramater_delete', '', '', 9, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582201677455425538, 1566739257311416322, 'tool_add', '新建刀具', 'tool_add', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582201746988597249, 1566739257311416322, 'tool_update', '编辑刀具', 'tool_update', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582201887124488193, 1566739257311416322, 'tool_delete', '删除刀具', 'tool_delete', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582202039482580993, 1566739257311416322, 'tool_reset', '重置刀具', 'tool_reset', '', '', 4, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582202176644710401, 1566739257311416322, 'tool_export', '导出刀具', 'tool_export', '', '', 5, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582202513631870978, 1566739257311416322, 'tool_equipment', '装刀', 'tool_equipment', '', '', 6, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582202833040703489, 1566739257311416322, 'tool_discharge', '卸刀', 'tool_discharge', '', '', 7, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1582255045074878466, 1566739431463112705, 'tool_change_record_export', '导出换刀记录', 'tool_change_record_export', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1); -- 数据权限 INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1580129128526970881, 1566739257311416322, 'tool_manage.page', '刀具分页', '/blade-tool/tool-manage/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-10-12 17:31:56', 1123598821738675201, '2022-10-12 17:31:56', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1580129191890321409, 1566739257311416322, 'tool_parameter.list', '刀具参数列表', '/blade-tool/tool-parameter/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-10-12 17:32:11', 1123598821738675201, '2022-10-12 17:32:11', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1580129266192416769, 1566739257311416322, 'tool_model.page', '刀具型号分页', '/blade-tool/tool-model/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-10-12 17:32:29', 1123598821738675201, '2022-10-12 17:32:29', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1580129724714364929, 1566739257311416322, 'tool_category.list', '刀具类型列表', '/blade-tool/tool-category/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-10-12 17:34:18', 1123598821738675201, '2022-10-12 17:34:18', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1580130194300252161, 1580126861992198146, 'tool_manage.tree', '树形结构', '/blade-tool/tool-manage/tree', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-10-12 17:36:10', 1123598821738675201, '2022-10-12 17:36:10', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1580132130437115906, 1580128063991644162, 'tool_manage.tree', '树形结构', '/blade-tool/tool-manage/tree', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-10-12 17:43:52', 1123598821738675201, '2022-10-12 17:43:52', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1580132511342833666, 1566739431463112705, 'tool_parameter.list', '刀具参数列表', '/blade-tool/tool-parameter/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-10-12 17:45:23', 1123598821738675201, '2022-10-12 17:45:23', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1580132553210376193, 1566739431463112705, 'tool_category.list', '刀具类型列表', '/blade-tool/tool-category/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-10-12 17:45:33', 1123598821738675201, '2022-10-12 17:45:33', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1580132604552851458, 1566739431463112705, 'tool_change_record.page', '刀具装卸记录分页', '/blade-tool/tool-change-record/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-10-12 17:45:45', 1123598821738675201, '2022-10-12 17:45:45', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1580358114184704002, 1566739825134686210, 'tool_model.detail', '刀具型号详情', '/blade-tool/tool-model/get/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-10-13 08:41:51', 1123598821738675201, '2022-10-13 08:41:51', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1580358114193092610, 1566739825134686210, 'tool_model.page', '刀具型号分页', '/blade-tool/tool-model/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-10-13 08:41:51', 1123598821738675201, '2022-10-13 08:41:51', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1580358161542590465, 1566739825134686210, 'tool_category.list', '刀具类型列表', '/blade-tool/tool-category/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-10-13 08:42:02', 1123598821738675201, '2022-10-13 08:42:02', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1580358161542590466, 1566739825134686210, 'tool_category.tree', '刀具类型树', '/blade-tool/tool-category/tree', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-10-13 08:42:02', 1123598821738675201, '2022-10-13 08:42:02', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1580360346980495361, 1566739825134686210, 'tool_parameter.detail', '刀具参数详情', '/blade-tool/tool-parameter/get/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-10-13 08:50:43', 1123598821738675201, '2022-10-13 08:50:43', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1580360346984689665, 1566739825134686210, 'tool_parameter.list', '刀具参数列表', '/blade-tool/tool-parameter/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-10-13 08:50:43', 1123598821738675201, '2022-10-13 08:50:43', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582258691636330497, 1582192508220342274, 'tool_category.insert', '刀具类型新增', '/blade-tool/tool-category/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-10-18 14:34:04', 1123598821738675201, '2022-10-18 14:34:04', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582258732514017281, 1582195279531212801, 'tool_category.update_name', '刀具类型重命名', '/blade-tool/tool-category/updateName', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-10-18 14:34:13', 1123598821738675201, '2022-10-18 14:34:13', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582258752042696705, 1582195569005297666, 'tool_category.remove', '刀具类型删除', '/blade-tool/tool-category/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-10-18 14:34:18', 1123598821738675201, '2022-10-18 14:34:18', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582258810570014722, 1582196133717999617, 'tool_model.save', '刀具型号新增', '/blade-tool/tool-model/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-10-18 14:34:32', 1123598821738675201, '2022-10-18 14:34:32', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582258861472088066, 1582196444398485505, 'tool_model.update', '刀具型号修改', '/blade-tool/tool-model/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-10-18 14:34:44', 1123598821738675201, '2022-10-18 14:34:44', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582258902672736257, 1582196610295791617, 'tool_model.remove', '刀具型号删除', '/blade-tool/tool-model/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-10-18 14:34:54', 1123598821738675201, '2022-10-18 14:34:54', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582258964895236097, 1582197672343896066, 'tool_parameter.save', '刀具参数新增或者编辑', '/blade-tool/tool-parameter/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-10-18 14:35:09', 1123598821738675201, '2022-10-18 14:35:09', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582258984386166786, 1582197812228128770, 'tool_parameter.save', '刀具参数新增或者编辑', '/blade-tool/tool-parameter/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-10-18 14:35:13', 1123598821738675201, '2022-10-18 14:35:13', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582259013062623233, 1582199434790436865, 'tool_parameter.remove', '刀具参数删除', '/blade-tool/tool-parameter/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-10-18 14:35:20', 1123598821738675201, '2022-10-18 14:35:20', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582259093454848002, 1582201677455425538, 'tool_manage.insert', '刀具新增', '/blade-tool/tool-manage/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-10-18 14:35:39', 1123598821738675201, '2022-10-18 14:35:39', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582259150363164673, 1582201746988597249, 'tool_manage.update', '刀具修改', '/blade-tool/tool-manage/update', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-10-18 14:35:53', 1123598821738675201, '2022-10-18 14:35:53', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582259185838587905, 1582201887124488193, 'tool_manage.remove', '刀具删除', '/blade-tool/tool-manage/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-10-18 14:36:02', 1123598821738675201, '2022-10-18 14:36:02', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582259204918476801, 1582202039482580993, 'tool_manage.reset_tool', '刀具重置', '/blade-tool/tool-manage/reset', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-10-18 14:36:06', 1123598821738675201, '2022-10-18 14:36:06', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582259248493101058, 1582202176644710401, 'tool_manage.export_process_param', '导出刀具监控表', '/blade-tool/tool-manage/excel/export', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-10-18 14:36:16', 1123598821738675201, '2022-10-18 14:36:16', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582259268353130498, 1582202513631870978, 'tool_manage.equipment_tool', '刀具装刀', '/blade-tool/tool-manage/equipment', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-10-18 14:36:21', 1123598821738675201, '2022-10-18 14:36:21', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582259302717063169, 1582202833040703489, 'tool_manage.discharge_tool', '刀具卸刀', '/blade-tool/tool-manage/discharge', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-10-18 14:36:29', 1123598821738675201, '2022-10-18 14:36:29', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582259338951655425, 1566739257311416322, 'tool_manage.is_exist_code_rule', '编码规则是否存在', '/blade-tool/tool-manage/is-exist-code-rule', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-10-18 14:36:38', 1123598821738675201, '2022-10-18 14:36:38', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1582259394467463170, 1582255045074878466, 'tool_change_record.export_process_param', '导出装卸刀记录表', '/blade-tool/tool-change-record/excel/export', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-10-18 14:36:51', 1123598821738675201, '2022-10-18 14:36:51', 1, 0);