1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
| 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);
|
|