提交 | 用户 | 时间
|
e7c126
|
1 |
/* |
H |
2 |
Iailab Database Transfer Tool |
|
3 |
|
|
4 |
Source Server Type : MySQL |
|
5 |
|
|
6 |
Target Server Type : Microsoft SQL Server |
|
7 |
|
|
8 |
Date: 2024-05-03 23:36:38 |
|
9 |
*/ |
|
10 |
|
|
11 |
|
|
12 |
-- ---------------------------- |
|
13 |
-- Table structure for dual |
|
14 |
-- ---------------------------- |
|
15 |
DROP TABLE IF EXISTS dual |
|
16 |
GO |
|
17 |
|
|
18 |
CREATE TABLE dual |
|
19 |
( |
|
20 |
id int NULL |
|
21 |
) |
|
22 |
GO |
|
23 |
|
|
24 |
EXEC sp_addextendedproperty |
|
25 |
'MS_Description', N'数据库连接的表', |
|
26 |
'SCHEMA', N'dbo', |
|
27 |
'TABLE', N'dual' |
|
28 |
GO |
|
29 |
|
|
30 |
|
|
31 |
-- ---------------------------- |
|
32 |
-- Table structure for infra_api_access_log |
|
33 |
-- ---------------------------- |
|
34 |
DROP TABLE IF EXISTS infra_api_access_log; |
|
35 |
CREATE TABLE infra_api_access_log |
|
36 |
( |
|
37 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
38 |
trace_id nvarchar(64) DEFAULT '' NOT NULL, |
|
39 |
user_id bigint DEFAULT 0 NOT NULL, |
|
40 |
user_type tinyint DEFAULT 0 NOT NULL, |
|
41 |
application_name nvarchar(50) NOT NULL, |
|
42 |
request_method nvarchar(16) DEFAULT '' NOT NULL, |
|
43 |
request_url nvarchar(255) DEFAULT '' NOT NULL, |
|
44 |
request_params nvarchar(max) NULL, |
|
45 |
response_body nvarchar(max) NULL, |
|
46 |
user_ip nvarchar(50) NOT NULL, |
|
47 |
user_agent nvarchar(512) NOT NULL, |
|
48 |
operate_module nvarchar(50) DEFAULT NULL NULL, |
|
49 |
operate_name nvarchar(50) DEFAULT NULL NULL, |
|
50 |
operate_type tinyint DEFAULT 0 NULL, |
|
51 |
begin_time datetime2 NOT NULL, |
|
52 |
end_time datetime2 NOT NULL, |
|
53 |
duration int NOT NULL, |
|
54 |
result_code int DEFAULT 0 NOT NULL, |
|
55 |
result_msg nvarchar(512) DEFAULT '' NULL, |
|
56 |
creator nvarchar(64) DEFAULT '' NULL, |
|
57 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
58 |
updater nvarchar(64) DEFAULT '' NULL, |
|
59 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
60 |
deleted bit DEFAULT 0 NOT NULL, |
|
61 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
62 |
) |
|
63 |
GO |
|
64 |
|
|
65 |
CREATE INDEX idx_infra_api_access_log_01 ON infra_api_access_log (create_time) |
|
66 |
GO |
|
67 |
|
|
68 |
EXEC sp_addextendedproperty |
|
69 |
'MS_Description', N'日志主键', |
|
70 |
'SCHEMA', N'dbo', |
|
71 |
'TABLE', N'infra_api_access_log', |
|
72 |
'COLUMN', N'id' |
|
73 |
GO |
|
74 |
|
|
75 |
EXEC sp_addextendedproperty |
|
76 |
'MS_Description', N'链路追踪编号', |
|
77 |
'SCHEMA', N'dbo', |
|
78 |
'TABLE', N'infra_api_access_log', |
|
79 |
'COLUMN', N'trace_id' |
|
80 |
GO |
|
81 |
|
|
82 |
EXEC sp_addextendedproperty |
|
83 |
'MS_Description', N'用户编号', |
|
84 |
'SCHEMA', N'dbo', |
|
85 |
'TABLE', N'infra_api_access_log', |
|
86 |
'COLUMN', N'user_id' |
|
87 |
GO |
|
88 |
|
|
89 |
EXEC sp_addextendedproperty |
|
90 |
'MS_Description', N'用户类型', |
|
91 |
'SCHEMA', N'dbo', |
|
92 |
'TABLE', N'infra_api_access_log', |
|
93 |
'COLUMN', N'user_type' |
|
94 |
GO |
|
95 |
|
|
96 |
EXEC sp_addextendedproperty |
|
97 |
'MS_Description', N'应用名', |
|
98 |
'SCHEMA', N'dbo', |
|
99 |
'TABLE', N'infra_api_access_log', |
|
100 |
'COLUMN', N'application_name' |
|
101 |
GO |
|
102 |
|
|
103 |
EXEC sp_addextendedproperty |
|
104 |
'MS_Description', N'请求方法名', |
|
105 |
'SCHEMA', N'dbo', |
|
106 |
'TABLE', N'infra_api_access_log', |
|
107 |
'COLUMN', N'request_method' |
|
108 |
GO |
|
109 |
|
|
110 |
EXEC sp_addextendedproperty |
|
111 |
'MS_Description', N'请求地址', |
|
112 |
'SCHEMA', N'dbo', |
|
113 |
'TABLE', N'infra_api_access_log', |
|
114 |
'COLUMN', N'request_url' |
|
115 |
GO |
|
116 |
|
|
117 |
EXEC sp_addextendedproperty |
|
118 |
'MS_Description', N'请求参数', |
|
119 |
'SCHEMA', N'dbo', |
|
120 |
'TABLE', N'infra_api_access_log', |
|
121 |
'COLUMN', N'request_params' |
|
122 |
GO |
|
123 |
|
|
124 |
EXEC sp_addextendedproperty |
|
125 |
'MS_Description', N'响应结果', |
|
126 |
'SCHEMA', N'dbo', |
|
127 |
'TABLE', N'infra_api_access_log', |
|
128 |
'COLUMN', N'response_body' |
|
129 |
GO |
|
130 |
|
|
131 |
EXEC sp_addextendedproperty |
|
132 |
'MS_Description', N'用户 IP', |
|
133 |
'SCHEMA', N'dbo', |
|
134 |
'TABLE', N'infra_api_access_log', |
|
135 |
'COLUMN', N'user_ip' |
|
136 |
GO |
|
137 |
|
|
138 |
EXEC sp_addextendedproperty |
|
139 |
'MS_Description', N'浏览器 UA', |
|
140 |
'SCHEMA', N'dbo', |
|
141 |
'TABLE', N'infra_api_access_log', |
|
142 |
'COLUMN', N'user_agent' |
|
143 |
GO |
|
144 |
|
|
145 |
EXEC sp_addextendedproperty |
|
146 |
'MS_Description', N'操作模块', |
|
147 |
'SCHEMA', N'dbo', |
|
148 |
'TABLE', N'infra_api_access_log', |
|
149 |
'COLUMN', N'operate_module' |
|
150 |
GO |
|
151 |
|
|
152 |
EXEC sp_addextendedproperty |
|
153 |
'MS_Description', N'操作名', |
|
154 |
'SCHEMA', N'dbo', |
|
155 |
'TABLE', N'infra_api_access_log', |
|
156 |
'COLUMN', N'operate_name' |
|
157 |
GO |
|
158 |
|
|
159 |
EXEC sp_addextendedproperty |
|
160 |
'MS_Description', N'操作分类', |
|
161 |
'SCHEMA', N'dbo', |
|
162 |
'TABLE', N'infra_api_access_log', |
|
163 |
'COLUMN', N'operate_type' |
|
164 |
GO |
|
165 |
|
|
166 |
EXEC sp_addextendedproperty |
|
167 |
'MS_Description', N'开始请求时间', |
|
168 |
'SCHEMA', N'dbo', |
|
169 |
'TABLE', N'infra_api_access_log', |
|
170 |
'COLUMN', N'begin_time' |
|
171 |
GO |
|
172 |
|
|
173 |
EXEC sp_addextendedproperty |
|
174 |
'MS_Description', N'结束请求时间', |
|
175 |
'SCHEMA', N'dbo', |
|
176 |
'TABLE', N'infra_api_access_log', |
|
177 |
'COLUMN', N'end_time' |
|
178 |
GO |
|
179 |
|
|
180 |
EXEC sp_addextendedproperty |
|
181 |
'MS_Description', N'执行时长', |
|
182 |
'SCHEMA', N'dbo', |
|
183 |
'TABLE', N'infra_api_access_log', |
|
184 |
'COLUMN', N'duration' |
|
185 |
GO |
|
186 |
|
|
187 |
EXEC sp_addextendedproperty |
|
188 |
'MS_Description', N'结果码', |
|
189 |
'SCHEMA', N'dbo', |
|
190 |
'TABLE', N'infra_api_access_log', |
|
191 |
'COLUMN', N'result_code' |
|
192 |
GO |
|
193 |
|
|
194 |
EXEC sp_addextendedproperty |
|
195 |
'MS_Description', N'结果提示', |
|
196 |
'SCHEMA', N'dbo', |
|
197 |
'TABLE', N'infra_api_access_log', |
|
198 |
'COLUMN', N'result_msg' |
|
199 |
GO |
|
200 |
|
|
201 |
EXEC sp_addextendedproperty |
|
202 |
'MS_Description', N'创建者', |
|
203 |
'SCHEMA', N'dbo', |
|
204 |
'TABLE', N'infra_api_access_log', |
|
205 |
'COLUMN', N'creator' |
|
206 |
GO |
|
207 |
|
|
208 |
EXEC sp_addextendedproperty |
|
209 |
'MS_Description', N'创建时间', |
|
210 |
'SCHEMA', N'dbo', |
|
211 |
'TABLE', N'infra_api_access_log', |
|
212 |
'COLUMN', N'create_time' |
|
213 |
GO |
|
214 |
|
|
215 |
EXEC sp_addextendedproperty |
|
216 |
'MS_Description', N'更新者', |
|
217 |
'SCHEMA', N'dbo', |
|
218 |
'TABLE', N'infra_api_access_log', |
|
219 |
'COLUMN', N'updater' |
|
220 |
GO |
|
221 |
|
|
222 |
EXEC sp_addextendedproperty |
|
223 |
'MS_Description', N'更新时间', |
|
224 |
'SCHEMA', N'dbo', |
|
225 |
'TABLE', N'infra_api_access_log', |
|
226 |
'COLUMN', N'update_time' |
|
227 |
GO |
|
228 |
|
|
229 |
EXEC sp_addextendedproperty |
|
230 |
'MS_Description', N'是否删除', |
|
231 |
'SCHEMA', N'dbo', |
|
232 |
'TABLE', N'infra_api_access_log', |
|
233 |
'COLUMN', N'deleted' |
|
234 |
GO |
|
235 |
|
|
236 |
EXEC sp_addextendedproperty |
|
237 |
'MS_Description', N'租户编号', |
|
238 |
'SCHEMA', N'dbo', |
|
239 |
'TABLE', N'infra_api_access_log', |
|
240 |
'COLUMN', N'tenant_id' |
|
241 |
GO |
|
242 |
|
|
243 |
EXEC sp_addextendedproperty |
|
244 |
'MS_Description', N'API 访问日志表', |
|
245 |
'SCHEMA', N'dbo', |
|
246 |
'TABLE', N'infra_api_access_log' |
|
247 |
GO |
|
248 |
|
|
249 |
-- ---------------------------- |
|
250 |
-- Table structure for infra_api_error_log |
|
251 |
-- ---------------------------- |
|
252 |
DROP TABLE IF EXISTS infra_api_error_log; |
|
253 |
CREATE TABLE infra_api_error_log |
|
254 |
( |
|
255 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
256 |
trace_id nvarchar(64) NOT NULL, |
|
257 |
user_id int DEFAULT 0 NOT NULL, |
|
258 |
user_type tinyint DEFAULT 0 NOT NULL, |
|
259 |
application_name nvarchar(50) NOT NULL, |
|
260 |
request_method nvarchar(16) NOT NULL, |
|
261 |
request_url nvarchar(255) NOT NULL, |
|
262 |
request_params nvarchar(4000) NOT NULL, |
|
263 |
user_ip nvarchar(50) NOT NULL, |
|
264 |
user_agent nvarchar(512) NOT NULL, |
|
265 |
exception_time datetime2 NOT NULL, |
|
266 |
exception_name nvarchar(128) DEFAULT '' NOT NULL, |
|
267 |
exception_message nvarchar(max) NOT NULL, |
|
268 |
exception_root_cause_message nvarchar(max) NOT NULL, |
|
269 |
exception_stack_trace nvarchar(max) NOT NULL, |
|
270 |
exception_class_name nvarchar(512) NOT NULL, |
|
271 |
exception_file_name nvarchar(512) NOT NULL, |
|
272 |
exception_method_name nvarchar(512) NOT NULL, |
|
273 |
exception_line_number int NOT NULL, |
|
274 |
process_status tinyint NOT NULL, |
|
275 |
process_time datetime2 DEFAULT NULL NULL, |
|
276 |
process_user_id int DEFAULT 0 NULL, |
|
277 |
creator nvarchar(64) DEFAULT '' NULL, |
|
278 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
279 |
updater nvarchar(64) DEFAULT '' NULL, |
|
280 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
281 |
deleted bit DEFAULT 0 NOT NULL, |
|
282 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
283 |
) |
|
284 |
GO |
|
285 |
|
|
286 |
EXEC sp_addextendedproperty |
|
287 |
'MS_Description', N'编号', |
|
288 |
'SCHEMA', N'dbo', |
|
289 |
'TABLE', N'infra_api_error_log', |
|
290 |
'COLUMN', N'id' |
|
291 |
GO |
|
292 |
|
|
293 |
EXEC sp_addextendedproperty |
|
294 |
'MS_Description', N'链路追踪编号 |
|
295 |
* |
|
296 |
* 一般来说,通过链路追踪编号,可以将访问日志,错误日志,链路追踪日志,logger 打印日志等,结合在一起,从而进行排错。', |
|
297 |
'SCHEMA', N'dbo', |
|
298 |
'TABLE', N'infra_api_error_log', |
|
299 |
'COLUMN', N'trace_id' |
|
300 |
GO |
|
301 |
|
|
302 |
EXEC sp_addextendedproperty |
|
303 |
'MS_Description', N'用户编号', |
|
304 |
'SCHEMA', N'dbo', |
|
305 |
'TABLE', N'infra_api_error_log', |
|
306 |
'COLUMN', N'user_id' |
|
307 |
GO |
|
308 |
|
|
309 |
EXEC sp_addextendedproperty |
|
310 |
'MS_Description', N'用户类型', |
|
311 |
'SCHEMA', N'dbo', |
|
312 |
'TABLE', N'infra_api_error_log', |
|
313 |
'COLUMN', N'user_type' |
|
314 |
GO |
|
315 |
|
|
316 |
EXEC sp_addextendedproperty |
|
317 |
'MS_Description', N'应用名 |
|
318 |
* |
|
319 |
* 目前读取 spring.application.name', |
|
320 |
'SCHEMA', N'dbo', |
|
321 |
'TABLE', N'infra_api_error_log', |
|
322 |
'COLUMN', N'application_name' |
|
323 |
GO |
|
324 |
|
|
325 |
EXEC sp_addextendedproperty |
|
326 |
'MS_Description', N'请求方法名', |
|
327 |
'SCHEMA', N'dbo', |
|
328 |
'TABLE', N'infra_api_error_log', |
|
329 |
'COLUMN', N'request_method' |
|
330 |
GO |
|
331 |
|
|
332 |
EXEC sp_addextendedproperty |
|
333 |
'MS_Description', N'请求地址', |
|
334 |
'SCHEMA', N'dbo', |
|
335 |
'TABLE', N'infra_api_error_log', |
|
336 |
'COLUMN', N'request_url' |
|
337 |
GO |
|
338 |
|
|
339 |
EXEC sp_addextendedproperty |
|
340 |
'MS_Description', N'请求参数', |
|
341 |
'SCHEMA', N'dbo', |
|
342 |
'TABLE', N'infra_api_error_log', |
|
343 |
'COLUMN', N'request_params' |
|
344 |
GO |
|
345 |
|
|
346 |
EXEC sp_addextendedproperty |
|
347 |
'MS_Description', N'用户 IP', |
|
348 |
'SCHEMA', N'dbo', |
|
349 |
'TABLE', N'infra_api_error_log', |
|
350 |
'COLUMN', N'user_ip' |
|
351 |
GO |
|
352 |
|
|
353 |
EXEC sp_addextendedproperty |
|
354 |
'MS_Description', N'浏览器 UA', |
|
355 |
'SCHEMA', N'dbo', |
|
356 |
'TABLE', N'infra_api_error_log', |
|
357 |
'COLUMN', N'user_agent' |
|
358 |
GO |
|
359 |
|
|
360 |
EXEC sp_addextendedproperty |
|
361 |
'MS_Description', N'异常发生时间', |
|
362 |
'SCHEMA', N'dbo', |
|
363 |
'TABLE', N'infra_api_error_log', |
|
364 |
'COLUMN', N'exception_time' |
|
365 |
GO |
|
366 |
|
|
367 |
EXEC sp_addextendedproperty |
|
368 |
'MS_Description', N'异常名 |
|
369 |
* |
|
370 |
* {@link Throwable#getClass()} 的类全名', |
|
371 |
'SCHEMA', N'dbo', |
|
372 |
'TABLE', N'infra_api_error_log', |
|
373 |
'COLUMN', N'exception_name' |
|
374 |
GO |
|
375 |
|
|
376 |
EXEC sp_addextendedproperty |
|
377 |
'MS_Description', N'异常导致的消息 |
|
378 |
* |
|
379 |
* {@link cn.iocoder.common.framework.util.ExceptionUtil#getMessage(Throwable)}', |
|
380 |
'SCHEMA', N'dbo', |
|
381 |
'TABLE', N'infra_api_error_log', |
|
382 |
'COLUMN', N'exception_message' |
|
383 |
GO |
|
384 |
|
|
385 |
EXEC sp_addextendedproperty |
|
386 |
'MS_Description', N'异常导致的根消息 |
|
387 |
* |
|
388 |
* {@link cn.iocoder.common.framework.util.ExceptionUtil#getRootCauseMessage(Throwable)}', |
|
389 |
'SCHEMA', N'dbo', |
|
390 |
'TABLE', N'infra_api_error_log', |
|
391 |
'COLUMN', N'exception_root_cause_message' |
|
392 |
GO |
|
393 |
|
|
394 |
EXEC sp_addextendedproperty |
|
395 |
'MS_Description', N'异常的栈轨迹 |
|
396 |
* |
|
397 |
* {@link cn.iocoder.common.framework.util.ExceptionUtil#getServiceException(Exception)}', |
|
398 |
'SCHEMA', N'dbo', |
|
399 |
'TABLE', N'infra_api_error_log', |
|
400 |
'COLUMN', N'exception_stack_trace' |
|
401 |
GO |
|
402 |
|
|
403 |
EXEC sp_addextendedproperty |
|
404 |
'MS_Description', N'异常发生的类全名 |
|
405 |
* |
|
406 |
* {@link StackTraceElement#getClassName()}', |
|
407 |
'SCHEMA', N'dbo', |
|
408 |
'TABLE', N'infra_api_error_log', |
|
409 |
'COLUMN', N'exception_class_name' |
|
410 |
GO |
|
411 |
|
|
412 |
EXEC sp_addextendedproperty |
|
413 |
'MS_Description', N'异常发生的类文件 |
|
414 |
* |
|
415 |
* {@link StackTraceElement#getFileName()}', |
|
416 |
'SCHEMA', N'dbo', |
|
417 |
'TABLE', N'infra_api_error_log', |
|
418 |
'COLUMN', N'exception_file_name' |
|
419 |
GO |
|
420 |
|
|
421 |
EXEC sp_addextendedproperty |
|
422 |
'MS_Description', N'异常发生的方法名 |
|
423 |
* |
|
424 |
* {@link StackTraceElement#getMethodName()}', |
|
425 |
'SCHEMA', N'dbo', |
|
426 |
'TABLE', N'infra_api_error_log', |
|
427 |
'COLUMN', N'exception_method_name' |
|
428 |
GO |
|
429 |
|
|
430 |
EXEC sp_addextendedproperty |
|
431 |
'MS_Description', N'异常发生的方法所在行 |
|
432 |
* |
|
433 |
* {@link StackTraceElement#getLineNumber()}', |
|
434 |
'SCHEMA', N'dbo', |
|
435 |
'TABLE', N'infra_api_error_log', |
|
436 |
'COLUMN', N'exception_line_number' |
|
437 |
GO |
|
438 |
|
|
439 |
EXEC sp_addextendedproperty |
|
440 |
'MS_Description', N'处理状态', |
|
441 |
'SCHEMA', N'dbo', |
|
442 |
'TABLE', N'infra_api_error_log', |
|
443 |
'COLUMN', N'process_status' |
|
444 |
GO |
|
445 |
|
|
446 |
EXEC sp_addextendedproperty |
|
447 |
'MS_Description', N'处理时间', |
|
448 |
'SCHEMA', N'dbo', |
|
449 |
'TABLE', N'infra_api_error_log', |
|
450 |
'COLUMN', N'process_time' |
|
451 |
GO |
|
452 |
|
|
453 |
EXEC sp_addextendedproperty |
|
454 |
'MS_Description', N'处理用户编号', |
|
455 |
'SCHEMA', N'dbo', |
|
456 |
'TABLE', N'infra_api_error_log', |
|
457 |
'COLUMN', N'process_user_id' |
|
458 |
GO |
|
459 |
|
|
460 |
EXEC sp_addextendedproperty |
|
461 |
'MS_Description', N'创建者', |
|
462 |
'SCHEMA', N'dbo', |
|
463 |
'TABLE', N'infra_api_error_log', |
|
464 |
'COLUMN', N'creator' |
|
465 |
GO |
|
466 |
|
|
467 |
EXEC sp_addextendedproperty |
|
468 |
'MS_Description', N'创建时间', |
|
469 |
'SCHEMA', N'dbo', |
|
470 |
'TABLE', N'infra_api_error_log', |
|
471 |
'COLUMN', N'create_time' |
|
472 |
GO |
|
473 |
|
|
474 |
EXEC sp_addextendedproperty |
|
475 |
'MS_Description', N'更新者', |
|
476 |
'SCHEMA', N'dbo', |
|
477 |
'TABLE', N'infra_api_error_log', |
|
478 |
'COLUMN', N'updater' |
|
479 |
GO |
|
480 |
|
|
481 |
EXEC sp_addextendedproperty |
|
482 |
'MS_Description', N'更新时间', |
|
483 |
'SCHEMA', N'dbo', |
|
484 |
'TABLE', N'infra_api_error_log', |
|
485 |
'COLUMN', N'update_time' |
|
486 |
GO |
|
487 |
|
|
488 |
EXEC sp_addextendedproperty |
|
489 |
'MS_Description', N'是否删除', |
|
490 |
'SCHEMA', N'dbo', |
|
491 |
'TABLE', N'infra_api_error_log', |
|
492 |
'COLUMN', N'deleted' |
|
493 |
GO |
|
494 |
|
|
495 |
EXEC sp_addextendedproperty |
|
496 |
'MS_Description', N'租户编号', |
|
497 |
'SCHEMA', N'dbo', |
|
498 |
'TABLE', N'infra_api_error_log', |
|
499 |
'COLUMN', N'tenant_id' |
|
500 |
GO |
|
501 |
|
|
502 |
EXEC sp_addextendedproperty |
|
503 |
'MS_Description', N'系统异常日志', |
|
504 |
'SCHEMA', N'dbo', |
|
505 |
'TABLE', N'infra_api_error_log' |
|
506 |
GO |
|
507 |
|
|
508 |
-- ---------------------------- |
|
509 |
-- Table structure for infra_codegen_column |
|
510 |
-- ---------------------------- |
|
511 |
DROP TABLE IF EXISTS infra_codegen_column; |
|
512 |
CREATE TABLE infra_codegen_column |
|
513 |
( |
|
514 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
515 |
table_id bigint NOT NULL, |
|
516 |
column_name nvarchar(200) NOT NULL, |
|
517 |
data_type nvarchar(100) NOT NULL, |
|
518 |
column_comment nvarchar(500) NOT NULL, |
|
519 |
nullable varchar(1) NOT NULL, |
|
520 |
primary_key varchar(1) NOT NULL, |
|
521 |
ordinal_position int NOT NULL, |
|
522 |
java_type nvarchar(32) NOT NULL, |
|
523 |
java_field nvarchar(64) NOT NULL, |
|
524 |
dict_type nvarchar(200) DEFAULT '' NULL, |
|
525 |
example nvarchar(64) DEFAULT NULL NULL, |
|
526 |
create_operation varchar(1) NOT NULL, |
|
527 |
update_operation varchar(1) NOT NULL, |
|
528 |
list_operation varchar(1) NOT NULL, |
|
529 |
list_operation_condition nvarchar(32) DEFAULT '=' NOT NULL, |
|
530 |
list_operation_result varchar(1) NOT NULL, |
|
531 |
html_type nvarchar(32) NOT NULL, |
|
532 |
creator nvarchar(64) DEFAULT '' NULL, |
|
533 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
534 |
updater nvarchar(64) DEFAULT '' NULL, |
|
535 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
536 |
deleted bit DEFAULT 0 NOT NULL |
|
537 |
) |
|
538 |
GO |
|
539 |
|
|
540 |
EXEC sp_addextendedproperty |
|
541 |
'MS_Description', N'编号', |
|
542 |
'SCHEMA', N'dbo', |
|
543 |
'TABLE', N'infra_codegen_column', |
|
544 |
'COLUMN', N'id' |
|
545 |
GO |
|
546 |
|
|
547 |
EXEC sp_addextendedproperty |
|
548 |
'MS_Description', N'表编号', |
|
549 |
'SCHEMA', N'dbo', |
|
550 |
'TABLE', N'infra_codegen_column', |
|
551 |
'COLUMN', N'table_id' |
|
552 |
GO |
|
553 |
|
|
554 |
EXEC sp_addextendedproperty |
|
555 |
'MS_Description', N'字段名', |
|
556 |
'SCHEMA', N'dbo', |
|
557 |
'TABLE', N'infra_codegen_column', |
|
558 |
'COLUMN', N'column_name' |
|
559 |
GO |
|
560 |
|
|
561 |
EXEC sp_addextendedproperty |
|
562 |
'MS_Description', N'字段类型', |
|
563 |
'SCHEMA', N'dbo', |
|
564 |
'TABLE', N'infra_codegen_column', |
|
565 |
'COLUMN', N'data_type' |
|
566 |
GO |
|
567 |
|
|
568 |
EXEC sp_addextendedproperty |
|
569 |
'MS_Description', N'字段描述', |
|
570 |
'SCHEMA', N'dbo', |
|
571 |
'TABLE', N'infra_codegen_column', |
|
572 |
'COLUMN', N'column_comment' |
|
573 |
GO |
|
574 |
|
|
575 |
EXEC sp_addextendedproperty |
|
576 |
'MS_Description', N'是否允许为空', |
|
577 |
'SCHEMA', N'dbo', |
|
578 |
'TABLE', N'infra_codegen_column', |
|
579 |
'COLUMN', N'nullable' |
|
580 |
GO |
|
581 |
|
|
582 |
EXEC sp_addextendedproperty |
|
583 |
'MS_Description', N'是否主键', |
|
584 |
'SCHEMA', N'dbo', |
|
585 |
'TABLE', N'infra_codegen_column', |
|
586 |
'COLUMN', N'primary_key' |
|
587 |
GO |
|
588 |
|
|
589 |
EXEC sp_addextendedproperty |
|
590 |
'MS_Description', N'排序', |
|
591 |
'SCHEMA', N'dbo', |
|
592 |
'TABLE', N'infra_codegen_column', |
|
593 |
'COLUMN', N'ordinal_position' |
|
594 |
GO |
|
595 |
|
|
596 |
EXEC sp_addextendedproperty |
|
597 |
'MS_Description', N'Java 属性类型', |
|
598 |
'SCHEMA', N'dbo', |
|
599 |
'TABLE', N'infra_codegen_column', |
|
600 |
'COLUMN', N'java_type' |
|
601 |
GO |
|
602 |
|
|
603 |
EXEC sp_addextendedproperty |
|
604 |
'MS_Description', N'Java 属性名', |
|
605 |
'SCHEMA', N'dbo', |
|
606 |
'TABLE', N'infra_codegen_column', |
|
607 |
'COLUMN', N'java_field' |
|
608 |
GO |
|
609 |
|
|
610 |
EXEC sp_addextendedproperty |
|
611 |
'MS_Description', N'字典类型', |
|
612 |
'SCHEMA', N'dbo', |
|
613 |
'TABLE', N'infra_codegen_column', |
|
614 |
'COLUMN', N'dict_type' |
|
615 |
GO |
|
616 |
|
|
617 |
EXEC sp_addextendedproperty |
|
618 |
'MS_Description', N'数据示例', |
|
619 |
'SCHEMA', N'dbo', |
|
620 |
'TABLE', N'infra_codegen_column', |
|
621 |
'COLUMN', N'example' |
|
622 |
GO |
|
623 |
|
|
624 |
EXEC sp_addextendedproperty |
|
625 |
'MS_Description', N'是否为 Create 创建操作的字段', |
|
626 |
'SCHEMA', N'dbo', |
|
627 |
'TABLE', N'infra_codegen_column', |
|
628 |
'COLUMN', N'create_operation' |
|
629 |
GO |
|
630 |
|
|
631 |
EXEC sp_addextendedproperty |
|
632 |
'MS_Description', N'是否为 Update 更新操作的字段', |
|
633 |
'SCHEMA', N'dbo', |
|
634 |
'TABLE', N'infra_codegen_column', |
|
635 |
'COLUMN', N'update_operation' |
|
636 |
GO |
|
637 |
|
|
638 |
EXEC sp_addextendedproperty |
|
639 |
'MS_Description', N'是否为 List 查询操作的字段', |
|
640 |
'SCHEMA', N'dbo', |
|
641 |
'TABLE', N'infra_codegen_column', |
|
642 |
'COLUMN', N'list_operation' |
|
643 |
GO |
|
644 |
|
|
645 |
EXEC sp_addextendedproperty |
|
646 |
'MS_Description', N'List 查询操作的条件类型', |
|
647 |
'SCHEMA', N'dbo', |
|
648 |
'TABLE', N'infra_codegen_column', |
|
649 |
'COLUMN', N'list_operation_condition' |
|
650 |
GO |
|
651 |
|
|
652 |
EXEC sp_addextendedproperty |
|
653 |
'MS_Description', N'是否为 List 查询操作的返回字段', |
|
654 |
'SCHEMA', N'dbo', |
|
655 |
'TABLE', N'infra_codegen_column', |
|
656 |
'COLUMN', N'list_operation_result' |
|
657 |
GO |
|
658 |
|
|
659 |
EXEC sp_addextendedproperty |
|
660 |
'MS_Description', N'显示类型', |
|
661 |
'SCHEMA', N'dbo', |
|
662 |
'TABLE', N'infra_codegen_column', |
|
663 |
'COLUMN', N'html_type' |
|
664 |
GO |
|
665 |
|
|
666 |
EXEC sp_addextendedproperty |
|
667 |
'MS_Description', N'创建者', |
|
668 |
'SCHEMA', N'dbo', |
|
669 |
'TABLE', N'infra_codegen_column', |
|
670 |
'COLUMN', N'creator' |
|
671 |
GO |
|
672 |
|
|
673 |
EXEC sp_addextendedproperty |
|
674 |
'MS_Description', N'创建时间', |
|
675 |
'SCHEMA', N'dbo', |
|
676 |
'TABLE', N'infra_codegen_column', |
|
677 |
'COLUMN', N'create_time' |
|
678 |
GO |
|
679 |
|
|
680 |
EXEC sp_addextendedproperty |
|
681 |
'MS_Description', N'更新者', |
|
682 |
'SCHEMA', N'dbo', |
|
683 |
'TABLE', N'infra_codegen_column', |
|
684 |
'COLUMN', N'updater' |
|
685 |
GO |
|
686 |
|
|
687 |
EXEC sp_addextendedproperty |
|
688 |
'MS_Description', N'更新时间', |
|
689 |
'SCHEMA', N'dbo', |
|
690 |
'TABLE', N'infra_codegen_column', |
|
691 |
'COLUMN', N'update_time' |
|
692 |
GO |
|
693 |
|
|
694 |
EXEC sp_addextendedproperty |
|
695 |
'MS_Description', N'是否删除', |
|
696 |
'SCHEMA', N'dbo', |
|
697 |
'TABLE', N'infra_codegen_column', |
|
698 |
'COLUMN', N'deleted' |
|
699 |
GO |
|
700 |
|
|
701 |
EXEC sp_addextendedproperty |
|
702 |
'MS_Description', N'代码生成表字段定义', |
|
703 |
'SCHEMA', N'dbo', |
|
704 |
'TABLE', N'infra_codegen_column' |
|
705 |
GO |
|
706 |
|
|
707 |
-- ---------------------------- |
|
708 |
-- Table structure for infra_codegen_table |
|
709 |
-- ---------------------------- |
|
710 |
DROP TABLE IF EXISTS infra_codegen_table; |
|
711 |
CREATE TABLE infra_codegen_table |
|
712 |
( |
|
713 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
714 |
data_source_config_id bigint NOT NULL, |
|
715 |
scene tinyint DEFAULT 1 NOT NULL, |
|
716 |
table_name nvarchar(200) DEFAULT '' NOT NULL, |
|
717 |
table_comment nvarchar(500) DEFAULT '' NOT NULL, |
|
718 |
remark nvarchar(500) DEFAULT NULL NULL, |
|
719 |
module_name nvarchar(30) NOT NULL, |
|
720 |
business_name nvarchar(30) NOT NULL, |
|
721 |
class_name nvarchar(100) DEFAULT '' NOT NULL, |
|
722 |
class_comment nvarchar(50) NOT NULL, |
|
723 |
author nvarchar(50) NOT NULL, |
|
724 |
template_type tinyint DEFAULT 1 NOT NULL, |
|
725 |
front_type tinyint NOT NULL, |
|
726 |
parent_menu_id bigint DEFAULT NULL NULL, |
|
727 |
master_table_id bigint DEFAULT NULL NULL, |
|
728 |
sub_join_column_id bigint DEFAULT NULL NULL, |
|
729 |
sub_join_many varchar(1) DEFAULT NULL NULL, |
|
730 |
tree_parent_column_id bigint DEFAULT NULL NULL, |
|
731 |
tree_name_column_id bigint DEFAULT NULL NULL, |
|
732 |
creator nvarchar(64) DEFAULT '' NULL, |
|
733 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
734 |
updater nvarchar(64) DEFAULT '' NULL, |
|
735 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
736 |
deleted bit DEFAULT 0 NOT NULL |
|
737 |
) |
|
738 |
GO |
|
739 |
|
|
740 |
EXEC sp_addextendedproperty |
|
741 |
'MS_Description', N'编号', |
|
742 |
'SCHEMA', N'dbo', |
|
743 |
'TABLE', N'infra_codegen_table', |
|
744 |
'COLUMN', N'id' |
|
745 |
GO |
|
746 |
|
|
747 |
EXEC sp_addextendedproperty |
|
748 |
'MS_Description', N'数据源配置的编号', |
|
749 |
'SCHEMA', N'dbo', |
|
750 |
'TABLE', N'infra_codegen_table', |
|
751 |
'COLUMN', N'data_source_config_id' |
|
752 |
GO |
|
753 |
|
|
754 |
EXEC sp_addextendedproperty |
|
755 |
'MS_Description', N'生成场景', |
|
756 |
'SCHEMA', N'dbo', |
|
757 |
'TABLE', N'infra_codegen_table', |
|
758 |
'COLUMN', N'scene' |
|
759 |
GO |
|
760 |
|
|
761 |
EXEC sp_addextendedproperty |
|
762 |
'MS_Description', N'表名称', |
|
763 |
'SCHEMA', N'dbo', |
|
764 |
'TABLE', N'infra_codegen_table', |
|
765 |
'COLUMN', N'table_name' |
|
766 |
GO |
|
767 |
|
|
768 |
EXEC sp_addextendedproperty |
|
769 |
'MS_Description', N'表描述', |
|
770 |
'SCHEMA', N'dbo', |
|
771 |
'TABLE', N'infra_codegen_table', |
|
772 |
'COLUMN', N'table_comment' |
|
773 |
GO |
|
774 |
|
|
775 |
EXEC sp_addextendedproperty |
|
776 |
'MS_Description', N'备注', |
|
777 |
'SCHEMA', N'dbo', |
|
778 |
'TABLE', N'infra_codegen_table', |
|
779 |
'COLUMN', N'remark' |
|
780 |
GO |
|
781 |
|
|
782 |
EXEC sp_addextendedproperty |
|
783 |
'MS_Description', N'模块名', |
|
784 |
'SCHEMA', N'dbo', |
|
785 |
'TABLE', N'infra_codegen_table', |
|
786 |
'COLUMN', N'module_name' |
|
787 |
GO |
|
788 |
|
|
789 |
EXEC sp_addextendedproperty |
|
790 |
'MS_Description', N'业务名', |
|
791 |
'SCHEMA', N'dbo', |
|
792 |
'TABLE', N'infra_codegen_table', |
|
793 |
'COLUMN', N'business_name' |
|
794 |
GO |
|
795 |
|
|
796 |
EXEC sp_addextendedproperty |
|
797 |
'MS_Description', N'类名称', |
|
798 |
'SCHEMA', N'dbo', |
|
799 |
'TABLE', N'infra_codegen_table', |
|
800 |
'COLUMN', N'class_name' |
|
801 |
GO |
|
802 |
|
|
803 |
EXEC sp_addextendedproperty |
|
804 |
'MS_Description', N'类描述', |
|
805 |
'SCHEMA', N'dbo', |
|
806 |
'TABLE', N'infra_codegen_table', |
|
807 |
'COLUMN', N'class_comment' |
|
808 |
GO |
|
809 |
|
|
810 |
EXEC sp_addextendedproperty |
|
811 |
'MS_Description', N'作者', |
|
812 |
'SCHEMA', N'dbo', |
|
813 |
'TABLE', N'infra_codegen_table', |
|
814 |
'COLUMN', N'author' |
|
815 |
GO |
|
816 |
|
|
817 |
EXEC sp_addextendedproperty |
|
818 |
'MS_Description', N'模板类型', |
|
819 |
'SCHEMA', N'dbo', |
|
820 |
'TABLE', N'infra_codegen_table', |
|
821 |
'COLUMN', N'template_type' |
|
822 |
GO |
|
823 |
|
|
824 |
EXEC sp_addextendedproperty |
|
825 |
'MS_Description', N'前端类型', |
|
826 |
'SCHEMA', N'dbo', |
|
827 |
'TABLE', N'infra_codegen_table', |
|
828 |
'COLUMN', N'front_type' |
|
829 |
GO |
|
830 |
|
|
831 |
EXEC sp_addextendedproperty |
|
832 |
'MS_Description', N'父菜单编号', |
|
833 |
'SCHEMA', N'dbo', |
|
834 |
'TABLE', N'infra_codegen_table', |
|
835 |
'COLUMN', N'parent_menu_id' |
|
836 |
GO |
|
837 |
|
|
838 |
EXEC sp_addextendedproperty |
|
839 |
'MS_Description', N'主表的编号', |
|
840 |
'SCHEMA', N'dbo', |
|
841 |
'TABLE', N'infra_codegen_table', |
|
842 |
'COLUMN', N'master_table_id' |
|
843 |
GO |
|
844 |
|
|
845 |
EXEC sp_addextendedproperty |
|
846 |
'MS_Description', N'子表关联主表的字段编号', |
|
847 |
'SCHEMA', N'dbo', |
|
848 |
'TABLE', N'infra_codegen_table', |
|
849 |
'COLUMN', N'sub_join_column_id' |
|
850 |
GO |
|
851 |
|
|
852 |
EXEC sp_addextendedproperty |
|
853 |
'MS_Description', N'主表与子表是否一对多', |
|
854 |
'SCHEMA', N'dbo', |
|
855 |
'TABLE', N'infra_codegen_table', |
|
856 |
'COLUMN', N'sub_join_many' |
|
857 |
GO |
|
858 |
|
|
859 |
EXEC sp_addextendedproperty |
|
860 |
'MS_Description', N'树表的父字段编号', |
|
861 |
'SCHEMA', N'dbo', |
|
862 |
'TABLE', N'infra_codegen_table', |
|
863 |
'COLUMN', N'tree_parent_column_id' |
|
864 |
GO |
|
865 |
|
|
866 |
EXEC sp_addextendedproperty |
|
867 |
'MS_Description', N'树表的名字字段编号', |
|
868 |
'SCHEMA', N'dbo', |
|
869 |
'TABLE', N'infra_codegen_table', |
|
870 |
'COLUMN', N'tree_name_column_id' |
|
871 |
GO |
|
872 |
|
|
873 |
EXEC sp_addextendedproperty |
|
874 |
'MS_Description', N'创建者', |
|
875 |
'SCHEMA', N'dbo', |
|
876 |
'TABLE', N'infra_codegen_table', |
|
877 |
'COLUMN', N'creator' |
|
878 |
GO |
|
879 |
|
|
880 |
EXEC sp_addextendedproperty |
|
881 |
'MS_Description', N'创建时间', |
|
882 |
'SCHEMA', N'dbo', |
|
883 |
'TABLE', N'infra_codegen_table', |
|
884 |
'COLUMN', N'create_time' |
|
885 |
GO |
|
886 |
|
|
887 |
EXEC sp_addextendedproperty |
|
888 |
'MS_Description', N'更新者', |
|
889 |
'SCHEMA', N'dbo', |
|
890 |
'TABLE', N'infra_codegen_table', |
|
891 |
'COLUMN', N'updater' |
|
892 |
GO |
|
893 |
|
|
894 |
EXEC sp_addextendedproperty |
|
895 |
'MS_Description', N'更新时间', |
|
896 |
'SCHEMA', N'dbo', |
|
897 |
'TABLE', N'infra_codegen_table', |
|
898 |
'COLUMN', N'update_time' |
|
899 |
GO |
|
900 |
|
|
901 |
EXEC sp_addextendedproperty |
|
902 |
'MS_Description', N'是否删除', |
|
903 |
'SCHEMA', N'dbo', |
|
904 |
'TABLE', N'infra_codegen_table', |
|
905 |
'COLUMN', N'deleted' |
|
906 |
GO |
|
907 |
|
|
908 |
EXEC sp_addextendedproperty |
|
909 |
'MS_Description', N'代码生成表定义', |
|
910 |
'SCHEMA', N'dbo', |
|
911 |
'TABLE', N'infra_codegen_table' |
|
912 |
GO |
|
913 |
|
|
914 |
-- ---------------------------- |
|
915 |
-- Table structure for infra_config |
|
916 |
-- ---------------------------- |
|
917 |
DROP TABLE IF EXISTS infra_config; |
|
918 |
CREATE TABLE infra_config |
|
919 |
( |
|
920 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
921 |
category nvarchar(50) NOT NULL, |
|
922 |
type tinyint NOT NULL, |
|
923 |
name nvarchar(100) DEFAULT '' NOT NULL, |
|
924 |
config_key nvarchar(100) DEFAULT '' NOT NULL, |
|
925 |
value nvarchar(500) DEFAULT '' NOT NULL, |
|
926 |
visible varchar(1) NOT NULL, |
|
927 |
remark nvarchar(500) DEFAULT NULL NULL, |
|
928 |
creator nvarchar(64) DEFAULT '' NULL, |
|
929 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
930 |
updater nvarchar(64) DEFAULT '' NULL, |
|
931 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
932 |
deleted bit DEFAULT 0 NOT NULL |
|
933 |
) |
|
934 |
GO |
|
935 |
|
|
936 |
EXEC sp_addextendedproperty |
|
937 |
'MS_Description', N'参数主键', |
|
938 |
'SCHEMA', N'dbo', |
|
939 |
'TABLE', N'infra_config', |
|
940 |
'COLUMN', N'id' |
|
941 |
GO |
|
942 |
|
|
943 |
EXEC sp_addextendedproperty |
|
944 |
'MS_Description', N'参数分组', |
|
945 |
'SCHEMA', N'dbo', |
|
946 |
'TABLE', N'infra_config', |
|
947 |
'COLUMN', N'category' |
|
948 |
GO |
|
949 |
|
|
950 |
EXEC sp_addextendedproperty |
|
951 |
'MS_Description', N'参数类型', |
|
952 |
'SCHEMA', N'dbo', |
|
953 |
'TABLE', N'infra_config', |
|
954 |
'COLUMN', N'type' |
|
955 |
GO |
|
956 |
|
|
957 |
EXEC sp_addextendedproperty |
|
958 |
'MS_Description', N'参数名称', |
|
959 |
'SCHEMA', N'dbo', |
|
960 |
'TABLE', N'infra_config', |
|
961 |
'COLUMN', N'name' |
|
962 |
GO |
|
963 |
|
|
964 |
EXEC sp_addextendedproperty |
|
965 |
'MS_Description', N'参数键名', |
|
966 |
'SCHEMA', N'dbo', |
|
967 |
'TABLE', N'infra_config', |
|
968 |
'COLUMN', N'config_key' |
|
969 |
GO |
|
970 |
|
|
971 |
EXEC sp_addextendedproperty |
|
972 |
'MS_Description', N'参数键值', |
|
973 |
'SCHEMA', N'dbo', |
|
974 |
'TABLE', N'infra_config', |
|
975 |
'COLUMN', N'value' |
|
976 |
GO |
|
977 |
|
|
978 |
EXEC sp_addextendedproperty |
|
979 |
'MS_Description', N'是否可见', |
|
980 |
'SCHEMA', N'dbo', |
|
981 |
'TABLE', N'infra_config', |
|
982 |
'COLUMN', N'visible' |
|
983 |
GO |
|
984 |
|
|
985 |
EXEC sp_addextendedproperty |
|
986 |
'MS_Description', N'备注', |
|
987 |
'SCHEMA', N'dbo', |
|
988 |
'TABLE', N'infra_config', |
|
989 |
'COLUMN', N'remark' |
|
990 |
GO |
|
991 |
|
|
992 |
EXEC sp_addextendedproperty |
|
993 |
'MS_Description', N'创建者', |
|
994 |
'SCHEMA', N'dbo', |
|
995 |
'TABLE', N'infra_config', |
|
996 |
'COLUMN', N'creator' |
|
997 |
GO |
|
998 |
|
|
999 |
EXEC sp_addextendedproperty |
|
1000 |
'MS_Description', N'创建时间', |
|
1001 |
'SCHEMA', N'dbo', |
|
1002 |
'TABLE', N'infra_config', |
|
1003 |
'COLUMN', N'create_time' |
|
1004 |
GO |
|
1005 |
|
|
1006 |
EXEC sp_addextendedproperty |
|
1007 |
'MS_Description', N'更新者', |
|
1008 |
'SCHEMA', N'dbo', |
|
1009 |
'TABLE', N'infra_config', |
|
1010 |
'COLUMN', N'updater' |
|
1011 |
GO |
|
1012 |
|
|
1013 |
EXEC sp_addextendedproperty |
|
1014 |
'MS_Description', N'更新时间', |
|
1015 |
'SCHEMA', N'dbo', |
|
1016 |
'TABLE', N'infra_config', |
|
1017 |
'COLUMN', N'update_time' |
|
1018 |
GO |
|
1019 |
|
|
1020 |
EXEC sp_addextendedproperty |
|
1021 |
'MS_Description', N'是否删除', |
|
1022 |
'SCHEMA', N'dbo', |
|
1023 |
'TABLE', N'infra_config', |
|
1024 |
'COLUMN', N'deleted' |
|
1025 |
GO |
|
1026 |
|
|
1027 |
EXEC sp_addextendedproperty |
|
1028 |
'MS_Description', N'参数配置表', |
|
1029 |
'SCHEMA', N'dbo', |
|
1030 |
'TABLE', N'infra_config' |
|
1031 |
GO |
|
1032 |
|
|
1033 |
-- ---------------------------- |
|
1034 |
-- Records of infra_config |
|
1035 |
-- ---------------------------- |
|
1036 |
-- @formatter:off |
|
1037 |
BEGIN TRANSACTION |
|
1038 |
GO |
|
1039 |
SET IDENTITY_INSERT infra_config ON |
|
1040 |
GO |
|
1041 |
INSERT INTO infra_config (id, category, type, name, config_key, value, visible, remark, creator, create_time, updater, update_time, deleted) VALUES (2, N'biz', 1, N'用户管理-账号初始密码', N'sys.user.init-password', N'123456', N'0', N'初始化密码 123456', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-04-03 17:22:28', N'0') |
|
1042 |
GO |
|
1043 |
INSERT INTO infra_config (id, category, type, name, config_key, value, visible, remark, creator, create_time, updater, update_time, deleted) VALUES (7, N'url', 2, N'MySQL 监控的地址', N'url.druid', N'', N'1', N'', N'1', N'2023-04-07 13:41:16', N'1', N'2023-04-07 14:33:38', N'0') |
|
1044 |
GO |
|
1045 |
INSERT INTO infra_config (id, category, type, name, config_key, value, visible, remark, creator, create_time, updater, update_time, deleted) VALUES (8, N'url', 2, N'SkyWalking 监控的地址', N'url.skywalking', N'', N'1', N'', N'1', N'2023-04-07 13:41:16', N'1', N'2023-04-07 14:57:03', N'0') |
|
1046 |
GO |
|
1047 |
INSERT INTO infra_config (id, category, type, name, config_key, value, visible, remark, creator, create_time, updater, update_time, deleted) VALUES (9, N'url', 2, N'Spring Boot Admin 监控的地址', N'url.spring-boot-admin', N'', N'1', N'', N'1', N'2023-04-07 13:41:16', N'1', N'2023-04-07 14:52:07', N'0') |
|
1048 |
GO |
|
1049 |
INSERT INTO infra_config (id, category, type, name, config_key, value, visible, remark, creator, create_time, updater, update_time, deleted) VALUES (10, N'url', 2, N'Swagger 接口文档的地址', N'url.swagger', N'', N'1', N'', N'1', N'2023-04-07 13:41:16', N'1', N'2023-04-07 14:59:00', N'0') |
|
1050 |
GO |
|
1051 |
INSERT INTO infra_config (id, category, type, name, config_key, value, visible, remark, creator, create_time, updater, update_time, deleted) VALUES (11, N'ui', 2, N'腾讯地图 key', N'tencent.lbs.key', N'TVDBZ-TDILD-4ON4B-PFDZA-RNLKH-VVF6E', N'1', N'腾讯地图 key', N'1', N'2023-06-03 19:16:27', N'1', N'2023-06-03 19:16:27', N'0') |
|
1052 |
GO |
|
1053 |
INSERT INTO infra_config (id, category, type, name, config_key, value, visible, remark, creator, create_time, updater, update_time, deleted) VALUES (12, N'test2', 2, N'test3', N'test4', N'test5', N'1', N'test6', N'1', N'2023-12-03 09:55:16', N'1', N'2023-12-03 09:55:27', N'0') |
|
1054 |
GO |
|
1055 |
SET IDENTITY_INSERT infra_config OFF |
|
1056 |
GO |
|
1057 |
COMMIT |
|
1058 |
GO |
|
1059 |
-- @formatter:on |
|
1060 |
|
|
1061 |
-- ---------------------------- |
|
1062 |
-- Table structure for infra_data_source_config |
|
1063 |
-- ---------------------------- |
|
1064 |
DROP TABLE IF EXISTS infra_data_source_config; |
|
1065 |
CREATE TABLE infra_data_source_config |
|
1066 |
( |
|
1067 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
1068 |
name nvarchar(100) DEFAULT '' NOT NULL, |
|
1069 |
url nvarchar(1024) NOT NULL, |
|
1070 |
username nvarchar(255) NOT NULL, |
|
1071 |
password nvarchar(255) DEFAULT '' NOT NULL, |
|
1072 |
creator nvarchar(64) DEFAULT '' NULL, |
|
1073 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
1074 |
updater nvarchar(64) DEFAULT '' NULL, |
|
1075 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
1076 |
deleted bit DEFAULT 0 NOT NULL |
|
1077 |
) |
|
1078 |
GO |
|
1079 |
|
|
1080 |
EXEC sp_addextendedproperty |
|
1081 |
'MS_Description', N'主键编号', |
|
1082 |
'SCHEMA', N'dbo', |
|
1083 |
'TABLE', N'infra_data_source_config', |
|
1084 |
'COLUMN', N'id' |
|
1085 |
GO |
|
1086 |
|
|
1087 |
EXEC sp_addextendedproperty |
|
1088 |
'MS_Description', N'参数名称', |
|
1089 |
'SCHEMA', N'dbo', |
|
1090 |
'TABLE', N'infra_data_source_config', |
|
1091 |
'COLUMN', N'name' |
|
1092 |
GO |
|
1093 |
|
|
1094 |
EXEC sp_addextendedproperty |
|
1095 |
'MS_Description', N'数据源连接', |
|
1096 |
'SCHEMA', N'dbo', |
|
1097 |
'TABLE', N'infra_data_source_config', |
|
1098 |
'COLUMN', N'url' |
|
1099 |
GO |
|
1100 |
|
|
1101 |
EXEC sp_addextendedproperty |
|
1102 |
'MS_Description', N'用户名', |
|
1103 |
'SCHEMA', N'dbo', |
|
1104 |
'TABLE', N'infra_data_source_config', |
|
1105 |
'COLUMN', N'username' |
|
1106 |
GO |
|
1107 |
|
|
1108 |
EXEC sp_addextendedproperty |
|
1109 |
'MS_Description', N'密码', |
|
1110 |
'SCHEMA', N'dbo', |
|
1111 |
'TABLE', N'infra_data_source_config', |
|
1112 |
'COLUMN', N'password' |
|
1113 |
GO |
|
1114 |
|
|
1115 |
EXEC sp_addextendedproperty |
|
1116 |
'MS_Description', N'创建者', |
|
1117 |
'SCHEMA', N'dbo', |
|
1118 |
'TABLE', N'infra_data_source_config', |
|
1119 |
'COLUMN', N'creator' |
|
1120 |
GO |
|
1121 |
|
|
1122 |
EXEC sp_addextendedproperty |
|
1123 |
'MS_Description', N'创建时间', |
|
1124 |
'SCHEMA', N'dbo', |
|
1125 |
'TABLE', N'infra_data_source_config', |
|
1126 |
'COLUMN', N'create_time' |
|
1127 |
GO |
|
1128 |
|
|
1129 |
EXEC sp_addextendedproperty |
|
1130 |
'MS_Description', N'更新者', |
|
1131 |
'SCHEMA', N'dbo', |
|
1132 |
'TABLE', N'infra_data_source_config', |
|
1133 |
'COLUMN', N'updater' |
|
1134 |
GO |
|
1135 |
|
|
1136 |
EXEC sp_addextendedproperty |
|
1137 |
'MS_Description', N'更新时间', |
|
1138 |
'SCHEMA', N'dbo', |
|
1139 |
'TABLE', N'infra_data_source_config', |
|
1140 |
'COLUMN', N'update_time' |
|
1141 |
GO |
|
1142 |
|
|
1143 |
EXEC sp_addextendedproperty |
|
1144 |
'MS_Description', N'是否删除', |
|
1145 |
'SCHEMA', N'dbo', |
|
1146 |
'TABLE', N'infra_data_source_config', |
|
1147 |
'COLUMN', N'deleted' |
|
1148 |
GO |
|
1149 |
|
|
1150 |
EXEC sp_addextendedproperty |
|
1151 |
'MS_Description', N'数据源配置表', |
|
1152 |
'SCHEMA', N'dbo', |
|
1153 |
'TABLE', N'infra_data_source_config' |
|
1154 |
GO |
|
1155 |
|
|
1156 |
-- ---------------------------- |
|
1157 |
-- Table structure for infra_file |
|
1158 |
-- ---------------------------- |
|
1159 |
DROP TABLE IF EXISTS infra_file; |
|
1160 |
CREATE TABLE infra_file |
|
1161 |
( |
|
1162 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
1163 |
config_id bigint DEFAULT NULL NULL, |
|
1164 |
name nvarchar(256) DEFAULT NULL NULL, |
|
1165 |
path nvarchar(512) NOT NULL, |
|
1166 |
url nvarchar(1024) NOT NULL, |
|
1167 |
type nvarchar(128) DEFAULT NULL NULL, |
|
1168 |
size int NOT NULL, |
|
1169 |
creator nvarchar(64) DEFAULT '' NULL, |
|
1170 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
1171 |
updater nvarchar(64) DEFAULT '' NULL, |
|
1172 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
1173 |
deleted bit DEFAULT 0 NOT NULL |
|
1174 |
) |
|
1175 |
GO |
|
1176 |
|
|
1177 |
EXEC sp_addextendedproperty |
|
1178 |
'MS_Description', N'文件编号', |
|
1179 |
'SCHEMA', N'dbo', |
|
1180 |
'TABLE', N'infra_file', |
|
1181 |
'COLUMN', N'id' |
|
1182 |
GO |
|
1183 |
|
|
1184 |
EXEC sp_addextendedproperty |
|
1185 |
'MS_Description', N'配置编号', |
|
1186 |
'SCHEMA', N'dbo', |
|
1187 |
'TABLE', N'infra_file', |
|
1188 |
'COLUMN', N'config_id' |
|
1189 |
GO |
|
1190 |
|
|
1191 |
EXEC sp_addextendedproperty |
|
1192 |
'MS_Description', N'文件名', |
|
1193 |
'SCHEMA', N'dbo', |
|
1194 |
'TABLE', N'infra_file', |
|
1195 |
'COLUMN', N'name' |
|
1196 |
GO |
|
1197 |
|
|
1198 |
EXEC sp_addextendedproperty |
|
1199 |
'MS_Description', N'文件路径', |
|
1200 |
'SCHEMA', N'dbo', |
|
1201 |
'TABLE', N'infra_file', |
|
1202 |
'COLUMN', N'path' |
|
1203 |
GO |
|
1204 |
|
|
1205 |
EXEC sp_addextendedproperty |
|
1206 |
'MS_Description', N'文件 URL', |
|
1207 |
'SCHEMA', N'dbo', |
|
1208 |
'TABLE', N'infra_file', |
|
1209 |
'COLUMN', N'url' |
|
1210 |
GO |
|
1211 |
|
|
1212 |
EXEC sp_addextendedproperty |
|
1213 |
'MS_Description', N'文件类型', |
|
1214 |
'SCHEMA', N'dbo', |
|
1215 |
'TABLE', N'infra_file', |
|
1216 |
'COLUMN', N'type' |
|
1217 |
GO |
|
1218 |
|
|
1219 |
EXEC sp_addextendedproperty |
|
1220 |
'MS_Description', N'文件大小', |
|
1221 |
'SCHEMA', N'dbo', |
|
1222 |
'TABLE', N'infra_file', |
|
1223 |
'COLUMN', N'size' |
|
1224 |
GO |
|
1225 |
|
|
1226 |
EXEC sp_addextendedproperty |
|
1227 |
'MS_Description', N'创建者', |
|
1228 |
'SCHEMA', N'dbo', |
|
1229 |
'TABLE', N'infra_file', |
|
1230 |
'COLUMN', N'creator' |
|
1231 |
GO |
|
1232 |
|
|
1233 |
EXEC sp_addextendedproperty |
|
1234 |
'MS_Description', N'创建时间', |
|
1235 |
'SCHEMA', N'dbo', |
|
1236 |
'TABLE', N'infra_file', |
|
1237 |
'COLUMN', N'create_time' |
|
1238 |
GO |
|
1239 |
|
|
1240 |
EXEC sp_addextendedproperty |
|
1241 |
'MS_Description', N'更新者', |
|
1242 |
'SCHEMA', N'dbo', |
|
1243 |
'TABLE', N'infra_file', |
|
1244 |
'COLUMN', N'updater' |
|
1245 |
GO |
|
1246 |
|
|
1247 |
EXEC sp_addextendedproperty |
|
1248 |
'MS_Description', N'更新时间', |
|
1249 |
'SCHEMA', N'dbo', |
|
1250 |
'TABLE', N'infra_file', |
|
1251 |
'COLUMN', N'update_time' |
|
1252 |
GO |
|
1253 |
|
|
1254 |
EXEC sp_addextendedproperty |
|
1255 |
'MS_Description', N'是否删除', |
|
1256 |
'SCHEMA', N'dbo', |
|
1257 |
'TABLE', N'infra_file', |
|
1258 |
'COLUMN', N'deleted' |
|
1259 |
GO |
|
1260 |
|
|
1261 |
EXEC sp_addextendedproperty |
|
1262 |
'MS_Description', N'文件表', |
|
1263 |
'SCHEMA', N'dbo', |
|
1264 |
'TABLE', N'infra_file' |
|
1265 |
GO |
|
1266 |
|
|
1267 |
-- ---------------------------- |
|
1268 |
-- Table structure for infra_file_config |
|
1269 |
-- ---------------------------- |
|
1270 |
DROP TABLE IF EXISTS infra_file_config; |
|
1271 |
CREATE TABLE infra_file_config |
|
1272 |
( |
|
1273 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
1274 |
name nvarchar(63) NOT NULL, |
|
1275 |
storage tinyint NOT NULL, |
|
1276 |
remark nvarchar(255) DEFAULT NULL NULL, |
|
1277 |
master varchar(1) NOT NULL, |
|
1278 |
config nvarchar(4000) NOT NULL, |
|
1279 |
creator nvarchar(64) DEFAULT '' NULL, |
|
1280 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
1281 |
updater nvarchar(64) DEFAULT '' NULL, |
|
1282 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
1283 |
deleted bit DEFAULT 0 NOT NULL |
|
1284 |
) |
|
1285 |
GO |
|
1286 |
|
|
1287 |
EXEC sp_addextendedproperty |
|
1288 |
'MS_Description', N'编号', |
|
1289 |
'SCHEMA', N'dbo', |
|
1290 |
'TABLE', N'infra_file_config', |
|
1291 |
'COLUMN', N'id' |
|
1292 |
GO |
|
1293 |
|
|
1294 |
EXEC sp_addextendedproperty |
|
1295 |
'MS_Description', N'配置名', |
|
1296 |
'SCHEMA', N'dbo', |
|
1297 |
'TABLE', N'infra_file_config', |
|
1298 |
'COLUMN', N'name' |
|
1299 |
GO |
|
1300 |
|
|
1301 |
EXEC sp_addextendedproperty |
|
1302 |
'MS_Description', N'存储器', |
|
1303 |
'SCHEMA', N'dbo', |
|
1304 |
'TABLE', N'infra_file_config', |
|
1305 |
'COLUMN', N'storage' |
|
1306 |
GO |
|
1307 |
|
|
1308 |
EXEC sp_addextendedproperty |
|
1309 |
'MS_Description', N'备注', |
|
1310 |
'SCHEMA', N'dbo', |
|
1311 |
'TABLE', N'infra_file_config', |
|
1312 |
'COLUMN', N'remark' |
|
1313 |
GO |
|
1314 |
|
|
1315 |
EXEC sp_addextendedproperty |
|
1316 |
'MS_Description', N'是否为主配置', |
|
1317 |
'SCHEMA', N'dbo', |
|
1318 |
'TABLE', N'infra_file_config', |
|
1319 |
'COLUMN', N'master' |
|
1320 |
GO |
|
1321 |
|
|
1322 |
EXEC sp_addextendedproperty |
|
1323 |
'MS_Description', N'存储配置', |
|
1324 |
'SCHEMA', N'dbo', |
|
1325 |
'TABLE', N'infra_file_config', |
|
1326 |
'COLUMN', N'config' |
|
1327 |
GO |
|
1328 |
|
|
1329 |
EXEC sp_addextendedproperty |
|
1330 |
'MS_Description', N'创建者', |
|
1331 |
'SCHEMA', N'dbo', |
|
1332 |
'TABLE', N'infra_file_config', |
|
1333 |
'COLUMN', N'creator' |
|
1334 |
GO |
|
1335 |
|
|
1336 |
EXEC sp_addextendedproperty |
|
1337 |
'MS_Description', N'创建时间', |
|
1338 |
'SCHEMA', N'dbo', |
|
1339 |
'TABLE', N'infra_file_config', |
|
1340 |
'COLUMN', N'create_time' |
|
1341 |
GO |
|
1342 |
|
|
1343 |
EXEC sp_addextendedproperty |
|
1344 |
'MS_Description', N'更新者', |
|
1345 |
'SCHEMA', N'dbo', |
|
1346 |
'TABLE', N'infra_file_config', |
|
1347 |
'COLUMN', N'updater' |
|
1348 |
GO |
|
1349 |
|
|
1350 |
EXEC sp_addextendedproperty |
|
1351 |
'MS_Description', N'更新时间', |
|
1352 |
'SCHEMA', N'dbo', |
|
1353 |
'TABLE', N'infra_file_config', |
|
1354 |
'COLUMN', N'update_time' |
|
1355 |
GO |
|
1356 |
|
|
1357 |
EXEC sp_addextendedproperty |
|
1358 |
'MS_Description', N'是否删除', |
|
1359 |
'SCHEMA', N'dbo', |
|
1360 |
'TABLE', N'infra_file_config', |
|
1361 |
'COLUMN', N'deleted' |
|
1362 |
GO |
|
1363 |
|
|
1364 |
EXEC sp_addextendedproperty |
|
1365 |
'MS_Description', N'文件配置表', |
|
1366 |
'SCHEMA', N'dbo', |
|
1367 |
'TABLE', N'infra_file_config' |
|
1368 |
GO |
|
1369 |
|
|
1370 |
-- ---------------------------- |
|
1371 |
-- Records of infra_file_config |
|
1372 |
-- ---------------------------- |
|
1373 |
-- @formatter:off |
|
1374 |
BEGIN TRANSACTION |
|
1375 |
GO |
|
1376 |
SET IDENTITY_INSERT infra_file_config ON |
|
1377 |
GO |
|
1378 |
INSERT INTO infra_file_config (id, name, storage, remark, master, config, creator, create_time, updater, update_time, deleted) VALUES (4, N'数据库', 1, N'我是数据库', N'0', N'{"@class":"com.iailab.module.infra.framework.file.core.client.db.DBFileClientConfig","domain":"http://127.0.0.1:48080"}', N'1', N'2022-03-15 23:56:24', N'1', N'2024-02-28 22:54:07', N'0') |
|
1379 |
GO |
|
1380 |
INSERT INTO infra_file_config (id, name, storage, remark, master, config, creator, create_time, updater, update_time, deleted) VALUES (22, N'七牛存储器', 20, N'', N'1', N'{"@class":"com.iailab.module.infra.framework.file.core.client.s3.S3FileClientConfig","endpoint":"s3.cn-south-1.qiniucs.com","domain":"http://test.iailab.iocoder.cn","bucket":"ruoyi-vue-pro","accessKey":"3TvrJ70gl2Gt6IBe7_IZT1F6i_k0iMuRtyEv4EyS","accessSecret":"wd0tbVBYlp0S-ihA8Qg2hPLncoP83wyrIq24OZuY"}', N'1', N'2024-01-13 22:11:12', N'1', N'2024-04-03 19:38:34', N'0') |
|
1381 |
GO |
|
1382 |
SET IDENTITY_INSERT infra_file_config OFF |
|
1383 |
GO |
|
1384 |
COMMIT |
|
1385 |
GO |
|
1386 |
-- @formatter:on |
|
1387 |
|
|
1388 |
-- ---------------------------- |
|
1389 |
-- Table structure for infra_file_content |
|
1390 |
-- ---------------------------- |
|
1391 |
DROP TABLE IF EXISTS infra_file_content; |
|
1392 |
CREATE TABLE infra_file_content |
|
1393 |
( |
|
1394 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
1395 |
config_id bigint NOT NULL, |
|
1396 |
path nvarchar(512) NOT NULL, |
|
1397 |
content varbinary(max) NOT NULL, |
|
1398 |
creator nvarchar(64) DEFAULT '' NULL, |
|
1399 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
1400 |
updater nvarchar(64) DEFAULT '' NULL, |
|
1401 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
1402 |
deleted bit DEFAULT 0 NOT NULL |
|
1403 |
) |
|
1404 |
GO |
|
1405 |
|
|
1406 |
EXEC sp_addextendedproperty |
|
1407 |
'MS_Description', N'编号', |
|
1408 |
'SCHEMA', N'dbo', |
|
1409 |
'TABLE', N'infra_file_content', |
|
1410 |
'COLUMN', N'id' |
|
1411 |
GO |
|
1412 |
|
|
1413 |
EXEC sp_addextendedproperty |
|
1414 |
'MS_Description', N'配置编号', |
|
1415 |
'SCHEMA', N'dbo', |
|
1416 |
'TABLE', N'infra_file_content', |
|
1417 |
'COLUMN', N'config_id' |
|
1418 |
GO |
|
1419 |
|
|
1420 |
EXEC sp_addextendedproperty |
|
1421 |
'MS_Description', N'文件路径', |
|
1422 |
'SCHEMA', N'dbo', |
|
1423 |
'TABLE', N'infra_file_content', |
|
1424 |
'COLUMN', N'path' |
|
1425 |
GO |
|
1426 |
|
|
1427 |
EXEC sp_addextendedproperty |
|
1428 |
'MS_Description', N'文件内容', |
|
1429 |
'SCHEMA', N'dbo', |
|
1430 |
'TABLE', N'infra_file_content', |
|
1431 |
'COLUMN', N'content' |
|
1432 |
GO |
|
1433 |
|
|
1434 |
EXEC sp_addextendedproperty |
|
1435 |
'MS_Description', N'创建者', |
|
1436 |
'SCHEMA', N'dbo', |
|
1437 |
'TABLE', N'infra_file_content', |
|
1438 |
'COLUMN', N'creator' |
|
1439 |
GO |
|
1440 |
|
|
1441 |
EXEC sp_addextendedproperty |
|
1442 |
'MS_Description', N'创建时间', |
|
1443 |
'SCHEMA', N'dbo', |
|
1444 |
'TABLE', N'infra_file_content', |
|
1445 |
'COLUMN', N'create_time' |
|
1446 |
GO |
|
1447 |
|
|
1448 |
EXEC sp_addextendedproperty |
|
1449 |
'MS_Description', N'更新者', |
|
1450 |
'SCHEMA', N'dbo', |
|
1451 |
'TABLE', N'infra_file_content', |
|
1452 |
'COLUMN', N'updater' |
|
1453 |
GO |
|
1454 |
|
|
1455 |
EXEC sp_addextendedproperty |
|
1456 |
'MS_Description', N'更新时间', |
|
1457 |
'SCHEMA', N'dbo', |
|
1458 |
'TABLE', N'infra_file_content', |
|
1459 |
'COLUMN', N'update_time' |
|
1460 |
GO |
|
1461 |
|
|
1462 |
EXEC sp_addextendedproperty |
|
1463 |
'MS_Description', N'是否删除', |
|
1464 |
'SCHEMA', N'dbo', |
|
1465 |
'TABLE', N'infra_file_content', |
|
1466 |
'COLUMN', N'deleted' |
|
1467 |
GO |
|
1468 |
|
|
1469 |
EXEC sp_addextendedproperty |
|
1470 |
'MS_Description', N'文件表', |
|
1471 |
'SCHEMA', N'dbo', |
|
1472 |
'TABLE', N'infra_file_content' |
|
1473 |
GO |
|
1474 |
|
|
1475 |
-- ---------------------------- |
|
1476 |
-- Table structure for infra_job |
|
1477 |
-- ---------------------------- |
|
1478 |
DROP TABLE IF EXISTS infra_job; |
|
1479 |
CREATE TABLE infra_job |
|
1480 |
( |
|
1481 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
1482 |
name nvarchar(32) NOT NULL, |
|
1483 |
status tinyint NOT NULL, |
|
1484 |
handler_name nvarchar(64) NOT NULL, |
|
1485 |
handler_param nvarchar(255) DEFAULT NULL NULL, |
|
1486 |
cron_expression nvarchar(32) NOT NULL, |
|
1487 |
retry_count int DEFAULT 0 NOT NULL, |
|
1488 |
retry_interval int DEFAULT 0 NOT NULL, |
|
1489 |
monitor_timeout int DEFAULT 0 NOT NULL, |
|
1490 |
creator nvarchar(64) DEFAULT '' NULL, |
|
1491 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
1492 |
updater nvarchar(64) DEFAULT '' NULL, |
|
1493 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
1494 |
deleted bit DEFAULT 0 NOT NULL |
|
1495 |
) |
|
1496 |
GO |
|
1497 |
|
|
1498 |
EXEC sp_addextendedproperty |
|
1499 |
'MS_Description', N'任务编号', |
|
1500 |
'SCHEMA', N'dbo', |
|
1501 |
'TABLE', N'infra_job', |
|
1502 |
'COLUMN', N'id' |
|
1503 |
GO |
|
1504 |
|
|
1505 |
EXEC sp_addextendedproperty |
|
1506 |
'MS_Description', N'任务名称', |
|
1507 |
'SCHEMA', N'dbo', |
|
1508 |
'TABLE', N'infra_job', |
|
1509 |
'COLUMN', N'name' |
|
1510 |
GO |
|
1511 |
|
|
1512 |
EXEC sp_addextendedproperty |
|
1513 |
'MS_Description', N'任务状态', |
|
1514 |
'SCHEMA', N'dbo', |
|
1515 |
'TABLE', N'infra_job', |
|
1516 |
'COLUMN', N'status' |
|
1517 |
GO |
|
1518 |
|
|
1519 |
EXEC sp_addextendedproperty |
|
1520 |
'MS_Description', N'处理器的名字', |
|
1521 |
'SCHEMA', N'dbo', |
|
1522 |
'TABLE', N'infra_job', |
|
1523 |
'COLUMN', N'handler_name' |
|
1524 |
GO |
|
1525 |
|
|
1526 |
EXEC sp_addextendedproperty |
|
1527 |
'MS_Description', N'处理器的参数', |
|
1528 |
'SCHEMA', N'dbo', |
|
1529 |
'TABLE', N'infra_job', |
|
1530 |
'COLUMN', N'handler_param' |
|
1531 |
GO |
|
1532 |
|
|
1533 |
EXEC sp_addextendedproperty |
|
1534 |
'MS_Description', N'CRON 表达式', |
|
1535 |
'SCHEMA', N'dbo', |
|
1536 |
'TABLE', N'infra_job', |
|
1537 |
'COLUMN', N'cron_expression' |
|
1538 |
GO |
|
1539 |
|
|
1540 |
EXEC sp_addextendedproperty |
|
1541 |
'MS_Description', N'重试次数', |
|
1542 |
'SCHEMA', N'dbo', |
|
1543 |
'TABLE', N'infra_job', |
|
1544 |
'COLUMN', N'retry_count' |
|
1545 |
GO |
|
1546 |
|
|
1547 |
EXEC sp_addextendedproperty |
|
1548 |
'MS_Description', N'重试间隔', |
|
1549 |
'SCHEMA', N'dbo', |
|
1550 |
'TABLE', N'infra_job', |
|
1551 |
'COLUMN', N'retry_interval' |
|
1552 |
GO |
|
1553 |
|
|
1554 |
EXEC sp_addextendedproperty |
|
1555 |
'MS_Description', N'监控超时时间', |
|
1556 |
'SCHEMA', N'dbo', |
|
1557 |
'TABLE', N'infra_job', |
|
1558 |
'COLUMN', N'monitor_timeout' |
|
1559 |
GO |
|
1560 |
|
|
1561 |
EXEC sp_addextendedproperty |
|
1562 |
'MS_Description', N'创建者', |
|
1563 |
'SCHEMA', N'dbo', |
|
1564 |
'TABLE', N'infra_job', |
|
1565 |
'COLUMN', N'creator' |
|
1566 |
GO |
|
1567 |
|
|
1568 |
EXEC sp_addextendedproperty |
|
1569 |
'MS_Description', N'创建时间', |
|
1570 |
'SCHEMA', N'dbo', |
|
1571 |
'TABLE', N'infra_job', |
|
1572 |
'COLUMN', N'create_time' |
|
1573 |
GO |
|
1574 |
|
|
1575 |
EXEC sp_addextendedproperty |
|
1576 |
'MS_Description', N'更新者', |
|
1577 |
'SCHEMA', N'dbo', |
|
1578 |
'TABLE', N'infra_job', |
|
1579 |
'COLUMN', N'updater' |
|
1580 |
GO |
|
1581 |
|
|
1582 |
EXEC sp_addextendedproperty |
|
1583 |
'MS_Description', N'更新时间', |
|
1584 |
'SCHEMA', N'dbo', |
|
1585 |
'TABLE', N'infra_job', |
|
1586 |
'COLUMN', N'update_time' |
|
1587 |
GO |
|
1588 |
|
|
1589 |
EXEC sp_addextendedproperty |
|
1590 |
'MS_Description', N'是否删除', |
|
1591 |
'SCHEMA', N'dbo', |
|
1592 |
'TABLE', N'infra_job', |
|
1593 |
'COLUMN', N'deleted' |
|
1594 |
GO |
|
1595 |
|
|
1596 |
EXEC sp_addextendedproperty |
|
1597 |
'MS_Description', N'定时任务表', |
|
1598 |
'SCHEMA', N'dbo', |
|
1599 |
'TABLE', N'infra_job' |
|
1600 |
GO |
|
1601 |
|
|
1602 |
-- ---------------------------- |
|
1603 |
-- Records of infra_job |
|
1604 |
-- ---------------------------- |
|
1605 |
-- @formatter:off |
|
1606 |
BEGIN TRANSACTION |
|
1607 |
GO |
|
1608 |
SET IDENTITY_INSERT infra_job ON |
|
1609 |
GO |
|
1610 |
INSERT INTO infra_job (id, name, status, handler_name, handler_param, cron_expression, retry_count, retry_interval, monitor_timeout, creator, create_time, updater, update_time, deleted) VALUES (5, N'支付通知 Job', 2, N'payNotifyJob', NULL, N'* * * * * ?', 0, 0, 0, N'1', N'2021-10-27 08:34:42', N'1', N'2023-07-09 20:51:41', N'0') |
|
1611 |
GO |
|
1612 |
INSERT INTO infra_job (id, name, status, handler_name, handler_param, cron_expression, retry_count, retry_interval, monitor_timeout, creator, create_time, updater, update_time, deleted) VALUES (17, N'支付订单同步 Job', 2, N'payOrderSyncJob', NULL, N'0 0/1 * * * ?', 0, 0, 0, N'1', N'2023-07-22 14:36:26', N'1', N'2023-07-22 15:39:08', N'0') |
|
1613 |
GO |
|
1614 |
INSERT INTO infra_job (id, name, status, handler_name, handler_param, cron_expression, retry_count, retry_interval, monitor_timeout, creator, create_time, updater, update_time, deleted) VALUES (18, N'支付订单过期 Job', 2, N'payOrderExpireJob', NULL, N'0 0/1 * * * ?', 0, 0, 0, N'1', N'2023-07-22 15:36:23', N'1', N'2023-07-22 15:39:54', N'0') |
|
1615 |
GO |
|
1616 |
INSERT INTO infra_job (id, name, status, handler_name, handler_param, cron_expression, retry_count, retry_interval, monitor_timeout, creator, create_time, updater, update_time, deleted) VALUES (19, N'退款订单的同步 Job', 2, N'payRefundSyncJob', NULL, N'0 0/1 * * * ?', 0, 0, 0, N'1', N'2023-07-23 21:03:44', N'1', N'2023-07-23 21:09:00', N'0') |
|
1617 |
GO |
|
1618 |
INSERT INTO infra_job (id, name, status, handler_name, handler_param, cron_expression, retry_count, retry_interval, monitor_timeout, creator, create_time, updater, update_time, deleted) VALUES (21, N'交易订单的自动过期 Job', 2, N'tradeOrderAutoCancelJob', N'', N'0 * * * * ?', 3, 0, 0, N'1', N'2023-09-25 23:43:26', N'1', N'2023-09-26 19:23:30', N'0') |
|
1619 |
GO |
|
1620 |
INSERT INTO infra_job (id, name, status, handler_name, handler_param, cron_expression, retry_count, retry_interval, monitor_timeout, creator, create_time, updater, update_time, deleted) VALUES (22, N'交易订单的自动收货 Job', 2, N'tradeOrderAutoReceiveJob', N'', N'0 * * * * ?', 3, 0, 0, N'1', N'2023-09-26 19:23:53', N'1', N'2023-09-26 23:38:08', N'0') |
|
1621 |
GO |
|
1622 |
INSERT INTO infra_job (id, name, status, handler_name, handler_param, cron_expression, retry_count, retry_interval, monitor_timeout, creator, create_time, updater, update_time, deleted) VALUES (23, N'交易订单的自动评论 Job', 2, N'tradeOrderAutoCommentJob', N'', N'0 * * * * ?', 3, 0, 0, N'1', N'2023-09-26 23:38:29', N'1', N'2023-09-27 11:03:10', N'0') |
|
1623 |
GO |
|
1624 |
INSERT INTO infra_job (id, name, status, handler_name, handler_param, cron_expression, retry_count, retry_interval, monitor_timeout, creator, create_time, updater, update_time, deleted) VALUES (24, N'佣金解冻 Job', 2, N'brokerageRecordUnfreezeJob', N'', N'0 * * * * ?', 3, 0, 0, N'1', N'2023-09-28 22:01:46', N'1', N'2023-09-28 22:01:56', N'0') |
|
1625 |
GO |
|
1626 |
INSERT INTO infra_job (id, name, status, handler_name, handler_param, cron_expression, retry_count, retry_interval, monitor_timeout, creator, create_time, updater, update_time, deleted) VALUES (25, N'访问日志清理 Job', 2, N'accessLogCleanJob', N'', N'0 0 0 * * ?', 3, 0, 0, N'1', N'2023-10-03 10:59:41', N'1', N'2023-10-03 11:01:10', N'0') |
|
1627 |
GO |
|
1628 |
INSERT INTO infra_job (id, name, status, handler_name, handler_param, cron_expression, retry_count, retry_interval, monitor_timeout, creator, create_time, updater, update_time, deleted) VALUES (26, N'错误日志清理 Job', 2, N'errorLogCleanJob', N'', N'0 0 0 * * ?', 3, 0, 0, N'1', N'2023-10-03 11:00:43', N'1', N'2023-10-03 11:01:12', N'0') |
|
1629 |
GO |
|
1630 |
INSERT INTO infra_job (id, name, status, handler_name, handler_param, cron_expression, retry_count, retry_interval, monitor_timeout, creator, create_time, updater, update_time, deleted) VALUES (27, N'任务日志清理 Job', 2, N'jobLogCleanJob', N'', N'0 0 0 * * ?', 3, 0, 0, N'1', N'2023-10-03 11:01:33', N'1', N'2023-10-03 11:01:42', N'0') |
|
1631 |
GO |
|
1632 |
SET IDENTITY_INSERT infra_job OFF |
|
1633 |
GO |
|
1634 |
COMMIT |
|
1635 |
GO |
|
1636 |
-- @formatter:on |
|
1637 |
|
|
1638 |
-- ---------------------------- |
|
1639 |
-- Table structure for infra_job_log |
|
1640 |
-- ---------------------------- |
|
1641 |
DROP TABLE IF EXISTS infra_job_log; |
|
1642 |
CREATE TABLE infra_job_log |
|
1643 |
( |
|
1644 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
1645 |
job_id bigint NOT NULL, |
|
1646 |
handler_name nvarchar(64) NOT NULL, |
|
1647 |
handler_param nvarchar(255) DEFAULT NULL NULL, |
|
1648 |
execute_index tinyint DEFAULT 1 NOT NULL, |
|
1649 |
begin_time datetime2 NOT NULL, |
|
1650 |
end_time datetime2 DEFAULT NULL NULL, |
|
1651 |
duration int DEFAULT NULL NULL, |
|
1652 |
status tinyint NOT NULL, |
|
1653 |
result nvarchar(4000) DEFAULT '' NULL, |
|
1654 |
creator nvarchar(64) DEFAULT '' NULL, |
|
1655 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
1656 |
updater nvarchar(64) DEFAULT '' NULL, |
|
1657 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
1658 |
deleted bit DEFAULT 0 NOT NULL |
|
1659 |
) |
|
1660 |
GO |
|
1661 |
|
|
1662 |
EXEC sp_addextendedproperty |
|
1663 |
'MS_Description', N'日志编号', |
|
1664 |
'SCHEMA', N'dbo', |
|
1665 |
'TABLE', N'infra_job_log', |
|
1666 |
'COLUMN', N'id' |
|
1667 |
GO |
|
1668 |
|
|
1669 |
EXEC sp_addextendedproperty |
|
1670 |
'MS_Description', N'任务编号', |
|
1671 |
'SCHEMA', N'dbo', |
|
1672 |
'TABLE', N'infra_job_log', |
|
1673 |
'COLUMN', N'job_id' |
|
1674 |
GO |
|
1675 |
|
|
1676 |
EXEC sp_addextendedproperty |
|
1677 |
'MS_Description', N'处理器的名字', |
|
1678 |
'SCHEMA', N'dbo', |
|
1679 |
'TABLE', N'infra_job_log', |
|
1680 |
'COLUMN', N'handler_name' |
|
1681 |
GO |
|
1682 |
|
|
1683 |
EXEC sp_addextendedproperty |
|
1684 |
'MS_Description', N'处理器的参数', |
|
1685 |
'SCHEMA', N'dbo', |
|
1686 |
'TABLE', N'infra_job_log', |
|
1687 |
'COLUMN', N'handler_param' |
|
1688 |
GO |
|
1689 |
|
|
1690 |
EXEC sp_addextendedproperty |
|
1691 |
'MS_Description', N'第几次执行', |
|
1692 |
'SCHEMA', N'dbo', |
|
1693 |
'TABLE', N'infra_job_log', |
|
1694 |
'COLUMN', N'execute_index' |
|
1695 |
GO |
|
1696 |
|
|
1697 |
EXEC sp_addextendedproperty |
|
1698 |
'MS_Description', N'开始执行时间', |
|
1699 |
'SCHEMA', N'dbo', |
|
1700 |
'TABLE', N'infra_job_log', |
|
1701 |
'COLUMN', N'begin_time' |
|
1702 |
GO |
|
1703 |
|
|
1704 |
EXEC sp_addextendedproperty |
|
1705 |
'MS_Description', N'结束执行时间', |
|
1706 |
'SCHEMA', N'dbo', |
|
1707 |
'TABLE', N'infra_job_log', |
|
1708 |
'COLUMN', N'end_time' |
|
1709 |
GO |
|
1710 |
|
|
1711 |
EXEC sp_addextendedproperty |
|
1712 |
'MS_Description', N'执行时长', |
|
1713 |
'SCHEMA', N'dbo', |
|
1714 |
'TABLE', N'infra_job_log', |
|
1715 |
'COLUMN', N'duration' |
|
1716 |
GO |
|
1717 |
|
|
1718 |
EXEC sp_addextendedproperty |
|
1719 |
'MS_Description', N'任务状态', |
|
1720 |
'SCHEMA', N'dbo', |
|
1721 |
'TABLE', N'infra_job_log', |
|
1722 |
'COLUMN', N'status' |
|
1723 |
GO |
|
1724 |
|
|
1725 |
EXEC sp_addextendedproperty |
|
1726 |
'MS_Description', N'结果数据', |
|
1727 |
'SCHEMA', N'dbo', |
|
1728 |
'TABLE', N'infra_job_log', |
|
1729 |
'COLUMN', N'result' |
|
1730 |
GO |
|
1731 |
|
|
1732 |
EXEC sp_addextendedproperty |
|
1733 |
'MS_Description', N'创建者', |
|
1734 |
'SCHEMA', N'dbo', |
|
1735 |
'TABLE', N'infra_job_log', |
|
1736 |
'COLUMN', N'creator' |
|
1737 |
GO |
|
1738 |
|
|
1739 |
EXEC sp_addextendedproperty |
|
1740 |
'MS_Description', N'创建时间', |
|
1741 |
'SCHEMA', N'dbo', |
|
1742 |
'TABLE', N'infra_job_log', |
|
1743 |
'COLUMN', N'create_time' |
|
1744 |
GO |
|
1745 |
|
|
1746 |
EXEC sp_addextendedproperty |
|
1747 |
'MS_Description', N'更新者', |
|
1748 |
'SCHEMA', N'dbo', |
|
1749 |
'TABLE', N'infra_job_log', |
|
1750 |
'COLUMN', N'updater' |
|
1751 |
GO |
|
1752 |
|
|
1753 |
EXEC sp_addextendedproperty |
|
1754 |
'MS_Description', N'更新时间', |
|
1755 |
'SCHEMA', N'dbo', |
|
1756 |
'TABLE', N'infra_job_log', |
|
1757 |
'COLUMN', N'update_time' |
|
1758 |
GO |
|
1759 |
|
|
1760 |
EXEC sp_addextendedproperty |
|
1761 |
'MS_Description', N'是否删除', |
|
1762 |
'SCHEMA', N'dbo', |
|
1763 |
'TABLE', N'infra_job_log', |
|
1764 |
'COLUMN', N'deleted' |
|
1765 |
GO |
|
1766 |
|
|
1767 |
EXEC sp_addextendedproperty |
|
1768 |
'MS_Description', N'定时任务日志表', |
|
1769 |
'SCHEMA', N'dbo', |
|
1770 |
'TABLE', N'infra_job_log' |
|
1771 |
GO |
|
1772 |
|
|
1773 |
-- ---------------------------- |
|
1774 |
-- Table structure for system_dept |
|
1775 |
-- ---------------------------- |
|
1776 |
DROP TABLE IF EXISTS system_dept; |
|
1777 |
CREATE TABLE system_dept |
|
1778 |
( |
|
1779 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
1780 |
name nvarchar(30) DEFAULT '' NOT NULL, |
|
1781 |
parent_id bigint DEFAULT 0 NOT NULL, |
|
1782 |
sort int DEFAULT 0 NOT NULL, |
|
1783 |
leader_user_id bigint DEFAULT NULL NULL, |
|
1784 |
phone nvarchar(11) DEFAULT NULL NULL, |
|
1785 |
email nvarchar(50) DEFAULT NULL NULL, |
|
1786 |
status tinyint NOT NULL, |
|
1787 |
creator nvarchar(64) DEFAULT '' NULL, |
|
1788 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
1789 |
updater nvarchar(64) DEFAULT '' NULL, |
|
1790 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
1791 |
deleted bit DEFAULT 0 NOT NULL, |
|
1792 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
1793 |
) |
|
1794 |
GO |
|
1795 |
|
|
1796 |
EXEC sp_addextendedproperty |
|
1797 |
'MS_Description', N'部门id', |
|
1798 |
'SCHEMA', N'dbo', |
|
1799 |
'TABLE', N'system_dept', |
|
1800 |
'COLUMN', N'id' |
|
1801 |
GO |
|
1802 |
|
|
1803 |
EXEC sp_addextendedproperty |
|
1804 |
'MS_Description', N'部门名称', |
|
1805 |
'SCHEMA', N'dbo', |
|
1806 |
'TABLE', N'system_dept', |
|
1807 |
'COLUMN', N'name' |
|
1808 |
GO |
|
1809 |
|
|
1810 |
EXEC sp_addextendedproperty |
|
1811 |
'MS_Description', N'父部门id', |
|
1812 |
'SCHEMA', N'dbo', |
|
1813 |
'TABLE', N'system_dept', |
|
1814 |
'COLUMN', N'parent_id' |
|
1815 |
GO |
|
1816 |
|
|
1817 |
EXEC sp_addextendedproperty |
|
1818 |
'MS_Description', N'显示顺序', |
|
1819 |
'SCHEMA', N'dbo', |
|
1820 |
'TABLE', N'system_dept', |
|
1821 |
'COLUMN', N'sort' |
|
1822 |
GO |
|
1823 |
|
|
1824 |
EXEC sp_addextendedproperty |
|
1825 |
'MS_Description', N'负责人', |
|
1826 |
'SCHEMA', N'dbo', |
|
1827 |
'TABLE', N'system_dept', |
|
1828 |
'COLUMN', N'leader_user_id' |
|
1829 |
GO |
|
1830 |
|
|
1831 |
EXEC sp_addextendedproperty |
|
1832 |
'MS_Description', N'联系电话', |
|
1833 |
'SCHEMA', N'dbo', |
|
1834 |
'TABLE', N'system_dept', |
|
1835 |
'COLUMN', N'phone' |
|
1836 |
GO |
|
1837 |
|
|
1838 |
EXEC sp_addextendedproperty |
|
1839 |
'MS_Description', N'邮箱', |
|
1840 |
'SCHEMA', N'dbo', |
|
1841 |
'TABLE', N'system_dept', |
|
1842 |
'COLUMN', N'email' |
|
1843 |
GO |
|
1844 |
|
|
1845 |
EXEC sp_addextendedproperty |
|
1846 |
'MS_Description', N'部门状态(0正常 1停用)', |
|
1847 |
'SCHEMA', N'dbo', |
|
1848 |
'TABLE', N'system_dept', |
|
1849 |
'COLUMN', N'status' |
|
1850 |
GO |
|
1851 |
|
|
1852 |
EXEC sp_addextendedproperty |
|
1853 |
'MS_Description', N'创建者', |
|
1854 |
'SCHEMA', N'dbo', |
|
1855 |
'TABLE', N'system_dept', |
|
1856 |
'COLUMN', N'creator' |
|
1857 |
GO |
|
1858 |
|
|
1859 |
EXEC sp_addextendedproperty |
|
1860 |
'MS_Description', N'创建时间', |
|
1861 |
'SCHEMA', N'dbo', |
|
1862 |
'TABLE', N'system_dept', |
|
1863 |
'COLUMN', N'create_time' |
|
1864 |
GO |
|
1865 |
|
|
1866 |
EXEC sp_addextendedproperty |
|
1867 |
'MS_Description', N'更新者', |
|
1868 |
'SCHEMA', N'dbo', |
|
1869 |
'TABLE', N'system_dept', |
|
1870 |
'COLUMN', N'updater' |
|
1871 |
GO |
|
1872 |
|
|
1873 |
EXEC sp_addextendedproperty |
|
1874 |
'MS_Description', N'更新时间', |
|
1875 |
'SCHEMA', N'dbo', |
|
1876 |
'TABLE', N'system_dept', |
|
1877 |
'COLUMN', N'update_time' |
|
1878 |
GO |
|
1879 |
|
|
1880 |
EXEC sp_addextendedproperty |
|
1881 |
'MS_Description', N'是否删除', |
|
1882 |
'SCHEMA', N'dbo', |
|
1883 |
'TABLE', N'system_dept', |
|
1884 |
'COLUMN', N'deleted' |
|
1885 |
GO |
|
1886 |
|
|
1887 |
EXEC sp_addextendedproperty |
|
1888 |
'MS_Description', N'租户编号', |
|
1889 |
'SCHEMA', N'dbo', |
|
1890 |
'TABLE', N'system_dept', |
|
1891 |
'COLUMN', N'tenant_id' |
|
1892 |
GO |
|
1893 |
|
|
1894 |
EXEC sp_addextendedproperty |
|
1895 |
'MS_Description', N'部门表', |
|
1896 |
'SCHEMA', N'dbo', |
|
1897 |
'TABLE', N'system_dept' |
|
1898 |
GO |
|
1899 |
|
|
1900 |
-- ---------------------------- |
|
1901 |
-- Records of system_dept |
|
1902 |
-- ---------------------------- |
|
1903 |
-- @formatter:off |
|
1904 |
BEGIN TRANSACTION |
|
1905 |
GO |
|
1906 |
SET IDENTITY_INSERT system_dept ON |
|
1907 |
GO |
|
1908 |
INSERT INTO system_dept (id, name, parent_id, sort, leader_user_id, phone, email, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (100, N'iailab', 0, 0, 1, N'15888888888', N'ry@qq.com', 0, N'admin', N'2021-01-05 17:03:47', N'1', N'2023-11-14 23:30:36', N'0', 1) |
|
1909 |
GO |
|
1910 |
INSERT INTO system_dept (id, name, parent_id, sort, leader_user_id, phone, email, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (101, N'深圳总公司', 100, 1, 104, N'15888888888', N'ry@qq.com', 0, N'admin', N'2021-01-05 17:03:47', N'1', N'2023-12-02 09:53:35', N'0', 1) |
|
1911 |
GO |
|
1912 |
INSERT INTO system_dept (id, name, parent_id, sort, leader_user_id, phone, email, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (102, N'长沙分公司', 100, 2, NULL, N'15888888888', N'ry@qq.com', 0, N'admin', N'2021-01-05 17:03:47', N'', N'2021-12-15 05:01:40', N'0', 1) |
|
1913 |
GO |
|
1914 |
INSERT INTO system_dept (id, name, parent_id, sort, leader_user_id, phone, email, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (103, N'研发部门', 101, 1, 104, N'15888888888', N'ry@qq.com', 0, N'admin', N'2021-01-05 17:03:47', N'1', N'2024-03-24 20:56:04', N'0', 1) |
|
1915 |
GO |
|
1916 |
INSERT INTO system_dept (id, name, parent_id, sort, leader_user_id, phone, email, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (104, N'市场部门', 101, 2, NULL, N'15888888888', N'ry@qq.com', 0, N'admin', N'2021-01-05 17:03:47', N'', N'2021-12-15 05:01:38', N'0', 1) |
|
1917 |
GO |
|
1918 |
INSERT INTO system_dept (id, name, parent_id, sort, leader_user_id, phone, email, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (105, N'测试部门', 101, 3, NULL, N'15888888888', N'ry@qq.com', 0, N'admin', N'2021-01-05 17:03:47', N'1', N'2022-05-16 20:25:15', N'0', 1) |
|
1919 |
GO |
|
1920 |
INSERT INTO system_dept (id, name, parent_id, sort, leader_user_id, phone, email, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (106, N'财务部门', 101, 4, 103, N'15888888888', N'ry@qq.com', 0, N'admin', N'2021-01-05 17:03:47', N'103', N'2022-01-15 21:32:22', N'0', 1) |
|
1921 |
GO |
|
1922 |
INSERT INTO system_dept (id, name, parent_id, sort, leader_user_id, phone, email, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (107, N'运维部门', 101, 5, 1, N'15888888888', N'ry@qq.com', 0, N'admin', N'2021-01-05 17:03:47', N'1', N'2023-12-02 09:28:22', N'0', 1) |
|
1923 |
GO |
|
1924 |
INSERT INTO system_dept (id, name, parent_id, sort, leader_user_id, phone, email, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (108, N'市场部门', 102, 1, NULL, N'15888888888', N'ry@qq.com', 0, N'admin', N'2021-01-05 17:03:47', N'1', N'2022-02-16 08:35:45', N'0', 1) |
|
1925 |
GO |
|
1926 |
INSERT INTO system_dept (id, name, parent_id, sort, leader_user_id, phone, email, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (109, N'财务部门', 102, 2, NULL, N'15888888888', N'ry@qq.com', 0, N'admin', N'2021-01-05 17:03:47', N'', N'2021-12-15 05:01:29', N'0', 1) |
|
1927 |
GO |
|
1928 |
INSERT INTO system_dept (id, name, parent_id, sort, leader_user_id, phone, email, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (110, N'新部门', 0, 1, NULL, NULL, NULL, 0, N'110', N'2022-02-23 20:46:30', N'110', N'2022-02-23 20:46:30', N'0', 121) |
|
1929 |
GO |
|
1930 |
INSERT INTO system_dept (id, name, parent_id, sort, leader_user_id, phone, email, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (111, N'顶级部门', 0, 1, NULL, NULL, NULL, 0, N'113', N'2022-03-07 21:44:50', N'113', N'2022-03-07 21:44:50', N'0', 122) |
|
1931 |
GO |
|
1932 |
INSERT INTO system_dept (id, name, parent_id, sort, leader_user_id, phone, email, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (112, N'产品部门', 101, 100, 1, NULL, NULL, 1, N'1', N'2023-12-02 09:45:13', N'1', N'2023-12-02 09:45:31', N'0', 1) |
|
1933 |
GO |
|
1934 |
INSERT INTO system_dept (id, name, parent_id, sort, leader_user_id, phone, email, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (113, N'支持部门', 102, 3, 104, NULL, NULL, 1, N'1', N'2023-12-02 09:47:38', N'1', N'2023-12-02 09:47:38', N'0', 1) |
|
1935 |
GO |
|
1936 |
SET IDENTITY_INSERT system_dept OFF |
|
1937 |
GO |
|
1938 |
COMMIT |
|
1939 |
GO |
|
1940 |
-- @formatter:on |
|
1941 |
|
|
1942 |
-- ---------------------------- |
|
1943 |
-- Table structure for system_dict_data |
|
1944 |
-- ---------------------------- |
|
1945 |
DROP TABLE IF EXISTS system_dict_data; |
|
1946 |
CREATE TABLE system_dict_data |
|
1947 |
( |
|
1948 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
1949 |
sort int DEFAULT 0 NOT NULL, |
|
1950 |
label nvarchar(100) DEFAULT '' NOT NULL, |
|
1951 |
value nvarchar(100) DEFAULT '' NOT NULL, |
|
1952 |
dict_type nvarchar(100) DEFAULT '' NOT NULL, |
|
1953 |
status tinyint DEFAULT 0 NOT NULL, |
|
1954 |
color_type nvarchar(100) DEFAULT '' NULL, |
|
1955 |
css_class nvarchar(100) DEFAULT '' NULL, |
|
1956 |
remark nvarchar(500) DEFAULT NULL NULL, |
|
1957 |
creator nvarchar(64) DEFAULT '' NULL, |
|
1958 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
1959 |
updater nvarchar(64) DEFAULT '' NULL, |
|
1960 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
1961 |
deleted bit DEFAULT 0 NOT NULL |
|
1962 |
) |
|
1963 |
GO |
|
1964 |
|
|
1965 |
EXEC sp_addextendedproperty |
|
1966 |
'MS_Description', N'字典编码', |
|
1967 |
'SCHEMA', N'dbo', |
|
1968 |
'TABLE', N'system_dict_data', |
|
1969 |
'COLUMN', N'id' |
|
1970 |
GO |
|
1971 |
|
|
1972 |
EXEC sp_addextendedproperty |
|
1973 |
'MS_Description', N'字典排序', |
|
1974 |
'SCHEMA', N'dbo', |
|
1975 |
'TABLE', N'system_dict_data', |
|
1976 |
'COLUMN', N'sort' |
|
1977 |
GO |
|
1978 |
|
|
1979 |
EXEC sp_addextendedproperty |
|
1980 |
'MS_Description', N'字典标签', |
|
1981 |
'SCHEMA', N'dbo', |
|
1982 |
'TABLE', N'system_dict_data', |
|
1983 |
'COLUMN', N'label' |
|
1984 |
GO |
|
1985 |
|
|
1986 |
EXEC sp_addextendedproperty |
|
1987 |
'MS_Description', N'字典键值', |
|
1988 |
'SCHEMA', N'dbo', |
|
1989 |
'TABLE', N'system_dict_data', |
|
1990 |
'COLUMN', N'value' |
|
1991 |
GO |
|
1992 |
|
|
1993 |
EXEC sp_addextendedproperty |
|
1994 |
'MS_Description', N'字典类型', |
|
1995 |
'SCHEMA', N'dbo', |
|
1996 |
'TABLE', N'system_dict_data', |
|
1997 |
'COLUMN', N'dict_type' |
|
1998 |
GO |
|
1999 |
|
|
2000 |
EXEC sp_addextendedproperty |
|
2001 |
'MS_Description', N'状态(0正常 1停用)', |
|
2002 |
'SCHEMA', N'dbo', |
|
2003 |
'TABLE', N'system_dict_data', |
|
2004 |
'COLUMN', N'status' |
|
2005 |
GO |
|
2006 |
|
|
2007 |
EXEC sp_addextendedproperty |
|
2008 |
'MS_Description', N'颜色类型', |
|
2009 |
'SCHEMA', N'dbo', |
|
2010 |
'TABLE', N'system_dict_data', |
|
2011 |
'COLUMN', N'color_type' |
|
2012 |
GO |
|
2013 |
|
|
2014 |
EXEC sp_addextendedproperty |
|
2015 |
'MS_Description', N'css 样式', |
|
2016 |
'SCHEMA', N'dbo', |
|
2017 |
'TABLE', N'system_dict_data', |
|
2018 |
'COLUMN', N'css_class' |
|
2019 |
GO |
|
2020 |
|
|
2021 |
EXEC sp_addextendedproperty |
|
2022 |
'MS_Description', N'备注', |
|
2023 |
'SCHEMA', N'dbo', |
|
2024 |
'TABLE', N'system_dict_data', |
|
2025 |
'COLUMN', N'remark' |
|
2026 |
GO |
|
2027 |
|
|
2028 |
EXEC sp_addextendedproperty |
|
2029 |
'MS_Description', N'创建者', |
|
2030 |
'SCHEMA', N'dbo', |
|
2031 |
'TABLE', N'system_dict_data', |
|
2032 |
'COLUMN', N'creator' |
|
2033 |
GO |
|
2034 |
|
|
2035 |
EXEC sp_addextendedproperty |
|
2036 |
'MS_Description', N'创建时间', |
|
2037 |
'SCHEMA', N'dbo', |
|
2038 |
'TABLE', N'system_dict_data', |
|
2039 |
'COLUMN', N'create_time' |
|
2040 |
GO |
|
2041 |
|
|
2042 |
EXEC sp_addextendedproperty |
|
2043 |
'MS_Description', N'更新者', |
|
2044 |
'SCHEMA', N'dbo', |
|
2045 |
'TABLE', N'system_dict_data', |
|
2046 |
'COLUMN', N'updater' |
|
2047 |
GO |
|
2048 |
|
|
2049 |
EXEC sp_addextendedproperty |
|
2050 |
'MS_Description', N'更新时间', |
|
2051 |
'SCHEMA', N'dbo', |
|
2052 |
'TABLE', N'system_dict_data', |
|
2053 |
'COLUMN', N'update_time' |
|
2054 |
GO |
|
2055 |
|
|
2056 |
EXEC sp_addextendedproperty |
|
2057 |
'MS_Description', N'是否删除', |
|
2058 |
'SCHEMA', N'dbo', |
|
2059 |
'TABLE', N'system_dict_data', |
|
2060 |
'COLUMN', N'deleted' |
|
2061 |
GO |
|
2062 |
|
|
2063 |
EXEC sp_addextendedproperty |
|
2064 |
'MS_Description', N'字典数据表', |
|
2065 |
'SCHEMA', N'dbo', |
|
2066 |
'TABLE', N'system_dict_data' |
|
2067 |
GO |
|
2068 |
|
|
2069 |
-- ---------------------------- |
|
2070 |
-- Records of system_dict_data |
|
2071 |
-- ---------------------------- |
|
2072 |
-- @formatter:off |
|
2073 |
BEGIN TRANSACTION |
|
2074 |
GO |
|
2075 |
SET IDENTITY_INSERT system_dict_data ON |
|
2076 |
GO |
|
2077 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1, 1, N'男', N'1', N'system_user_sex', 0, N'default', N'A', N'性别男', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-03-29 00:14:39', N'0') |
|
2078 |
GO |
|
2079 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (2, 2, N'女', N'2', N'system_user_sex', 0, N'success', N'', N'性别女', N'admin', N'2021-01-05 17:03:48', N'1', N'2023-11-15 23:30:37', N'0') |
|
2080 |
GO |
|
2081 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (8, 1, N'正常', N'1', N'infra_job_status', 0, N'success', N'', N'正常状态', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-02-16 19:33:38', N'0') |
|
2082 |
GO |
|
2083 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (9, 2, N'暂停', N'2', N'infra_job_status', 0, N'danger', N'', N'停用状态', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-02-16 19:33:45', N'0') |
|
2084 |
GO |
|
2085 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (12, 1, N'系统内置', N'1', N'infra_config_type', 0, N'danger', N'', N'参数类型 - 系统内置', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-02-16 19:06:02', N'0') |
|
2086 |
GO |
|
2087 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (13, 2, N'自定义', N'2', N'infra_config_type', 0, N'primary', N'', N'参数类型 - 自定义', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-02-16 19:06:07', N'0') |
|
2088 |
GO |
|
2089 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (14, 1, N'通知', N'1', N'system_notice_type', 0, N'success', N'', N'通知', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-02-16 13:05:57', N'0') |
|
2090 |
GO |
|
2091 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (15, 2, N'公告', N'2', N'system_notice_type', 0, N'info', N'', N'公告', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-02-16 13:06:01', N'0') |
|
2092 |
GO |
|
2093 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (16, 0, N'其它', N'0', N'infra_operate_type', 0, N'default', N'', N'其它操作', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-03-14 12:44:19', N'0') |
|
2094 |
GO |
|
2095 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (17, 1, N'查询', N'1', N'infra_operate_type', 0, N'info', N'', N'查询操作', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-03-14 12:44:20', N'0') |
|
2096 |
GO |
|
2097 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (18, 2, N'新增', N'2', N'infra_operate_type', 0, N'primary', N'', N'新增操作', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-03-14 12:44:21', N'0') |
|
2098 |
GO |
|
2099 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (19, 3, N'修改', N'3', N'infra_operate_type', 0, N'warning', N'', N'修改操作', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-03-14 12:44:22', N'0') |
|
2100 |
GO |
|
2101 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (20, 4, N'删除', N'4', N'infra_operate_type', 0, N'danger', N'', N'删除操作', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-03-14 12:44:23', N'0') |
|
2102 |
GO |
|
2103 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (22, 5, N'导出', N'5', N'infra_operate_type', 0, N'default', N'', N'导出操作', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-03-14 12:44:24', N'0') |
|
2104 |
GO |
|
2105 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (23, 6, N'导入', N'6', N'infra_operate_type', 0, N'default', N'', N'导入操作', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-03-14 12:44:25', N'0') |
|
2106 |
GO |
|
2107 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (27, 1, N'开启', N'0', N'common_status', 0, N'primary', N'', N'开启状态', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-02-16 08:00:39', N'0') |
|
2108 |
GO |
|
2109 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (28, 2, N'关闭', N'1', N'common_status', 0, N'info', N'', N'关闭状态', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-02-16 08:00:44', N'0') |
|
2110 |
GO |
|
2111 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (29, 1, N'目录', N'1', N'system_menu_type', 0, N'', N'', N'目录', N'admin', N'2021-01-05 17:03:48', N'', N'2022-02-01 16:43:45', N'0') |
|
2112 |
GO |
|
2113 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (30, 2, N'菜单', N'2', N'system_menu_type', 0, N'', N'', N'菜单', N'admin', N'2021-01-05 17:03:48', N'', N'2022-02-01 16:43:41', N'0') |
|
2114 |
GO |
|
2115 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (31, 3, N'按钮', N'3', N'system_menu_type', 0, N'', N'', N'按钮', N'admin', N'2021-01-05 17:03:48', N'', N'2022-02-01 16:43:39', N'0') |
|
2116 |
GO |
|
2117 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (32, 1, N'内置', N'1', N'system_role_type', 0, N'danger', N'', N'内置角色', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-02-16 13:02:08', N'0') |
|
2118 |
GO |
|
2119 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (33, 2, N'自定义', N'2', N'system_role_type', 0, N'primary', N'', N'自定义角色', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-02-16 13:02:12', N'0') |
|
2120 |
GO |
|
2121 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (34, 1, N'全部数据权限', N'1', N'system_data_scope', 0, N'', N'', N'全部数据权限', N'admin', N'2021-01-05 17:03:48', N'', N'2022-02-01 16:47:17', N'0') |
|
2122 |
GO |
|
2123 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (35, 2, N'指定部门数据权限', N'2', N'system_data_scope', 0, N'', N'', N'指定部门数据权限', N'admin', N'2021-01-05 17:03:48', N'', N'2022-02-01 16:47:18', N'0') |
|
2124 |
GO |
|
2125 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (36, 3, N'本部门数据权限', N'3', N'system_data_scope', 0, N'', N'', N'本部门数据权限', N'admin', N'2021-01-05 17:03:48', N'', N'2022-02-01 16:47:16', N'0') |
|
2126 |
GO |
|
2127 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (37, 4, N'本部门及以下数据权限', N'4', N'system_data_scope', 0, N'', N'', N'本部门及以下数据权限', N'admin', N'2021-01-05 17:03:48', N'', N'2022-02-01 16:47:21', N'0') |
|
2128 |
GO |
|
2129 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (38, 5, N'仅本人数据权限', N'5', N'system_data_scope', 0, N'', N'', N'仅本人数据权限', N'admin', N'2021-01-05 17:03:48', N'', N'2022-02-01 16:47:23', N'0') |
|
2130 |
GO |
|
2131 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (39, 0, N'成功', N'0', N'system_login_result', 0, N'success', N'', N'登陆结果 - 成功', N'', N'2021-01-18 06:17:36', N'1', N'2022-02-16 13:23:49', N'0') |
|
2132 |
GO |
|
2133 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (40, 10, N'账号或密码不正确', N'10', N'system_login_result', 0, N'primary', N'', N'登陆结果 - 账号或密码不正确', N'', N'2021-01-18 06:17:54', N'1', N'2022-02-16 13:24:27', N'0') |
|
2134 |
GO |
|
2135 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (41, 20, N'用户被禁用', N'20', N'system_login_result', 0, N'warning', N'', N'登陆结果 - 用户被禁用', N'', N'2021-01-18 06:17:54', N'1', N'2022-02-16 13:23:57', N'0') |
|
2136 |
GO |
|
2137 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (42, 30, N'验证码不存在', N'30', N'system_login_result', 0, N'info', N'', N'登陆结果 - 验证码不存在', N'', N'2021-01-18 06:17:54', N'1', N'2022-02-16 13:24:07', N'0') |
|
2138 |
GO |
|
2139 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (43, 31, N'验证码不正确', N'31', N'system_login_result', 0, N'info', N'', N'登陆结果 - 验证码不正确', N'', N'2021-01-18 06:17:54', N'1', N'2022-02-16 13:24:11', N'0') |
|
2140 |
GO |
|
2141 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (44, 100, N'未知异常', N'100', N'system_login_result', 0, N'danger', N'', N'登陆结果 - 未知异常', N'', N'2021-01-18 06:17:54', N'1', N'2022-02-16 13:24:23', N'0') |
|
2142 |
GO |
|
2143 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (45, 1, N'是', N'true', N'infra_boolean_string', 0, N'danger', N'', N'Boolean 是否类型 - 是', N'', N'2021-01-19 03:20:55', N'1', N'2022-03-15 23:01:45', N'0') |
|
2144 |
GO |
|
2145 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (46, 1, N'否', N'false', N'infra_boolean_string', 0, N'info', N'', N'Boolean 是否类型 - 否', N'', N'2021-01-19 03:20:55', N'1', N'2022-03-15 23:09:45', N'0') |
|
2146 |
GO |
|
2147 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (50, 1, N'单表(增删改查)', N'1', N'infra_codegen_template_type', 0, N'', N'', NULL, N'', N'2021-02-05 07:09:06', N'', N'2022-03-10 16:33:15', N'0') |
|
2148 |
GO |
|
2149 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (51, 2, N'树表(增删改查)', N'2', N'infra_codegen_template_type', 0, N'', N'', NULL, N'', N'2021-02-05 07:14:46', N'', N'2022-03-10 16:33:19', N'0') |
|
2150 |
GO |
|
2151 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (53, 0, N'初始化中', N'0', N'infra_job_status', 0, N'primary', N'', NULL, N'', N'2021-02-07 07:46:49', N'1', N'2022-02-16 19:33:29', N'0') |
|
2152 |
GO |
|
2153 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (57, 0, N'运行中', N'0', N'infra_job_log_status', 0, N'primary', N'', N'RUNNING', N'', N'2021-02-08 10:04:24', N'1', N'2022-02-16 19:07:48', N'0') |
|
2154 |
GO |
|
2155 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (58, 1, N'成功', N'1', N'infra_job_log_status', 0, N'success', N'', NULL, N'', N'2021-02-08 10:06:57', N'1', N'2022-02-16 19:07:52', N'0') |
|
2156 |
GO |
|
2157 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (59, 2, N'失败', N'2', N'infra_job_log_status', 0, N'warning', N'', N'失败', N'', N'2021-02-08 10:07:38', N'1', N'2022-02-16 19:07:56', N'0') |
|
2158 |
GO |
|
2159 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (60, 1, N'会员', N'1', N'user_type', 0, N'primary', N'', NULL, N'', N'2021-02-26 00:16:27', N'1', N'2022-02-16 10:22:19', N'0') |
|
2160 |
GO |
|
2161 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (61, 2, N'管理员', N'2', N'user_type', 0, N'success', N'', NULL, N'', N'2021-02-26 00:16:34', N'1', N'2022-02-16 10:22:22', N'0') |
|
2162 |
GO |
|
2163 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (62, 0, N'未处理', N'0', N'infra_api_error_log_process_status', 0, N'primary', N'', NULL, N'', N'2021-02-26 07:07:19', N'1', N'2022-02-16 20:14:17', N'0') |
|
2164 |
GO |
|
2165 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (63, 1, N'已处理', N'1', N'infra_api_error_log_process_status', 0, N'success', N'', NULL, N'', N'2021-02-26 07:07:26', N'1', N'2022-02-16 20:14:08', N'0') |
|
2166 |
GO |
|
2167 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (64, 2, N'已忽略', N'2', N'infra_api_error_log_process_status', 0, N'danger', N'', NULL, N'', N'2021-02-26 07:07:34', N'1', N'2022-02-16 20:14:14', N'0') |
|
2168 |
GO |
|
2169 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (66, 2, N'阿里云', N'ALIYUN', N'system_sms_channel_code', 0, N'primary', N'', NULL, N'1', N'2021-04-05 01:05:26', N'1', N'2022-02-16 10:09:52', N'0') |
|
2170 |
GO |
|
2171 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (67, 1, N'验证码', N'1', N'system_sms_template_type', 0, N'warning', N'', NULL, N'1', N'2021-04-05 21:50:57', N'1', N'2022-02-16 12:48:30', N'0') |
|
2172 |
GO |
|
2173 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (68, 2, N'通知', N'2', N'system_sms_template_type', 0, N'primary', N'', NULL, N'1', N'2021-04-05 21:51:08', N'1', N'2022-02-16 12:48:27', N'0') |
|
2174 |
GO |
|
2175 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (69, 0, N'营销', N'3', N'system_sms_template_type', 0, N'danger', N'', NULL, N'1', N'2021-04-05 21:51:15', N'1', N'2022-02-16 12:48:22', N'0') |
|
2176 |
GO |
|
2177 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (70, 0, N'初始化', N'0', N'system_sms_send_status', 0, N'primary', N'', NULL, N'1', N'2021-04-11 20:18:33', N'1', N'2022-02-16 10:26:07', N'0') |
|
2178 |
GO |
|
2179 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (71, 1, N'发送成功', N'10', N'system_sms_send_status', 0, N'success', N'', NULL, N'1', N'2021-04-11 20:18:43', N'1', N'2022-02-16 10:25:56', N'0') |
|
2180 |
GO |
|
2181 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (72, 2, N'发送失败', N'20', N'system_sms_send_status', 0, N'danger', N'', NULL, N'1', N'2021-04-11 20:18:49', N'1', N'2022-02-16 10:26:03', N'0') |
|
2182 |
GO |
|
2183 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (73, 3, N'不发送', N'30', N'system_sms_send_status', 0, N'info', N'', NULL, N'1', N'2021-04-11 20:19:44', N'1', N'2022-02-16 10:26:10', N'0') |
|
2184 |
GO |
|
2185 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (74, 0, N'等待结果', N'0', N'system_sms_receive_status', 0, N'primary', N'', NULL, N'1', N'2021-04-11 20:27:43', N'1', N'2022-02-16 10:28:24', N'0') |
|
2186 |
GO |
|
2187 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (75, 1, N'接收成功', N'10', N'system_sms_receive_status', 0, N'success', N'', NULL, N'1', N'2021-04-11 20:29:25', N'1', N'2022-02-16 10:28:28', N'0') |
|
2188 |
GO |
|
2189 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (76, 2, N'接收失败', N'20', N'system_sms_receive_status', 0, N'danger', N'', NULL, N'1', N'2021-04-11 20:29:31', N'1', N'2022-02-16 10:28:32', N'0') |
|
2190 |
GO |
|
2191 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (77, 0, N'调试(钉钉)', N'DEBUG_DING_TALK', N'system_sms_channel_code', 0, N'info', N'', NULL, N'1', N'2021-04-13 00:20:37', N'1', N'2022-02-16 10:10:00', N'0') |
|
2192 |
GO |
|
2193 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (80, 100, N'账号登录', N'100', N'system_login_type', 0, N'primary', N'', N'账号登录', N'1', N'2021-10-06 00:52:02', N'1', N'2022-02-16 13:11:34', N'0') |
|
2194 |
GO |
|
2195 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (81, 101, N'社交登录', N'101', N'system_login_type', 0, N'info', N'', N'社交登录', N'1', N'2021-10-06 00:52:17', N'1', N'2022-02-16 13:11:40', N'0') |
|
2196 |
GO |
|
2197 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (83, 200, N'主动登出', N'200', N'system_login_type', 0, N'primary', N'', N'主动登出', N'1', N'2021-10-06 00:52:58', N'1', N'2022-02-16 13:11:49', N'0') |
|
2198 |
GO |
|
2199 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (85, 202, N'强制登出', N'202', N'system_login_type', 0, N'danger', N'', N'强制退出', N'1', N'2021-10-06 00:53:41', N'1', N'2022-02-16 13:11:57', N'0') |
|
2200 |
GO |
|
2201 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (86, 0, N'病假', N'1', N'bpm_oa_leave_type', 0, N'primary', N'', NULL, N'1', N'2021-09-21 22:35:28', N'1', N'2022-02-16 10:00:41', N'0') |
|
2202 |
GO |
|
2203 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (87, 1, N'事假', N'2', N'bpm_oa_leave_type', 0, N'info', N'', NULL, N'1', N'2021-09-21 22:36:11', N'1', N'2022-02-16 10:00:49', N'0') |
|
2204 |
GO |
|
2205 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (88, 2, N'婚假', N'3', N'bpm_oa_leave_type', 0, N'warning', N'', NULL, N'1', N'2021-09-21 22:36:38', N'1', N'2022-02-16 10:00:53', N'0') |
|
2206 |
GO |
|
2207 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (113, 1, N'微信公众号支付', N'wx_pub', N'pay_channel_code', 0, N'success', N'', N'微信公众号支付', N'1', N'2021-12-03 10:40:24', N'1', N'2023-07-19 20:08:47', N'0') |
|
2208 |
GO |
|
2209 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (114, 2, N'微信小程序支付', N'wx_lite', N'pay_channel_code', 0, N'success', N'', N'微信小程序支付', N'1', N'2021-12-03 10:41:06', N'1', N'2023-07-19 20:08:50', N'0') |
|
2210 |
GO |
|
2211 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (115, 3, N'微信 App 支付', N'wx_app', N'pay_channel_code', 0, N'success', N'', N'微信 App 支付', N'1', N'2021-12-03 10:41:20', N'1', N'2023-07-19 20:08:56', N'0') |
|
2212 |
GO |
|
2213 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (116, 10, N'支付宝 PC 网站支付', N'alipay_pc', N'pay_channel_code', 0, N'primary', N'', N'支付宝 PC 网站支付', N'1', N'2021-12-03 10:42:09', N'1', N'2023-07-19 20:09:12', N'0') |
|
2214 |
GO |
|
2215 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (117, 11, N'支付宝 Wap 网站支付', N'alipay_wap', N'pay_channel_code', 0, N'primary', N'', N'支付宝 Wap 网站支付', N'1', N'2021-12-03 10:42:26', N'1', N'2023-07-19 20:09:16', N'0') |
|
2216 |
GO |
|
2217 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (118, 12, N'支付宝 App 支付', N'alipay_app', N'pay_channel_code', 0, N'primary', N'', N'支付宝 App 支付', N'1', N'2021-12-03 10:42:55', N'1', N'2023-07-19 20:09:20', N'0') |
|
2218 |
GO |
|
2219 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (119, 14, N'支付宝扫码支付', N'alipay_qr', N'pay_channel_code', 0, N'primary', N'', N'支付宝扫码支付', N'1', N'2021-12-03 10:43:10', N'1', N'2023-07-19 20:09:28', N'0') |
|
2220 |
GO |
|
2221 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (120, 10, N'通知成功', N'10', N'pay_notify_status', 0, N'success', N'', N'通知成功', N'1', N'2021-12-03 11:02:41', N'1', N'2023-07-19 10:08:19', N'0') |
|
2222 |
GO |
|
2223 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (121, 20, N'通知失败', N'20', N'pay_notify_status', 0, N'danger', N'', N'通知失败', N'1', N'2021-12-03 11:02:59', N'1', N'2023-07-19 10:08:21', N'0') |
|
2224 |
GO |
|
2225 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (122, 0, N'等待通知', N'0', N'pay_notify_status', 0, N'info', N'', N'未通知', N'1', N'2021-12-03 11:03:10', N'1', N'2023-07-19 10:08:24', N'0') |
|
2226 |
GO |
|
2227 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (123, 10, N'支付成功', N'10', N'pay_order_status', 0, N'success', N'', N'支付成功', N'1', N'2021-12-03 11:18:29', N'1', N'2023-07-19 18:04:28', N'0') |
|
2228 |
GO |
|
2229 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (124, 30, N'支付关闭', N'30', N'pay_order_status', 0, N'info', N'', N'支付关闭', N'1', N'2021-12-03 11:18:42', N'1', N'2023-07-19 18:05:07', N'0') |
|
2230 |
GO |
|
2231 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (125, 0, N'等待支付', N'0', N'pay_order_status', 0, N'info', N'', N'未支付', N'1', N'2021-12-03 11:18:18', N'1', N'2023-07-19 18:04:15', N'0') |
|
2232 |
GO |
|
2233 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (600, 5, N'首页', N'1', N'promotion_banner_position', 0, N'warning', N'', N'', N'1', N'2023-10-11 07:45:24', N'1', N'2023-10-11 07:45:38', N'0') |
|
2234 |
GO |
|
2235 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (601, 4, N'秒杀活动页', N'2', N'promotion_banner_position', 0, N'warning', N'', N'', N'1', N'2023-10-11 07:45:24', N'1', N'2023-10-11 07:45:38', N'0') |
|
2236 |
GO |
|
2237 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (602, 3, N'砍价活动页', N'3', N'promotion_banner_position', 0, N'warning', N'', N'', N'1', N'2023-10-11 07:45:24', N'1', N'2023-10-11 07:45:38', N'0') |
|
2238 |
GO |
|
2239 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (603, 2, N'限时折扣页', N'4', N'promotion_banner_position', 0, N'warning', N'', N'', N'1', N'2023-10-11 07:45:24', N'1', N'2023-10-11 07:45:38', N'0') |
|
2240 |
GO |
|
2241 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (604, 1, N'满减送页', N'5', N'promotion_banner_position', 0, N'warning', N'', N'', N'1', N'2023-10-11 07:45:24', N'1', N'2023-10-11 07:45:38', N'0') |
|
2242 |
GO |
|
2243 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1118, 0, N'等待退款', N'0', N'pay_refund_status', 0, N'info', N'', N'等待退款', N'1', N'2021-12-10 16:44:59', N'1', N'2023-07-19 10:14:39', N'0') |
|
2244 |
GO |
|
2245 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1119, 20, N'退款失败', N'20', N'pay_refund_status', 0, N'danger', N'', N'退款失败', N'1', N'2021-12-10 16:45:10', N'1', N'2023-07-19 10:15:10', N'0') |
|
2246 |
GO |
|
2247 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1124, 10, N'退款成功', N'10', N'pay_refund_status', 0, N'success', N'', N'退款成功', N'1', N'2021-12-10 16:46:26', N'1', N'2023-07-19 10:15:00', N'0') |
|
2248 |
GO |
|
2249 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1127, 1, N'审批中', N'1', N'bpm_process_instance_status', 0, N'default', N'', N'流程实例的状态 - 进行中', N'1', N'2022-01-07 23:47:22', N'1', N'2024-03-16 16:11:45', N'0') |
|
2250 |
GO |
|
2251 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1128, 2, N'审批通过', N'2', N'bpm_process_instance_status', 0, N'success', N'', N'流程实例的状态 - 已完成', N'1', N'2022-01-07 23:47:49', N'1', N'2024-03-16 16:11:54', N'0') |
|
2252 |
GO |
|
2253 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1129, 1, N'审批中', N'1', N'bpm_task_status', 0, N'primary', N'', N'流程实例的结果 - 处理中', N'1', N'2022-01-07 23:48:32', N'1', N'2024-03-08 22:41:37', N'0') |
|
2254 |
GO |
|
2255 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1130, 2, N'审批通过', N'2', N'bpm_task_status', 0, N'success', N'', N'流程实例的结果 - 通过', N'1', N'2022-01-07 23:48:45', N'1', N'2024-03-08 22:41:38', N'0') |
|
2256 |
GO |
|
2257 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1131, 3, N'审批不通过', N'3', N'bpm_task_status', 0, N'danger', N'', N'流程实例的结果 - 不通过', N'1', N'2022-01-07 23:48:55', N'1', N'2024-03-08 22:41:38', N'0') |
|
2258 |
GO |
|
2259 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1132, 4, N'已取消', N'4', N'bpm_task_status', 0, N'info', N'', N'流程实例的结果 - 撤销', N'1', N'2022-01-07 23:49:06', N'1', N'2024-03-08 22:41:39', N'0') |
|
2260 |
GO |
|
2261 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1133, 10, N'流程表单', N'10', N'bpm_model_form_type', 0, N'', N'', N'流程的表单类型 - 流程表单', N'103', N'2022-01-11 23:51:30', N'103', N'2022-01-11 23:51:30', N'0') |
|
2262 |
GO |
|
2263 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1134, 20, N'业务表单', N'20', N'bpm_model_form_type', 0, N'', N'', N'流程的表单类型 - 业务表单', N'103', N'2022-01-11 23:51:47', N'103', N'2022-01-11 23:51:47', N'0') |
|
2264 |
GO |
|
2265 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1135, 10, N'角色', N'10', N'bpm_task_candidate_strategy', 0, N'info', N'', N'任务分配规则的类型 - 角色', N'103', N'2022-01-12 23:21:22', N'1', N'2024-03-06 02:53:16', N'0') |
|
2266 |
GO |
|
2267 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1136, 20, N'部门的成员', N'20', N'bpm_task_candidate_strategy', 0, N'primary', N'', N'任务分配规则的类型 - 部门的成员', N'103', N'2022-01-12 23:21:47', N'1', N'2024-03-06 02:53:17', N'0') |
|
2268 |
GO |
|
2269 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1137, 21, N'部门的负责人', N'21', N'bpm_task_candidate_strategy', 0, N'primary', N'', N'任务分配规则的类型 - 部门的负责人', N'103', N'2022-01-12 23:33:36', N'1', N'2024-03-06 02:53:18', N'0') |
|
2270 |
GO |
|
2271 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1138, 30, N'用户', N'30', N'bpm_task_candidate_strategy', 0, N'info', N'', N'任务分配规则的类型 - 用户', N'103', N'2022-01-12 23:34:02', N'1', N'2024-03-06 02:53:19', N'0') |
|
2272 |
GO |
|
2273 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1139, 40, N'用户组', N'40', N'bpm_task_candidate_strategy', 0, N'warning', N'', N'任务分配规则的类型 - 用户组', N'103', N'2022-01-12 23:34:21', N'1', N'2024-03-06 02:53:20', N'0') |
|
2274 |
GO |
|
2275 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1140, 60, N'流程表达式', N'60', N'bpm_task_candidate_strategy', 0, N'danger', N'', N'任务分配规则的类型 - 流程表达式', N'103', N'2022-01-12 23:34:43', N'1', N'2024-03-06 02:53:20', N'0') |
|
2276 |
GO |
|
2277 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1141, 22, N'岗位', N'22', N'bpm_task_candidate_strategy', 0, N'success', N'', N'任务分配规则的类型 - 岗位', N'103', N'2022-01-14 18:41:55', N'1', N'2024-03-06 02:53:21', N'0') |
|
2278 |
GO |
|
2279 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1145, 1, N'管理后台', N'1', N'infra_codegen_scene', 0, N'', N'', N'代码生成的场景枚举 - 管理后台', N'1', N'2022-02-02 13:15:06', N'1', N'2022-03-10 16:32:59', N'0') |
|
2280 |
GO |
|
2281 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1146, 2, N'用户 APP', N'2', N'infra_codegen_scene', 0, N'', N'', N'代码生成的场景枚举 - 用户 APP', N'1', N'2022-02-02 13:15:19', N'1', N'2022-03-10 16:33:03', N'0') |
|
2282 |
GO |
|
2283 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1150, 1, N'数据库', N'1', N'infra_file_storage', 0, N'default', N'', NULL, N'1', N'2022-03-15 00:25:28', N'1', N'2022-03-15 00:25:28', N'0') |
|
2284 |
GO |
|
2285 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1151, 10, N'本地磁盘', N'10', N'infra_file_storage', 0, N'default', N'', NULL, N'1', N'2022-03-15 00:25:41', N'1', N'2022-03-15 00:25:56', N'0') |
|
2286 |
GO |
|
2287 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1152, 11, N'FTP 服务器', N'11', N'infra_file_storage', 0, N'default', N'', NULL, N'1', N'2022-03-15 00:26:06', N'1', N'2022-03-15 00:26:10', N'0') |
|
2288 |
GO |
|
2289 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1153, 12, N'SFTP 服务器', N'12', N'infra_file_storage', 0, N'default', N'', NULL, N'1', N'2022-03-15 00:26:22', N'1', N'2022-03-15 00:26:22', N'0') |
|
2290 |
GO |
|
2291 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1154, 20, N'S3 对象存储', N'20', N'infra_file_storage', 0, N'default', N'', NULL, N'1', N'2022-03-15 00:26:31', N'1', N'2022-03-15 00:26:45', N'0') |
|
2292 |
GO |
|
2293 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1155, 103, N'短信登录', N'103', N'system_login_type', 0, N'default', N'', NULL, N'1', N'2022-05-09 23:57:58', N'1', N'2022-05-09 23:58:09', N'0') |
|
2294 |
GO |
|
2295 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1156, 1, N'password', N'password', N'system_oauth2_grant_type', 0, N'default', N'', N'密码模式', N'1', N'2022-05-12 00:22:05', N'1', N'2022-05-11 16:26:01', N'0') |
|
2296 |
GO |
|
2297 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1157, 2, N'authorization_code', N'authorization_code', N'system_oauth2_grant_type', 0, N'primary', N'', N'授权码模式', N'1', N'2022-05-12 00:22:59', N'1', N'2022-05-11 16:26:02', N'0') |
|
2298 |
GO |
|
2299 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1158, 3, N'implicit', N'implicit', N'system_oauth2_grant_type', 0, N'success', N'', N'简化模式', N'1', N'2022-05-12 00:23:40', N'1', N'2022-05-11 16:26:05', N'0') |
|
2300 |
GO |
|
2301 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1159, 4, N'client_credentials', N'client_credentials', N'system_oauth2_grant_type', 0, N'default', N'', N'客户端模式', N'1', N'2022-05-12 00:23:51', N'1', N'2022-05-11 16:26:08', N'0') |
|
2302 |
GO |
|
2303 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1160, 5, N'refresh_token', N'refresh_token', N'system_oauth2_grant_type', 0, N'info', N'', N'刷新模式', N'1', N'2022-05-12 00:24:02', N'1', N'2022-05-11 16:26:11', N'0') |
|
2304 |
GO |
|
2305 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1162, 1, N'销售中', N'1', N'product_spu_status', 0, N'success', N'', N'商品 SPU 状态 - 销售中', N'1', N'2022-10-24 21:19:47', N'1', N'2022-10-24 21:20:38', N'0') |
|
2306 |
GO |
|
2307 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1163, 0, N'仓库中', N'0', N'product_spu_status', 0, N'info', N'', N'商品 SPU 状态 - 仓库中', N'1', N'2022-10-24 21:20:54', N'1', N'2022-10-24 21:21:22', N'0') |
|
2308 |
GO |
|
2309 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1164, 0, N'回收站', N'-1', N'product_spu_status', 0, N'default', N'', N'商品 SPU 状态 - 回收站', N'1', N'2022-10-24 21:21:11', N'1', N'2022-10-24 21:21:11', N'0') |
|
2310 |
GO |
|
2311 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1165, 1, N'满减', N'1', N'promotion_discount_type', 0, N'success', N'', N'优惠类型 - 满减', N'1', N'2022-11-01 12:46:41', N'1', N'2022-11-01 12:50:11', N'0') |
|
2312 |
GO |
|
2313 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1166, 2, N'折扣', N'2', N'promotion_discount_type', 0, N'primary', N'', N'优惠类型 - 折扣', N'1', N'2022-11-01 12:46:51', N'1', N'2022-11-01 12:50:08', N'0') |
|
2314 |
GO |
|
2315 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1167, 1, N'固定日期', N'1', N'promotion_coupon_template_validity_type', 0, N'default', N'', N'优惠劵模板的有限期类型 - 固定日期', N'1', N'2022-11-02 00:07:34', N'1', N'2022-11-04 00:07:49', N'0') |
|
2316 |
GO |
|
2317 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1168, 2, N'领取之后', N'2', N'promotion_coupon_template_validity_type', 0, N'default', N'', N'优惠劵模板的有限期类型 - 领取之后', N'1', N'2022-11-02 00:07:54', N'1', N'2022-11-04 00:07:52', N'0') |
|
2318 |
GO |
|
2319 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1169, 1, N'通用劵', N'1', N'promotion_product_scope', 0, N'default', N'', N'营销的商品范围 - 全部商品参与', N'1', N'2022-11-02 00:28:22', N'1', N'2023-09-28 00:27:42', N'0') |
|
2320 |
GO |
|
2321 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1170, 2, N'商品劵', N'2', N'promotion_product_scope', 0, N'default', N'', N'营销的商品范围 - 指定商品参与', N'1', N'2022-11-02 00:28:34', N'1', N'2023-09-28 00:27:44', N'0') |
|
2322 |
GO |
|
2323 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1171, 1, N'未使用', N'1', N'promotion_coupon_status', 0, N'primary', N'', N'优惠劵的状态 - 已领取', N'1', N'2022-11-04 00:15:08', N'1', N'2023-10-03 12:54:38', N'0') |
|
2324 |
GO |
|
2325 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1172, 2, N'已使用', N'2', N'promotion_coupon_status', 0, N'success', N'', N'优惠劵的状态 - 已使用', N'1', N'2022-11-04 00:15:21', N'1', N'2022-11-04 19:16:08', N'0') |
|
2326 |
GO |
|
2327 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1173, 3, N'已过期', N'3', N'promotion_coupon_status', 0, N'info', N'', N'优惠劵的状态 - 已过期', N'1', N'2022-11-04 00:15:43', N'1', N'2022-11-04 19:16:12', N'0') |
|
2328 |
GO |
|
2329 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1174, 1, N'直接领取', N'1', N'promotion_coupon_take_type', 0, N'primary', N'', N'优惠劵的领取方式 - 直接领取', N'1', N'2022-11-04 19:13:00', N'1', N'2022-11-04 19:13:25', N'0') |
|
2330 |
GO |
|
2331 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1175, 2, N'指定发放', N'2', N'promotion_coupon_take_type', 0, N'success', N'', N'优惠劵的领取方式 - 指定发放', N'1', N'2022-11-04 19:13:13', N'1', N'2022-11-04 19:14:48', N'0') |
|
2332 |
GO |
|
2333 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1176, 10, N'未开始', N'10', N'promotion_activity_status', 0, N'primary', N'', N'促销活动的状态枚举 - 未开始', N'1', N'2022-11-04 22:54:49', N'1', N'2022-11-04 22:55:53', N'0') |
|
2334 |
GO |
|
2335 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1177, 20, N'进行中', N'20', N'promotion_activity_status', 0, N'success', N'', N'促销活动的状态枚举 - 进行中', N'1', N'2022-11-04 22:55:06', N'1', N'2022-11-04 22:55:20', N'0') |
|
2336 |
GO |
|
2337 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1178, 30, N'已结束', N'30', N'promotion_activity_status', 0, N'info', N'', N'促销活动的状态枚举 - 已结束', N'1', N'2022-11-04 22:55:41', N'1', N'2022-11-04 22:55:41', N'0') |
|
2338 |
GO |
|
2339 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1179, 40, N'已关闭', N'40', N'promotion_activity_status', 0, N'warning', N'', N'促销活动的状态枚举 - 已关闭', N'1', N'2022-11-04 22:56:10', N'1', N'2022-11-04 22:56:18', N'0') |
|
2340 |
GO |
|
2341 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1180, 10, N'满 N 元', N'10', N'promotion_condition_type', 0, N'primary', N'', N'营销的条件类型 - 满 N 元', N'1', N'2022-11-04 22:59:45', N'1', N'2022-11-04 22:59:45', N'0') |
|
2342 |
GO |
|
2343 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1181, 20, N'满 N 件', N'20', N'promotion_condition_type', 0, N'success', N'', N'营销的条件类型 - 满 N 件', N'1', N'2022-11-04 23:00:02', N'1', N'2022-11-04 23:00:02', N'0') |
|
2344 |
GO |
|
2345 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1182, 10, N'申请售后', N'10', N'trade_after_sale_status', 0, N'primary', N'', N'交易售后状态 - 申请售后', N'1', N'2022-11-19 20:53:33', N'1', N'2022-11-19 20:54:42', N'0') |
|
2346 |
GO |
|
2347 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1183, 20, N'商品待退货', N'20', N'trade_after_sale_status', 0, N'primary', N'', N'交易售后状态 - 商品待退货', N'1', N'2022-11-19 20:54:36', N'1', N'2022-11-19 20:58:58', N'0') |
|
2348 |
GO |
|
2349 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1184, 30, N'商家待收货', N'30', N'trade_after_sale_status', 0, N'primary', N'', N'交易售后状态 - 商家待收货', N'1', N'2022-11-19 20:56:56', N'1', N'2022-11-19 20:59:20', N'0') |
|
2350 |
GO |
|
2351 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1185, 40, N'等待退款', N'40', N'trade_after_sale_status', 0, N'primary', N'', N'交易售后状态 - 等待退款', N'1', N'2022-11-19 20:59:54', N'1', N'2022-11-19 21:00:01', N'0') |
|
2352 |
GO |
|
2353 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1186, 50, N'退款成功', N'50', N'trade_after_sale_status', 0, N'default', N'', N'交易售后状态 - 退款成功', N'1', N'2022-11-19 21:00:33', N'1', N'2022-11-19 21:00:33', N'0') |
|
2354 |
GO |
|
2355 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1187, 61, N'买家取消', N'61', N'trade_after_sale_status', 0, N'info', N'', N'交易售后状态 - 买家取消', N'1', N'2022-11-19 21:01:29', N'1', N'2022-11-19 21:01:29', N'0') |
|
2356 |
GO |
|
2357 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1188, 62, N'商家拒绝', N'62', N'trade_after_sale_status', 0, N'info', N'', N'交易售后状态 - 商家拒绝', N'1', N'2022-11-19 21:02:17', N'1', N'2022-11-19 21:02:17', N'0') |
|
2358 |
GO |
|
2359 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1189, 63, N'商家拒收货', N'63', N'trade_after_sale_status', 0, N'info', N'', N'交易售后状态 - 商家拒收货', N'1', N'2022-11-19 21:02:37', N'1', N'2022-11-19 21:03:07', N'0') |
|
2360 |
GO |
|
2361 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1190, 10, N'售中退款', N'10', N'trade_after_sale_type', 0, N'success', N'', N'交易售后的类型 - 售中退款', N'1', N'2022-11-19 21:05:05', N'1', N'2022-11-19 21:38:23', N'0') |
|
2362 |
GO |
|
2363 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1191, 20, N'售后退款', N'20', N'trade_after_sale_type', 0, N'primary', N'', N'交易售后的类型 - 售后退款', N'1', N'2022-11-19 21:05:32', N'1', N'2022-11-19 21:38:32', N'0') |
|
2364 |
GO |
|
2365 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1192, 10, N'仅退款', N'10', N'trade_after_sale_way', 0, N'primary', N'', N'交易售后的方式 - 仅退款', N'1', N'2022-11-19 21:39:19', N'1', N'2022-11-19 21:39:19', N'0') |
|
2366 |
GO |
|
2367 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1193, 20, N'退货退款', N'20', N'trade_after_sale_way', 0, N'success', N'', N'交易售后的方式 - 退货退款', N'1', N'2022-11-19 21:39:38', N'1', N'2022-11-19 21:39:49', N'0') |
|
2368 |
GO |
|
2369 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1194, 10, N'微信小程序', N'10', N'terminal', 0, N'default', N'', N'终端 - 微信小程序', N'1', N'2022-12-10 10:51:11', N'1', N'2022-12-10 10:51:57', N'0') |
|
2370 |
GO |
|
2371 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1195, 20, N'H5 网页', N'20', N'terminal', 0, N'default', N'', N'终端 - H5 网页', N'1', N'2022-12-10 10:51:30', N'1', N'2022-12-10 10:51:59', N'0') |
|
2372 |
GO |
|
2373 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1196, 11, N'微信公众号', N'11', N'terminal', 0, N'default', N'', N'终端 - 微信公众号', N'1', N'2022-12-10 10:54:16', N'1', N'2022-12-10 10:52:01', N'0') |
|
2374 |
GO |
|
2375 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1197, 31, N'苹果 App', N'31', N'terminal', 0, N'default', N'', N'终端 - 苹果 App', N'1', N'2022-12-10 10:54:42', N'1', N'2022-12-10 10:52:18', N'0') |
|
2376 |
GO |
|
2377 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1198, 32, N'安卓 App', N'32', N'terminal', 0, N'default', N'', N'终端 - 安卓 App', N'1', N'2022-12-10 10:55:02', N'1', N'2022-12-10 10:59:17', N'0') |
|
2378 |
GO |
|
2379 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1199, 0, N'普通订单', N'0', N'trade_order_type', 0, N'default', N'', N'交易订单的类型 - 普通订单', N'1', N'2022-12-10 16:34:14', N'1', N'2022-12-10 16:34:14', N'0') |
|
2380 |
GO |
|
2381 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1200, 1, N'秒杀订单', N'1', N'trade_order_type', 0, N'default', N'', N'交易订单的类型 - 秒杀订单', N'1', N'2022-12-10 16:34:26', N'1', N'2022-12-10 16:34:26', N'0') |
|
2382 |
GO |
|
2383 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1201, 2, N'拼团订单', N'2', N'trade_order_type', 0, N'default', N'', N'交易订单的类型 - 拼团订单', N'1', N'2022-12-10 16:34:36', N'1', N'2022-12-10 16:34:36', N'0') |
|
2384 |
GO |
|
2385 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1202, 3, N'砍价订单', N'3', N'trade_order_type', 0, N'default', N'', N'交易订单的类型 - 砍价订单', N'1', N'2022-12-10 16:34:48', N'1', N'2022-12-10 16:34:48', N'0') |
|
2386 |
GO |
|
2387 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1203, 0, N'待支付', N'0', N'trade_order_status', 0, N'default', N'', N'交易订单状态 - 待支付', N'1', N'2022-12-10 16:49:29', N'1', N'2022-12-10 16:49:29', N'0') |
|
2388 |
GO |
|
2389 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1204, 10, N'待发货', N'10', N'trade_order_status', 0, N'primary', N'', N'交易订单状态 - 待发货', N'1', N'2022-12-10 16:49:53', N'1', N'2022-12-10 16:51:17', N'0') |
|
2390 |
GO |
|
2391 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1205, 20, N'已发货', N'20', N'trade_order_status', 0, N'primary', N'', N'交易订单状态 - 已发货', N'1', N'2022-12-10 16:50:13', N'1', N'2022-12-10 16:51:31', N'0') |
|
2392 |
GO |
|
2393 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1206, 30, N'已完成', N'30', N'trade_order_status', 0, N'success', N'', N'交易订单状态 - 已完成', N'1', N'2022-12-10 16:50:30', N'1', N'2022-12-10 16:51:06', N'0') |
|
2394 |
GO |
|
2395 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1207, 40, N'已取消', N'40', N'trade_order_status', 0, N'danger', N'', N'交易订单状态 - 已取消', N'1', N'2022-12-10 16:50:50', N'1', N'2022-12-10 16:51:00', N'0') |
|
2396 |
GO |
|
2397 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1208, 0, N'未售后', N'0', N'trade_order_item_after_sale_status', 0, N'info', N'', N'交易订单项的售后状态 - 未售后', N'1', N'2022-12-10 20:58:42', N'1', N'2022-12-10 20:59:29', N'0') |
|
2398 |
GO |
|
2399 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1209, 1, N'售后中', N'1', N'trade_order_item_after_sale_status', 0, N'primary', N'', N'交易订单项的售后状态 - 售后中', N'1', N'2022-12-10 20:59:21', N'1', N'2022-12-10 20:59:21', N'0') |
|
2400 |
GO |
|
2401 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1210, 2, N'已退款', N'2', N'trade_order_item_after_sale_status', 0, N'success', N'', N'交易订单项的售后状态 - 已退款', N'1', N'2022-12-10 20:59:46', N'1', N'2022-12-10 20:59:46', N'0') |
|
2402 |
GO |
|
2403 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1211, 1, N'完全匹配', N'1', N'mp_auto_reply_request_match', 0, N'primary', N'', N'公众号自动回复的请求关键字匹配模式 - 完全匹配', N'1', N'2023-01-16 23:30:39', N'1', N'2023-01-16 23:31:00', N'0') |
|
2404 |
GO |
|
2405 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1212, 2, N'半匹配', N'2', N'mp_auto_reply_request_match', 0, N'success', N'', N'公众号自动回复的请求关键字匹配模式 - 半匹配', N'1', N'2023-01-16 23:30:55', N'1', N'2023-01-16 23:31:10', N'0') |
|
2406 |
GO |
|
2407 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1213, 1, N'文本', N'text', N'mp_message_type', 0, N'default', N'', N'公众号的消息类型 - 文本', N'1', N'2023-01-17 22:17:32', N'1', N'2023-01-17 22:17:39', N'0') |
|
2408 |
GO |
|
2409 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1214, 2, N'图片', N'image', N'mp_message_type', 0, N'default', N'', N'公众号的消息类型 - 图片', N'1', N'2023-01-17 22:17:32', N'1', N'2023-01-17 14:19:47', N'0') |
|
2410 |
GO |
|
2411 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1215, 3, N'语音', N'voice', N'mp_message_type', 0, N'default', N'', N'公众号的消息类型 - 语音', N'1', N'2023-01-17 22:17:32', N'1', N'2023-01-17 14:20:08', N'0') |
|
2412 |
GO |
|
2413 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1216, 4, N'视频', N'video', N'mp_message_type', 0, N'default', N'', N'公众号的消息类型 - 视频', N'1', N'2023-01-17 22:17:32', N'1', N'2023-01-17 14:21:08', N'0') |
|
2414 |
GO |
|
2415 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1217, 5, N'小视频', N'shortvideo', N'mp_message_type', 0, N'default', N'', N'公众号的消息类型 - 小视频', N'1', N'2023-01-17 22:17:32', N'1', N'2023-01-17 14:19:59', N'0') |
|
2416 |
GO |
|
2417 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1218, 6, N'图文', N'news', N'mp_message_type', 0, N'default', N'', N'公众号的消息类型 - 图文', N'1', N'2023-01-17 22:17:32', N'1', N'2023-01-17 14:22:54', N'0') |
|
2418 |
GO |
|
2419 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1219, 7, N'音乐', N'music', N'mp_message_type', 0, N'default', N'', N'公众号的消息类型 - 音乐', N'1', N'2023-01-17 22:17:32', N'1', N'2023-01-17 14:22:54', N'0') |
|
2420 |
GO |
|
2421 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1220, 8, N'地理位置', N'location', N'mp_message_type', 0, N'default', N'', N'公众号的消息类型 - 地理位置', N'1', N'2023-01-17 22:17:32', N'1', N'2023-01-17 14:23:51', N'0') |
|
2422 |
GO |
|
2423 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1221, 9, N'链接', N'link', N'mp_message_type', 0, N'default', N'', N'公众号的消息类型 - 链接', N'1', N'2023-01-17 22:17:32', N'1', N'2023-01-17 14:24:49', N'0') |
|
2424 |
GO |
|
2425 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1222, 10, N'事件', N'event', N'mp_message_type', 0, N'default', N'', N'公众号的消息类型 - 事件', N'1', N'2023-01-17 22:17:32', N'1', N'2023-01-17 14:24:49', N'0') |
|
2426 |
GO |
|
2427 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1223, 0, N'初始化', N'0', N'system_mail_send_status', 0, N'primary', N'', N'邮件发送状态 - 初始化\n', N'1', N'2023-01-26 09:53:49', N'1', N'2023-01-26 16:36:14', N'0') |
|
2428 |
GO |
|
2429 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1224, 10, N'发送成功', N'10', N'system_mail_send_status', 0, N'success', N'', N'邮件发送状态 - 发送成功', N'1', N'2023-01-26 09:54:28', N'1', N'2023-01-26 16:36:22', N'0') |
|
2430 |
GO |
|
2431 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1225, 20, N'发送失败', N'20', N'system_mail_send_status', 0, N'danger', N'', N'邮件发送状态 - 发送失败', N'1', N'2023-01-26 09:54:50', N'1', N'2023-01-26 16:36:26', N'0') |
|
2432 |
GO |
|
2433 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1226, 30, N'不发送', N'30', N'system_mail_send_status', 0, N'info', N'', N'邮件发送状态 - 不发送', N'1', N'2023-01-26 09:55:06', N'1', N'2023-01-26 16:36:36', N'0') |
|
2434 |
GO |
|
2435 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1227, 1, N'通知公告', N'1', N'system_notify_template_type', 0, N'primary', N'', N'站内信模版的类型 - 通知公告', N'1', N'2023-01-28 10:35:59', N'1', N'2023-01-28 10:35:59', N'0') |
|
2436 |
GO |
|
2437 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1228, 2, N'系统消息', N'2', N'system_notify_template_type', 0, N'success', N'', N'站内信模版的类型 - 系统消息', N'1', N'2023-01-28 10:36:20', N'1', N'2023-01-28 10:36:25', N'0') |
|
2438 |
GO |
|
2439 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1230, 13, N'支付宝条码支付', N'alipay_bar', N'pay_channel_code', 0, N'primary', N'', N'支付宝条码支付', N'1', N'2023-02-18 23:32:24', N'1', N'2023-07-19 20:09:23', N'0') |
|
2440 |
GO |
|
2441 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1231, 10, N'Vue2 Element UI 标准模版', N'10', N'infra_codegen_front_type', 0, N'', N'', N'', N'1', N'2023-04-13 00:03:55', N'1', N'2023-04-13 00:03:55', N'0') |
|
2442 |
GO |
|
2443 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1232, 20, N'Vue3 Element Plus 标准模版', N'20', N'infra_codegen_front_type', 0, N'', N'', N'', N'1', N'2023-04-13 00:04:08', N'1', N'2023-04-13 00:04:08', N'0') |
|
2444 |
GO |
|
2445 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1233, 21, N'Vue3 Element Plus Schema 模版', N'21', N'infra_codegen_front_type', 0, N'', N'', N'', N'1', N'2023-04-13 00:04:26', N'1', N'2023-04-13 00:04:26', N'0') |
|
2446 |
GO |
|
2447 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1234, 30, N'Vue3 vben 模版', N'30', N'infra_codegen_front_type', 0, N'', N'', N'', N'1', N'2023-04-13 00:04:26', N'1', N'2023-04-13 00:04:26', N'0') |
|
2448 |
GO |
|
2449 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1244, 0, N'按件', N'1', N'trade_delivery_express_charge_mode', 0, N'', N'', N'', N'1', N'2023-05-21 22:46:40', N'1', N'2023-05-21 22:46:40', N'0') |
|
2450 |
GO |
|
2451 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1245, 1, N'按重量', N'2', N'trade_delivery_express_charge_mode', 0, N'', N'', N'', N'1', N'2023-05-21 22:46:58', N'1', N'2023-05-21 22:46:58', N'0') |
|
2452 |
GO |
|
2453 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1246, 2, N'按体积', N'3', N'trade_delivery_express_charge_mode', 0, N'', N'', N'', N'1', N'2023-05-21 22:47:18', N'1', N'2023-05-21 22:47:18', N'0') |
|
2454 |
GO |
|
2455 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1335, 11, N'订单积分抵扣', N'11', N'member_point_biz_type', 0, N'', N'', N'', N'1', N'2023-06-10 12:15:27', N'1', N'2023-10-11 07:41:43', N'0') |
|
2456 |
GO |
|
2457 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1336, 1, N'签到', N'1', N'member_point_biz_type', 0, N'', N'', N'', N'1', N'2023-06-10 12:15:48', N'1', N'2023-08-20 11:59:53', N'0') |
|
2458 |
GO |
|
2459 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1341, 20, N'已退款', N'20', N'pay_order_status', 0, N'danger', N'', N'已退款', N'1', N'2023-07-19 18:05:37', N'1', N'2023-07-19 18:05:37', N'0') |
|
2460 |
GO |
|
2461 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1342, 21, N'请求成功,但是结果失败', N'21', N'pay_notify_status', 0, N'warning', N'', N'请求成功,但是结果失败', N'1', N'2023-07-19 18:10:47', N'1', N'2023-07-19 18:11:38', N'0') |
|
2462 |
GO |
|
2463 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1343, 22, N'请求失败', N'22', N'pay_notify_status', 0, N'warning', N'', NULL, N'1', N'2023-07-19 18:11:05', N'1', N'2023-07-19 18:11:27', N'0') |
|
2464 |
GO |
|
2465 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1344, 4, N'微信扫码支付', N'wx_native', N'pay_channel_code', 0, N'success', N'', N'微信扫码支付', N'1', N'2023-07-19 20:07:47', N'1', N'2023-07-19 20:09:03', N'0') |
|
2466 |
GO |
|
2467 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1345, 5, N'微信条码支付', N'wx_bar', N'pay_channel_code', 0, N'success', N'', N'微信条码支付\n', N'1', N'2023-07-19 20:08:06', N'1', N'2023-07-19 20:09:08', N'0') |
|
2468 |
GO |
|
2469 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1346, 1, N'支付单', N'1', N'pay_notify_type', 0, N'primary', N'', N'支付单', N'1', N'2023-07-20 12:23:17', N'1', N'2023-07-20 12:23:17', N'0') |
|
2470 |
GO |
|
2471 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1347, 2, N'退款单', N'2', N'pay_notify_type', 0, N'danger', N'', NULL, N'1', N'2023-07-20 12:23:26', N'1', N'2023-07-20 12:23:26', N'0') |
|
2472 |
GO |
|
2473 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1348, 20, N'模拟支付', N'mock', N'pay_channel_code', 0, N'default', N'', N'模拟支付', N'1', N'2023-07-29 11:10:51', N'1', N'2023-07-29 03:14:10', N'0') |
|
2474 |
GO |
|
2475 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1349, 12, N'订单积分抵扣(整单取消)', N'12', N'member_point_biz_type', 0, N'', N'', N'', N'1', N'2023-08-20 12:00:03', N'1', N'2023-10-11 07:42:01', N'0') |
|
2476 |
GO |
|
2477 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1350, 0, N'管理员调整', N'0', N'member_experience_biz_type', 0, N'', N'', NULL, N'', N'2023-08-22 12:41:01', N'', N'2023-08-22 12:41:01', N'0') |
|
2478 |
GO |
|
2479 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1351, 1, N'邀新奖励', N'1', N'member_experience_biz_type', 0, N'', N'', NULL, N'', N'2023-08-22 12:41:01', N'', N'2023-08-22 12:41:01', N'0') |
|
2480 |
GO |
|
2481 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1352, 11, N'下单奖励', N'11', N'member_experience_biz_type', 0, N'success', N'', NULL, N'', N'2023-08-22 12:41:01', N'1', N'2023-10-11 07:45:09', N'0') |
|
2482 |
GO |
|
2483 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1353, 12, N'下单奖励(整单取消)', N'12', N'member_experience_biz_type', 0, N'warning', N'', NULL, N'', N'2023-08-22 12:41:01', N'1', N'2023-10-11 07:45:01', N'0') |
|
2484 |
GO |
|
2485 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1354, 4, N'签到奖励', N'4', N'member_experience_biz_type', 0, N'', N'', NULL, N'', N'2023-08-22 12:41:01', N'', N'2023-08-22 12:41:01', N'0') |
|
2486 |
GO |
|
2487 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1355, 5, N'抽奖奖励', N'5', N'member_experience_biz_type', 0, N'', N'', NULL, N'', N'2023-08-22 12:41:01', N'', N'2023-08-22 12:41:01', N'0') |
|
2488 |
GO |
|
2489 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1356, 1, N'快递发货', N'1', N'trade_delivery_type', 0, N'', N'', N'', N'1', N'2023-08-23 00:04:55', N'1', N'2023-08-23 00:04:55', N'0') |
|
2490 |
GO |
|
2491 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1357, 2, N'用户自提', N'2', N'trade_delivery_type', 0, N'', N'', N'', N'1', N'2023-08-23 00:05:05', N'1', N'2023-08-23 00:05:05', N'0') |
|
2492 |
GO |
|
2493 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1358, 3, N'品类劵', N'3', N'promotion_product_scope', 0, N'default', N'', N'', N'1', N'2023-09-01 23:43:07', N'1', N'2023-09-28 00:27:47', N'0') |
|
2494 |
GO |
|
2495 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1359, 1, N'人人分销', N'1', N'brokerage_enabled_condition', 0, N'', N'', N'所有用户都可以分销', N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2496 |
GO |
|
2497 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1360, 2, N'指定分销', N'2', N'brokerage_enabled_condition', 0, N'', N'', N'仅可后台手动设置推广员', N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2498 |
GO |
|
2499 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1361, 1, N'首次绑定', N'1', N'brokerage_bind_mode', 0, N'', N'', N'只要用户没有推广人,随时都可以绑定推广关系', N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2500 |
GO |
|
2501 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1362, 2, N'注册绑定', N'2', N'brokerage_bind_mode', 0, N'', N'', N'仅新用户注册时才能绑定推广关系', N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2502 |
GO |
|
2503 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1363, 3, N'覆盖绑定', N'3', N'brokerage_bind_mode', 0, N'', N'', N'如果用户已经有推广人,推广人会被变更', N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2504 |
GO |
|
2505 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1364, 1, N'钱包', N'1', N'brokerage_withdraw_type', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2506 |
GO |
|
2507 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1365, 2, N'银行卡', N'2', N'brokerage_withdraw_type', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2508 |
GO |
|
2509 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1366, 3, N'微信', N'3', N'brokerage_withdraw_type', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2510 |
GO |
|
2511 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1367, 4, N'支付宝', N'4', N'brokerage_withdraw_type', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2512 |
GO |
|
2513 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1368, 1, N'订单返佣', N'1', N'brokerage_record_biz_type', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2514 |
GO |
|
2515 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1369, 2, N'申请提现', N'2', N'brokerage_record_biz_type', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2516 |
GO |
|
2517 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1370, 3, N'申请提现驳回', N'3', N'brokerage_record_biz_type', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2518 |
GO |
|
2519 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1371, 0, N'待结算', N'0', N'brokerage_record_status', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2520 |
GO |
|
2521 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1372, 1, N'已结算', N'1', N'brokerage_record_status', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2522 |
GO |
|
2523 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1373, 2, N'已取消', N'2', N'brokerage_record_status', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2524 |
GO |
|
2525 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1374, 0, N'审核中', N'0', N'brokerage_withdraw_status', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2526 |
GO |
|
2527 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1375, 10, N'审核通过', N'10', N'brokerage_withdraw_status', 0, N'success', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2528 |
GO |
|
2529 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1376, 11, N'提现成功', N'11', N'brokerage_withdraw_status', 0, N'success', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2530 |
GO |
|
2531 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1377, 20, N'审核不通过', N'20', N'brokerage_withdraw_status', 0, N'danger', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2532 |
GO |
|
2533 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1378, 21, N'提现失败', N'21', N'brokerage_withdraw_status', 0, N'danger', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2534 |
GO |
|
2535 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1379, 0, N'工商银行', N'0', N'brokerage_bank_name', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2536 |
GO |
|
2537 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1380, 1, N'建设银行', N'1', N'brokerage_bank_name', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2538 |
GO |
|
2539 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1381, 2, N'农业银行', N'2', N'brokerage_bank_name', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2540 |
GO |
|
2541 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1382, 3, N'中国银行', N'3', N'brokerage_bank_name', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2542 |
GO |
|
2543 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1383, 4, N'交通银行', N'4', N'brokerage_bank_name', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2544 |
GO |
|
2545 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1384, 5, N'招商银行', N'5', N'brokerage_bank_name', 0, N'', N'', NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0') |
|
2546 |
GO |
|
2547 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1385, 21, N'钱包', N'wallet', N'pay_channel_code', 0, N'primary', N'', N'', N'1', N'2023-10-01 21:46:19', N'1', N'2023-10-01 21:48:01', N'0') |
|
2548 |
GO |
|
2549 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1386, 1, N'砍价中', N'1', N'promotion_bargain_record_status', 0, N'default', N'', N'', N'1', N'2023-10-05 10:41:26', N'1', N'2023-10-05 10:41:26', N'0') |
|
2550 |
GO |
|
2551 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1387, 2, N'砍价成功', N'2', N'promotion_bargain_record_status', 0, N'success', N'', N'', N'1', N'2023-10-05 10:41:39', N'1', N'2023-10-05 10:41:39', N'0') |
|
2552 |
GO |
|
2553 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1388, 3, N'砍价失败', N'3', N'promotion_bargain_record_status', 0, N'warning', N'', N'', N'1', N'2023-10-05 10:41:57', N'1', N'2023-10-05 10:41:57', N'0') |
|
2554 |
GO |
|
2555 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1389, 1, N'拼团中', N'1', N'promotion_combination_record_status', 0, N'', N'', N'', N'1', N'2023-10-08 07:24:44', N'1', N'2023-10-08 07:24:44', N'0') |
|
2556 |
GO |
|
2557 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1390, 2, N'拼团成功', N'2', N'promotion_combination_record_status', 0, N'success', N'', N'', N'1', N'2023-10-08 07:24:56', N'1', N'2023-10-08 07:24:56', N'0') |
|
2558 |
GO |
|
2559 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1391, 3, N'拼团失败', N'3', N'promotion_combination_record_status', 0, N'warning', N'', N'', N'1', N'2023-10-08 07:25:11', N'1', N'2023-10-08 07:25:11', N'0') |
|
2560 |
GO |
|
2561 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1392, 2, N'管理员修改', N'2', N'member_point_biz_type', 0, N'default', N'', N'', N'1', N'2023-10-11 07:41:34', N'1', N'2023-10-11 07:41:34', N'0') |
|
2562 |
GO |
|
2563 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1393, 13, N'订单积分抵扣(单个退款)', N'13', N'member_point_biz_type', 0, N'', N'', N'', N'1', N'2023-10-11 07:42:29', N'1', N'2023-10-11 07:42:29', N'0') |
|
2564 |
GO |
|
2565 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1394, 21, N'订单积分奖励', N'21', N'member_point_biz_type', 0, N'default', N'', N'', N'1', N'2023-10-11 07:42:44', N'1', N'2023-10-11 07:42:44', N'0') |
|
2566 |
GO |
|
2567 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1395, 22, N'订单积分奖励(整单取消)', N'22', N'member_point_biz_type', 0, N'default', N'', N'', N'1', N'2023-10-11 07:42:55', N'1', N'2023-10-11 07:43:01', N'0') |
|
2568 |
GO |
|
2569 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1396, 23, N'订单积分奖励(单个退款)', N'23', N'member_point_biz_type', 0, N'default', N'', N'', N'1', N'2023-10-11 07:43:16', N'1', N'2023-10-11 07:43:16', N'0') |
|
2570 |
GO |
|
2571 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1397, 13, N'下单奖励(单个退款)', N'13', N'member_experience_biz_type', 0, N'warning', N'', N'', N'1', N'2023-10-11 07:45:24', N'1', N'2023-10-11 07:45:38', N'0') |
|
2572 |
GO |
|
2573 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1398, 5, N'网上转账', N'5', N'crm_receivable_return_type', 0, N'default', N'', N'', N'1', N'2023-10-18 21:55:24', N'1', N'2023-10-18 21:55:24', N'0') |
|
2574 |
GO |
|
2575 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1399, 6, N'支付宝', N'6', N'crm_receivable_return_type', 0, N'default', N'', N'', N'1', N'2023-10-18 21:55:38', N'1', N'2023-10-18 21:55:38', N'0') |
|
2576 |
GO |
|
2577 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1400, 7, N'微信支付', N'7', N'crm_receivable_return_type', 0, N'default', N'', N'', N'1', N'2023-10-18 21:55:53', N'1', N'2023-10-18 21:55:53', N'0') |
|
2578 |
GO |
|
2579 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1401, 8, N'其他', N'8', N'crm_receivable_return_type', 0, N'default', N'', N'', N'1', N'2023-10-18 21:56:06', N'1', N'2023-10-18 21:56:06', N'0') |
|
2580 |
GO |
|
2581 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1402, 1, N'IT', N'1', N'crm_customer_industry', 0, N'default', N'', N'', N'1', N'2023-10-28 23:02:15', N'1', N'2024-02-18 23:30:38', N'0') |
|
2582 |
GO |
|
2583 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1403, 2, N'金融业', N'2', N'crm_customer_industry', 0, N'default', N'', N'', N'1', N'2023-10-28 23:02:29', N'1', N'2024-02-18 23:30:43', N'0') |
|
2584 |
GO |
|
2585 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1404, 3, N'房地产', N'3', N'crm_customer_industry', 0, N'default', N'', N'', N'1', N'2023-10-28 23:02:41', N'1', N'2024-02-18 23:30:48', N'0') |
|
2586 |
GO |
|
2587 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1405, 4, N'商业服务', N'4', N'crm_customer_industry', 0, N'default', N'', N'', N'1', N'2023-10-28 23:02:54', N'1', N'2024-02-18 23:30:54', N'0') |
|
2588 |
GO |
|
2589 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1406, 5, N'运输/物流', N'5', N'crm_customer_industry', 0, N'default', N'', N'', N'1', N'2023-10-28 23:03:03', N'1', N'2024-02-18 23:31:00', N'0') |
|
2590 |
GO |
|
2591 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1407, 6, N'生产', N'6', N'crm_customer_industry', 0, N'default', N'', N'', N'1', N'2023-10-28 23:03:13', N'1', N'2024-02-18 23:31:08', N'0') |
|
2592 |
GO |
|
2593 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1408, 7, N'政府', N'7', N'crm_customer_industry', 0, N'default', N'', N'', N'1', N'2023-10-28 23:03:27', N'1', N'2024-02-18 23:31:13', N'0') |
|
2594 |
GO |
|
2595 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1409, 8, N'文化传媒', N'8', N'crm_customer_industry', 0, N'default', N'', N'', N'1', N'2023-10-28 23:03:37', N'1', N'2024-02-18 23:31:20', N'0') |
|
2596 |
GO |
|
2597 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1422, 1, N'A (重点客户)', N'1', N'crm_customer_level', 0, N'primary', N'', N'', N'1', N'2023-10-28 23:07:13', N'1', N'2023-10-28 23:07:13', N'0') |
|
2598 |
GO |
|
2599 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1423, 2, N'B (普通客户)', N'2', N'crm_customer_level', 0, N'info', N'', N'', N'1', N'2023-10-28 23:07:35', N'1', N'2023-10-28 23:07:35', N'0') |
|
2600 |
GO |
|
2601 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1424, 3, N'C (非优先客户)', N'3', N'crm_customer_level', 0, N'default', N'', N'', N'1', N'2023-10-28 23:07:53', N'1', N'2023-10-28 23:07:53', N'0') |
|
2602 |
GO |
|
2603 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1425, 1, N'促销', N'1', N'crm_customer_source', 0, N'default', N'', N'', N'1', N'2023-10-28 23:08:29', N'1', N'2023-10-28 23:08:29', N'0') |
|
2604 |
GO |
|
2605 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1426, 2, N'搜索引擎', N'2', N'crm_customer_source', 0, N'default', N'', N'', N'1', N'2023-10-28 23:08:39', N'1', N'2023-10-28 23:08:39', N'0') |
|
2606 |
GO |
|
2607 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1427, 3, N'广告', N'3', N'crm_customer_source', 0, N'default', N'', N'', N'1', N'2023-10-28 23:08:47', N'1', N'2023-10-28 23:08:47', N'0') |
|
2608 |
GO |
|
2609 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1428, 4, N'转介绍', N'4', N'crm_customer_source', 0, N'default', N'', N'', N'1', N'2023-10-28 23:08:58', N'1', N'2023-10-28 23:08:58', N'0') |
|
2610 |
GO |
|
2611 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1429, 5, N'线上注册', N'5', N'crm_customer_source', 0, N'default', N'', N'', N'1', N'2023-10-28 23:09:12', N'1', N'2023-10-28 23:09:12', N'0') |
|
2612 |
GO |
|
2613 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1430, 6, N'线上咨询', N'6', N'crm_customer_source', 0, N'default', N'', N'', N'1', N'2023-10-28 23:09:22', N'1', N'2023-10-28 23:09:22', N'0') |
|
2614 |
GO |
|
2615 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1431, 7, N'预约上门', N'7', N'crm_customer_source', 0, N'default', N'', N'', N'1', N'2023-10-28 23:09:39', N'1', N'2023-10-28 23:09:39', N'0') |
|
2616 |
GO |
|
2617 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1432, 8, N'陌拜', N'8', N'crm_customer_source', 0, N'default', N'', N'', N'1', N'2023-10-28 23:10:04', N'1', N'2023-10-28 23:10:04', N'0') |
|
2618 |
GO |
|
2619 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1433, 9, N'电话咨询', N'9', N'crm_customer_source', 0, N'default', N'', N'', N'1', N'2023-10-28 23:10:18', N'1', N'2023-10-28 23:10:18', N'0') |
|
2620 |
GO |
|
2621 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1434, 10, N'邮件咨询', N'10', N'crm_customer_source', 0, N'default', N'', N'', N'1', N'2023-10-28 23:10:33', N'1', N'2023-10-28 23:10:33', N'0') |
|
2622 |
GO |
|
2623 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1435, 10, N'Gitee', N'10', N'system_social_type', 0, N'', N'', N'', N'1', N'2023-11-04 13:04:42', N'1', N'2023-11-04 13:04:42', N'0') |
|
2624 |
GO |
|
2625 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1436, 20, N'钉钉', N'20', N'system_social_type', 0, N'', N'', N'', N'1', N'2023-11-04 13:04:54', N'1', N'2023-11-04 13:04:54', N'0') |
|
2626 |
GO |
|
2627 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1437, 30, N'企业微信', N'30', N'system_social_type', 0, N'', N'', N'', N'1', N'2023-11-04 13:05:09', N'1', N'2023-11-04 13:05:09', N'0') |
|
2628 |
GO |
|
2629 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1438, 31, N'微信公众平台', N'31', N'system_social_type', 0, N'', N'', N'', N'1', N'2023-11-04 13:05:18', N'1', N'2023-11-04 13:05:18', N'0') |
|
2630 |
GO |
|
2631 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1439, 32, N'微信开放平台', N'32', N'system_social_type', 0, N'', N'', N'', N'1', N'2023-11-04 13:05:30', N'1', N'2023-11-04 13:05:30', N'0') |
|
2632 |
GO |
|
2633 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1440, 34, N'微信小程序', N'34', N'system_social_type', 0, N'', N'', N'', N'1', N'2023-11-04 13:05:38', N'1', N'2023-11-04 13:07:16', N'0') |
|
2634 |
GO |
|
2635 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1441, 1, N'上架', N'1', N'crm_product_status', 0, N'success', N'', N'', N'1', N'2023-10-30 21:49:34', N'1', N'2023-10-30 21:49:34', N'0') |
|
2636 |
GO |
|
2637 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1442, 0, N'下架', N'0', N'crm_product_status', 0, N'success', N'', N'', N'1', N'2023-10-30 21:49:13', N'1', N'2023-10-30 21:49:13', N'0') |
|
2638 |
GO |
|
2639 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1443, 15, N'子表', N'15', N'infra_codegen_template_type', 0, N'default', N'', N'', N'1', N'2023-11-13 23:06:16', N'1', N'2023-11-13 23:06:16', N'0') |
|
2640 |
GO |
|
2641 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1444, 10, N'主表(标准模式)', N'10', N'infra_codegen_template_type', 0, N'default', N'', N'', N'1', N'2023-11-14 12:32:49', N'1', N'2023-11-14 12:32:49', N'0') |
|
2642 |
GO |
|
2643 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1445, 11, N'主表(ERP 模式)', N'11', N'infra_codegen_template_type', 0, N'default', N'', N'', N'1', N'2023-11-14 12:33:05', N'1', N'2023-11-14 12:33:05', N'0') |
|
2644 |
GO |
|
2645 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1446, 12, N'主表(内嵌模式)', N'12', N'infra_codegen_template_type', 0, N'', N'', N'', N'1', N'2023-11-14 12:33:31', N'1', N'2023-11-14 12:33:31', N'0') |
|
2646 |
GO |
|
2647 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1447, 1, N'负责人', N'1', N'crm_permission_level', 0, N'default', N'', N'', N'1', N'2023-11-30 09:53:12', N'1', N'2023-11-30 09:53:12', N'0') |
|
2648 |
GO |
|
2649 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1448, 2, N'只读', N'2', N'crm_permission_level', 0, N'', N'', N'', N'1', N'2023-11-30 09:53:29', N'1', N'2023-11-30 09:53:29', N'0') |
|
2650 |
GO |
|
2651 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1449, 3, N'读写', N'3', N'crm_permission_level', 0, N'', N'', N'', N'1', N'2023-11-30 09:53:36', N'1', N'2023-11-30 09:53:36', N'0') |
|
2652 |
GO |
|
2653 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1450, 0, N'未提交', N'0', N'crm_audit_status', 0, N'', N'', N'', N'1', N'2023-11-30 18:56:59', N'1', N'2023-11-30 18:56:59', N'0') |
|
2654 |
GO |
|
2655 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1451, 10, N'审批中', N'10', N'crm_audit_status', 0, N'', N'', N'', N'1', N'2023-11-30 18:57:10', N'1', N'2023-11-30 18:57:10', N'0') |
|
2656 |
GO |
|
2657 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1452, 20, N'审核通过', N'20', N'crm_audit_status', 0, N'', N'', N'', N'1', N'2023-11-30 18:57:24', N'1', N'2023-11-30 18:57:24', N'0') |
|
2658 |
GO |
|
2659 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1453, 30, N'审核不通过', N'30', N'crm_audit_status', 0, N'', N'', N'', N'1', N'2023-11-30 18:57:32', N'1', N'2023-11-30 18:57:32', N'0') |
|
2660 |
GO |
|
2661 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1454, 40, N'已取消', N'40', N'crm_audit_status', 0, N'', N'', N'', N'1', N'2023-11-30 18:57:42', N'1', N'2023-11-30 18:57:42', N'0') |
|
2662 |
GO |
|
2663 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1456, 1, N'支票', N'1', N'crm_receivable_return_type', 0, N'default', N'', N'', N'1', N'2023-10-18 21:54:29', N'1', N'2023-10-18 21:54:29', N'0') |
|
2664 |
GO |
|
2665 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1457, 2, N'现金', N'2', N'crm_receivable_return_type', 0, N'default', N'', N'', N'1', N'2023-10-18 21:54:41', N'1', N'2023-10-18 21:54:41', N'0') |
|
2666 |
GO |
|
2667 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1458, 3, N'邮政汇款', N'3', N'crm_receivable_return_type', 0, N'default', N'', N'', N'1', N'2023-10-18 21:54:53', N'1', N'2023-10-18 21:54:53', N'0') |
|
2668 |
GO |
|
2669 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1459, 4, N'电汇', N'4', N'crm_receivable_return_type', 0, N'default', N'', N'', N'1', N'2023-10-18 21:55:07', N'1', N'2023-10-18 21:55:07', N'0') |
|
2670 |
GO |
|
2671 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1460, 5, N'网上转账', N'5', N'crm_receivable_return_type', 0, N'default', N'', N'', N'1', N'2023-10-18 21:55:24', N'1', N'2023-10-18 21:55:24', N'0') |
|
2672 |
GO |
|
2673 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1461, 1, N'个', N'1', N'crm_product_unit', 0, N'', N'', N'', N'1', N'2023-12-05 23:02:26', N'1', N'2023-12-05 23:02:26', N'0') |
|
2674 |
GO |
|
2675 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1462, 2, N'块', N'2', N'crm_product_unit', 0, N'', N'', N'', N'1', N'2023-12-05 23:02:34', N'1', N'2023-12-05 23:02:34', N'0') |
|
2676 |
GO |
|
2677 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1463, 3, N'只', N'3', N'crm_product_unit', 0, N'', N'', N'', N'1', N'2023-12-05 23:02:57', N'1', N'2023-12-05 23:02:57', N'0') |
|
2678 |
GO |
|
2679 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1464, 4, N'把', N'4', N'crm_product_unit', 0, N'', N'', N'', N'1', N'2023-12-05 23:03:05', N'1', N'2023-12-05 23:03:05', N'0') |
|
2680 |
GO |
|
2681 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1465, 5, N'枚', N'5', N'crm_product_unit', 0, N'', N'', N'', N'1', N'2023-12-05 23:03:14', N'1', N'2023-12-05 23:03:14', N'0') |
|
2682 |
GO |
|
2683 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1466, 6, N'瓶', N'6', N'crm_product_unit', 0, N'', N'', N'', N'1', N'2023-12-05 23:03:20', N'1', N'2023-12-05 23:03:20', N'0') |
|
2684 |
GO |
|
2685 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1467, 7, N'盒', N'7', N'crm_product_unit', 0, N'', N'', N'', N'1', N'2023-12-05 23:03:30', N'1', N'2023-12-05 23:03:30', N'0') |
|
2686 |
GO |
|
2687 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1468, 8, N'台', N'8', N'crm_product_unit', 0, N'', N'', N'', N'1', N'2023-12-05 23:03:41', N'1', N'2023-12-05 23:03:41', N'0') |
|
2688 |
GO |
|
2689 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1469, 9, N'吨', N'9', N'crm_product_unit', 0, N'', N'', N'', N'1', N'2023-12-05 23:03:48', N'1', N'2023-12-05 23:03:48', N'0') |
|
2690 |
GO |
|
2691 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1470, 10, N'千克', N'10', N'crm_product_unit', 0, N'', N'', N'', N'1', N'2023-12-05 23:04:03', N'1', N'2023-12-05 23:04:03', N'0') |
|
2692 |
GO |
|
2693 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1471, 11, N'米', N'11', N'crm_product_unit', 0, N'', N'', N'', N'1', N'2023-12-05 23:04:12', N'1', N'2023-12-05 23:04:12', N'0') |
|
2694 |
GO |
|
2695 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1472, 12, N'箱', N'12', N'crm_product_unit', 0, N'', N'', N'', N'1', N'2023-12-05 23:04:25', N'1', N'2023-12-05 23:04:25', N'0') |
|
2696 |
GO |
|
2697 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1473, 13, N'套', N'13', N'crm_product_unit', 0, N'', N'', N'', N'1', N'2023-12-05 23:04:34', N'1', N'2023-12-05 23:04:34', N'0') |
|
2698 |
GO |
|
2699 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1474, 1, N'打电话', N'1', N'crm_follow_up_type', 0, N'', N'', N'', N'1', N'2024-01-15 20:48:20', N'1', N'2024-01-15 20:48:20', N'0') |
|
2700 |
GO |
|
2701 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1475, 2, N'发短信', N'2', N'crm_follow_up_type', 0, N'', N'', N'', N'1', N'2024-01-15 20:48:31', N'1', N'2024-01-15 20:48:31', N'0') |
|
2702 |
GO |
|
2703 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1476, 3, N'上门拜访', N'3', N'crm_follow_up_type', 0, N'', N'', N'', N'1', N'2024-01-15 20:49:07', N'1', N'2024-01-15 20:49:07', N'0') |
|
2704 |
GO |
|
2705 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1477, 4, N'微信沟通', N'4', N'crm_follow_up_type', 0, N'', N'', N'', N'1', N'2024-01-15 20:49:15', N'1', N'2024-01-15 20:49:15', N'0') |
|
2706 |
GO |
|
2707 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1478, 4, N'钱包余额', N'4', N'pay_transfer_type', 0, N'info', N'', N'', N'1', N'2023-10-28 16:28:37', N'1', N'2023-10-28 16:28:37', N'0') |
|
2708 |
GO |
|
2709 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1479, 3, N'银行卡', N'3', N'pay_transfer_type', 0, N'default', N'', N'', N'1', N'2023-10-28 16:28:21', N'1', N'2023-10-28 16:28:21', N'0') |
|
2710 |
GO |
|
2711 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1480, 2, N'微信余额', N'2', N'pay_transfer_type', 0, N'info', N'', N'', N'1', N'2023-10-28 16:28:07', N'1', N'2023-10-28 16:28:07', N'0') |
|
2712 |
GO |
|
2713 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1481, 1, N'支付宝余额', N'1', N'pay_transfer_type', 0, N'default', N'', N'', N'1', N'2023-10-28 16:27:44', N'1', N'2023-10-28 16:27:44', N'0') |
|
2714 |
GO |
|
2715 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1482, 4, N'转账失败', N'30', N'pay_transfer_status', 0, N'warning', N'', N'', N'1', N'2023-10-28 16:24:16', N'1', N'2023-10-28 16:24:16', N'0') |
|
2716 |
GO |
|
2717 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1483, 3, N'转账成功', N'20', N'pay_transfer_status', 0, N'success', N'', N'', N'1', N'2023-10-28 16:23:50', N'1', N'2023-10-28 16:23:50', N'0') |
|
2718 |
GO |
|
2719 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1484, 2, N'转账进行中', N'10', N'pay_transfer_status', 0, N'info', N'', N'', N'1', N'2023-10-28 16:23:12', N'1', N'2023-10-28 16:23:12', N'0') |
|
2720 |
GO |
|
2721 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1485, 1, N'等待转账', N'0', N'pay_transfer_status', 0, N'default', N'', N'', N'1', N'2023-10-28 16:21:43', N'1', N'2023-10-28 16:23:22', N'0') |
|
2722 |
GO |
|
2723 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1486, 10, N'其它入库', N'10', N'erp_stock_record_biz_type', 0, N'', N'', N'', N'1', N'2024-02-05 18:07:25', N'1', N'2024-02-05 18:07:43', N'0') |
|
2724 |
GO |
|
2725 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1487, 11, N'其它入库(作废)', N'11', N'erp_stock_record_biz_type', 0, N'danger', N'', N'', N'1', N'2024-02-05 18:08:07', N'1', N'2024-02-05 19:20:16', N'0') |
|
2726 |
GO |
|
2727 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1488, 20, N'其它出库', N'20', N'erp_stock_record_biz_type', 0, N'', N'', N'', N'1', N'2024-02-05 18:08:51', N'1', N'2024-02-05 18:08:51', N'0') |
|
2728 |
GO |
|
2729 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1489, 21, N'其它出库(作废)', N'21', N'erp_stock_record_biz_type', 0, N'danger', N'', N'', N'1', N'2024-02-05 18:09:00', N'1', N'2024-02-05 19:20:10', N'0') |
|
2730 |
GO |
|
2731 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1490, 10, N'未审核', N'10', N'erp_audit_status', 0, N'default', N'', N'', N'1', N'2024-02-06 00:00:21', N'1', N'2024-02-06 00:00:21', N'0') |
|
2732 |
GO |
|
2733 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1491, 20, N'已审核', N'20', N'erp_audit_status', 0, N'success', N'', N'', N'1', N'2024-02-06 00:00:35', N'1', N'2024-02-06 00:00:35', N'0') |
|
2734 |
GO |
|
2735 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1492, 30, N'调拨入库', N'30', N'erp_stock_record_biz_type', 0, N'', N'', N'', N'1', N'2024-02-07 20:34:19', N'1', N'2024-02-07 12:36:31', N'0') |
|
2736 |
GO |
|
2737 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1493, 31, N'调拨入库(作废)', N'31', N'erp_stock_record_biz_type', 0, N'danger', N'', N'', N'1', N'2024-02-07 20:34:29', N'1', N'2024-02-07 20:37:11', N'0') |
|
2738 |
GO |
|
2739 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1494, 32, N'调拨出库', N'32', N'erp_stock_record_biz_type', 0, N'', N'', N'', N'1', N'2024-02-07 20:34:38', N'1', N'2024-02-07 12:36:33', N'0') |
|
2740 |
GO |
|
2741 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1495, 33, N'调拨出库(作废)', N'33', N'erp_stock_record_biz_type', 0, N'danger', N'', N'', N'1', N'2024-02-07 20:34:49', N'1', N'2024-02-07 20:37:06', N'0') |
|
2742 |
GO |
|
2743 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1496, 40, N'盘盈入库', N'40', N'erp_stock_record_biz_type', 0, N'', N'', N'', N'1', N'2024-02-08 08:53:00', N'1', N'2024-02-08 08:53:09', N'0') |
|
2744 |
GO |
|
2745 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1497, 41, N'盘盈入库(作废)', N'41', N'erp_stock_record_biz_type', 0, N'danger', N'', N'', N'1', N'2024-02-08 08:53:39', N'1', N'2024-02-16 19:40:54', N'0') |
|
2746 |
GO |
|
2747 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1498, 42, N'盘亏出库', N'42', N'erp_stock_record_biz_type', 0, N'', N'', N'', N'1', N'2024-02-08 08:54:16', N'1', N'2024-02-08 08:54:16', N'0') |
|
2748 |
GO |
|
2749 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1499, 43, N'盘亏出库(作废)', N'43', N'erp_stock_record_biz_type', 0, N'danger', N'', N'', N'1', N'2024-02-08 08:54:31', N'1', N'2024-02-16 19:40:46', N'0') |
|
2750 |
GO |
|
2751 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1500, 50, N'销售出库', N'50', N'erp_stock_record_biz_type', 0, N'', N'', N'', N'1', N'2024-02-11 21:47:25', N'1', N'2024-02-11 21:50:40', N'0') |
|
2752 |
GO |
|
2753 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1501, 51, N'销售出库(作废)', N'51', N'erp_stock_record_biz_type', 0, N'danger', N'', N'', N'1', N'2024-02-11 21:47:37', N'1', N'2024-02-11 21:51:12', N'0') |
|
2754 |
GO |
|
2755 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1502, 60, N'销售退货入库', N'60', N'erp_stock_record_biz_type', 0, N'', N'', N'', N'1', N'2024-02-12 06:51:05', N'1', N'2024-02-12 06:51:05', N'0') |
|
2756 |
GO |
|
2757 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1503, 61, N'销售退货入库(作废)', N'61', N'erp_stock_record_biz_type', 0, N'danger', N'', N'', N'1', N'2024-02-12 06:51:18', N'1', N'2024-02-12 06:51:18', N'0') |
|
2758 |
GO |
|
2759 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1504, 70, N'采购入库', N'70', N'erp_stock_record_biz_type', 0, N'', N'', N'', N'1', N'2024-02-16 13:10:02', N'1', N'2024-02-16 13:10:02', N'0') |
|
2760 |
GO |
|
2761 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1505, 71, N'采购入库(作废)', N'71', N'erp_stock_record_biz_type', 0, N'danger', N'', N'', N'1', N'2024-02-16 13:10:10', N'1', N'2024-02-16 19:40:40', N'0') |
|
2762 |
GO |
|
2763 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1506, 80, N'采购退货出库', N'80', N'erp_stock_record_biz_type', 0, N'', N'', N'', N'1', N'2024-02-16 13:10:17', N'1', N'2024-02-16 13:10:17', N'0') |
|
2764 |
GO |
|
2765 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1507, 81, N'采购退货出库(作废)', N'81', N'erp_stock_record_biz_type', 0, N'danger', N'', N'', N'1', N'2024-02-16 13:10:26', N'1', N'2024-02-16 19:40:33', N'0') |
|
2766 |
GO |
|
2767 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1509, 3, N'审批不通过', N'3', N'bpm_process_instance_status', 0, N'danger', N'', N'', N'1', N'2024-03-16 16:12:06', N'1', N'2024-03-16 16:12:06', N'0') |
|
2768 |
GO |
|
2769 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1510, 4, N'已取消', N'4', N'bpm_process_instance_status', 0, N'warning', N'', N'', N'1', N'2024-03-16 16:12:22', N'1', N'2024-03-16 16:12:22', N'0') |
|
2770 |
GO |
|
2771 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1511, 5, N'已退回', N'5', N'bpm_task_status', 0, N'warning', N'', N'', N'1', N'2024-03-16 19:10:46', N'1', N'2024-03-08 22:41:40', N'0') |
|
2772 |
GO |
|
2773 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1512, 6, N'委派中', N'6', N'bpm_task_status', 0, N'primary', N'', N'', N'1', N'2024-03-17 10:06:22', N'1', N'2024-03-08 22:41:40', N'0') |
|
2774 |
GO |
|
2775 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1513, 7, N'审批通过中', N'7', N'bpm_task_status', 0, N'success', N'', N'', N'1', N'2024-03-17 10:06:47', N'1', N'2024-03-08 22:41:41', N'0') |
|
2776 |
GO |
|
2777 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1514, 0, N'待审批', N'0', N'bpm_task_status', 0, N'info', N'', N'', N'1', N'2024-03-17 10:07:11', N'1', N'2024-03-08 22:41:42', N'0') |
|
2778 |
GO |
|
2779 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1515, 35, N'发起人自选', N'35', N'bpm_task_candidate_strategy', 0, N'', N'', N'', N'1', N'2024-03-22 19:45:16', N'1', N'2024-03-22 19:45:16', N'0') |
|
2780 |
GO |
|
2781 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1516, 1, N'执行监听器', N'execution', N'bpm_process_listener_type', 0, N'primary', N'', N'', N'1', N'2024-03-23 12:54:03', N'1', N'2024-03-23 19:14:19', N'0') |
|
2782 |
GO |
|
2783 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1517, 1, N'任务监听器', N'task', N'bpm_process_listener_type', 0, N'success', N'', N'', N'1', N'2024-03-23 12:54:13', N'1', N'2024-03-23 19:14:24', N'0') |
|
2784 |
GO |
|
2785 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1526, 1, N'Java 类', N'class', N'bpm_process_listener_value_type', 0, N'primary', N'', N'', N'1', N'2024-03-23 15:08:45', N'1', N'2024-03-23 19:14:32', N'0') |
|
2786 |
GO |
|
2787 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1527, 2, N'表达式', N'expression', N'bpm_process_listener_value_type', 0, N'success', N'', N'', N'1', N'2024-03-23 15:09:06', N'1', N'2024-03-23 19:14:38', N'0') |
|
2788 |
GO |
|
2789 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1528, 3, N'代理表达式', N'delegateExpression', N'bpm_process_listener_value_type', 0, N'info', N'', N'', N'1', N'2024-03-23 15:11:23', N'1', N'2024-03-23 19:14:41', N'0') |
|
2790 |
GO |
|
2791 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1529, 1, N'天', N'1', N'date_interval', 0, N'', N'', N'', N'1', N'2024-03-29 22:50:26', N'1', N'2024-03-29 22:50:26', N'0') |
|
2792 |
GO |
|
2793 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1530, 2, N'周', N'2', N'date_interval', 0, N'', N'', N'', N'1', N'2024-03-29 22:50:36', N'1', N'2024-03-29 22:50:36', N'0') |
|
2794 |
GO |
|
2795 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1531, 3, N'月', N'3', N'date_interval', 0, N'', N'', N'', N'1', N'2024-03-29 22:50:46', N'1', N'2024-03-29 22:50:54', N'0') |
|
2796 |
GO |
|
2797 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1532, 4, N'季度', N'4', N'date_interval', 0, N'', N'', N'', N'1', N'2024-03-29 22:51:01', N'1', N'2024-03-29 22:51:01', N'0') |
|
2798 |
GO |
|
2799 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1533, 5, N'年', N'5', N'date_interval', 0, N'', N'', N'', N'1', N'2024-03-29 22:51:07', N'1', N'2024-03-29 22:51:07', N'0') |
|
2800 |
GO |
|
2801 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1534, 1, N'赢单', N'1', N'crm_business_end_status_type', 0, N'success', N'', N'', N'1', N'2024-04-13 23:26:57', N'1', N'2024-04-13 23:26:57', N'0') |
|
2802 |
GO |
|
2803 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1535, 2, N'输单', N'2', N'crm_business_end_status_type', 0, N'primary', N'', N'', N'1', N'2024-04-13 23:27:31', N'1', N'2024-04-13 23:27:31', N'0') |
|
2804 |
GO |
|
2805 |
INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (1536, 3, N'无效', N'3', N'crm_business_end_status_type', 0, N'info', N'', N'', N'1', N'2024-04-13 23:27:59', N'1', N'2024-04-13 23:27:59', N'0') |
|
2806 |
GO |
|
2807 |
SET IDENTITY_INSERT system_dict_data OFF |
|
2808 |
GO |
|
2809 |
COMMIT |
|
2810 |
GO |
|
2811 |
-- @formatter:on |
|
2812 |
|
|
2813 |
-- ---------------------------- |
|
2814 |
-- Table structure for system_dict_type |
|
2815 |
-- ---------------------------- |
|
2816 |
DROP TABLE IF EXISTS system_dict_type; |
|
2817 |
CREATE TABLE system_dict_type |
|
2818 |
( |
|
2819 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
2820 |
name nvarchar(100) DEFAULT '' NOT NULL, |
|
2821 |
type nvarchar(100) DEFAULT '' NOT NULL, |
|
2822 |
status tinyint DEFAULT 0 NOT NULL, |
|
2823 |
remark nvarchar(500) DEFAULT NULL NULL, |
|
2824 |
creator nvarchar(64) DEFAULT '' NULL, |
|
2825 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
2826 |
updater nvarchar(64) DEFAULT '' NULL, |
|
2827 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
2828 |
deleted bit DEFAULT 0 NOT NULL, |
|
2829 |
deleted_time datetime2 DEFAULT NULL NULL |
|
2830 |
) |
|
2831 |
GO |
|
2832 |
|
|
2833 |
EXEC sp_addextendedproperty |
|
2834 |
'MS_Description', N'字典主键', |
|
2835 |
'SCHEMA', N'dbo', |
|
2836 |
'TABLE', N'system_dict_type', |
|
2837 |
'COLUMN', N'id' |
|
2838 |
GO |
|
2839 |
|
|
2840 |
EXEC sp_addextendedproperty |
|
2841 |
'MS_Description', N'字典名称', |
|
2842 |
'SCHEMA', N'dbo', |
|
2843 |
'TABLE', N'system_dict_type', |
|
2844 |
'COLUMN', N'name' |
|
2845 |
GO |
|
2846 |
|
|
2847 |
EXEC sp_addextendedproperty |
|
2848 |
'MS_Description', N'字典类型', |
|
2849 |
'SCHEMA', N'dbo', |
|
2850 |
'TABLE', N'system_dict_type', |
|
2851 |
'COLUMN', N'type' |
|
2852 |
GO |
|
2853 |
|
|
2854 |
EXEC sp_addextendedproperty |
|
2855 |
'MS_Description', N'状态(0正常 1停用)', |
|
2856 |
'SCHEMA', N'dbo', |
|
2857 |
'TABLE', N'system_dict_type', |
|
2858 |
'COLUMN', N'status' |
|
2859 |
GO |
|
2860 |
|
|
2861 |
EXEC sp_addextendedproperty |
|
2862 |
'MS_Description', N'备注', |
|
2863 |
'SCHEMA', N'dbo', |
|
2864 |
'TABLE', N'system_dict_type', |
|
2865 |
'COLUMN', N'remark' |
|
2866 |
GO |
|
2867 |
|
|
2868 |
EXEC sp_addextendedproperty |
|
2869 |
'MS_Description', N'创建者', |
|
2870 |
'SCHEMA', N'dbo', |
|
2871 |
'TABLE', N'system_dict_type', |
|
2872 |
'COLUMN', N'creator' |
|
2873 |
GO |
|
2874 |
|
|
2875 |
EXEC sp_addextendedproperty |
|
2876 |
'MS_Description', N'创建时间', |
|
2877 |
'SCHEMA', N'dbo', |
|
2878 |
'TABLE', N'system_dict_type', |
|
2879 |
'COLUMN', N'create_time' |
|
2880 |
GO |
|
2881 |
|
|
2882 |
EXEC sp_addextendedproperty |
|
2883 |
'MS_Description', N'更新者', |
|
2884 |
'SCHEMA', N'dbo', |
|
2885 |
'TABLE', N'system_dict_type', |
|
2886 |
'COLUMN', N'updater' |
|
2887 |
GO |
|
2888 |
|
|
2889 |
EXEC sp_addextendedproperty |
|
2890 |
'MS_Description', N'更新时间', |
|
2891 |
'SCHEMA', N'dbo', |
|
2892 |
'TABLE', N'system_dict_type', |
|
2893 |
'COLUMN', N'update_time' |
|
2894 |
GO |
|
2895 |
|
|
2896 |
EXEC sp_addextendedproperty |
|
2897 |
'MS_Description', N'是否删除', |
|
2898 |
'SCHEMA', N'dbo', |
|
2899 |
'TABLE', N'system_dict_type', |
|
2900 |
'COLUMN', N'deleted' |
|
2901 |
GO |
|
2902 |
|
|
2903 |
EXEC sp_addextendedproperty |
|
2904 |
'MS_Description', N'删除时间', |
|
2905 |
'SCHEMA', N'dbo', |
|
2906 |
'TABLE', N'system_dict_type', |
|
2907 |
'COLUMN', N'deleted_time' |
|
2908 |
GO |
|
2909 |
|
|
2910 |
EXEC sp_addextendedproperty |
|
2911 |
'MS_Description', N'字典类型表', |
|
2912 |
'SCHEMA', N'dbo', |
|
2913 |
'TABLE', N'system_dict_type' |
|
2914 |
GO |
|
2915 |
|
|
2916 |
-- ---------------------------- |
|
2917 |
-- Records of system_dict_type |
|
2918 |
-- ---------------------------- |
|
2919 |
-- @formatter:off |
|
2920 |
BEGIN TRANSACTION |
|
2921 |
GO |
|
2922 |
SET IDENTITY_INSERT system_dict_type ON |
|
2923 |
GO |
|
2924 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (1, N'用户性别', N'system_user_sex', 0, NULL, N'admin', N'2021-01-05 17:03:48', N'1', N'2022-05-16 20:29:32', N'0', NULL) |
|
2925 |
GO |
|
2926 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (6, N'参数类型', N'infra_config_type', 0, NULL, N'admin', N'2021-01-05 17:03:48', N'', N'2022-02-01 16:36:54', N'0', NULL) |
|
2927 |
GO |
|
2928 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (7, N'通知类型', N'system_notice_type', 0, NULL, N'admin', N'2021-01-05 17:03:48', N'', N'2022-02-01 16:35:26', N'0', NULL) |
|
2929 |
GO |
|
2930 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (9, N'操作类型', N'infra_operate_type', 0, NULL, N'admin', N'2021-01-05 17:03:48', N'1', N'2024-03-14 12:44:01', N'0', NULL) |
|
2931 |
GO |
|
2932 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (10, N'系统状态', N'common_status', 0, NULL, N'admin', N'2021-01-05 17:03:48', N'', N'2022-02-01 16:21:28', N'0', NULL) |
|
2933 |
GO |
|
2934 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (11, N'Boolean 是否类型', N'infra_boolean_string', 0, N'boolean 转是否', N'', N'2021-01-19 03:20:08', N'', N'2022-02-01 16:37:10', N'0', NULL) |
|
2935 |
GO |
|
2936 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (104, N'登陆结果', N'system_login_result', 0, N'登陆结果', N'', N'2021-01-18 06:17:11', N'', N'2022-02-01 16:36:00', N'0', NULL) |
|
2937 |
GO |
|
2938 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (106, N'代码生成模板类型', N'infra_codegen_template_type', 0, NULL, N'', N'2021-02-05 07:08:06', N'1', N'2022-05-16 20:26:50', N'0', NULL) |
|
2939 |
GO |
|
2940 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (107, N'定时任务状态', N'infra_job_status', 0, NULL, N'', N'2021-02-07 07:44:16', N'', N'2022-02-01 16:51:11', N'0', NULL) |
|
2941 |
GO |
|
2942 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (108, N'定时任务日志状态', N'infra_job_log_status', 0, NULL, N'', N'2021-02-08 10:03:51', N'', N'2022-02-01 16:50:43', N'0', NULL) |
|
2943 |
GO |
|
2944 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (109, N'用户类型', N'user_type', 0, NULL, N'', N'2021-02-26 00:15:51', N'', N'2021-02-26 00:15:51', N'0', NULL) |
|
2945 |
GO |
|
2946 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (110, N'API 异常数据的处理状态', N'infra_api_error_log_process_status', 0, NULL, N'', N'2021-02-26 07:07:01', N'', N'2022-02-01 16:50:53', N'0', NULL) |
|
2947 |
GO |
|
2948 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (111, N'短信渠道编码', N'system_sms_channel_code', 0, NULL, N'1', N'2021-04-05 01:04:50', N'1', N'2022-02-16 02:09:08', N'0', NULL) |
|
2949 |
GO |
|
2950 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (112, N'短信模板的类型', N'system_sms_template_type', 0, NULL, N'1', N'2021-04-05 21:50:43', N'1', N'2022-02-01 16:35:06', N'0', NULL) |
|
2951 |
GO |
|
2952 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (113, N'短信发送状态', N'system_sms_send_status', 0, NULL, N'1', N'2021-04-11 20:18:03', N'1', N'2022-02-01 16:35:09', N'0', NULL) |
|
2953 |
GO |
|
2954 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (114, N'短信接收状态', N'system_sms_receive_status', 0, NULL, N'1', N'2021-04-11 20:27:14', N'1', N'2022-02-01 16:35:14', N'0', NULL) |
|
2955 |
GO |
|
2956 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (116, N'登陆日志的类型', N'system_login_type', 0, N'登陆日志的类型', N'1', N'2021-10-06 00:50:46', N'1', N'2022-02-01 16:35:56', N'0', NULL) |
|
2957 |
GO |
|
2958 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (117, N'OA 请假类型', N'bpm_oa_leave_type', 0, NULL, N'1', N'2021-09-21 22:34:33', N'1', N'2022-01-22 10:41:37', N'0', NULL) |
|
2959 |
GO |
|
2960 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (130, N'支付渠道编码类型', N'pay_channel_code', 0, N'支付渠道的编码', N'1', N'2021-12-03 10:35:08', N'1', N'2023-07-10 10:11:39', N'0', NULL) |
|
2961 |
GO |
|
2962 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (131, N'支付回调状态', N'pay_notify_status', 0, N'支付回调状态(包括退款回调)', N'1', N'2021-12-03 10:53:29', N'1', N'2023-07-19 18:09:43', N'0', NULL) |
|
2963 |
GO |
|
2964 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (132, N'支付订单状态', N'pay_order_status', 0, N'支付订单状态', N'1', N'2021-12-03 11:17:50', N'1', N'2021-12-03 11:17:50', N'0', NULL) |
|
2965 |
GO |
|
2966 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (134, N'退款订单状态', N'pay_refund_status', 0, N'退款订单状态', N'1', N'2021-12-10 16:42:50', N'1', N'2023-07-19 10:13:17', N'0', NULL) |
|
2967 |
GO |
|
2968 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (139, N'流程实例的状态', N'bpm_process_instance_status', 0, N'流程实例的状态', N'1', N'2022-01-07 23:46:42', N'1', N'2022-01-07 23:46:42', N'0', NULL) |
|
2969 |
GO |
|
2970 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (140, N'流程实例的结果', N'bpm_task_status', 0, N'流程实例的结果', N'1', N'2022-01-07 23:48:10', N'1', N'2024-03-08 22:42:03', N'0', NULL) |
|
2971 |
GO |
|
2972 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (141, N'流程的表单类型', N'bpm_model_form_type', 0, N'流程的表单类型', N'103', N'2022-01-11 23:50:45', N'103', N'2022-01-11 23:50:45', N'0', NULL) |
|
2973 |
GO |
|
2974 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (142, N'任务分配规则的类型', N'bpm_task_candidate_strategy', 0, N'BPM 任务的候选人的策略', N'103', N'2022-01-12 23:21:04', N'103', N'2024-03-06 02:53:59', N'0', NULL) |
|
2975 |
GO |
|
2976 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (144, N'代码生成的场景枚举', N'infra_codegen_scene', 0, N'代码生成的场景枚举', N'1', N'2022-02-02 13:14:45', N'1', N'2022-03-10 16:33:46', N'0', NULL) |
|
2977 |
GO |
|
2978 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (145, N'角色类型', N'system_role_type', 0, N'角色类型', N'1', N'2022-02-16 13:01:46', N'1', N'2022-02-16 13:01:46', N'0', NULL) |
|
2979 |
GO |
|
2980 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (146, N'文件存储器', N'infra_file_storage', 0, N'文件存储器', N'1', N'2022-03-15 00:24:38', N'1', N'2022-03-15 00:24:38', N'0', NULL) |
|
2981 |
GO |
|
2982 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (147, N'OAuth 2.0 授权类型', N'system_oauth2_grant_type', 0, N'OAuth 2.0 授权类型(模式)', N'1', N'2022-05-12 00:20:52', N'1', N'2022-05-11 16:25:49', N'0', NULL) |
|
2983 |
GO |
|
2984 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (149, N'商品 SPU 状态', N'product_spu_status', 0, N'商品 SPU 状态', N'1', N'2022-10-24 21:19:04', N'1', N'2022-10-24 21:19:08', N'0', NULL) |
|
2985 |
GO |
|
2986 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (150, N'优惠类型', N'promotion_discount_type', 0, N'优惠类型', N'1', N'2022-11-01 12:46:06', N'1', N'2022-11-01 12:46:06', N'0', NULL) |
|
2987 |
GO |
|
2988 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (151, N'优惠劵模板的有限期类型', N'promotion_coupon_template_validity_type', 0, N'优惠劵模板的有限期类型', N'1', N'2022-11-02 00:06:20', N'1', N'2022-11-04 00:08:26', N'0', NULL) |
|
2989 |
GO |
|
2990 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (152, N'营销的商品范围', N'promotion_product_scope', 0, N'营销的商品范围', N'1', N'2022-11-02 00:28:01', N'1', N'2022-11-02 00:28:01', N'0', NULL) |
|
2991 |
GO |
|
2992 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (153, N'优惠劵的状态', N'promotion_coupon_status', 0, N'优惠劵的状态', N'1', N'2022-11-04 00:14:49', N'1', N'2022-11-04 00:14:49', N'0', NULL) |
|
2993 |
GO |
|
2994 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (154, N'优惠劵的领取方式', N'promotion_coupon_take_type', 0, N'优惠劵的领取方式', N'1', N'2022-11-04 19:12:27', N'1', N'2022-11-04 19:12:27', N'0', NULL) |
|
2995 |
GO |
|
2996 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (155, N'促销活动的状态', N'promotion_activity_status', 0, N'促销活动的状态', N'1', N'2022-11-04 22:54:23', N'1', N'2022-11-04 22:54:23', N'0', NULL) |
|
2997 |
GO |
|
2998 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (156, N'营销的条件类型', N'promotion_condition_type', 0, N'营销的条件类型', N'1', N'2022-11-04 22:59:23', N'1', N'2022-11-04 22:59:23', N'0', NULL) |
|
2999 |
GO |
|
3000 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (157, N'交易售后状态', N'trade_after_sale_status', 0, N'交易售后状态', N'1', N'2022-11-19 20:52:56', N'1', N'2022-11-19 20:52:56', N'0', NULL) |
|
3001 |
GO |
|
3002 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (158, N'交易售后的类型', N'trade_after_sale_type', 0, N'交易售后的类型', N'1', N'2022-11-19 21:04:09', N'1', N'2022-11-19 21:04:09', N'0', NULL) |
|
3003 |
GO |
|
3004 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (159, N'交易售后的方式', N'trade_after_sale_way', 0, N'交易售后的方式', N'1', N'2022-11-19 21:39:04', N'1', N'2022-11-19 21:39:04', N'0', NULL) |
|
3005 |
GO |
|
3006 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (160, N'终端', N'terminal', 0, N'终端', N'1', N'2022-12-10 10:50:50', N'1', N'2022-12-10 10:53:11', N'0', NULL) |
|
3007 |
GO |
|
3008 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (161, N'交易订单的类型', N'trade_order_type', 0, N'交易订单的类型', N'1', N'2022-12-10 16:33:54', N'1', N'2022-12-10 16:33:54', N'0', NULL) |
|
3009 |
GO |
|
3010 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (162, N'交易订单的状态', N'trade_order_status', 0, N'交易订单的状态', N'1', N'2022-12-10 16:48:44', N'1', N'2022-12-10 16:48:44', N'0', NULL) |
|
3011 |
GO |
|
3012 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (163, N'交易订单项的售后状态', N'trade_order_item_after_sale_status', 0, N'交易订单项的售后状态', N'1', N'2022-12-10 20:58:08', N'1', N'2022-12-10 20:58:08', N'0', NULL) |
|
3013 |
GO |
|
3014 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (164, N'公众号自动回复的请求关键字匹配模式', N'mp_auto_reply_request_match', 0, N'公众号自动回复的请求关键字匹配模式', N'1', N'2023-01-16 23:29:56', N'1', N'2023-01-16 23:29:56', N'0', N'1970-01-01 00:00:00') |
|
3015 |
GO |
|
3016 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (165, N'公众号的消息类型', N'mp_message_type', 0, N'公众号的消息类型', N'1', N'2023-01-17 22:17:09', N'1', N'2023-01-17 22:17:09', N'0', N'1970-01-01 00:00:00') |
|
3017 |
GO |
|
3018 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (166, N'邮件发送状态', N'system_mail_send_status', 0, N'邮件发送状态', N'1', N'2023-01-26 09:53:13', N'1', N'2023-01-26 09:53:13', N'0', N'1970-01-01 00:00:00') |
|
3019 |
GO |
|
3020 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (167, N'站内信模版的类型', N'system_notify_template_type', 0, N'站内信模版的类型', N'1', N'2023-01-28 10:35:10', N'1', N'2023-01-28 10:35:10', N'0', N'1970-01-01 00:00:00') |
|
3021 |
GO |
|
3022 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (168, N'代码生成的前端类型', N'infra_codegen_front_type', 0, N'', N'1', N'2023-04-12 23:57:52', N'1', N'2023-04-12 23:57:52', N'0', N'1970-01-01 00:00:00') |
|
3023 |
GO |
|
3024 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (170, N'快递计费方式', N'trade_delivery_express_charge_mode', 0, N'用于商城交易模块配送管理', N'1', N'2023-05-21 22:45:03', N'1', N'2023-05-21 22:45:03', N'0', N'1970-01-01 00:00:00') |
|
3025 |
GO |
|
3026 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (171, N'积分业务类型', N'member_point_biz_type', 0, N'', N'1', N'2023-06-10 12:15:00', N'1', N'2023-06-28 13:48:20', N'0', N'1970-01-01 00:00:00') |
|
3027 |
GO |
|
3028 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (173, N'支付通知类型', N'pay_notify_type', 0, NULL, N'1', N'2023-07-20 12:23:03', N'1', N'2023-07-20 12:23:03', N'0', N'1970-01-01 00:00:00') |
|
3029 |
GO |
|
3030 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (174, N'会员经验业务类型', N'member_experience_biz_type', 0, NULL, N'', N'2023-08-22 12:41:01', N'', N'2023-08-22 12:41:01', N'0', NULL) |
|
3031 |
GO |
|
3032 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (175, N'交易配送类型', N'trade_delivery_type', 0, N'', N'1', N'2023-08-23 00:03:14', N'1', N'2023-08-23 00:03:14', N'0', N'1970-01-01 00:00:00') |
|
3033 |
GO |
|
3034 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (176, N'分佣模式', N'brokerage_enabled_condition', 0, NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0', NULL) |
|
3035 |
GO |
|
3036 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (177, N'分销关系绑定模式', N'brokerage_bind_mode', 0, NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0', NULL) |
|
3037 |
GO |
|
3038 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (178, N'佣金提现类型', N'brokerage_withdraw_type', 0, NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0', NULL) |
|
3039 |
GO |
|
3040 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (179, N'佣金记录业务类型', N'brokerage_record_biz_type', 0, NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0', NULL) |
|
3041 |
GO |
|
3042 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (180, N'佣金记录状态', N'brokerage_record_status', 0, NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0', NULL) |
|
3043 |
GO |
|
3044 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (181, N'佣金提现状态', N'brokerage_withdraw_status', 0, NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0', NULL) |
|
3045 |
GO |
|
3046 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (182, N'佣金提现银行', N'brokerage_bank_name', 0, NULL, N'', N'2023-09-28 02:46:05', N'', N'2023-09-28 02:46:05', N'0', NULL) |
|
3047 |
GO |
|
3048 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (183, N'砍价记录的状态', N'promotion_bargain_record_status', 0, N'', N'1', N'2023-10-05 10:41:08', N'1', N'2023-10-05 10:41:08', N'0', N'1970-01-01 00:00:00') |
|
3049 |
GO |
|
3050 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (184, N'拼团记录的状态', N'promotion_combination_record_status', 0, N'', N'1', N'2023-10-08 07:24:25', N'1', N'2023-10-08 07:24:25', N'0', N'1970-01-01 00:00:00') |
|
3051 |
GO |
|
3052 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (185, N'回款-回款方式', N'crm_receivable_return_type', 0, N'回款-回款方式', N'1', N'2023-10-18 21:54:10', N'1', N'2023-10-18 21:54:10', N'0', N'1970-01-01 00:00:00') |
|
3053 |
GO |
|
3054 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (186, N'CRM 客户行业', N'crm_customer_industry', 0, N'CRM 客户所属行业', N'1', N'2023-10-28 22:57:07', N'1', N'2024-02-18 23:30:22', N'0', NULL) |
|
3055 |
GO |
|
3056 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (187, N'客户等级', N'crm_customer_level', 0, N'CRM 客户等级', N'1', N'2023-10-28 22:59:12', N'1', N'2023-10-28 15:11:16', N'0', NULL) |
|
3057 |
GO |
|
3058 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (188, N'客户来源', N'crm_customer_source', 0, N'CRM 客户来源', N'1', N'2023-10-28 23:00:34', N'1', N'2023-10-28 15:11:16', N'0', NULL) |
|
3059 |
GO |
|
3060 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (600, N'Banner 位置', N'promotion_banner_position', 0, N'', N'1', N'2023-10-08 07:24:25', N'1', N'2023-11-04 13:04:02', N'0', N'1970-01-01 00:00:00') |
|
3061 |
GO |
|
3062 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (601, N'社交类型', N'system_social_type', 0, N'', N'1', N'2023-11-04 13:03:54', N'1', N'2023-11-04 13:03:54', N'0', N'1970-01-01 00:00:00') |
|
3063 |
GO |
|
3064 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (604, N'产品状态', N'crm_product_status', 0, N'', N'1', N'2023-10-30 21:47:59', N'1', N'2023-10-30 21:48:45', N'0', N'1970-01-01 00:00:00') |
|
3065 |
GO |
|
3066 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (605, N'CRM 数据权限的级别', N'crm_permission_level', 0, N'', N'1', N'2023-11-30 09:51:59', N'1', N'2023-11-30 09:51:59', N'0', N'1970-01-01 00:00:00') |
|
3067 |
GO |
|
3068 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (606, N'CRM 审批状态', N'crm_audit_status', 0, N'', N'1', N'2023-11-30 18:56:23', N'1', N'2023-11-30 18:56:23', N'0', N'1970-01-01 00:00:00') |
|
3069 |
GO |
|
3070 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (607, N'CRM 产品单位', N'crm_product_unit', 0, N'', N'1', N'2023-12-05 23:01:51', N'1', N'2023-12-05 23:01:51', N'0', N'1970-01-01 00:00:00') |
|
3071 |
GO |
|
3072 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (608, N'CRM 跟进方式', N'crm_follow_up_type', 0, N'', N'1', N'2024-01-15 20:48:05', N'1', N'2024-01-15 20:48:05', N'0', N'1970-01-01 00:00:00') |
|
3073 |
GO |
|
3074 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (609, N'支付转账类型', N'pay_transfer_type', 0, N'', N'1', N'2023-10-28 16:27:18', N'1', N'2023-10-28 16:27:18', N'0', N'1970-01-01 00:00:00') |
|
3075 |
GO |
|
3076 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (610, N'转账订单状态', N'pay_transfer_status', 0, N'', N'1', N'2023-10-28 16:18:32', N'1', N'2023-10-28 16:18:32', N'0', N'1970-01-01 00:00:00') |
|
3077 |
GO |
|
3078 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (611, N'ERP 库存明细的业务类型', N'erp_stock_record_biz_type', 0, N'ERP 库存明细的业务类型', N'1', N'2024-02-05 18:07:02', N'1', N'2024-02-05 18:07:02', N'0', N'1970-01-01 00:00:00') |
|
3079 |
GO |
|
3080 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (612, N'ERP 审批状态', N'erp_audit_status', 0, N'', N'1', N'2024-02-06 00:00:07', N'1', N'2024-02-06 00:00:07', N'0', N'1970-01-01 00:00:00') |
|
3081 |
GO |
|
3082 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (613, N'BPM 监听器类型', N'bpm_process_listener_type', 0, N'', N'1', N'2024-03-23 12:52:24', N'1', N'2024-03-09 15:54:28', N'0', N'1970-01-01 00:00:00') |
|
3083 |
GO |
|
3084 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (615, N'BPM 监听器值类型', N'bpm_process_listener_value_type', 0, N'', N'1', N'2024-03-23 13:00:31', N'1', N'2024-03-23 13:00:31', N'0', N'1970-01-01 00:00:00') |
|
3085 |
GO |
|
3086 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (616, N'时间间隔', N'date_interval', 0, N'', N'1', N'2024-03-29 22:50:09', N'1', N'2024-03-29 22:50:09', N'0', N'1970-01-01 00:00:00') |
|
3087 |
GO |
|
3088 |
INSERT INTO system_dict_type (id, name, type, status, remark, creator, create_time, updater, update_time, deleted, deleted_time) VALUES (619, N'CRM 商机结束状态类型', N'crm_business_end_status_type', 0, N'', N'1', N'2024-04-13 23:23:00', N'1', N'2024-04-13 23:23:00', N'0', N'1970-01-01 00:00:00') |
|
3089 |
GO |
|
3090 |
SET IDENTITY_INSERT system_dict_type OFF |
|
3091 |
GO |
|
3092 |
COMMIT |
|
3093 |
GO |
|
3094 |
-- @formatter:on |
|
3095 |
|
|
3096 |
-- ---------------------------- |
|
3097 |
-- Table structure for system_login_log |
|
3098 |
-- ---------------------------- |
|
3099 |
DROP TABLE IF EXISTS system_login_log; |
|
3100 |
CREATE TABLE system_login_log |
|
3101 |
( |
|
3102 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
3103 |
log_type bigint NOT NULL, |
|
3104 |
trace_id nvarchar(64) DEFAULT '' NOT NULL, |
|
3105 |
user_id bigint DEFAULT 0 NOT NULL, |
|
3106 |
user_type tinyint DEFAULT 0 NOT NULL, |
|
3107 |
username nvarchar(50) DEFAULT '' NOT NULL, |
|
3108 |
result tinyint NOT NULL, |
|
3109 |
user_ip nvarchar(50) NOT NULL, |
|
3110 |
user_agent nvarchar(512) NOT NULL, |
|
3111 |
creator nvarchar(64) DEFAULT '' NULL, |
|
3112 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
3113 |
updater nvarchar(64) DEFAULT '' NULL, |
|
3114 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
3115 |
deleted bit DEFAULT 0 NOT NULL, |
|
3116 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
3117 |
) |
|
3118 |
GO |
|
3119 |
|
|
3120 |
EXEC sp_addextendedproperty |
|
3121 |
'MS_Description', N'访问ID', |
|
3122 |
'SCHEMA', N'dbo', |
|
3123 |
'TABLE', N'system_login_log', |
|
3124 |
'COLUMN', N'id' |
|
3125 |
GO |
|
3126 |
|
|
3127 |
EXEC sp_addextendedproperty |
|
3128 |
'MS_Description', N'日志类型', |
|
3129 |
'SCHEMA', N'dbo', |
|
3130 |
'TABLE', N'system_login_log', |
|
3131 |
'COLUMN', N'log_type' |
|
3132 |
GO |
|
3133 |
|
|
3134 |
EXEC sp_addextendedproperty |
|
3135 |
'MS_Description', N'链路追踪编号', |
|
3136 |
'SCHEMA', N'dbo', |
|
3137 |
'TABLE', N'system_login_log', |
|
3138 |
'COLUMN', N'trace_id' |
|
3139 |
GO |
|
3140 |
|
|
3141 |
EXEC sp_addextendedproperty |
|
3142 |
'MS_Description', N'用户编号', |
|
3143 |
'SCHEMA', N'dbo', |
|
3144 |
'TABLE', N'system_login_log', |
|
3145 |
'COLUMN', N'user_id' |
|
3146 |
GO |
|
3147 |
|
|
3148 |
EXEC sp_addextendedproperty |
|
3149 |
'MS_Description', N'用户类型', |
|
3150 |
'SCHEMA', N'dbo', |
|
3151 |
'TABLE', N'system_login_log', |
|
3152 |
'COLUMN', N'user_type' |
|
3153 |
GO |
|
3154 |
|
|
3155 |
EXEC sp_addextendedproperty |
|
3156 |
'MS_Description', N'用户账号', |
|
3157 |
'SCHEMA', N'dbo', |
|
3158 |
'TABLE', N'system_login_log', |
|
3159 |
'COLUMN', N'username' |
|
3160 |
GO |
|
3161 |
|
|
3162 |
EXEC sp_addextendedproperty |
|
3163 |
'MS_Description', N'登陆结果', |
|
3164 |
'SCHEMA', N'dbo', |
|
3165 |
'TABLE', N'system_login_log', |
|
3166 |
'COLUMN', N'result' |
|
3167 |
GO |
|
3168 |
|
|
3169 |
EXEC sp_addextendedproperty |
|
3170 |
'MS_Description', N'用户 IP', |
|
3171 |
'SCHEMA', N'dbo', |
|
3172 |
'TABLE', N'system_login_log', |
|
3173 |
'COLUMN', N'user_ip' |
|
3174 |
GO |
|
3175 |
|
|
3176 |
EXEC sp_addextendedproperty |
|
3177 |
'MS_Description', N'浏览器 UA', |
|
3178 |
'SCHEMA', N'dbo', |
|
3179 |
'TABLE', N'system_login_log', |
|
3180 |
'COLUMN', N'user_agent' |
|
3181 |
GO |
|
3182 |
|
|
3183 |
EXEC sp_addextendedproperty |
|
3184 |
'MS_Description', N'创建者', |
|
3185 |
'SCHEMA', N'dbo', |
|
3186 |
'TABLE', N'system_login_log', |
|
3187 |
'COLUMN', N'creator' |
|
3188 |
GO |
|
3189 |
|
|
3190 |
EXEC sp_addextendedproperty |
|
3191 |
'MS_Description', N'创建时间', |
|
3192 |
'SCHEMA', N'dbo', |
|
3193 |
'TABLE', N'system_login_log', |
|
3194 |
'COLUMN', N'create_time' |
|
3195 |
GO |
|
3196 |
|
|
3197 |
EXEC sp_addextendedproperty |
|
3198 |
'MS_Description', N'更新者', |
|
3199 |
'SCHEMA', N'dbo', |
|
3200 |
'TABLE', N'system_login_log', |
|
3201 |
'COLUMN', N'updater' |
|
3202 |
GO |
|
3203 |
|
|
3204 |
EXEC sp_addextendedproperty |
|
3205 |
'MS_Description', N'更新时间', |
|
3206 |
'SCHEMA', N'dbo', |
|
3207 |
'TABLE', N'system_login_log', |
|
3208 |
'COLUMN', N'update_time' |
|
3209 |
GO |
|
3210 |
|
|
3211 |
EXEC sp_addextendedproperty |
|
3212 |
'MS_Description', N'是否删除', |
|
3213 |
'SCHEMA', N'dbo', |
|
3214 |
'TABLE', N'system_login_log', |
|
3215 |
'COLUMN', N'deleted' |
|
3216 |
GO |
|
3217 |
|
|
3218 |
EXEC sp_addextendedproperty |
|
3219 |
'MS_Description', N'租户编号', |
|
3220 |
'SCHEMA', N'dbo', |
|
3221 |
'TABLE', N'system_login_log', |
|
3222 |
'COLUMN', N'tenant_id' |
|
3223 |
GO |
|
3224 |
|
|
3225 |
EXEC sp_addextendedproperty |
|
3226 |
'MS_Description', N'系统访问记录', |
|
3227 |
'SCHEMA', N'dbo', |
|
3228 |
'TABLE', N'system_login_log' |
|
3229 |
GO |
|
3230 |
|
|
3231 |
-- ---------------------------- |
|
3232 |
-- Table structure for system_mail_account |
|
3233 |
-- ---------------------------- |
|
3234 |
DROP TABLE IF EXISTS system_mail_account; |
|
3235 |
CREATE TABLE system_mail_account |
|
3236 |
( |
|
3237 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
3238 |
mail nvarchar(255) NOT NULL, |
|
3239 |
username nvarchar(255) NOT NULL, |
|
3240 |
password nvarchar(255) NOT NULL, |
|
3241 |
host nvarchar(255) NOT NULL, |
|
3242 |
port int NOT NULL, |
|
3243 |
ssl_enable varchar(1) DEFAULT '0' NOT NULL, |
|
3244 |
starttls_enable varchar(1) DEFAULT '0' NOT NULL, |
|
3245 |
creator nvarchar(64) DEFAULT '' NULL, |
|
3246 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
3247 |
updater nvarchar(64) DEFAULT '' NULL, |
|
3248 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
3249 |
deleted bit DEFAULT 0 NOT NULL |
|
3250 |
) |
|
3251 |
GO |
|
3252 |
|
|
3253 |
EXEC sp_addextendedproperty |
|
3254 |
'MS_Description', N'主键', |
|
3255 |
'SCHEMA', N'dbo', |
|
3256 |
'TABLE', N'system_mail_account', |
|
3257 |
'COLUMN', N'id' |
|
3258 |
GO |
|
3259 |
|
|
3260 |
EXEC sp_addextendedproperty |
|
3261 |
'MS_Description', N'邮箱', |
|
3262 |
'SCHEMA', N'dbo', |
|
3263 |
'TABLE', N'system_mail_account', |
|
3264 |
'COLUMN', N'mail' |
|
3265 |
GO |
|
3266 |
|
|
3267 |
EXEC sp_addextendedproperty |
|
3268 |
'MS_Description', N'用户名', |
|
3269 |
'SCHEMA', N'dbo', |
|
3270 |
'TABLE', N'system_mail_account', |
|
3271 |
'COLUMN', N'username' |
|
3272 |
GO |
|
3273 |
|
|
3274 |
EXEC sp_addextendedproperty |
|
3275 |
'MS_Description', N'密码', |
|
3276 |
'SCHEMA', N'dbo', |
|
3277 |
'TABLE', N'system_mail_account', |
|
3278 |
'COLUMN', N'password' |
|
3279 |
GO |
|
3280 |
|
|
3281 |
EXEC sp_addextendedproperty |
|
3282 |
'MS_Description', N'SMTP 服务器域名', |
|
3283 |
'SCHEMA', N'dbo', |
|
3284 |
'TABLE', N'system_mail_account', |
|
3285 |
'COLUMN', N'host' |
|
3286 |
GO |
|
3287 |
|
|
3288 |
EXEC sp_addextendedproperty |
|
3289 |
'MS_Description', N'SMTP 服务器端口', |
|
3290 |
'SCHEMA', N'dbo', |
|
3291 |
'TABLE', N'system_mail_account', |
|
3292 |
'COLUMN', N'port' |
|
3293 |
GO |
|
3294 |
|
|
3295 |
EXEC sp_addextendedproperty |
|
3296 |
'MS_Description', N'是否开启 SSL', |
|
3297 |
'SCHEMA', N'dbo', |
|
3298 |
'TABLE', N'system_mail_account', |
|
3299 |
'COLUMN', N'ssl_enable' |
|
3300 |
GO |
|
3301 |
|
|
3302 |
EXEC sp_addextendedproperty |
|
3303 |
'MS_Description', N'是否开启 STARTTLS', |
|
3304 |
'SCHEMA', N'dbo', |
|
3305 |
'TABLE', N'system_mail_account', |
|
3306 |
'COLUMN', N'starttls_enable' |
|
3307 |
GO |
|
3308 |
|
|
3309 |
EXEC sp_addextendedproperty |
|
3310 |
'MS_Description', N'创建者', |
|
3311 |
'SCHEMA', N'dbo', |
|
3312 |
'TABLE', N'system_mail_account', |
|
3313 |
'COLUMN', N'creator' |
|
3314 |
GO |
|
3315 |
|
|
3316 |
EXEC sp_addextendedproperty |
|
3317 |
'MS_Description', N'创建时间', |
|
3318 |
'SCHEMA', N'dbo', |
|
3319 |
'TABLE', N'system_mail_account', |
|
3320 |
'COLUMN', N'create_time' |
|
3321 |
GO |
|
3322 |
|
|
3323 |
EXEC sp_addextendedproperty |
|
3324 |
'MS_Description', N'更新者', |
|
3325 |
'SCHEMA', N'dbo', |
|
3326 |
'TABLE', N'system_mail_account', |
|
3327 |
'COLUMN', N'updater' |
|
3328 |
GO |
|
3329 |
|
|
3330 |
EXEC sp_addextendedproperty |
|
3331 |
'MS_Description', N'更新时间', |
|
3332 |
'SCHEMA', N'dbo', |
|
3333 |
'TABLE', N'system_mail_account', |
|
3334 |
'COLUMN', N'update_time' |
|
3335 |
GO |
|
3336 |
|
|
3337 |
EXEC sp_addextendedproperty |
|
3338 |
'MS_Description', N'是否删除', |
|
3339 |
'SCHEMA', N'dbo', |
|
3340 |
'TABLE', N'system_mail_account', |
|
3341 |
'COLUMN', N'deleted' |
|
3342 |
GO |
|
3343 |
|
|
3344 |
EXEC sp_addextendedproperty |
|
3345 |
'MS_Description', N'邮箱账号表', |
|
3346 |
'SCHEMA', N'dbo', |
|
3347 |
'TABLE', N'system_mail_account' |
|
3348 |
GO |
|
3349 |
|
|
3350 |
-- ---------------------------- |
|
3351 |
-- Records of system_mail_account |
|
3352 |
-- ---------------------------- |
|
3353 |
-- @formatter:off |
|
3354 |
BEGIN TRANSACTION |
|
3355 |
GO |
|
3356 |
SET IDENTITY_INSERT system_mail_account ON |
|
3357 |
GO |
|
3358 |
INSERT INTO system_mail_account (id, mail, username, password, host, port, ssl_enable, starttls_enable, creator, create_time, updater, update_time, deleted) VALUES (1, N'7684413@qq.com', N'7684413@qq.com', N'1234576', N'127.0.0.1', 8080, N'0', N'0', N'1', N'2023-01-25 17:39:52', N'1', N'2024-04-24 09:13:56', N'0') |
|
3359 |
GO |
|
3360 |
INSERT INTO system_mail_account (id, mail, username, password, host, port, ssl_enable, starttls_enable, creator, create_time, updater, update_time, deleted) VALUES (2, N'ydym_test@163.com', N'ydym_test@163.com', N'WBZTEINMIFVRYSOE', N'smtp.163.com', 465, N'1', N'0', N'1', N'2023-01-26 01:26:03', N'1', N'2023-04-12 22:39:38', N'0') |
|
3361 |
GO |
|
3362 |
INSERT INTO system_mail_account (id, mail, username, password, host, port, ssl_enable, starttls_enable, creator, create_time, updater, update_time, deleted) VALUES (3, N'76854114@qq.com', N'3335', N'11234', N'yunai1.cn', 466, N'0', N'0', N'1', N'2023-01-27 15:06:38', N'1', N'2023-01-27 07:08:36', N'1') |
|
3363 |
GO |
|
3364 |
INSERT INTO system_mail_account (id, mail, username, password, host, port, ssl_enable, starttls_enable, creator, create_time, updater, update_time, deleted) VALUES (4, N'7685413x@qq.com', N'2', N'3', N'4', 5, N'1', N'0', N'1', N'2023-04-12 23:05:06', N'1', N'2023-04-12 15:05:11', N'1') |
|
3365 |
GO |
|
3366 |
SET IDENTITY_INSERT system_mail_account OFF |
|
3367 |
GO |
|
3368 |
COMMIT |
|
3369 |
GO |
|
3370 |
-- @formatter:on |
|
3371 |
|
|
3372 |
-- ---------------------------- |
|
3373 |
-- Table structure for system_mail_log |
|
3374 |
-- ---------------------------- |
|
3375 |
DROP TABLE IF EXISTS system_mail_log; |
|
3376 |
CREATE TABLE system_mail_log |
|
3377 |
( |
|
3378 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
3379 |
user_id bigint DEFAULT NULL NULL, |
|
3380 |
user_type tinyint DEFAULT NULL NULL, |
|
3381 |
to_mail nvarchar(255) NOT NULL, |
|
3382 |
account_id bigint NOT NULL, |
|
3383 |
from_mail nvarchar(255) NOT NULL, |
|
3384 |
template_id bigint NOT NULL, |
|
3385 |
template_code nvarchar(63) NOT NULL, |
|
3386 |
template_nickname nvarchar(255) DEFAULT NULL NULL, |
|
3387 |
template_title nvarchar(255) NOT NULL, |
|
3388 |
template_content nvarchar(4000) NOT NULL, |
|
3389 |
template_params nvarchar(255) NOT NULL, |
|
3390 |
send_status tinyint DEFAULT 0 NOT NULL, |
|
3391 |
send_time datetime2 DEFAULT NULL NULL, |
|
3392 |
send_message_id nvarchar(255) DEFAULT NULL NULL, |
|
3393 |
send_exception nvarchar(4000) DEFAULT NULL NULL, |
|
3394 |
creator nvarchar(64) DEFAULT '' NULL, |
|
3395 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
3396 |
updater nvarchar(64) DEFAULT '' NULL, |
|
3397 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
3398 |
deleted bit DEFAULT 0 NOT NULL |
|
3399 |
) |
|
3400 |
GO |
|
3401 |
|
|
3402 |
EXEC sp_addextendedproperty |
|
3403 |
'MS_Description', N'编号', |
|
3404 |
'SCHEMA', N'dbo', |
|
3405 |
'TABLE', N'system_mail_log', |
|
3406 |
'COLUMN', N'id' |
|
3407 |
GO |
|
3408 |
|
|
3409 |
EXEC sp_addextendedproperty |
|
3410 |
'MS_Description', N'用户编号', |
|
3411 |
'SCHEMA', N'dbo', |
|
3412 |
'TABLE', N'system_mail_log', |
|
3413 |
'COLUMN', N'user_id' |
|
3414 |
GO |
|
3415 |
|
|
3416 |
EXEC sp_addextendedproperty |
|
3417 |
'MS_Description', N'用户类型', |
|
3418 |
'SCHEMA', N'dbo', |
|
3419 |
'TABLE', N'system_mail_log', |
|
3420 |
'COLUMN', N'user_type' |
|
3421 |
GO |
|
3422 |
|
|
3423 |
EXEC sp_addextendedproperty |
|
3424 |
'MS_Description', N'接收邮箱地址', |
|
3425 |
'SCHEMA', N'dbo', |
|
3426 |
'TABLE', N'system_mail_log', |
|
3427 |
'COLUMN', N'to_mail' |
|
3428 |
GO |
|
3429 |
|
|
3430 |
EXEC sp_addextendedproperty |
|
3431 |
'MS_Description', N'邮箱账号编号', |
|
3432 |
'SCHEMA', N'dbo', |
|
3433 |
'TABLE', N'system_mail_log', |
|
3434 |
'COLUMN', N'account_id' |
|
3435 |
GO |
|
3436 |
|
|
3437 |
EXEC sp_addextendedproperty |
|
3438 |
'MS_Description', N'发送邮箱地址', |
|
3439 |
'SCHEMA', N'dbo', |
|
3440 |
'TABLE', N'system_mail_log', |
|
3441 |
'COLUMN', N'from_mail' |
|
3442 |
GO |
|
3443 |
|
|
3444 |
EXEC sp_addextendedproperty |
|
3445 |
'MS_Description', N'模板编号', |
|
3446 |
'SCHEMA', N'dbo', |
|
3447 |
'TABLE', N'system_mail_log', |
|
3448 |
'COLUMN', N'template_id' |
|
3449 |
GO |
|
3450 |
|
|
3451 |
EXEC sp_addextendedproperty |
|
3452 |
'MS_Description', N'模板编码', |
|
3453 |
'SCHEMA', N'dbo', |
|
3454 |
'TABLE', N'system_mail_log', |
|
3455 |
'COLUMN', N'template_code' |
|
3456 |
GO |
|
3457 |
|
|
3458 |
EXEC sp_addextendedproperty |
|
3459 |
'MS_Description', N'模版发送人名称', |
|
3460 |
'SCHEMA', N'dbo', |
|
3461 |
'TABLE', N'system_mail_log', |
|
3462 |
'COLUMN', N'template_nickname' |
|
3463 |
GO |
|
3464 |
|
|
3465 |
EXEC sp_addextendedproperty |
|
3466 |
'MS_Description', N'邮件标题', |
|
3467 |
'SCHEMA', N'dbo', |
|
3468 |
'TABLE', N'system_mail_log', |
|
3469 |
'COLUMN', N'template_title' |
|
3470 |
GO |
|
3471 |
|
|
3472 |
EXEC sp_addextendedproperty |
|
3473 |
'MS_Description', N'邮件内容', |
|
3474 |
'SCHEMA', N'dbo', |
|
3475 |
'TABLE', N'system_mail_log', |
|
3476 |
'COLUMN', N'template_content' |
|
3477 |
GO |
|
3478 |
|
|
3479 |
EXEC sp_addextendedproperty |
|
3480 |
'MS_Description', N'邮件参数', |
|
3481 |
'SCHEMA', N'dbo', |
|
3482 |
'TABLE', N'system_mail_log', |
|
3483 |
'COLUMN', N'template_params' |
|
3484 |
GO |
|
3485 |
|
|
3486 |
EXEC sp_addextendedproperty |
|
3487 |
'MS_Description', N'发送状态', |
|
3488 |
'SCHEMA', N'dbo', |
|
3489 |
'TABLE', N'system_mail_log', |
|
3490 |
'COLUMN', N'send_status' |
|
3491 |
GO |
|
3492 |
|
|
3493 |
EXEC sp_addextendedproperty |
|
3494 |
'MS_Description', N'发送时间', |
|
3495 |
'SCHEMA', N'dbo', |
|
3496 |
'TABLE', N'system_mail_log', |
|
3497 |
'COLUMN', N'send_time' |
|
3498 |
GO |
|
3499 |
|
|
3500 |
EXEC sp_addextendedproperty |
|
3501 |
'MS_Description', N'发送返回的消息 ID', |
|
3502 |
'SCHEMA', N'dbo', |
|
3503 |
'TABLE', N'system_mail_log', |
|
3504 |
'COLUMN', N'send_message_id' |
|
3505 |
GO |
|
3506 |
|
|
3507 |
EXEC sp_addextendedproperty |
|
3508 |
'MS_Description', N'发送异常', |
|
3509 |
'SCHEMA', N'dbo', |
|
3510 |
'TABLE', N'system_mail_log', |
|
3511 |
'COLUMN', N'send_exception' |
|
3512 |
GO |
|
3513 |
|
|
3514 |
EXEC sp_addextendedproperty |
|
3515 |
'MS_Description', N'创建者', |
|
3516 |
'SCHEMA', N'dbo', |
|
3517 |
'TABLE', N'system_mail_log', |
|
3518 |
'COLUMN', N'creator' |
|
3519 |
GO |
|
3520 |
|
|
3521 |
EXEC sp_addextendedproperty |
|
3522 |
'MS_Description', N'创建时间', |
|
3523 |
'SCHEMA', N'dbo', |
|
3524 |
'TABLE', N'system_mail_log', |
|
3525 |
'COLUMN', N'create_time' |
|
3526 |
GO |
|
3527 |
|
|
3528 |
EXEC sp_addextendedproperty |
|
3529 |
'MS_Description', N'更新者', |
|
3530 |
'SCHEMA', N'dbo', |
|
3531 |
'TABLE', N'system_mail_log', |
|
3532 |
'COLUMN', N'updater' |
|
3533 |
GO |
|
3534 |
|
|
3535 |
EXEC sp_addextendedproperty |
|
3536 |
'MS_Description', N'更新时间', |
|
3537 |
'SCHEMA', N'dbo', |
|
3538 |
'TABLE', N'system_mail_log', |
|
3539 |
'COLUMN', N'update_time' |
|
3540 |
GO |
|
3541 |
|
|
3542 |
EXEC sp_addextendedproperty |
|
3543 |
'MS_Description', N'是否删除', |
|
3544 |
'SCHEMA', N'dbo', |
|
3545 |
'TABLE', N'system_mail_log', |
|
3546 |
'COLUMN', N'deleted' |
|
3547 |
GO |
|
3548 |
|
|
3549 |
EXEC sp_addextendedproperty |
|
3550 |
'MS_Description', N'邮件日志表', |
|
3551 |
'SCHEMA', N'dbo', |
|
3552 |
'TABLE', N'system_mail_log' |
|
3553 |
GO |
|
3554 |
|
|
3555 |
-- ---------------------------- |
|
3556 |
-- Table structure for system_mail_template |
|
3557 |
-- ---------------------------- |
|
3558 |
DROP TABLE IF EXISTS system_mail_template; |
|
3559 |
CREATE TABLE system_mail_template |
|
3560 |
( |
|
3561 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
3562 |
name nvarchar(63) NOT NULL, |
|
3563 |
code nvarchar(63) NOT NULL, |
|
3564 |
account_id bigint NOT NULL, |
|
3565 |
nickname nvarchar(255) DEFAULT NULL NULL, |
|
3566 |
title nvarchar(255) NOT NULL, |
|
3567 |
content nvarchar(4000) NOT NULL, |
|
3568 |
params nvarchar(255) NOT NULL, |
|
3569 |
status tinyint NOT NULL, |
|
3570 |
remark nvarchar(255) DEFAULT NULL NULL, |
|
3571 |
creator nvarchar(64) DEFAULT '' NULL, |
|
3572 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
3573 |
updater nvarchar(64) DEFAULT '' NULL, |
|
3574 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
3575 |
deleted bit DEFAULT 0 NOT NULL |
|
3576 |
) |
|
3577 |
GO |
|
3578 |
|
|
3579 |
EXEC sp_addextendedproperty |
|
3580 |
'MS_Description', N'编号', |
|
3581 |
'SCHEMA', N'dbo', |
|
3582 |
'TABLE', N'system_mail_template', |
|
3583 |
'COLUMN', N'id' |
|
3584 |
GO |
|
3585 |
|
|
3586 |
EXEC sp_addextendedproperty |
|
3587 |
'MS_Description', N'模板名称', |
|
3588 |
'SCHEMA', N'dbo', |
|
3589 |
'TABLE', N'system_mail_template', |
|
3590 |
'COLUMN', N'name' |
|
3591 |
GO |
|
3592 |
|
|
3593 |
EXEC sp_addextendedproperty |
|
3594 |
'MS_Description', N'模板编码', |
|
3595 |
'SCHEMA', N'dbo', |
|
3596 |
'TABLE', N'system_mail_template', |
|
3597 |
'COLUMN', N'code' |
|
3598 |
GO |
|
3599 |
|
|
3600 |
EXEC sp_addextendedproperty |
|
3601 |
'MS_Description', N'发送的邮箱账号编号', |
|
3602 |
'SCHEMA', N'dbo', |
|
3603 |
'TABLE', N'system_mail_template', |
|
3604 |
'COLUMN', N'account_id' |
|
3605 |
GO |
|
3606 |
|
|
3607 |
EXEC sp_addextendedproperty |
|
3608 |
'MS_Description', N'发送人名称', |
|
3609 |
'SCHEMA', N'dbo', |
|
3610 |
'TABLE', N'system_mail_template', |
|
3611 |
'COLUMN', N'nickname' |
|
3612 |
GO |
|
3613 |
|
|
3614 |
EXEC sp_addextendedproperty |
|
3615 |
'MS_Description', N'模板标题', |
|
3616 |
'SCHEMA', N'dbo', |
|
3617 |
'TABLE', N'system_mail_template', |
|
3618 |
'COLUMN', N'title' |
|
3619 |
GO |
|
3620 |
|
|
3621 |
EXEC sp_addextendedproperty |
|
3622 |
'MS_Description', N'模板内容', |
|
3623 |
'SCHEMA', N'dbo', |
|
3624 |
'TABLE', N'system_mail_template', |
|
3625 |
'COLUMN', N'content' |
|
3626 |
GO |
|
3627 |
|
|
3628 |
EXEC sp_addextendedproperty |
|
3629 |
'MS_Description', N'参数数组', |
|
3630 |
'SCHEMA', N'dbo', |
|
3631 |
'TABLE', N'system_mail_template', |
|
3632 |
'COLUMN', N'params' |
|
3633 |
GO |
|
3634 |
|
|
3635 |
EXEC sp_addextendedproperty |
|
3636 |
'MS_Description', N'开启状态', |
|
3637 |
'SCHEMA', N'dbo', |
|
3638 |
'TABLE', N'system_mail_template', |
|
3639 |
'COLUMN', N'status' |
|
3640 |
GO |
|
3641 |
|
|
3642 |
EXEC sp_addextendedproperty |
|
3643 |
'MS_Description', N'备注', |
|
3644 |
'SCHEMA', N'dbo', |
|
3645 |
'TABLE', N'system_mail_template', |
|
3646 |
'COLUMN', N'remark' |
|
3647 |
GO |
|
3648 |
|
|
3649 |
EXEC sp_addextendedproperty |
|
3650 |
'MS_Description', N'创建者', |
|
3651 |
'SCHEMA', N'dbo', |
|
3652 |
'TABLE', N'system_mail_template', |
|
3653 |
'COLUMN', N'creator' |
|
3654 |
GO |
|
3655 |
|
|
3656 |
EXEC sp_addextendedproperty |
|
3657 |
'MS_Description', N'创建时间', |
|
3658 |
'SCHEMA', N'dbo', |
|
3659 |
'TABLE', N'system_mail_template', |
|
3660 |
'COLUMN', N'create_time' |
|
3661 |
GO |
|
3662 |
|
|
3663 |
EXEC sp_addextendedproperty |
|
3664 |
'MS_Description', N'更新者', |
|
3665 |
'SCHEMA', N'dbo', |
|
3666 |
'TABLE', N'system_mail_template', |
|
3667 |
'COLUMN', N'updater' |
|
3668 |
GO |
|
3669 |
|
|
3670 |
EXEC sp_addextendedproperty |
|
3671 |
'MS_Description', N'更新时间', |
|
3672 |
'SCHEMA', N'dbo', |
|
3673 |
'TABLE', N'system_mail_template', |
|
3674 |
'COLUMN', N'update_time' |
|
3675 |
GO |
|
3676 |
|
|
3677 |
EXEC sp_addextendedproperty |
|
3678 |
'MS_Description', N'是否删除', |
|
3679 |
'SCHEMA', N'dbo', |
|
3680 |
'TABLE', N'system_mail_template', |
|
3681 |
'COLUMN', N'deleted' |
|
3682 |
GO |
|
3683 |
|
|
3684 |
EXEC sp_addextendedproperty |
|
3685 |
'MS_Description', N'邮件模版表', |
|
3686 |
'SCHEMA', N'dbo', |
|
3687 |
'TABLE', N'system_mail_template' |
|
3688 |
GO |
|
3689 |
|
|
3690 |
-- ---------------------------- |
|
3691 |
-- Records of system_mail_template |
|
3692 |
-- ---------------------------- |
|
3693 |
-- @formatter:off |
|
3694 |
BEGIN TRANSACTION |
|
3695 |
GO |
|
3696 |
SET IDENTITY_INSERT system_mail_template ON |
|
3697 |
GO |
|
3698 |
INSERT INTO system_mail_template (id, name, code, account_id, nickname, title, content, params, status, remark, creator, create_time, updater, update_time, deleted) VALUES (13, N'后台用户短信登录', N'admin-sms-login', 1, N'奥特曼', N'你猜我猜', N'<p>您的验证码是{code},名字是{name}</p>', N'["code","name"]', 0, N'3', N'1', N'2021-10-11 08:10:00', N'1', N'2023-12-02 19:51:14', N'0') |
|
3699 |
GO |
|
3700 |
INSERT INTO system_mail_template (id, name, code, account_id, nickname, title, content, params, status, remark, creator, create_time, updater, update_time, deleted) VALUES (14, N'测试模版', N'test_01', 2, N'iailab', N'一个标题', N'<p>你是 {key01} 吗?</p><p><br></p><p>是的话,赶紧 {key02} 一下!</p>', N'["key01","key02"]', 0, NULL, N'1', N'2023-01-26 01:27:40', N'1', N'2023-01-27 10:32:16', N'0') |
|
3701 |
GO |
|
3702 |
INSERT INTO system_mail_template (id, name, code, account_id, nickname, title, content, params, status, remark, creator, create_time, updater, update_time, deleted) VALUES (15, N'3', N'2', 2, N'7', N'4', N'<p>45</p>', N'[]', 1, N'80', N'1', N'2023-01-27 15:50:35', N'1', N'2023-01-27 16:34:49', N'0') |
|
3703 |
GO |
|
3704 |
SET IDENTITY_INSERT system_mail_template OFF |
|
3705 |
GO |
|
3706 |
COMMIT |
|
3707 |
GO |
|
3708 |
-- @formatter:on |
|
3709 |
|
|
3710 |
-- ---------------------------- |
|
3711 |
-- Table structure for system_menu |
|
3712 |
-- ---------------------------- |
|
3713 |
DROP TABLE IF EXISTS system_menu; |
|
3714 |
CREATE TABLE system_menu |
|
3715 |
( |
|
3716 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
3717 |
name nvarchar(50) NOT NULL, |
|
3718 |
permission nvarchar(100) DEFAULT '' NOT NULL, |
|
3719 |
type tinyint NOT NULL, |
|
3720 |
sort int DEFAULT 0 NOT NULL, |
|
3721 |
parent_id bigint DEFAULT 0 NOT NULL, |
|
3722 |
path nvarchar(200) DEFAULT '' NULL, |
|
3723 |
icon nvarchar(100) DEFAULT '#' NULL, |
|
3724 |
component nvarchar(255) DEFAULT NULL NULL, |
|
3725 |
component_name nvarchar(255) DEFAULT NULL NULL, |
|
3726 |
status tinyint DEFAULT 0 NOT NULL, |
|
3727 |
visible varchar(1) DEFAULT '1' NOT NULL, |
|
3728 |
keep_alive varchar(1) DEFAULT '1' NOT NULL, |
|
3729 |
always_show varchar(1) DEFAULT '1' NOT NULL, |
|
3730 |
creator nvarchar(64) DEFAULT '' NULL, |
|
3731 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
3732 |
updater nvarchar(64) DEFAULT '' NULL, |
|
3733 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
3734 |
deleted bit DEFAULT 0 NOT NULL |
|
3735 |
) |
|
3736 |
GO |
|
3737 |
|
|
3738 |
EXEC sp_addextendedproperty |
|
3739 |
'MS_Description', N'菜单ID', |
|
3740 |
'SCHEMA', N'dbo', |
|
3741 |
'TABLE', N'system_menu', |
|
3742 |
'COLUMN', N'id' |
|
3743 |
GO |
|
3744 |
|
|
3745 |
EXEC sp_addextendedproperty |
|
3746 |
'MS_Description', N'菜单名称', |
|
3747 |
'SCHEMA', N'dbo', |
|
3748 |
'TABLE', N'system_menu', |
|
3749 |
'COLUMN', N'name' |
|
3750 |
GO |
|
3751 |
|
|
3752 |
EXEC sp_addextendedproperty |
|
3753 |
'MS_Description', N'权限标识', |
|
3754 |
'SCHEMA', N'dbo', |
|
3755 |
'TABLE', N'system_menu', |
|
3756 |
'COLUMN', N'permission' |
|
3757 |
GO |
|
3758 |
|
|
3759 |
EXEC sp_addextendedproperty |
|
3760 |
'MS_Description', N'菜单类型', |
|
3761 |
'SCHEMA', N'dbo', |
|
3762 |
'TABLE', N'system_menu', |
|
3763 |
'COLUMN', N'type' |
|
3764 |
GO |
|
3765 |
|
|
3766 |
EXEC sp_addextendedproperty |
|
3767 |
'MS_Description', N'显示顺序', |
|
3768 |
'SCHEMA', N'dbo', |
|
3769 |
'TABLE', N'system_menu', |
|
3770 |
'COLUMN', N'sort' |
|
3771 |
GO |
|
3772 |
|
|
3773 |
EXEC sp_addextendedproperty |
|
3774 |
'MS_Description', N'父菜单ID', |
|
3775 |
'SCHEMA', N'dbo', |
|
3776 |
'TABLE', N'system_menu', |
|
3777 |
'COLUMN', N'parent_id' |
|
3778 |
GO |
|
3779 |
|
|
3780 |
EXEC sp_addextendedproperty |
|
3781 |
'MS_Description', N'路由地址', |
|
3782 |
'SCHEMA', N'dbo', |
|
3783 |
'TABLE', N'system_menu', |
|
3784 |
'COLUMN', N'path' |
|
3785 |
GO |
|
3786 |
|
|
3787 |
EXEC sp_addextendedproperty |
|
3788 |
'MS_Description', N'菜单图标', |
|
3789 |
'SCHEMA', N'dbo', |
|
3790 |
'TABLE', N'system_menu', |
|
3791 |
'COLUMN', N'icon' |
|
3792 |
GO |
|
3793 |
|
|
3794 |
EXEC sp_addextendedproperty |
|
3795 |
'MS_Description', N'组件路径', |
|
3796 |
'SCHEMA', N'dbo', |
|
3797 |
'TABLE', N'system_menu', |
|
3798 |
'COLUMN', N'component' |
|
3799 |
GO |
|
3800 |
|
|
3801 |
EXEC sp_addextendedproperty |
|
3802 |
'MS_Description', N'组件名', |
|
3803 |
'SCHEMA', N'dbo', |
|
3804 |
'TABLE', N'system_menu', |
|
3805 |
'COLUMN', N'component_name' |
|
3806 |
GO |
|
3807 |
|
|
3808 |
EXEC sp_addextendedproperty |
|
3809 |
'MS_Description', N'菜单状态', |
|
3810 |
'SCHEMA', N'dbo', |
|
3811 |
'TABLE', N'system_menu', |
|
3812 |
'COLUMN', N'status' |
|
3813 |
GO |
|
3814 |
|
|
3815 |
EXEC sp_addextendedproperty |
|
3816 |
'MS_Description', N'是否可见', |
|
3817 |
'SCHEMA', N'dbo', |
|
3818 |
'TABLE', N'system_menu', |
|
3819 |
'COLUMN', N'visible' |
|
3820 |
GO |
|
3821 |
|
|
3822 |
EXEC sp_addextendedproperty |
|
3823 |
'MS_Description', N'是否缓存', |
|
3824 |
'SCHEMA', N'dbo', |
|
3825 |
'TABLE', N'system_menu', |
|
3826 |
'COLUMN', N'keep_alive' |
|
3827 |
GO |
|
3828 |
|
|
3829 |
EXEC sp_addextendedproperty |
|
3830 |
'MS_Description', N'是否总是显示', |
|
3831 |
'SCHEMA', N'dbo', |
|
3832 |
'TABLE', N'system_menu', |
|
3833 |
'COLUMN', N'always_show' |
|
3834 |
GO |
|
3835 |
|
|
3836 |
EXEC sp_addextendedproperty |
|
3837 |
'MS_Description', N'创建者', |
|
3838 |
'SCHEMA', N'dbo', |
|
3839 |
'TABLE', N'system_menu', |
|
3840 |
'COLUMN', N'creator' |
|
3841 |
GO |
|
3842 |
|
|
3843 |
EXEC sp_addextendedproperty |
|
3844 |
'MS_Description', N'创建时间', |
|
3845 |
'SCHEMA', N'dbo', |
|
3846 |
'TABLE', N'system_menu', |
|
3847 |
'COLUMN', N'create_time' |
|
3848 |
GO |
|
3849 |
|
|
3850 |
EXEC sp_addextendedproperty |
|
3851 |
'MS_Description', N'更新者', |
|
3852 |
'SCHEMA', N'dbo', |
|
3853 |
'TABLE', N'system_menu', |
|
3854 |
'COLUMN', N'updater' |
|
3855 |
GO |
|
3856 |
|
|
3857 |
EXEC sp_addextendedproperty |
|
3858 |
'MS_Description', N'更新时间', |
|
3859 |
'SCHEMA', N'dbo', |
|
3860 |
'TABLE', N'system_menu', |
|
3861 |
'COLUMN', N'update_time' |
|
3862 |
GO |
|
3863 |
|
|
3864 |
EXEC sp_addextendedproperty |
|
3865 |
'MS_Description', N'是否删除', |
|
3866 |
'SCHEMA', N'dbo', |
|
3867 |
'TABLE', N'system_menu', |
|
3868 |
'COLUMN', N'deleted' |
|
3869 |
GO |
|
3870 |
|
|
3871 |
EXEC sp_addextendedproperty |
|
3872 |
'MS_Description', N'菜单权限表', |
|
3873 |
'SCHEMA', N'dbo', |
|
3874 |
'TABLE', N'system_menu' |
|
3875 |
GO |
|
3876 |
|
|
3877 |
-- ---------------------------- |
|
3878 |
-- Records of system_menu |
|
3879 |
-- ---------------------------- |
|
3880 |
-- @formatter:off |
|
3881 |
BEGIN TRANSACTION |
|
3882 |
GO |
|
3883 |
SET IDENTITY_INSERT system_menu ON |
|
3884 |
GO |
|
3885 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1, N'系统管理', N'', 1, 10, 0, N'/system', N'ep:tools', NULL, NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-02-29 01:04:23', N'0') |
|
3886 |
GO |
|
3887 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2, N'基础设施', N'', 1, 20, 0, N'/infra', N'ep:monitor', NULL, NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-03-01 08:28:40', N'0') |
|
3888 |
GO |
|
3889 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (5, N'OA 示例', N'', 1, 40, 1185, N'oa', N'fa:road', NULL, NULL, 0, N'1', N'1', N'1', N'admin', N'2021-09-20 16:26:19', N'1', N'2024-02-29 12:38:13', N'0') |
|
3890 |
GO |
|
3891 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (100, N'用户管理', N'system:user:list', 2, 1, 1, N'user', N'ep:avatar', N'system/user/index', N'SystemUser', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-02-29 01:02:04', N'0') |
|
3892 |
GO |
|
3893 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (101, N'角色管理', N'', 2, 2, 1, N'role', N'ep:user', N'system/role/index', N'SystemRole', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-02-29 01:03:28', N'0') |
|
3894 |
GO |
|
3895 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (102, N'菜单管理', N'', 2, 3, 1, N'menu', N'ep:menu', N'system/menu/index', N'SystemMenu', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-02-29 01:03:50', N'0') |
|
3896 |
GO |
|
3897 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (103, N'部门管理', N'', 2, 4, 1, N'dept', N'fa:address-card', N'system/dept/index', N'SystemDept', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-02-29 01:06:28', N'0') |
|
3898 |
GO |
|
3899 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (104, N'岗位管理', N'', 2, 5, 1, N'post', N'fa:address-book-o', N'system/post/index', N'SystemPost', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-02-29 01:06:39', N'0') |
|
3900 |
GO |
|
3901 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (105, N'字典管理', N'', 2, 6, 1, N'dict', N'ep:collection', N'system/dict/index', N'SystemDictType', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-02-29 01:07:12', N'0') |
|
3902 |
GO |
|
3903 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (106, N'配置管理', N'', 2, 8, 2, N'config', N'fa:connectdevelop', N'infra/config/index', N'InfraConfig', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-04-23 00:02:45', N'0') |
|
3904 |
GO |
|
3905 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (107, N'通知公告', N'', 2, 4, 2739, N'notice', N'ep:takeaway-box', N'system/notice/index', N'SystemNotice', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-04-22 23:56:17', N'0') |
|
3906 |
GO |
|
3907 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (108, N'审计日志', N'', 1, 9, 1, N'log', N'ep:document-copy', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-02-29 01:08:30', N'0') |
|
3908 |
GO |
|
3909 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (109, N'令牌管理', N'', 2, 2, 1261, N'token', N'fa:key', N'system/oauth2/token/index', N'SystemTokenClient', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-02-29 01:13:48', N'0') |
|
3910 |
GO |
|
3911 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (110, N'定时任务', N'', 2, 7, 2, N'job', N'fa-solid:tasks', N'infra/job/index', N'InfraJob', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-02-29 08:57:36', N'0') |
|
3912 |
GO |
|
3913 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (111, N'MySQL 监控', N'', 2, 1, 2740, N'druid', N'fa-solid:box', N'infra/druid/index', N'InfraDruid', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-04-23 00:05:58', N'0') |
|
3914 |
GO |
|
3915 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (112, N'Java 监控', N'', 2, 3, 2740, N'admin-server', N'ep:coffee-cup', N'infra/server/index', N'InfraAdminServer', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-04-23 00:06:57', N'0') |
|
3916 |
GO |
|
3917 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (113, N'Redis 监控', N'', 2, 2, 2740, N'redis', N'fa:reddit-square', N'infra/redis/index', N'InfraRedis', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-04-23 00:06:09', N'0') |
|
3918 |
GO |
|
3919 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (114, N'表单构建', N'infra:build:list', 2, 2, 2, N'build', N'fa:wpforms', N'infra/build/index', N'InfraBuild', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-02-29 08:51:35', N'0') |
|
3920 |
GO |
|
3921 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (115, N'代码生成', N'infra:codegen:query', 2, 1, 2, N'codegen', N'ep:document-copy', N'infra/codegen/index', N'InfraCodegen', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-02-29 08:51:06', N'0') |
|
3922 |
GO |
|
3923 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (116, N'API 接口', N'infra:swagger:list', 2, 3, 2, N'swagger', N'fa:fighter-jet', N'infra/swagger/index', N'InfraSwagger', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-04-23 00:01:24', N'0') |
|
3924 |
GO |
|
3925 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (500, N'操作日志', N'', 2, 1, 108, N'operate-log', N'ep:position', N'system/operatelog/index', N'SystemOperateLog', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-02-29 01:09:59', N'0') |
|
3926 |
GO |
|
3927 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (501, N'登录日志', N'', 2, 2, 108, N'login-log', N'ep:promotion', N'system/loginlog/index', N'SystemLoginLog', 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2024-02-29 01:10:29', N'0') |
|
3928 |
GO |
|
3929 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1001, N'用户查询', N'system:user:query', 3, 1, 100, N'', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
3930 |
GO |
|
3931 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1002, N'用户新增', N'system:user:create', 3, 2, 100, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3932 |
GO |
|
3933 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1003, N'用户修改', N'system:user:update', 3, 3, 100, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3934 |
GO |
|
3935 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1004, N'用户删除', N'system:user:delete', 3, 4, 100, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3936 |
GO |
|
3937 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1005, N'用户导出', N'system:user:export', 3, 5, 100, N'', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
3938 |
GO |
|
3939 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1006, N'用户导入', N'system:user:import', 3, 6, 100, N'', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
3940 |
GO |
|
3941 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1007, N'重置密码', N'system:user:update-password', 3, 7, 100, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3942 |
GO |
|
3943 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1008, N'角色查询', N'system:role:query', 3, 1, 101, N'', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
3944 |
GO |
|
3945 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1009, N'角色新增', N'system:role:create', 3, 2, 101, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3946 |
GO |
|
3947 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1010, N'角色修改', N'system:role:update', 3, 3, 101, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3948 |
GO |
|
3949 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1011, N'角色删除', N'system:role:delete', 3, 4, 101, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3950 |
GO |
|
3951 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1012, N'角色导出', N'system:role:export', 3, 5, 101, N'', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
3952 |
GO |
|
3953 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1013, N'菜单查询', N'system:menu:query', 3, 1, 102, N'', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
3954 |
GO |
|
3955 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1014, N'菜单新增', N'system:menu:create', 3, 2, 102, N'', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
3956 |
GO |
|
3957 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1015, N'菜单修改', N'system:menu:update', 3, 3, 102, N'', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
3958 |
GO |
|
3959 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1016, N'菜单删除', N'system:menu:delete', 3, 4, 102, N'', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
3960 |
GO |
|
3961 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1017, N'部门查询', N'system:dept:query', 3, 1, 103, N'', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
3962 |
GO |
|
3963 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1018, N'部门新增', N'system:dept:create', 3, 2, 103, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3964 |
GO |
|
3965 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1019, N'部门修改', N'system:dept:update', 3, 3, 103, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3966 |
GO |
|
3967 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1020, N'部门删除', N'system:dept:delete', 3, 4, 103, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3968 |
GO |
|
3969 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1021, N'岗位查询', N'system:post:query', 3, 1, 104, N'', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
3970 |
GO |
|
3971 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1022, N'岗位新增', N'system:post:create', 3, 2, 104, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3972 |
GO |
|
3973 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1023, N'岗位修改', N'system:post:update', 3, 3, 104, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3974 |
GO |
|
3975 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1024, N'岗位删除', N'system:post:delete', 3, 4, 104, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3976 |
GO |
|
3977 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1025, N'岗位导出', N'system:post:export', 3, 5, 104, N'', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
3978 |
GO |
|
3979 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1026, N'字典查询', N'system:dict:query', 3, 1, 105, N'#', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
3980 |
GO |
|
3981 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1027, N'字典新增', N'system:dict:create', 3, 2, 105, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3982 |
GO |
|
3983 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1028, N'字典修改', N'system:dict:update', 3, 3, 105, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3984 |
GO |
|
3985 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1029, N'字典删除', N'system:dict:delete', 3, 4, 105, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3986 |
GO |
|
3987 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1030, N'字典导出', N'system:dict:export', 3, 5, 105, N'#', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
3988 |
GO |
|
3989 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1031, N'配置查询', N'infra:config:query', 3, 1, 106, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
3990 |
GO |
|
3991 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1032, N'配置新增', N'infra:config:create', 3, 2, 106, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3992 |
GO |
|
3993 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1033, N'配置修改', N'infra:config:update', 3, 3, 106, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3994 |
GO |
|
3995 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1034, N'配置删除', N'infra:config:delete', 3, 4, 106, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
3996 |
GO |
|
3997 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1035, N'配置导出', N'infra:config:export', 3, 5, 106, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
3998 |
GO |
|
3999 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1036, N'公告查询', N'system:notice:query', 3, 1, 107, N'#', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
4000 |
GO |
|
4001 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1037, N'公告新增', N'system:notice:create', 3, 2, 107, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
4002 |
GO |
|
4003 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1038, N'公告修改', N'system:notice:update', 3, 3, 107, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
4004 |
GO |
|
4005 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1039, N'公告删除', N'system:notice:delete', 3, 4, 107, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
4006 |
GO |
|
4007 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1040, N'操作查询', N'system:operate-log:query', 3, 1, 500, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
4008 |
GO |
|
4009 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1042, N'日志导出', N'system:operate-log:export', 3, 2, 500, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
4010 |
GO |
|
4011 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1043, N'登录查询', N'system:login-log:query', 3, 1, 501, N'#', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
4012 |
GO |
|
4013 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1045, N'日志导出', N'system:login-log:export', 3, 3, 501, N'#', N'#', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
4014 |
GO |
|
4015 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1046, N'令牌列表', N'system:oauth2-token:page', 3, 1, 109, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-05-09 23:54:42', N'0') |
|
4016 |
GO |
|
4017 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1048, N'令牌删除', N'system:oauth2-token:delete', 3, 2, 109, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-05-09 23:54:53', N'0') |
|
4018 |
GO |
|
4019 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1050, N'任务新增', N'infra:job:create', 3, 2, 110, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
4020 |
GO |
|
4021 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1051, N'任务修改', N'infra:job:update', 3, 3, 110, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
4022 |
GO |
|
4023 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1052, N'任务删除', N'infra:job:delete', 3, 4, 110, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
4024 |
GO |
|
4025 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1053, N'状态修改', N'infra:job:update', 3, 5, 110, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
4026 |
GO |
|
4027 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1054, N'任务导出', N'infra:job:export', 3, 7, 110, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'', N'2022-04-20 17:03:10', N'0') |
|
4028 |
GO |
|
4029 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1056, N'生成修改', N'infra:codegen:update', 3, 2, 115, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
4030 |
GO |
|
4031 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1057, N'生成删除', N'infra:codegen:delete', 3, 3, 115, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
4032 |
GO |
|
4033 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1058, N'导入代码', N'infra:codegen:create', 3, 2, 115, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
4034 |
GO |
|
4035 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1059, N'预览代码', N'infra:codegen:preview', 3, 4, 115, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
4036 |
GO |
|
4037 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1060, N'生成代码', N'infra:codegen:download', 3, 5, 115, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'admin', N'2021-01-05 17:03:48', N'1', N'2022-04-20 17:03:10', N'0') |
|
4038 |
GO |
|
4039 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1063, N'设置角色菜单权限', N'system:permission:assign-role-menu', 3, 6, 101, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-01-06 17:53:44', N'', N'2022-04-20 17:03:10', N'0') |
|
4040 |
GO |
|
4041 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1064, N'设置角色数据权限', N'system:permission:assign-role-data-scope', 3, 7, 101, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-01-06 17:56:31', N'', N'2022-04-20 17:03:10', N'0') |
|
4042 |
GO |
|
4043 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1065, N'设置用户角色', N'system:permission:assign-user-role', 3, 8, 101, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-01-07 10:23:28', N'', N'2022-04-20 17:03:10', N'0') |
|
4044 |
GO |
|
4045 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1066, N'获得 Redis 监控信息', N'infra:redis:get-monitor-info', 3, 1, 113, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-01-26 01:02:31', N'', N'2022-04-20 17:03:10', N'0') |
|
4046 |
GO |
|
4047 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1067, N'获得 Redis Key 列表', N'infra:redis:get-key-list', 3, 2, 113, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-01-26 01:02:52', N'', N'2022-04-20 17:03:10', N'0') |
|
4048 |
GO |
|
4049 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1070, N'代码生成案例', N'', 1, 1, 2, N'demo', N'ep:aim', N'infra/testDemo/index', NULL, 0, N'1', N'1', N'1', N'', N'2021-02-06 12:42:49', N'1', N'2023-11-15 23:45:53', N'0') |
|
4050 |
GO |
|
4051 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1075, N'任务触发', N'infra:job:trigger', 3, 8, 110, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-02-07 13:03:10', N'', N'2022-04-20 17:03:10', N'0') |
|
4052 |
GO |
|
4053 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1077, N'链路追踪', N'', 2, 4, 2740, N'skywalking', N'fa:eye', N'infra/skywalking/index', N'InfraSkyWalking', 0, N'1', N'1', N'1', N'', N'2021-02-08 20:41:31', N'1', N'2024-04-23 00:07:15', N'0') |
|
4054 |
GO |
|
4055 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1078, N'访问日志', N'', 2, 1, 1083, N'api-access-log', N'ep:place', N'infra/apiAccessLog/index', N'InfraApiAccessLog', 0, N'1', N'1', N'1', N'', N'2021-02-26 01:32:59', N'1', N'2024-02-29 08:54:57', N'0') |
|
4056 |
GO |
|
4057 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1082, N'日志导出', N'infra:api-access-log:export', 3, 2, 1078, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-02-26 01:32:59', N'1', N'2022-04-20 17:03:10', N'0') |
|
4058 |
GO |
|
4059 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1083, N'API 日志', N'', 2, 4, 2, N'log', N'fa:tasks', NULL, NULL, 0, N'1', N'1', N'1', N'', N'2021-02-26 02:18:24', N'1', N'2024-04-22 23:58:36', N'0') |
|
4060 |
GO |
|
4061 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1084, N'错误日志', N'infra:api-error-log:query', 2, 2, 1083, N'api-error-log', N'ep:warning-filled', N'infra/apiErrorLog/index', N'InfraApiErrorLog', 0, N'1', N'1', N'1', N'', N'2021-02-26 07:53:20', N'1', N'2024-02-29 08:55:17', N'0') |
|
4062 |
GO |
|
4063 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1085, N'日志处理', N'infra:api-error-log:update-status', 3, 2, 1084, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-02-26 07:53:20', N'1', N'2022-04-20 17:03:10', N'0') |
|
4064 |
GO |
|
4065 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1086, N'日志导出', N'infra:api-error-log:export', 3, 3, 1084, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-02-26 07:53:20', N'1', N'2022-04-20 17:03:10', N'0') |
|
4066 |
GO |
|
4067 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1087, N'任务查询', N'infra:job:query', 3, 1, 110, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2021-03-10 01:26:19', N'1', N'2022-04-20 17:03:10', N'0') |
|
4068 |
GO |
|
4069 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1088, N'日志查询', N'infra:api-access-log:query', 3, 1, 1078, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2021-03-10 01:28:04', N'1', N'2022-04-20 17:03:10', N'0') |
|
4070 |
GO |
|
4071 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1089, N'日志查询', N'infra:api-error-log:query', 3, 1, 1084, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2021-03-10 01:29:09', N'1', N'2022-04-20 17:03:10', N'0') |
|
4072 |
GO |
|
4073 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1090, N'文件列表', N'', 2, 5, 1243, N'file', N'ep:upload-filled', N'infra/file/index', N'InfraFile', 0, N'1', N'1', N'1', N'', N'2021-03-12 20:16:20', N'1', N'2024-02-29 08:53:02', N'0') |
|
4074 |
GO |
|
4075 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1091, N'文件查询', N'infra:file:query', 3, 1, 1090, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-03-12 20:16:20', N'', N'2022-04-20 17:03:10', N'0') |
|
4076 |
GO |
|
4077 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1092, N'文件删除', N'infra:file:delete', 3, 4, 1090, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-03-12 20:16:20', N'', N'2022-04-20 17:03:10', N'0') |
|
4078 |
GO |
|
4079 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1093, N'短信管理', N'', 1, 1, 2739, N'sms', N'ep:message', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2021-04-05 01:10:16', N'1', N'2024-04-22 23:56:03', N'0') |
|
4080 |
GO |
|
4081 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1094, N'短信渠道', N'', 2, 0, 1093, N'sms-channel', N'fa:stack-exchange', N'system/sms/channel/index', N'SystemSmsChannel', 0, N'1', N'1', N'1', N'', N'2021-04-01 11:07:15', N'1', N'2024-02-29 01:15:54', N'0') |
|
4082 |
GO |
|
4083 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1095, N'短信渠道查询', N'system:sms-channel:query', 3, 1, 1094, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-04-01 11:07:15', N'', N'2022-04-20 17:03:10', N'0') |
|
4084 |
GO |
|
4085 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1096, N'短信渠道创建', N'system:sms-channel:create', 3, 2, 1094, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-04-01 11:07:15', N'', N'2022-04-20 17:03:10', N'0') |
|
4086 |
GO |
|
4087 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1097, N'短信渠道更新', N'system:sms-channel:update', 3, 3, 1094, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-04-01 11:07:15', N'', N'2022-04-20 17:03:10', N'0') |
|
4088 |
GO |
|
4089 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1098, N'短信渠道删除', N'system:sms-channel:delete', 3, 4, 1094, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-04-01 11:07:15', N'', N'2022-04-20 17:03:10', N'0') |
|
4090 |
GO |
|
4091 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1100, N'短信模板', N'', 2, 1, 1093, N'sms-template', N'ep:connection', N'system/sms/template/index', N'SystemSmsTemplate', 0, N'1', N'1', N'1', N'', N'2021-04-01 17:35:17', N'1', N'2024-02-29 01:16:18', N'0') |
|
4092 |
GO |
|
4093 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1101, N'短信模板查询', N'system:sms-template:query', 3, 1, 1100, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-04-01 17:35:17', N'', N'2022-04-20 17:03:10', N'0') |
|
4094 |
GO |
|
4095 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1102, N'短信模板创建', N'system:sms-template:create', 3, 2, 1100, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-04-01 17:35:17', N'', N'2022-04-20 17:03:10', N'0') |
|
4096 |
GO |
|
4097 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1103, N'短信模板更新', N'system:sms-template:update', 3, 3, 1100, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-04-01 17:35:17', N'', N'2022-04-20 17:03:10', N'0') |
|
4098 |
GO |
|
4099 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1104, N'短信模板删除', N'system:sms-template:delete', 3, 4, 1100, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-04-01 17:35:17', N'', N'2022-04-20 17:03:10', N'0') |
|
4100 |
GO |
|
4101 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1105, N'短信模板导出', N'system:sms-template:export', 3, 5, 1100, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-04-01 17:35:17', N'', N'2022-04-20 17:03:10', N'0') |
|
4102 |
GO |
|
4103 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1106, N'发送测试短信', N'system:sms-template:send-sms', 3, 6, 1100, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2021-04-11 00:26:40', N'1', N'2022-04-20 17:03:10', N'0') |
|
4104 |
GO |
|
4105 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1107, N'短信日志', N'', 2, 2, 1093, N'sms-log', N'fa:edit', N'system/sms/log/index', N'SystemSmsLog', 0, N'1', N'1', N'1', N'', N'2021-04-11 08:37:05', N'1', N'2024-02-29 08:49:02', N'0') |
|
4106 |
GO |
|
4107 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1108, N'短信日志查询', N'system:sms-log:query', 3, 1, 1107, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-04-11 08:37:05', N'', N'2022-04-20 17:03:10', N'0') |
|
4108 |
GO |
|
4109 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1109, N'短信日志导出', N'system:sms-log:export', 3, 5, 1107, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-04-11 08:37:05', N'', N'2022-04-20 17:03:10', N'0') |
|
4110 |
GO |
|
4111 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1117, N'支付管理', N'', 1, 30, 0, N'/pay', N'ep:money', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2021-12-25 16:43:41', N'1', N'2024-02-29 08:58:38', N'0') |
|
4112 |
GO |
|
4113 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1118, N'请假查询', N'', 2, 0, 5, N'leave', N'fa:leanpub', N'bpm/oa/leave/index', N'BpmOALeave', 0, N'1', N'1', N'1', N'', N'2021-09-20 08:51:03', N'1', N'2024-02-29 12:38:21', N'0') |
|
4114 |
GO |
|
4115 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1119, N'请假申请查询', N'bpm:oa-leave:query', 3, 1, 1118, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-09-20 08:51:03', N'1', N'2022-04-20 17:03:10', N'0') |
|
4116 |
GO |
|
4117 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1120, N'请假申请创建', N'bpm:oa-leave:create', 3, 2, 1118, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-09-20 08:51:03', N'1', N'2022-04-20 17:03:10', N'0') |
|
4118 |
GO |
|
4119 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1126, N'应用信息', N'', 2, 1, 1117, N'app', N'fa:apple', N'pay/app/index', N'PayApp', 0, N'1', N'1', N'1', N'', N'2021-11-10 01:13:30', N'1', N'2024-02-29 08:59:55', N'0') |
|
4120 |
GO |
|
4121 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1127, N'支付应用信息查询', N'pay:app:query', 3, 1, 1126, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-11-10 01:13:31', N'', N'2022-04-20 17:03:10', N'0') |
|
4122 |
GO |
|
4123 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1128, N'支付应用信息创建', N'pay:app:create', 3, 2, 1126, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-11-10 01:13:31', N'', N'2022-04-20 17:03:10', N'0') |
|
4124 |
GO |
|
4125 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1129, N'支付应用信息更新', N'pay:app:update', 3, 3, 1126, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-11-10 01:13:31', N'', N'2022-04-20 17:03:10', N'0') |
|
4126 |
GO |
|
4127 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1130, N'支付应用信息删除', N'pay:app:delete', 3, 4, 1126, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-11-10 01:13:31', N'', N'2022-04-20 17:03:10', N'0') |
|
4128 |
GO |
|
4129 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1132, N'秘钥解析', N'pay:channel:parsing', 3, 6, 1129, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2021-11-08 15:15:47', N'1', N'2022-04-20 17:03:10', N'0') |
|
4130 |
GO |
|
4131 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1133, N'支付商户信息查询', N'pay:merchant:query', 3, 1, 1132, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-11-10 01:13:41', N'', N'2022-04-20 17:03:10', N'0') |
|
4132 |
GO |
|
4133 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1134, N'支付商户信息创建', N'pay:merchant:create', 3, 2, 1132, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-11-10 01:13:41', N'', N'2022-04-20 17:03:10', N'0') |
|
4134 |
GO |
|
4135 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1135, N'支付商户信息更新', N'pay:merchant:update', 3, 3, 1132, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-11-10 01:13:41', N'', N'2022-04-20 17:03:10', N'0') |
|
4136 |
GO |
|
4137 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1136, N'支付商户信息删除', N'pay:merchant:delete', 3, 4, 1132, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-11-10 01:13:41', N'', N'2022-04-20 17:03:10', N'0') |
|
4138 |
GO |
|
4139 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1137, N'支付商户信息导出', N'pay:merchant:export', 3, 5, 1132, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-11-10 01:13:41', N'', N'2022-04-20 17:03:10', N'0') |
|
4140 |
GO |
|
4141 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1138, N'租户列表', N'', 2, 0, 1224, N'list', N'ep:house', N'system/tenant/index', N'SystemTenant', 0, N'1', N'1', N'1', N'', N'2021-12-14 12:31:43', N'1', N'2024-02-29 01:01:10', N'0') |
|
4142 |
GO |
|
4143 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1139, N'租户查询', N'system:tenant:query', 3, 1, 1138, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-14 12:31:44', N'', N'2022-04-20 17:03:10', N'0') |
|
4144 |
GO |
|
4145 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1140, N'租户创建', N'system:tenant:create', 3, 2, 1138, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-14 12:31:44', N'', N'2022-04-20 17:03:10', N'0') |
|
4146 |
GO |
|
4147 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1141, N'租户更新', N'system:tenant:update', 3, 3, 1138, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-14 12:31:44', N'', N'2022-04-20 17:03:10', N'0') |
|
4148 |
GO |
|
4149 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1142, N'租户删除', N'system:tenant:delete', 3, 4, 1138, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-14 12:31:44', N'', N'2022-04-20 17:03:10', N'0') |
|
4150 |
GO |
|
4151 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1143, N'租户导出', N'system:tenant:export', 3, 5, 1138, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-14 12:31:44', N'', N'2022-04-20 17:03:10', N'0') |
|
4152 |
GO |
|
4153 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1150, N'秘钥解析', N'', 3, 6, 1129, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2021-11-08 15:15:47', N'1', N'2022-04-20 17:03:10', N'0') |
|
4154 |
GO |
|
4155 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1161, N'退款订单', N'', 2, 3, 1117, N'refund', N'fa:registered', N'pay/refund/index', N'PayRefund', 0, N'1', N'1', N'1', N'', N'2021-12-25 08:29:07', N'1', N'2024-02-29 08:59:20', N'0') |
|
4156 |
GO |
|
4157 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1162, N'退款订单查询', N'pay:refund:query', 3, 1, 1161, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-25 08:29:07', N'', N'2022-04-20 17:03:10', N'0') |
|
4158 |
GO |
|
4159 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1163, N'退款订单创建', N'pay:refund:create', 3, 2, 1161, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-25 08:29:07', N'', N'2022-04-20 17:03:10', N'0') |
|
4160 |
GO |
|
4161 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1164, N'退款订单更新', N'pay:refund:update', 3, 3, 1161, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-25 08:29:07', N'', N'2022-04-20 17:03:10', N'0') |
|
4162 |
GO |
|
4163 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1165, N'退款订单删除', N'pay:refund:delete', 3, 4, 1161, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-25 08:29:07', N'', N'2022-04-20 17:03:10', N'0') |
|
4164 |
GO |
|
4165 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1166, N'退款订单导出', N'pay:refund:export', 3, 5, 1161, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-25 08:29:07', N'', N'2022-04-20 17:03:10', N'0') |
|
4166 |
GO |
|
4167 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1173, N'支付订单', N'', 2, 2, 1117, N'order', N'fa:cc-paypal', N'pay/order/index', N'PayOrder', 0, N'1', N'1', N'1', N'', N'2021-12-25 08:49:43', N'1', N'2024-02-29 08:59:43', N'0') |
|
4168 |
GO |
|
4169 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1174, N'支付订单查询', N'pay:order:query', 3, 1, 1173, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-25 08:49:43', N'', N'2022-04-20 17:03:10', N'0') |
|
4170 |
GO |
|
4171 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1175, N'支付订单创建', N'pay:order:create', 3, 2, 1173, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-25 08:49:43', N'', N'2022-04-20 17:03:10', N'0') |
|
4172 |
GO |
|
4173 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1176, N'支付订单更新', N'pay:order:update', 3, 3, 1173, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-25 08:49:43', N'', N'2022-04-20 17:03:10', N'0') |
|
4174 |
GO |
|
4175 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1177, N'支付订单删除', N'pay:order:delete', 3, 4, 1173, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-25 08:49:43', N'', N'2022-04-20 17:03:10', N'0') |
|
4176 |
GO |
|
4177 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1178, N'支付订单导出', N'pay:order:export', 3, 5, 1173, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-25 08:49:43', N'', N'2022-04-20 17:03:10', N'0') |
|
4178 |
GO |
|
4179 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1185, N'工作流程', N'', 1, 50, 0, N'/bpm', N'fa:medium', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2021-12-30 20:26:36', N'1', N'2024-02-29 12:43:43', N'0') |
|
4180 |
GO |
|
4181 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1186, N'流程管理', N'', 1, 10, 1185, N'manager', N'fa:dedent', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2021-12-30 20:28:30', N'1', N'2024-02-29 12:36:02', N'0') |
|
4182 |
GO |
|
4183 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1187, N'流程表单', N'', 2, 2, 1186, N'form', N'fa:hdd-o', N'bpm/form/index', N'BpmForm', 0, N'1', N'1', N'1', N'', N'2021-12-30 12:38:22', N'1', N'2024-03-19 12:25:25', N'0') |
|
4184 |
GO |
|
4185 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1188, N'表单查询', N'bpm:form:query', 3, 1, 1187, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-30 12:38:22', N'1', N'2022-04-20 17:03:10', N'0') |
|
4186 |
GO |
|
4187 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1189, N'表单创建', N'bpm:form:create', 3, 2, 1187, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-30 12:38:22', N'1', N'2022-04-20 17:03:10', N'0') |
|
4188 |
GO |
|
4189 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1190, N'表单更新', N'bpm:form:update', 3, 3, 1187, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-30 12:38:22', N'1', N'2022-04-20 17:03:10', N'0') |
|
4190 |
GO |
|
4191 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1191, N'表单删除', N'bpm:form:delete', 3, 4, 1187, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-30 12:38:22', N'1', N'2022-04-20 17:03:10', N'0') |
|
4192 |
GO |
|
4193 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1192, N'表单导出', N'bpm:form:export', 3, 5, 1187, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2021-12-30 12:38:22', N'1', N'2022-04-20 17:03:10', N'0') |
|
4194 |
GO |
|
4195 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1193, N'流程模型', N'', 2, 1, 1186, N'model', N'fa-solid:project-diagram', N'bpm/model/index', N'BpmModel', 0, N'1', N'1', N'1', N'1', N'2021-12-31 23:24:58', N'1', N'2024-03-19 12:25:19', N'0') |
|
4196 |
GO |
|
4197 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1194, N'模型查询', N'bpm:model:query', 3, 1, 1193, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2022-01-03 19:01:10', N'1', N'2022-04-20 17:03:10', N'0') |
|
4198 |
GO |
|
4199 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1195, N'模型创建', N'bpm:model:create', 3, 2, 1193, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2022-01-03 19:01:24', N'1', N'2022-04-20 17:03:10', N'0') |
|
4200 |
GO |
|
4201 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1196, N'模型导入', N'bpm:model:import', 3, 3, 1193, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2022-01-03 19:01:35', N'1', N'2022-04-20 17:03:10', N'0') |
|
4202 |
GO |
|
4203 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1197, N'模型更新', N'bpm:model:update', 3, 4, 1193, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2022-01-03 19:02:28', N'1', N'2022-04-20 17:03:10', N'0') |
|
4204 |
GO |
|
4205 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1198, N'模型删除', N'bpm:model:delete', 3, 5, 1193, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2022-01-03 19:02:43', N'1', N'2022-04-20 17:03:10', N'0') |
|
4206 |
GO |
|
4207 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1199, N'模型发布', N'bpm:model:deploy', 3, 6, 1193, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2022-01-03 19:03:24', N'1', N'2022-04-20 17:03:10', N'0') |
|
4208 |
GO |
|
4209 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1200, N'审批中心', N'', 2, 20, 1185, N'task', N'fa:tasks', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2022-01-07 23:51:48', N'1', N'2024-03-21 00:33:15', N'0') |
|
4210 |
GO |
|
4211 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1201, N'我的流程', N'', 2, 1, 1200, N'my', N'fa-solid:book', N'bpm/processInstance/index', N'BpmProcessInstanceMy', 0, N'1', N'1', N'1', N'', N'2022-01-07 15:53:44', N'1', N'2024-03-21 23:52:12', N'0') |
|
4212 |
GO |
|
4213 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1202, N'流程实例的查询', N'bpm:process-instance:query', 3, 1, 1201, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-01-07 15:53:44', N'1', N'2022-04-20 17:03:10', N'0') |
|
4214 |
GO |
|
4215 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1207, N'待办任务', N'', 2, 10, 1200, N'todo', N'fa:slack', N'bpm/task/todo/index', N'BpmTodoTask', 0, N'1', N'1', N'1', N'1', N'2022-01-08 10:33:37', N'1', N'2024-02-29 12:37:39', N'0') |
|
4216 |
GO |
|
4217 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1208, N'已办任务', N'', 2, 20, 1200, N'done', N'fa:delicious', N'bpm/task/done/index', N'BpmDoneTask', 0, N'1', N'1', N'1', N'1', N'2022-01-08 10:34:13', N'1', N'2024-02-29 12:37:54', N'0') |
|
4218 |
GO |
|
4219 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1209, N'用户分组', N'', 2, 4, 1186, N'user-group', N'fa:user-secret', N'bpm/group/index', N'BpmUserGroup', 0, N'1', N'1', N'1', N'', N'2022-01-14 02:14:20', N'1', N'2024-03-21 23:55:29', N'0') |
|
4220 |
GO |
|
4221 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1210, N'用户组查询', N'bpm:user-group:query', 3, 1, 1209, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-01-14 02:14:20', N'', N'2022-04-20 17:03:10', N'0') |
|
4222 |
GO |
|
4223 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1211, N'用户组创建', N'bpm:user-group:create', 3, 2, 1209, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-01-14 02:14:20', N'', N'2022-04-20 17:03:10', N'0') |
|
4224 |
GO |
|
4225 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1212, N'用户组更新', N'bpm:user-group:update', 3, 3, 1209, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-01-14 02:14:20', N'', N'2022-04-20 17:03:10', N'0') |
|
4226 |
GO |
|
4227 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1213, N'用户组删除', N'bpm:user-group:delete', 3, 4, 1209, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-01-14 02:14:20', N'', N'2022-04-20 17:03:10', N'0') |
|
4228 |
GO |
|
4229 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1215, N'流程定义查询', N'bpm:process-definition:query', 3, 10, 1193, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2022-01-23 00:21:43', N'1', N'2022-04-20 17:03:10', N'0') |
|
4230 |
GO |
|
4231 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1216, N'流程任务分配规则查询', N'bpm:task-assign-rule:query', 3, 20, 1193, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2022-01-23 00:26:53', N'1', N'2022-04-20 17:03:10', N'0') |
|
4232 |
GO |
|
4233 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1217, N'流程任务分配规则创建', N'bpm:task-assign-rule:create', 3, 21, 1193, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2022-01-23 00:28:15', N'1', N'2022-04-20 17:03:10', N'0') |
|
4234 |
GO |
|
4235 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1218, N'流程任务分配规则更新', N'bpm:task-assign-rule:update', 3, 22, 1193, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2022-01-23 00:28:41', N'1', N'2022-04-20 17:03:10', N'0') |
|
4236 |
GO |
|
4237 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1219, N'流程实例的创建', N'bpm:process-instance:create', 3, 2, 1201, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2022-01-23 00:36:15', N'1', N'2022-04-20 17:03:10', N'0') |
|
4238 |
GO |
|
4239 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1220, N'流程实例的取消', N'bpm:process-instance:cancel', 3, 3, 1201, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2022-01-23 00:36:33', N'1', N'2022-04-20 17:03:10', N'0') |
|
4240 |
GO |
|
4241 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1221, N'流程任务的查询', N'bpm:task:query', 3, 1, 1207, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2022-01-23 00:38:52', N'1', N'2022-04-20 17:03:10', N'0') |
|
4242 |
GO |
|
4243 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1222, N'流程任务的更新', N'bpm:task:update', 3, 2, 1207, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2022-01-23 00:39:24', N'1', N'2022-04-20 17:03:10', N'0') |
|
4244 |
GO |
|
4245 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1224, N'租户管理', N'', 2, 0, 1, N'tenant', N'fa-solid:house-user', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2022-02-20 01:41:13', N'1', N'2024-02-29 00:59:29', N'0') |
|
4246 |
GO |
|
4247 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1225, N'租户套餐', N'', 2, 0, 1224, N'package', N'fa:bars', N'system/tenantPackage/index', N'SystemTenantPackage', 0, N'1', N'1', N'1', N'', N'2022-02-19 17:44:06', N'1', N'2024-02-29 01:01:43', N'0') |
|
4248 |
GO |
|
4249 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1226, N'租户套餐查询', N'system:tenant-package:query', 3, 1, 1225, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-02-19 17:44:06', N'', N'2022-04-20 17:03:10', N'0') |
|
4250 |
GO |
|
4251 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1227, N'租户套餐创建', N'system:tenant-package:create', 3, 2, 1225, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-02-19 17:44:06', N'', N'2022-04-20 17:03:10', N'0') |
|
4252 |
GO |
|
4253 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1228, N'租户套餐更新', N'system:tenant-package:update', 3, 3, 1225, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-02-19 17:44:06', N'', N'2022-04-20 17:03:10', N'0') |
|
4254 |
GO |
|
4255 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1229, N'租户套餐删除', N'system:tenant-package:delete', 3, 4, 1225, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-02-19 17:44:06', N'', N'2022-04-20 17:03:10', N'0') |
|
4256 |
GO |
|
4257 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1237, N'文件配置', N'', 2, 0, 1243, N'file-config', N'fa-solid:file-signature', N'infra/fileConfig/index', N'InfraFileConfig', 0, N'1', N'1', N'1', N'', N'2022-03-15 14:35:28', N'1', N'2024-02-29 08:52:54', N'0') |
|
4258 |
GO |
|
4259 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1238, N'文件配置查询', N'infra:file-config:query', 3, 1, 1237, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-03-15 14:35:28', N'', N'2022-04-20 17:03:10', N'0') |
|
4260 |
GO |
|
4261 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1239, N'文件配置创建', N'infra:file-config:create', 3, 2, 1237, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-03-15 14:35:28', N'', N'2022-04-20 17:03:10', N'0') |
|
4262 |
GO |
|
4263 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1240, N'文件配置更新', N'infra:file-config:update', 3, 3, 1237, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-03-15 14:35:28', N'', N'2022-04-20 17:03:10', N'0') |
|
4264 |
GO |
|
4265 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1241, N'文件配置删除', N'infra:file-config:delete', 3, 4, 1237, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-03-15 14:35:28', N'', N'2022-04-20 17:03:10', N'0') |
|
4266 |
GO |
|
4267 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1242, N'文件配置导出', N'infra:file-config:export', 3, 5, 1237, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-03-15 14:35:28', N'', N'2022-04-20 17:03:10', N'0') |
|
4268 |
GO |
|
4269 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1243, N'文件管理', N'', 2, 6, 2, N'file', N'ep:files', NULL, N'', 0, N'1', N'1', N'1', N'1', N'2022-03-16 23:47:40', N'1', N'2024-04-23 00:02:11', N'0') |
|
4270 |
GO |
|
4271 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1254, N'作者动态', N'', 1, 0, 0, N'https://www.baidu.com', N'ep:avatar', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2022-04-23 01:03:15', N'1', N'2023-12-08 23:40:01', N'0') |
|
4272 |
GO |
|
4273 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1255, N'数据源配置', N'', 2, 1, 2, N'data-source-config', N'ep:data-analysis', N'infra/dataSourceConfig/index', N'InfraDataSourceConfig', 0, N'1', N'1', N'1', N'', N'2022-04-27 14:37:32', N'1', N'2024-02-29 08:51:25', N'0') |
|
4274 |
GO |
|
4275 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1256, N'数据源配置查询', N'infra:data-source-config:query', 3, 1, 1255, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-04-27 14:37:32', N'', N'2022-04-27 14:37:32', N'0') |
|
4276 |
GO |
|
4277 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1257, N'数据源配置创建', N'infra:data-source-config:create', 3, 2, 1255, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-04-27 14:37:32', N'', N'2022-04-27 14:37:32', N'0') |
|
4278 |
GO |
|
4279 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1258, N'数据源配置更新', N'infra:data-source-config:update', 3, 3, 1255, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-04-27 14:37:32', N'', N'2022-04-27 14:37:32', N'0') |
|
4280 |
GO |
|
4281 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1259, N'数据源配置删除', N'infra:data-source-config:delete', 3, 4, 1255, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-04-27 14:37:32', N'', N'2022-04-27 14:37:32', N'0') |
|
4282 |
GO |
|
4283 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1260, N'数据源配置导出', N'infra:data-source-config:export', 3, 5, 1255, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-04-27 14:37:32', N'', N'2022-04-27 14:37:32', N'0') |
|
4284 |
GO |
|
4285 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1261, N'OAuth 2.0', N'', 2, 10, 1, N'oauth2', N'fa:dashcube', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2022-05-09 23:38:17', N'1', N'2024-02-29 01:12:08', N'0') |
|
4286 |
GO |
|
4287 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1263, N'应用管理', N'', 2, 0, 1261, N'oauth2/application', N'fa:hdd-o', N'system/oauth2/client/index', N'SystemOAuth2Client', 0, N'1', N'1', N'1', N'', N'2022-05-10 16:26:33', N'1', N'2024-02-29 01:13:14', N'0') |
|
4288 |
GO |
|
4289 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1264, N'客户端查询', N'system:oauth2-client:query', 3, 1, 1263, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-05-10 16:26:33', N'1', N'2022-05-11 00:31:06', N'0') |
|
4290 |
GO |
|
4291 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1265, N'客户端创建', N'system:oauth2-client:create', 3, 2, 1263, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-05-10 16:26:33', N'1', N'2022-05-11 00:31:23', N'0') |
|
4292 |
GO |
|
4293 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1266, N'客户端更新', N'system:oauth2-client:update', 3, 3, 1263, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-05-10 16:26:33', N'1', N'2022-05-11 00:31:28', N'0') |
|
4294 |
GO |
|
4295 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1267, N'客户端删除', N'system:oauth2-client:delete', 3, 4, 1263, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-05-10 16:26:33', N'1', N'2022-05-11 00:31:33', N'0') |
|
4296 |
GO |
|
4297 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1281, N'报表管理', N'', 2, 40, 0, N'/report', N'ep:pie-chart', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2022-07-10 20:22:15', N'1', N'2024-02-29 12:33:03', N'0') |
|
4298 |
GO |
|
4299 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (1282, N'报表设计器', N'', 2, 1, 1281, N'jimu-report', N'ep:trend-charts', N'report/jmreport/index', N'GoView', 0, N'1', N'1', N'1', N'1', N'2022-07-10 20:26:36', N'1', N'2024-02-29 12:33:54', N'0') |
|
4300 |
GO |
|
4301 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2000, N'商品中心', N'', 1, 60, 2362, N'product', N'fa:product-hunt', NULL, NULL, 0, N'1', N'1', N'1', N'', N'2022-07-29 15:53:53', N'1', N'2023-09-30 11:52:36', N'0') |
|
4302 |
GO |
|
4303 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2002, N'商品分类', N'', 2, 2, 2000, N'category', N'ep:cellphone', N'mall/product/category/index', N'ProductCategory', 0, N'1', N'1', N'1', N'', N'2022-07-29 15:53:53', N'1', N'2023-08-21 10:27:15', N'0') |
|
4304 |
GO |
|
4305 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2003, N'分类查询', N'product:category:query', 3, 1, 2002, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-07-29 15:53:53', N'', N'2022-07-29 15:53:53', N'0') |
|
4306 |
GO |
|
4307 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2004, N'分类创建', N'product:category:create', 3, 2, 2002, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-07-29 15:53:53', N'', N'2022-07-29 15:53:53', N'0') |
|
4308 |
GO |
|
4309 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2005, N'分类更新', N'product:category:update', 3, 3, 2002, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-07-29 15:53:53', N'', N'2022-07-29 15:53:53', N'0') |
|
4310 |
GO |
|
4311 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2006, N'分类删除', N'product:category:delete', 3, 4, 2002, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-07-29 15:53:53', N'', N'2022-07-29 15:53:53', N'0') |
|
4312 |
GO |
|
4313 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2008, N'商品品牌', N'', 2, 3, 2000, N'brand', N'ep:chicken', N'mall/product/brand/index', N'ProductBrand', 0, N'1', N'1', N'1', N'', N'2022-07-30 13:52:44', N'1', N'2023-08-21 10:27:28', N'0') |
|
4314 |
GO |
|
4315 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2009, N'品牌查询', N'product:brand:query', 3, 1, 2008, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-07-30 13:52:44', N'', N'2022-07-30 13:52:44', N'0') |
|
4316 |
GO |
|
4317 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2010, N'品牌创建', N'product:brand:create', 3, 2, 2008, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-07-30 13:52:44', N'', N'2022-07-30 13:52:44', N'0') |
|
4318 |
GO |
|
4319 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2011, N'品牌更新', N'product:brand:update', 3, 3, 2008, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-07-30 13:52:44', N'', N'2022-07-30 13:52:44', N'0') |
|
4320 |
GO |
|
4321 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2012, N'品牌删除', N'product:brand:delete', 3, 4, 2008, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-07-30 13:52:44', N'', N'2022-07-30 13:52:44', N'0') |
|
4322 |
GO |
|
4323 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2014, N'商品列表', N'', 2, 1, 2000, N'spu', N'ep:apple', N'mall/product/spu/index', N'ProductSpu', 0, N'1', N'1', N'1', N'', N'2022-07-30 14:22:58', N'1', N'2023-08-21 10:27:01', N'0') |
|
4324 |
GO |
|
4325 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2015, N'商品查询', N'product:spu:query', 3, 1, 2014, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-07-30 14:22:58', N'', N'2022-07-30 14:22:58', N'0') |
|
4326 |
GO |
|
4327 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2016, N'商品创建', N'product:spu:create', 3, 2, 2014, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-07-30 14:22:58', N'', N'2022-07-30 14:22:58', N'0') |
|
4328 |
GO |
|
4329 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2017, N'商品更新', N'product:spu:update', 3, 3, 2014, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-07-30 14:22:58', N'', N'2022-07-30 14:22:58', N'0') |
|
4330 |
GO |
|
4331 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2018, N'商品删除', N'product:spu:delete', 3, 4, 2014, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-07-30 14:22:58', N'', N'2022-07-30 14:22:58', N'0') |
|
4332 |
GO |
|
4333 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2019, N'商品属性', N'', 2, 4, 2000, N'property', N'ep:cold-drink', N'mall/product/property/index', N'ProductProperty', 0, N'1', N'1', N'1', N'', N'2022-08-01 14:55:35', N'1', N'2023-08-26 11:01:05', N'0') |
|
4334 |
GO |
|
4335 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2020, N'规格查询', N'product:property:query', 3, 1, 2019, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-08-01 14:55:35', N'', N'2022-12-12 20:26:24', N'0') |
|
4336 |
GO |
|
4337 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2021, N'规格创建', N'product:property:create', 3, 2, 2019, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-08-01 14:55:35', N'', N'2022-12-12 20:26:30', N'0') |
|
4338 |
GO |
|
4339 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2022, N'规格更新', N'product:property:update', 3, 3, 2019, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-08-01 14:55:35', N'', N'2022-12-12 20:26:33', N'0') |
|
4340 |
GO |
|
4341 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2023, N'规格删除', N'product:property:delete', 3, 4, 2019, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-08-01 14:55:35', N'', N'2022-12-12 20:26:37', N'0') |
|
4342 |
GO |
|
4343 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2025, N'Banner', N'', 2, 100, 2387, N'banner', N'fa:bandcamp', N'mall/promotion/banner/index', NULL, 0, N'1', N'1', N'1', N'', N'2022-08-01 14:56:14', N'1', N'2023-10-24 20:20:06', N'0') |
|
4344 |
GO |
|
4345 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2026, N'Banner查询', N'promotion:banner:query', 3, 1, 2025, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2022-08-01 14:56:14', N'1', N'2023-10-24 20:20:18', N'0') |
|
4346 |
GO |
|
4347 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2027, N'Banner创建', N'promotion:banner:create', 3, 2, 2025, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2022-08-01 14:56:14', N'1', N'2023-10-24 20:20:23', N'0') |
|
4348 |
GO |
|
4349 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2028, N'Banner更新', N'promotion:banner:update', 3, 3, 2025, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2022-08-01 14:56:14', N'1', N'2023-10-24 20:20:28', N'0') |
|
4350 |
GO |
|
4351 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2029, N'Banner删除', N'promotion:banner:delete', 3, 4, 2025, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2022-08-01 14:56:14', N'1', N'2023-10-24 20:20:36', N'0') |
|
4352 |
GO |
|
4353 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2030, N'营销中心', N'', 1, 70, 2362, N'promotion', N'ep:present', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2022-10-31 21:25:09', N'1', N'2023-09-30 11:54:27', N'0') |
|
4354 |
GO |
|
4355 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2032, N'优惠劵列表', N'', 2, 1, 2365, N'template', N'ep:discount', N'mall/promotion/coupon/template/index', N'PromotionCouponTemplate', 0, N'1', N'1', N'1', N'', N'2022-10-31 22:27:14', N'1', N'2023-10-03 12:40:06', N'0') |
|
4356 |
GO |
|
4357 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2033, N'优惠劵模板查询', N'promotion:coupon-template:query', 3, 1, 2032, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-10-31 22:27:14', N'', N'2022-10-31 22:27:14', N'0') |
|
4358 |
GO |
|
4359 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2034, N'优惠劵模板创建', N'promotion:coupon-template:create', 3, 2, 2032, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-10-31 22:27:14', N'', N'2022-10-31 22:27:14', N'0') |
|
4360 |
GO |
|
4361 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2035, N'优惠劵模板更新', N'promotion:coupon-template:update', 3, 3, 2032, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-10-31 22:27:14', N'', N'2022-10-31 22:27:14', N'0') |
|
4362 |
GO |
|
4363 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2036, N'优惠劵模板删除', N'promotion:coupon-template:delete', 3, 4, 2032, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-10-31 22:27:14', N'', N'2022-10-31 22:27:14', N'0') |
|
4364 |
GO |
|
4365 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2038, N'领取记录', N'', 2, 2, 2365, N'list', N'ep:collection-tag', N'mall/promotion/coupon/index', N'PromotionCoupon', 0, N'1', N'1', N'1', N'', N'2022-11-03 23:21:31', N'1', N'2023-10-03 12:55:30', N'0') |
|
4366 |
GO |
|
4367 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2039, N'优惠劵查询', N'promotion:coupon:query', 3, 1, 2038, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-11-03 23:21:31', N'', N'2022-11-03 23:21:31', N'0') |
|
4368 |
GO |
|
4369 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2040, N'优惠劵删除', N'promotion:coupon:delete', 3, 4, 2038, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-11-03 23:21:31', N'', N'2022-11-03 23:21:31', N'0') |
|
4370 |
GO |
|
4371 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2041, N'满减送', N'', 2, 10, 2390, N'reward-activity', N'ep:goblet-square-full', N'mall/promotion/rewardActivity/index', N'PromotionRewardActivity', 0, N'1', N'1', N'1', N'', N'2022-11-04 23:47:49', N'1', N'2023-10-21 19:24:46', N'0') |
|
4372 |
GO |
|
4373 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2042, N'满减送活动查询', N'promotion:reward-activity:query', 3, 1, 2041, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-11-04 23:47:49', N'', N'2022-11-04 23:47:49', N'0') |
|
4374 |
GO |
|
4375 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2043, N'满减送活动创建', N'promotion:reward-activity:create', 3, 2, 2041, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-11-04 23:47:49', N'', N'2022-11-04 23:47:49', N'0') |
|
4376 |
GO |
|
4377 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2044, N'满减送活动更新', N'promotion:reward-activity:update', 3, 3, 2041, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-11-04 23:47:50', N'', N'2022-11-04 23:47:50', N'0') |
|
4378 |
GO |
|
4379 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2045, N'满减送活动删除', N'promotion:reward-activity:delete', 3, 4, 2041, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-11-04 23:47:50', N'', N'2022-11-04 23:47:50', N'0') |
|
4380 |
GO |
|
4381 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2046, N'满减送活动关闭', N'promotion:reward-activity:close', 3, 5, 2041, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2022-11-05 10:42:53', N'1', N'2022-11-05 10:42:53', N'0') |
|
4382 |
GO |
|
4383 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2047, N'限时折扣', N'', 2, 7, 2390, N'discount-activity', N'ep:timer', N'mall/promotion/discountActivity/index', N'PromotionDiscountActivity', 0, N'1', N'1', N'1', N'', N'2022-11-05 17:12:15', N'1', N'2023-10-21 19:24:21', N'0') |
|
4384 |
GO |
|
4385 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2048, N'限时折扣活动查询', N'promotion:discount-activity:query', 3, 1, 2047, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-11-05 17:12:15', N'', N'2022-11-05 17:12:15', N'0') |
|
4386 |
GO |
|
4387 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2049, N'限时折扣活动创建', N'promotion:discount-activity:create', 3, 2, 2047, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-11-05 17:12:15', N'', N'2022-11-05 17:12:15', N'0') |
|
4388 |
GO |
|
4389 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2050, N'限时折扣活动更新', N'promotion:discount-activity:update', 3, 3, 2047, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-11-05 17:12:16', N'', N'2022-11-05 17:12:16', N'0') |
|
4390 |
GO |
|
4391 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2051, N'限时折扣活动删除', N'promotion:discount-activity:delete', 3, 4, 2047, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-11-05 17:12:16', N'', N'2022-11-05 17:12:16', N'0') |
|
4392 |
GO |
|
4393 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2052, N'限时折扣活动关闭', N'promotion:discount-activity:close', 3, 5, 2047, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-11-05 17:12:16', N'', N'2022-11-05 17:12:16', N'0') |
|
4394 |
GO |
|
4395 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2059, N'秒杀商品', N'', 2, 2, 2209, N'activity', N'ep:basketball', N'mall/promotion/seckill/activity/index', N'PromotionSeckillActivity', 0, N'1', N'1', N'1', N'', N'2022-11-06 22:24:49', N'1', N'2023-06-24 18:57:25', N'0') |
|
4396 |
GO |
|
4397 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2060, N'秒杀活动查询', N'promotion:seckill-activity:query', 3, 1, 2059, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-11-06 22:24:49', N'', N'2022-11-06 22:24:49', N'0') |
|
4398 |
GO |
|
4399 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2061, N'秒杀活动创建', N'promotion:seckill-activity:create', 3, 2, 2059, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-11-06 22:24:49', N'', N'2022-11-06 22:24:49', N'0') |
|
4400 |
GO |
|
4401 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2062, N'秒杀活动更新', N'promotion:seckill-activity:update', 3, 3, 2059, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-11-06 22:24:49', N'', N'2022-11-06 22:24:49', N'0') |
|
4402 |
GO |
|
4403 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2063, N'秒杀活动删除', N'promotion:seckill-activity:delete', 3, 4, 2059, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-11-06 22:24:49', N'', N'2022-11-06 22:24:49', N'0') |
|
4404 |
GO |
|
4405 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2066, N'秒杀时段', N'', 2, 1, 2209, N'config', N'ep:baseball', N'mall/promotion/seckill/config/index', N'PromotionSeckillConfig', 0, N'1', N'1', N'1', N'', N'2022-11-15 19:46:50', N'1', N'2023-06-24 18:57:14', N'0') |
|
4406 |
GO |
|
4407 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2067, N'秒杀时段查询', N'promotion:seckill-config:query', 3, 1, 2066, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2022-11-15 19:46:51', N'1', N'2023-06-24 17:50:25', N'0') |
|
4408 |
GO |
|
4409 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2068, N'秒杀时段创建', N'promotion:seckill-config:create', 3, 2, 2066, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2022-11-15 19:46:51', N'1', N'2023-06-24 17:48:39', N'0') |
|
4410 |
GO |
|
4411 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2069, N'秒杀时段更新', N'promotion:seckill-config:update', 3, 3, 2066, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2022-11-15 19:46:51', N'1', N'2023-06-24 17:50:29', N'0') |
|
4412 |
GO |
|
4413 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2070, N'秒杀时段删除', N'promotion:seckill-config:delete', 3, 4, 2066, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2022-11-15 19:46:51', N'1', N'2023-06-24 17:50:32', N'0') |
|
4414 |
GO |
|
4415 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2072, N'订单中心', N'', 1, 65, 2362, N'trade', N'ep:eleme', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2022-11-19 18:57:19', N'1', N'2023-09-30 11:54:07', N'0') |
|
4416 |
GO |
|
4417 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2073, N'售后退款', N'', 2, 2, 2072, N'after-sale', N'ep:refrigerator', N'mall/trade/afterSale/index', N'TradeAfterSale', 0, N'1', N'1', N'1', N'', N'2022-11-19 20:15:32', N'1', N'2023-10-01 21:42:21', N'0') |
|
4418 |
GO |
|
4419 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2074, N'售后查询', N'trade:after-sale:query', 3, 1, 2073, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-11-19 20:15:33', N'1', N'2022-12-10 21:04:29', N'0') |
|
4420 |
GO |
|
4421 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2075, N'秒杀活动关闭', N'promotion:seckill-activity:close', 3, 5, 2059, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2022-11-28 20:20:15', N'1', N'2023-10-03 18:34:28', N'0') |
|
4422 |
GO |
|
4423 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2076, N'订单列表', N'', 2, 1, 2072, N'order', N'ep:list', N'mall/trade/order/index', N'TradeOrder', 0, N'1', N'1', N'1', N'1', N'2022-12-10 21:05:44', N'1', N'2023-10-01 21:42:08', N'0') |
|
4424 |
GO |
|
4425 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2083, N'地区管理', N'', 2, 14, 1, N'area', N'fa:map-marker', N'system/area/index', N'SystemArea', 0, N'1', N'1', N'1', N'1', N'2022-12-23 17:35:05', N'1', N'2024-02-29 08:50:28', N'0') |
|
4426 |
GO |
|
4427 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2084, N'公众号管理', N'', 1, 100, 0, N'/mp', N'ep:compass', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-01 20:11:04', N'1', N'2024-02-29 12:39:30', N'0') |
|
4428 |
GO |
|
4429 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2085, N'账号管理', N'', 2, 1, 2084, N'account', N'fa:user', N'mp/account/index', N'MpAccount', 0, N'1', N'1', N'1', N'1', N'2023-01-01 20:13:31', N'1', N'2024-02-29 12:42:10', N'0') |
|
4430 |
GO |
|
4431 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2086, N'新增账号', N'mp:account:create', 3, 1, 2085, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-01 20:21:40', N'1', N'2023-01-07 17:32:53', N'0') |
|
4432 |
GO |
|
4433 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2087, N'修改账号', N'mp:account:update', 3, 2, 2085, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-07 17:32:46', N'1', N'2023-01-07 17:32:46', N'0') |
|
4434 |
GO |
|
4435 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2088, N'查询账号', N'mp:account:query', 3, 0, 2085, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-07 17:33:07', N'1', N'2023-01-07 17:33:07', N'0') |
|
4436 |
GO |
|
4437 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2089, N'删除账号', N'mp:account:delete', 3, 3, 2085, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-07 17:33:21', N'1', N'2023-01-07 17:33:21', N'0') |
|
4438 |
GO |
|
4439 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2090, N'生成二维码', N'mp:account:qr-code', 3, 4, 2085, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-07 17:33:58', N'1', N'2023-01-07 17:33:58', N'0') |
|
4440 |
GO |
|
4441 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2091, N'清空 API 配额', N'mp:account:clear-quota', 3, 5, 2085, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-07 18:20:32', N'1', N'2023-01-07 18:20:59', N'0') |
|
4442 |
GO |
|
4443 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2092, N'数据统计', N'mp:statistics:query', 2, 2, 2084, N'statistics', N'ep:trend-charts', N'mp/statistics/index', N'MpStatistics', 0, N'1', N'1', N'1', N'1', N'2023-01-07 20:17:36', N'1', N'2024-02-29 12:42:21', N'0') |
|
4444 |
GO |
|
4445 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2093, N'标签管理', N'', 2, 3, 2084, N'tag', N'ep:collection-tag', N'mp/tag/index', N'MpTag', 0, N'1', N'1', N'1', N'1', N'2023-01-08 11:37:32', N'1', N'2024-02-29 12:42:29', N'0') |
|
4446 |
GO |
|
4447 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2094, N'查询标签', N'mp:tag:query', 3, 0, 2093, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-08 11:59:03', N'1', N'2023-01-08 11:59:03', N'0') |
|
4448 |
GO |
|
4449 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2095, N'新增标签', N'mp:tag:create', 3, 1, 2093, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-08 11:59:23', N'1', N'2023-01-08 11:59:23', N'0') |
|
4450 |
GO |
|
4451 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2096, N'修改标签', N'mp:tag:update', 3, 2, 2093, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-08 11:59:41', N'1', N'2023-01-08 11:59:41', N'0') |
|
4452 |
GO |
|
4453 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2097, N'删除标签', N'mp:tag:delete', 3, 3, 2093, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-08 12:00:04', N'1', N'2023-01-08 12:00:13', N'0') |
|
4454 |
GO |
|
4455 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2098, N'同步标签', N'mp:tag:sync', 3, 4, 2093, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-08 12:00:29', N'1', N'2023-01-08 12:00:29', N'0') |
|
4456 |
GO |
|
4457 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2099, N'粉丝管理', N'', 2, 4, 2084, N'user', N'fa:user-secret', N'mp/user/index', N'MpUser', 0, N'1', N'1', N'1', N'1', N'2023-01-08 16:51:20', N'1', N'2024-02-29 12:42:39', N'0') |
|
4458 |
GO |
|
4459 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2100, N'查询粉丝', N'mp:user:query', 3, 0, 2099, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-08 17:16:59', N'1', N'2023-01-08 17:17:23', N'0') |
|
4460 |
GO |
|
4461 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2101, N'修改粉丝', N'mp:user:update', 3, 1, 2099, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-08 17:17:11', N'1', N'2023-01-08 17:17:11', N'0') |
|
4462 |
GO |
|
4463 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2102, N'同步粉丝', N'mp:user:sync', 3, 2, 2099, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-08 17:17:40', N'1', N'2023-01-08 17:17:40', N'0') |
|
4464 |
GO |
|
4465 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2103, N'消息管理', N'', 2, 5, 2084, N'message', N'ep:message', N'mp/message/index', N'MpMessage', 0, N'1', N'1', N'1', N'1', N'2023-01-08 18:44:19', N'1', N'2024-02-29 12:42:50', N'0') |
|
4466 |
GO |
|
4467 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2104, N'图文发表记录', N'', 2, 10, 2084, N'free-publish', N'ep:edit-pen', N'mp/freePublish/index', N'MpFreePublish', 0, N'1', N'1', N'1', N'1', N'2023-01-13 00:30:50', N'1', N'2024-02-29 12:43:31', N'0') |
|
4468 |
GO |
|
4469 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2105, N'查询发布列表', N'mp:free-publish:query', 3, 1, 2104, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-13 07:19:17', N'1', N'2023-01-13 07:19:17', N'0') |
|
4470 |
GO |
|
4471 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2106, N'发布草稿', N'mp:free-publish:submit', 3, 2, 2104, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-13 07:19:46', N'1', N'2023-01-13 07:19:46', N'0') |
|
4472 |
GO |
|
4473 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2107, N'删除发布记录', N'mp:free-publish:delete', 3, 3, 2104, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-13 07:20:01', N'1', N'2023-01-13 07:20:01', N'0') |
|
4474 |
GO |
|
4475 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2108, N'图文草稿箱', N'', 2, 9, 2084, N'draft', N'ep:edit', N'mp/draft/index', N'MpDraft', 0, N'1', N'1', N'1', N'1', N'2023-01-13 07:40:21', N'1', N'2024-02-29 12:43:26', N'0') |
|
4476 |
GO |
|
4477 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2109, N'新建草稿', N'mp:draft:create', 3, 1, 2108, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-13 23:15:30', N'1', N'2023-01-13 23:15:44', N'0') |
|
4478 |
GO |
|
4479 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2110, N'修改草稿', N'mp:draft:update', 3, 2, 2108, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-14 10:08:47', N'1', N'2023-01-14 10:08:47', N'0') |
|
4480 |
GO |
|
4481 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2111, N'查询草稿', N'mp:draft:query', 3, 0, 2108, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-14 10:09:01', N'1', N'2023-01-14 10:09:01', N'0') |
|
4482 |
GO |
|
4483 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2112, N'删除草稿', N'mp:draft:delete', 3, 3, 2108, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-14 10:09:19', N'1', N'2023-01-14 10:09:19', N'0') |
|
4484 |
GO |
|
4485 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2113, N'素材管理', N'', 2, 8, 2084, N'material', N'ep:basketball', N'mp/material/index', N'MpMaterial', 0, N'1', N'1', N'1', N'1', N'2023-01-14 14:12:07', N'1', N'2024-02-29 12:43:18', N'0') |
|
4486 |
GO |
|
4487 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2114, N'上传临时素材', N'mp:material:upload-temporary', 3, 1, 2113, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-14 15:33:55', N'1', N'2023-01-14 15:33:55', N'0') |
|
4488 |
GO |
|
4489 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2115, N'上传永久素材', N'mp:material:upload-permanent', 3, 2, 2113, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-14 15:34:14', N'1', N'2023-01-14 15:34:14', N'0') |
|
4490 |
GO |
|
4491 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2116, N'删除素材', N'mp:material:delete', 3, 3, 2113, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-14 15:35:37', N'1', N'2023-01-14 15:35:37', N'0') |
|
4492 |
GO |
|
4493 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2117, N'上传图文图片', N'mp:material:upload-news-image', 3, 4, 2113, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-14 15:36:31', N'1', N'2023-01-14 15:36:31', N'0') |
|
4494 |
GO |
|
4495 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2118, N'查询素材', N'mp:material:query', 3, 5, 2113, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-14 15:39:22', N'1', N'2023-01-14 15:39:22', N'0') |
|
4496 |
GO |
|
4497 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2119, N'菜单管理', N'', 2, 6, 2084, N'menu', N'ep:menu', N'mp/menu/index', N'MpMenu', 0, N'1', N'1', N'1', N'1', N'2023-01-14 17:43:54', N'1', N'2024-02-29 12:42:56', N'0') |
|
4498 |
GO |
|
4499 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2120, N'自动回复', N'', 2, 7, 2084, N'auto-reply', N'fa-solid:republican', N'mp/autoReply/index', N'MpAutoReply', 0, N'1', N'1', N'1', N'1', N'2023-01-15 22:13:09', N'1', N'2024-02-29 12:43:10', N'0') |
|
4500 |
GO |
|
4501 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2121, N'查询回复', N'mp:auto-reply:query', 3, 0, 2120, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-16 22:28:41', N'1', N'2023-01-16 22:28:41', N'0') |
|
4502 |
GO |
|
4503 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2122, N'新增回复', N'mp:auto-reply:create', 3, 1, 2120, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-16 22:28:54', N'1', N'2023-01-16 22:28:54', N'0') |
|
4504 |
GO |
|
4505 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2123, N'修改回复', N'mp:auto-reply:update', 3, 2, 2120, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-16 22:29:05', N'1', N'2023-01-16 22:29:05', N'0') |
|
4506 |
GO |
|
4507 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2124, N'删除回复', N'mp:auto-reply:delete', 3, 3, 2120, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-16 22:29:34', N'1', N'2023-01-16 22:29:34', N'0') |
|
4508 |
GO |
|
4509 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2125, N'查询菜单', N'mp:menu:query', 3, 0, 2119, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-17 23:05:41', N'1', N'2023-01-17 23:05:41', N'0') |
|
4510 |
GO |
|
4511 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2126, N'保存菜单', N'mp:menu:save', 3, 1, 2119, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-17 23:06:01', N'1', N'2023-01-17 23:06:01', N'0') |
|
4512 |
GO |
|
4513 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2127, N'删除菜单', N'mp:menu:delete', 3, 2, 2119, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-17 23:06:16', N'1', N'2023-01-17 23:06:16', N'0') |
|
4514 |
GO |
|
4515 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2128, N'查询消息', N'mp:message:query', 3, 0, 2103, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-17 23:07:14', N'1', N'2023-01-17 23:07:14', N'0') |
|
4516 |
GO |
|
4517 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2129, N'发送消息', N'mp:message:send', 3, 1, 2103, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-17 23:07:26', N'1', N'2023-01-17 23:07:26', N'0') |
|
4518 |
GO |
|
4519 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2130, N'邮箱管理', N'', 2, 2, 2739, N'mail', N'fa-solid:mail-bulk', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-25 17:27:44', N'1', N'2024-04-22 23:56:08', N'0') |
|
4520 |
GO |
|
4521 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2131, N'邮箱账号', N'', 2, 0, 2130, N'mail-account', N'fa:universal-access', N'system/mail/account/index', N'SystemMailAccount', 0, N'1', N'1', N'1', N'', N'2023-01-25 09:33:48', N'1', N'2024-02-29 08:48:16', N'0') |
|
4522 |
GO |
|
4523 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2132, N'账号查询', N'system:mail-account:query', 3, 1, 2131, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-01-25 09:33:48', N'', N'2023-01-25 09:33:48', N'0') |
|
4524 |
GO |
|
4525 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2133, N'账号创建', N'system:mail-account:create', 3, 2, 2131, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-01-25 09:33:48', N'', N'2023-01-25 09:33:48', N'0') |
|
4526 |
GO |
|
4527 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2134, N'账号更新', N'system:mail-account:update', 3, 3, 2131, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-01-25 09:33:48', N'', N'2023-01-25 09:33:48', N'0') |
|
4528 |
GO |
|
4529 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2135, N'账号删除', N'system:mail-account:delete', 3, 4, 2131, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-01-25 09:33:48', N'', N'2023-01-25 09:33:48', N'0') |
|
4530 |
GO |
|
4531 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2136, N'邮件模版', N'', 2, 0, 2130, N'mail-template', N'fa:tag', N'system/mail/template/index', N'SystemMailTemplate', 0, N'1', N'1', N'1', N'', N'2023-01-25 12:05:31', N'1', N'2024-02-29 08:48:41', N'0') |
|
4532 |
GO |
|
4533 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2137, N'模版查询', N'system:mail-template:query', 3, 1, 2136, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-01-25 12:05:31', N'', N'2023-01-25 12:05:31', N'0') |
|
4534 |
GO |
|
4535 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2138, N'模版创建', N'system:mail-template:create', 3, 2, 2136, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-01-25 12:05:31', N'', N'2023-01-25 12:05:31', N'0') |
|
4536 |
GO |
|
4537 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2139, N'模版更新', N'system:mail-template:update', 3, 3, 2136, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-01-25 12:05:31', N'', N'2023-01-25 12:05:31', N'0') |
|
4538 |
GO |
|
4539 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2140, N'模版删除', N'system:mail-template:delete', 3, 4, 2136, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-01-25 12:05:31', N'', N'2023-01-25 12:05:31', N'0') |
|
4540 |
GO |
|
4541 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2141, N'邮件记录', N'', 2, 0, 2130, N'mail-log', N'fa:edit', N'system/mail/log/index', N'SystemMailLog', 0, N'1', N'1', N'1', N'', N'2023-01-26 02:16:50', N'1', N'2024-02-29 08:48:51', N'0') |
|
4542 |
GO |
|
4543 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2142, N'日志查询', N'system:mail-log:query', 3, 1, 2141, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-01-26 02:16:50', N'', N'2023-01-26 02:16:50', N'0') |
|
4544 |
GO |
|
4545 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2143, N'发送测试邮件', N'system:mail-template:send-mail', 3, 5, 2136, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-26 23:29:15', N'1', N'2023-01-26 23:29:15', N'0') |
|
4546 |
GO |
|
4547 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2144, N'站内信管理', N'', 1, 3, 2739, N'notify', N'ep:message-box', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-28 10:25:18', N'1', N'2024-04-22 23:56:12', N'0') |
|
4548 |
GO |
|
4549 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2145, N'模板管理', N'', 2, 0, 2144, N'notify-template', N'fa:archive', N'system/notify/template/index', N'SystemNotifyTemplate', 0, N'1', N'1', N'1', N'', N'2023-01-28 02:26:42', N'1', N'2024-02-29 08:49:14', N'0') |
|
4550 |
GO |
|
4551 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2146, N'站内信模板查询', N'system:notify-template:query', 3, 1, 2145, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-01-28 02:26:42', N'', N'2023-01-28 02:26:42', N'0') |
|
4552 |
GO |
|
4553 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2147, N'站内信模板创建', N'system:notify-template:create', 3, 2, 2145, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-01-28 02:26:42', N'', N'2023-01-28 02:26:42', N'0') |
|
4554 |
GO |
|
4555 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2148, N'站内信模板更新', N'system:notify-template:update', 3, 3, 2145, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-01-28 02:26:42', N'', N'2023-01-28 02:26:42', N'0') |
|
4556 |
GO |
|
4557 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2149, N'站内信模板删除', N'system:notify-template:delete', 3, 4, 2145, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-01-28 02:26:42', N'', N'2023-01-28 02:26:42', N'0') |
|
4558 |
GO |
|
4559 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2150, N'发送测试站内信', N'system:notify-template:send-notify', 3, 5, 2145, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-01-28 10:54:43', N'1', N'2023-01-28 10:54:43', N'0') |
|
4560 |
GO |
|
4561 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2151, N'消息记录', N'', 2, 0, 2144, N'notify-message', N'fa:edit', N'system/notify/message/index', N'SystemNotifyMessage', 0, N'1', N'1', N'1', N'', N'2023-01-28 04:28:22', N'1', N'2024-02-29 08:49:22', N'0') |
|
4562 |
GO |
|
4563 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2152, N'站内信消息查询', N'system:notify-message:query', 3, 1, 2151, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-01-28 04:28:22', N'', N'2023-01-28 04:28:22', N'0') |
|
4564 |
GO |
|
4565 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2153, N'大屏设计器', N'', 2, 2, 1281, N'go-view', N'fa:area-chart', N'report/goview/index', N'JimuReport', 0, N'1', N'1', N'1', N'1', N'2023-02-07 00:03:19', N'1', N'2024-02-29 12:34:02', N'0') |
|
4566 |
GO |
|
4567 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2154, N'创建项目', N'report:go-view-project:create', 3, 1, 2153, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-02-07 19:25:14', N'1', N'2023-02-07 19:25:14', N'0') |
|
4568 |
GO |
|
4569 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2155, N'更新项目', N'report:go-view-project:update', 3, 2, 2153, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-02-07 19:25:34', N'1', N'2024-04-24 20:01:18', N'0') |
|
4570 |
GO |
|
4571 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2156, N'查询项目', N'report:go-view-project:query', 3, 0, 2153, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-02-07 19:25:53', N'1', N'2023-02-07 19:25:53', N'0') |
|
4572 |
GO |
|
4573 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2157, N'使用 SQL 查询数据', N'report:go-view-data:get-by-sql', 3, 3, 2153, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-02-07 19:26:15', N'1', N'2023-02-07 19:26:15', N'0') |
|
4574 |
GO |
|
4575 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2158, N'使用 HTTP 查询数据', N'report:go-view-data:get-by-http', 3, 4, 2153, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'1', N'2023-02-07 19:26:35', N'1', N'2023-02-07 19:26:35', N'0') |
|
4576 |
GO |
|
4577 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2159, N'Boot 开发文档', N'', 1, 1, 0, N'https://doc.iocoder.cn/', N'ep:document', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2023-02-10 22:46:28', N'1', N'2023-12-02 21:32:20', N'0') |
|
4578 |
GO |
|
4579 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2160, N'Cloud 开发文档', N'', 1, 2, 0, N'https://cloud.iocoder.cn', N'ep:document-copy', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2023-02-10 22:47:07', N'1', N'2023-12-02 21:32:29', N'0') |
|
4580 |
GO |
|
4581 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2161, N'接入示例', N'', 1, 99, 1117, N'demo', N'fa-solid:dragon', N'pay/demo/index', NULL, 0, N'1', N'1', N'1', N'', N'2023-02-11 14:21:42', N'1', N'2024-01-18 23:50:00', N'0') |
|
4582 |
GO |
|
4583 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2162, N'商品导出', N'product:spu:export', 3, 5, 2014, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2022-07-30 14:22:58', N'', N'2022-07-30 14:22:58', N'0') |
|
4584 |
GO |
|
4585 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2164, N'配送管理', N'', 1, 3, 2072, N'delivery', N'ep:shopping-cart', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-05-18 09:18:02', N'1', N'2023-09-28 10:58:09', N'0') |
|
4586 |
GO |
|
4587 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2165, N'快递发货', N'', 1, 0, 2164, N'express', N'ep:bicycle', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-05-18 09:22:06', N'1', N'2023-08-30 21:02:49', N'0') |
|
4588 |
GO |
|
4589 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2166, N'门店自提', N'', 1, 1, 2164, N'pick-up-store', N'ep:add-location', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-05-18 09:23:14', N'1', N'2023-08-30 21:03:21', N'0') |
|
4590 |
GO |
|
4591 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2167, N'快递公司', N'', 2, 0, 2165, N'express', N'ep:compass', N'mall/trade/delivery/express/index', N'Express', 0, N'1', N'1', N'1', N'1', N'2023-05-18 09:27:21', N'1', N'2023-08-30 21:02:59', N'0') |
|
4592 |
GO |
|
4593 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2168, N'快递公司查询', N'trade:delivery:express:query', 3, 1, 2167, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-05-18 09:37:53', N'', N'2023-05-18 09:37:53', N'0') |
|
4594 |
GO |
|
4595 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2169, N'快递公司创建', N'trade:delivery:express:create', 3, 2, 2167, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-05-18 09:37:53', N'', N'2023-05-18 09:37:53', N'0') |
|
4596 |
GO |
|
4597 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2170, N'快递公司更新', N'trade:delivery:express:update', 3, 3, 2167, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-05-18 09:37:53', N'', N'2023-05-18 09:37:53', N'0') |
|
4598 |
GO |
|
4599 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2171, N'快递公司删除', N'trade:delivery:express:delete', 3, 4, 2167, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-05-18 09:37:53', N'', N'2023-05-18 09:37:53', N'0') |
|
4600 |
GO |
|
4601 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2172, N'快递公司导出', N'trade:delivery:express:export', 3, 5, 2167, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-05-18 09:37:53', N'', N'2023-05-18 09:37:53', N'0') |
|
4602 |
GO |
|
4603 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2173, N'运费模版', N'trade:delivery:express-template:query', 2, 1, 2165, N'express-template', N'ep:coordinate', N'mall/trade/delivery/expressTemplate/index', N'ExpressTemplate', 0, N'1', N'1', N'1', N'1', N'2023-05-20 06:48:10', N'1', N'2023-08-30 21:03:13', N'0') |
|
4604 |
GO |
|
4605 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2174, N'快递运费模板查询', N'trade:delivery:express-template:query', 3, 1, 2173, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-05-20 06:49:53', N'', N'2023-05-20 06:49:53', N'0') |
|
4606 |
GO |
|
4607 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2175, N'快递运费模板创建', N'trade:delivery:express-template:create', 3, 2, 2173, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-05-20 06:49:53', N'', N'2023-05-20 06:49:53', N'0') |
|
4608 |
GO |
|
4609 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2176, N'快递运费模板更新', N'trade:delivery:express-template:update', 3, 3, 2173, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-05-20 06:49:53', N'', N'2023-05-20 06:49:53', N'0') |
|
4610 |
GO |
|
4611 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2177, N'快递运费模板删除', N'trade:delivery:express-template:delete', 3, 4, 2173, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-05-20 06:49:53', N'', N'2023-05-20 06:49:53', N'0') |
|
4612 |
GO |
|
4613 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2178, N'快递运费模板导出', N'trade:delivery:express-template:export', 3, 5, 2173, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-05-20 06:49:53', N'', N'2023-05-20 06:49:53', N'0') |
|
4614 |
GO |
|
4615 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2179, N'门店管理', N'', 2, 1, 2166, N'pick-up-store', N'ep:basketball', N'mall/trade/delivery/pickUpStore/index', N'PickUpStore', 0, N'1', N'1', N'1', N'1', N'2023-05-25 10:50:00', N'1', N'2023-08-30 21:03:28', N'0') |
|
4616 |
GO |
|
4617 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2180, N'自提门店查询', N'trade:delivery:pick-up-store:query', 3, 1, 2179, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-05-25 10:53:29', N'', N'2023-05-25 10:53:29', N'0') |
|
4618 |
GO |
|
4619 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2181, N'自提门店创建', N'trade:delivery:pick-up-store:create', 3, 2, 2179, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-05-25 10:53:29', N'', N'2023-05-25 10:53:29', N'0') |
|
4620 |
GO |
|
4621 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2182, N'自提门店更新', N'trade:delivery:pick-up-store:update', 3, 3, 2179, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-05-25 10:53:29', N'', N'2023-05-25 10:53:29', N'0') |
|
4622 |
GO |
|
4623 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2183, N'自提门店删除', N'trade:delivery:pick-up-store:delete', 3, 4, 2179, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-05-25 10:53:29', N'', N'2023-05-25 10:53:29', N'0') |
|
4624 |
GO |
|
4625 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2184, N'自提门店导出', N'trade:delivery:pick-up-store:export', 3, 5, 2179, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-05-25 10:53:29', N'', N'2023-05-25 10:53:29', N'0') |
|
4626 |
GO |
|
4627 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2209, N'秒杀活动', N'', 2, 3, 2030, N'seckill', N'ep:place', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-06-24 17:39:13', N'1', N'2023-06-24 18:55:15', N'0') |
|
4628 |
GO |
|
4629 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2262, N'会员中心', N'', 1, 55, 0, N'/member', N'ep:bicycle', NULL, NULL, 0, N'1', N'1', N'1', N'1', N'2023-06-10 00:42:03', N'1', N'2023-08-20 09:23:56', N'0') |
|
4630 |
GO |
|
4631 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2275, N'会员配置', N'', 2, 0, 2262, N'config', N'fa:archive', N'member/config/index', N'MemberConfig', 0, N'1', N'1', N'1', N'', N'2023-06-10 02:07:44', N'1', N'2023-10-01 23:41:29', N'0') |
|
4632 |
GO |
|
4633 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2276, N'会员配置查询', N'member:config:query', 3, 1, 2275, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2023-06-10 02:07:44', N'1', N'2024-04-24 19:48:58', N'0') |
|
4634 |
GO |
|
4635 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2277, N'会员配置保存', N'member:config:save', 3, 2, 2275, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2023-06-10 02:07:44', N'1', N'2024-04-24 19:49:28', N'0') |
|
4636 |
GO |
|
4637 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2281, N'签到配置', N'', 2, 2, 2300, N'config', N'ep:calendar', N'member/signin/config/index', N'SignInConfig', 0, N'1', N'1', N'1', N'', N'2023-06-10 03:26:12', N'1', N'2023-08-20 19:25:51', N'0') |
|
4638 |
GO |
|
4639 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2282, N'积分签到规则查询', N'point:sign-in-config:query', 3, 1, 2281, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-06-10 03:26:12', N'', N'2023-06-10 03:26:12', N'0') |
|
4640 |
GO |
|
4641 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2283, N'积分签到规则创建', N'point:sign-in-config:create', 3, 2, 2281, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-06-10 03:26:12', N'', N'2023-06-10 03:26:12', N'0') |
|
4642 |
GO |
|
4643 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2284, N'积分签到规则更新', N'point:sign-in-config:update', 3, 3, 2281, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-06-10 03:26:12', N'', N'2023-06-10 03:26:12', N'0') |
|
4644 |
GO |
|
4645 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2285, N'积分签到规则删除', N'point:sign-in-config:delete', 3, 4, 2281, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-06-10 03:26:12', N'', N'2023-06-10 03:26:12', N'0') |
|
4646 |
GO |
|
4647 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2287, N'会员积分', N'', 2, 10, 2262, N'record', N'fa:asterisk', N'member/point/record/index', N'PointRecord', 0, N'1', N'1', N'1', N'', N'2023-06-10 04:18:50', N'1', N'2023-10-01 23:42:11', N'0') |
|
4648 |
GO |
|
4649 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2288, N'用户积分记录查询', N'point:record:query', 3, 1, 2287, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-06-10 04:18:50', N'', N'2023-06-10 04:18:50', N'0') |
|
4650 |
GO |
|
4651 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2293, N'签到记录', N'', 2, 3, 2300, N'record', N'ep:chicken', N'member/signin/record/index', N'SignInRecord', 0, N'1', N'1', N'1', N'', N'2023-06-10 04:48:22', N'1', N'2023-08-20 19:26:02', N'0') |
|
4652 |
GO |
|
4653 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2294, N'用户签到积分查询', N'point:sign-in-record:query', 3, 1, 2293, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-06-10 04:48:22', N'', N'2023-06-10 04:48:22', N'0') |
|
4654 |
GO |
|
4655 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2297, N'用户签到积分删除', N'point:sign-in-record:delete', 3, 4, 2293, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-06-10 04:48:22', N'', N'2023-06-10 04:48:22', N'0') |
|
4656 |
GO |
|
4657 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2300, N'会员签到', N'', 1, 11, 2262, N'signin', N'ep:alarm-clock', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-06-27 22:49:53', N'1', N'2023-08-20 09:23:48', N'0') |
|
4658 |
GO |
|
4659 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2301, N'回调通知', N'', 2, 5, 1117, N'notify', N'ep:mute-notification', N'pay/notify/index', N'PayNotify', 0, N'1', N'1', N'1', N'', N'2023-07-20 04:41:32', N'1', N'2024-01-18 23:56:48', N'0') |
|
4660 |
GO |
|
4661 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2302, N'支付通知查询', N'pay:notify:query', 3, 1, 2301, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-07-20 04:41:32', N'', N'2023-07-20 04:41:32', N'0') |
|
4662 |
GO |
|
4663 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2303, N'拼团活动', N'', 2, 3, 2030, N'combination', N'fa:group', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-08-12 17:19:54', N'1', N'2023-08-12 17:20:05', N'0') |
|
4664 |
GO |
|
4665 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2304, N'拼团商品', N'', 2, 1, 2303, N'acitivity', N'ep:apple', N'mall/promotion/combination/activity/index', N'PromotionCombinationActivity', 0, N'1', N'1', N'1', N'1', N'2023-08-12 17:22:03', N'1', N'2023-08-12 17:22:29', N'0') |
|
4666 |
GO |
|
4667 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2305, N'拼团活动查询', N'promotion:combination-activity:query', 3, 1, 2304, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-08-12 17:54:32', N'1', N'2023-11-24 11:57:40', N'0') |
|
4668 |
GO |
|
4669 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2306, N'拼团活动创建', N'promotion:combination-activity:create', 3, 2, 2304, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-08-12 17:54:49', N'1', N'2023-08-12 17:54:49', N'0') |
|
4670 |
GO |
|
4671 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2307, N'拼团活动更新', N'promotion:combination-activity:update', 3, 3, 2304, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-08-12 17:55:04', N'1', N'2023-08-12 17:55:04', N'0') |
|
4672 |
GO |
|
4673 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2308, N'拼团活动删除', N'promotion:combination-activity:delete', 3, 4, 2304, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-08-12 17:55:23', N'1', N'2023-08-12 17:55:23', N'0') |
|
4674 |
GO |
|
4675 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2309, N'拼团活动关闭', N'promotion:combination-activity:close', 3, 5, 2304, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-08-12 17:55:37', N'1', N'2023-10-06 10:51:57', N'0') |
|
4676 |
GO |
|
4677 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2310, N'砍价活动', N'', 2, 4, 2030, N'bargain', N'ep:box', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-08-13 00:27:25', N'1', N'2023-08-13 00:27:25', N'0') |
|
4678 |
GO |
|
4679 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2311, N'砍价商品', N'', 2, 1, 2310, N'activity', N'ep:burger', N'mall/promotion/bargain/activity/index', N'PromotionBargainActivity', 0, N'1', N'1', N'1', N'1', N'2023-08-13 00:28:49', N'1', N'2023-10-05 01:16:23', N'0') |
|
4680 |
GO |
|
4681 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2312, N'砍价活动查询', N'promotion:bargain-activity:query', 3, 1, 2311, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-08-13 00:32:30', N'1', N'2023-08-13 00:32:30', N'0') |
|
4682 |
GO |
|
4683 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2313, N'砍价活动创建', N'promotion:bargain-activity:create', 3, 2, 2311, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-08-13 00:32:44', N'1', N'2023-08-13 00:32:44', N'0') |
|
4684 |
GO |
|
4685 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2314, N'砍价活动更新', N'promotion:bargain-activity:update', 3, 3, 2311, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-08-13 00:32:55', N'1', N'2023-08-13 00:32:55', N'0') |
|
4686 |
GO |
|
4687 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2315, N'砍价活动删除', N'promotion:bargain-activity:delete', 3, 4, 2311, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-08-13 00:34:50', N'1', N'2023-08-13 00:34:50', N'0') |
|
4688 |
GO |
|
4689 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2316, N'砍价活动关闭', N'promotion:bargain-activity:close', 3, 5, 2311, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-08-13 00:35:02', N'1', N'2023-08-13 00:35:02', N'0') |
|
4690 |
GO |
|
4691 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2317, N'会员管理', N'', 2, 0, 2262, N'user', N'ep:avatar', N'member/user/index', N'MemberUser', 0, N'1', N'1', N'1', N'', N'2023-08-19 04:12:15', N'1', N'2023-08-24 00:50:55', N'0') |
|
4692 |
GO |
|
4693 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2318, N'会员用户查询', N'member:user:query', 3, 1, 2317, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-08-19 04:12:15', N'', N'2023-08-19 04:12:15', N'0') |
|
4694 |
GO |
|
4695 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2319, N'会员用户更新', N'member:user:update', 3, 3, 2317, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-08-19 04:12:15', N'', N'2023-08-19 04:12:15', N'0') |
|
4696 |
GO |
|
4697 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2320, N'会员标签', N'', 2, 1, 2262, N'tag', N'ep:collection-tag', N'member/tag/index', N'MemberTag', 0, N'1', N'1', N'1', N'', N'2023-08-20 01:03:08', N'1', N'2023-08-20 09:23:19', N'0') |
|
4698 |
GO |
|
4699 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2321, N'会员标签查询', N'member:tag:query', 3, 1, 2320, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-08-20 01:03:08', N'', N'2023-08-20 01:03:08', N'0') |
|
4700 |
GO |
|
4701 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2322, N'会员标签创建', N'member:tag:create', 3, 2, 2320, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-08-20 01:03:08', N'', N'2023-08-20 01:03:08', N'0') |
|
4702 |
GO |
|
4703 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2323, N'会员标签更新', N'member:tag:update', 3, 3, 2320, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-08-20 01:03:08', N'', N'2023-08-20 01:03:08', N'0') |
|
4704 |
GO |
|
4705 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2324, N'会员标签删除', N'member:tag:delete', 3, 4, 2320, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-08-20 01:03:08', N'', N'2023-08-20 01:03:08', N'0') |
|
4706 |
GO |
|
4707 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2325, N'会员等级', N'', 2, 2, 2262, N'level', N'fa:level-up', N'member/level/index', N'MemberLevel', 0, N'1', N'1', N'1', N'', N'2023-08-22 12:41:01', N'1', N'2023-08-22 21:47:00', N'0') |
|
4708 |
GO |
|
4709 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2326, N'会员等级查询', N'member:level:query', 3, 1, 2325, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-08-22 12:41:02', N'', N'2023-08-22 12:41:02', N'0') |
|
4710 |
GO |
|
4711 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2327, N'会员等级创建', N'member:level:create', 3, 2, 2325, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-08-22 12:41:02', N'', N'2023-08-22 12:41:02', N'0') |
|
4712 |
GO |
|
4713 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2328, N'会员等级更新', N'member:level:update', 3, 3, 2325, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-08-22 12:41:02', N'', N'2023-08-22 12:41:02', N'0') |
|
4714 |
GO |
|
4715 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2329, N'会员等级删除', N'member:level:delete', 3, 4, 2325, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-08-22 12:41:02', N'', N'2023-08-22 12:41:02', N'0') |
|
4716 |
GO |
|
4717 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2330, N'会员分组', N'', 2, 3, 2262, N'group', N'fa:group', N'member/group/index', N'MemberGroup', 0, N'1', N'1', N'1', N'', N'2023-08-22 13:50:06', N'1', N'2023-10-01 23:42:01', N'0') |
|
4718 |
GO |
|
4719 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2331, N'用户分组查询', N'member:group:query', 3, 1, 2330, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-08-22 13:50:06', N'', N'2023-08-22 13:50:06', N'0') |
|
4720 |
GO |
|
4721 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2332, N'用户分组创建', N'member:group:create', 3, 2, 2330, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-08-22 13:50:06', N'', N'2023-08-22 13:50:06', N'0') |
|
4722 |
GO |
|
4723 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2333, N'用户分组更新', N'member:group:update', 3, 3, 2330, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-08-22 13:50:06', N'', N'2023-08-22 13:50:06', N'0') |
|
4724 |
GO |
|
4725 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2334, N'用户分组删除', N'member:group:delete', 3, 4, 2330, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-08-22 13:50:06', N'', N'2023-08-22 13:50:06', N'0') |
|
4726 |
GO |
|
4727 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2335, N'用户等级修改', N'member:user:update-level', 3, 5, 2317, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-08-23 16:49:05', N'', N'2023-08-23 16:50:48', N'0') |
|
4728 |
GO |
|
4729 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2336, N'商品评论', N'', 2, 5, 2000, N'comment', N'ep:comment', N'mall/product/comment/index', N'ProductComment', 0, N'1', N'1', N'1', N'1', N'2023-08-26 11:03:00', N'1', N'2023-08-26 11:03:38', N'0') |
|
4730 |
GO |
|
4731 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2337, N'评论查询', N'product:comment:query', 3, 1, 2336, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-08-26 11:04:01', N'1', N'2023-08-26 11:04:01', N'0') |
|
4732 |
GO |
|
4733 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2338, N'添加自评', N'product:comment:create', 3, 2, 2336, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-08-26 11:04:23', N'1', N'2023-08-26 11:08:18', N'0') |
|
4734 |
GO |
|
4735 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2339, N'商家回复', N'product:comment:update', 3, 3, 2336, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-08-26 11:04:37', N'1', N'2023-08-26 11:04:37', N'0') |
|
4736 |
GO |
|
4737 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2340, N'显隐评论', N'product:comment:update', 3, 4, 2336, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-08-26 11:04:55', N'1', N'2023-08-26 11:04:55', N'0') |
|
4738 |
GO |
|
4739 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2341, N'优惠劵发送', N'promotion:coupon:send', 3, 2, 2038, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-09-02 00:03:14', N'1', N'2023-09-02 00:03:14', N'0') |
|
4740 |
GO |
|
4741 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2342, N'交易配置', N'', 2, 0, 2072, N'config', N'ep:setting', N'mall/trade/config/index', N'TradeConfig', 0, N'1', N'1', N'1', N'', N'2023-09-28 02:46:22', N'1', N'2024-02-26 20:30:53', N'0') |
|
4742 |
GO |
|
4743 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2343, N'交易中心配置查询', N'trade:config:query', 3, 1, 2342, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-09-28 02:46:22', N'', N'2023-09-28 02:46:22', N'0') |
|
4744 |
GO |
|
4745 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2344, N'交易中心配置保存', N'trade:config:save', 3, 2, 2342, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-09-28 02:46:22', N'', N'2023-09-28 02:46:22', N'0') |
|
4746 |
GO |
|
4747 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2345, N'分销管理', N'', 1, 4, 2072, N'brokerage', N'fa-solid:project-diagram', N'', N'', 0, N'1', N'1', N'1', N'', N'2023-09-28 02:46:22', N'1', N'2023-09-28 10:58:44', N'0') |
|
4748 |
GO |
|
4749 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2346, N'分销用户', N'', 2, 0, 2345, N'brokerage-user', N'fa-solid:user-tie', N'mall/trade/brokerage/user/index', N'TradeBrokerageUser', 0, N'1', N'1', N'1', N'', N'2023-09-28 02:46:22', N'1', N'2024-02-26 20:33:23', N'0') |
|
4750 |
GO |
|
4751 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2347, N'分销用户查询', N'trade:brokerage-user:query', 3, 1, 2346, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-09-28 02:46:22', N'', N'2023-09-28 02:46:22', N'0') |
|
4752 |
GO |
|
4753 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2348, N'分销用户推广人查询', N'trade:brokerage-user:user-query', 3, 2, 2346, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-09-28 02:46:22', N'', N'2023-09-28 02:46:22', N'0') |
|
4754 |
GO |
|
4755 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2349, N'分销用户推广订单查询', N'trade:brokerage-user:order-query', 3, 3, 2346, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-09-28 02:46:22', N'', N'2023-09-28 02:46:22', N'0') |
|
4756 |
GO |
|
4757 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2350, N'分销用户修改推广资格', N'trade:brokerage-user:update-brokerage-enable', 3, 4, 2346, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-09-28 02:46:22', N'', N'2023-09-28 02:46:22', N'0') |
|
4758 |
GO |
|
4759 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2351, N'分销用户修改推广员', N'trade:brokerage-user:update-bind-user', 3, 5, 2346, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-09-28 02:46:22', N'', N'2023-09-28 02:46:22', N'0') |
|
4760 |
GO |
|
4761 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2352, N'分销用户清除推广员', N'trade:brokerage-user:clear-bind-user', 3, 6, 2346, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-09-28 02:46:22', N'', N'2023-09-28 02:46:22', N'0') |
|
4762 |
GO |
|
4763 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2353, N'佣金记录', N'', 2, 1, 2345, N'brokerage-record', N'fa:money', N'mall/trade/brokerage/record/index', N'TradeBrokerageRecord', 0, N'1', N'1', N'1', N'', N'2023-09-28 02:46:22', N'1', N'2024-02-26 20:33:30', N'0') |
|
4764 |
GO |
|
4765 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2354, N'佣金记录查询', N'trade:brokerage-record:query', 3, 1, 2353, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-09-28 02:46:22', N'', N'2023-09-28 02:46:22', N'0') |
|
4766 |
GO |
|
4767 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2355, N'佣金提现', N'', 2, 2, 2345, N'brokerage-withdraw', N'fa:credit-card', N'mall/trade/brokerage/withdraw/index', N'TradeBrokerageWithdraw', 0, N'1', N'1', N'1', N'', N'2023-09-28 02:46:22', N'1', N'2024-02-26 20:33:35', N'0') |
|
4768 |
GO |
|
4769 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2356, N'佣金提现查询', N'trade:brokerage-withdraw:query', 3, 1, 2355, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-09-28 02:46:22', N'', N'2023-09-28 02:46:22', N'0') |
|
4770 |
GO |
|
4771 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2357, N'佣金提现审核', N'trade:brokerage-withdraw:audit', 3, 2, 2355, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-09-28 02:46:22', N'', N'2023-09-28 02:46:22', N'0') |
|
4772 |
GO |
|
4773 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2358, N'统计中心', N'', 1, 75, 2362, N'statistics', N'ep:data-line', N'', N'', 0, N'1', N'1', N'1', N'', N'2023-09-30 03:22:40', N'1', N'2023-09-30 11:54:48', N'0') |
|
4774 |
GO |
|
4775 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2359, N'交易统计', N'', 2, 4, 2358, N'trade', N'fa-solid:credit-card', N'mall/statistics/trade/index', N'TradeStatistics', 0, N'1', N'1', N'1', N'', N'2023-09-30 03:22:40', N'1', N'2024-02-26 20:42:00', N'0') |
|
4776 |
GO |
|
4777 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2360, N'交易统计查询', N'statistics:trade:query', 3, 1, 2359, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-09-30 03:22:40', N'', N'2023-09-30 03:22:40', N'0') |
|
4778 |
GO |
|
4779 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2361, N'交易统计导出', N'statistics:trade:export', 3, 2, 2359, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-09-30 03:22:40', N'', N'2023-09-30 03:22:40', N'0') |
|
4780 |
GO |
|
4781 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2362, N'商城系统', N'', 1, 59, 0, N'/mall', N'ep:shop', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-09-30 11:52:02', N'1', N'2023-09-30 11:52:18', N'0') |
|
4782 |
GO |
|
4783 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2363, N'用户积分修改', N'member:user:update-point', 3, 6, 2317, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-01 14:39:43', N'', N'2023-10-01 14:39:43', N'0') |
|
4784 |
GO |
|
4785 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2364, N'用户余额修改', N'member:user:update-balance', 3, 7, 2317, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2023-10-01 14:39:43', N'1', N'2023-10-01 22:42:31', N'0') |
|
4786 |
GO |
|
4787 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2365, N'优惠劵', N'', 1, 2, 2030, N'coupon', N'fa-solid:disease', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-10-03 12:39:15', N'1', N'2023-10-05 00:16:07', N'0') |
|
4788 |
GO |
|
4789 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2366, N'砍价记录', N'', 2, 2, 2310, N'record', N'ep:list', N'mall/promotion/bargain/record/index', N'PromotionBargainRecord', 0, N'1', N'1', N'1', N'', N'2023-10-05 02:49:06', N'1', N'2023-10-05 10:50:38', N'0') |
|
4790 |
GO |
|
4791 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2367, N'砍价记录查询', N'promotion:bargain-record:query', 3, 1, 2366, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-05 02:49:06', N'', N'2023-10-05 02:49:06', N'0') |
|
4792 |
GO |
|
4793 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2368, N'助力记录查询', N'promotion:bargain-help:query', 3, 2, 2366, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-10-05 12:27:49', N'1', N'2023-10-05 12:27:49', N'0') |
|
4794 |
GO |
|
4795 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2369, N'拼团记录', N'promotion:combination-record:query', 2, 2, 2303, N'record', N'ep:avatar', N'mall/promotion/combination/record/index.vue', N'PromotionCombinationRecord', 0, N'1', N'1', N'1', N'1', N'2023-10-08 07:10:22', N'1', N'2023-10-08 07:34:11', N'0') |
|
4796 |
GO |
|
4797 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2374, N'会员统计', N'', 2, 2, 2358, N'member', N'ep:avatar', N'mall/statistics/member/index', N'MemberStatistics', 0, N'1', N'1', N'1', N'', N'2023-10-11 04:39:24', N'1', N'2024-02-26 20:41:46', N'0') |
|
4798 |
GO |
|
4799 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2375, N'会员统计查询', N'statistics:member:query', 3, 1, 2374, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-11 04:39:24', N'', N'2023-10-11 04:39:24', N'0') |
|
4800 |
GO |
|
4801 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2376, N'订单核销', N'trade:order:pick-up', 3, 10, 2076, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-10-14 17:11:58', N'1', N'2023-10-14 17:11:58', N'0') |
|
4802 |
GO |
|
4803 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2377, N'文章分类', N'', 2, 0, 2387, N'article/category', N'fa:certificate', N'mall/promotion/article/category/index', N'ArticleCategory', 0, N'1', N'1', N'1', N'', N'2023-10-16 01:26:18', N'1', N'2023-10-16 09:38:26', N'0') |
|
4804 |
GO |
|
4805 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2378, N'分类查询', N'promotion:article-category:query', 3, 1, 2377, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-16 01:26:18', N'', N'2023-10-16 01:26:18', N'0') |
|
4806 |
GO |
|
4807 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2379, N'分类创建', N'promotion:article-category:create', 3, 2, 2377, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-16 01:26:18', N'', N'2023-10-16 01:26:18', N'0') |
|
4808 |
GO |
|
4809 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2380, N'分类更新', N'promotion:article-category:update', 3, 3, 2377, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-16 01:26:18', N'', N'2023-10-16 01:26:18', N'0') |
|
4810 |
GO |
|
4811 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2381, N'分类删除', N'promotion:article-category:delete', 3, 4, 2377, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-16 01:26:18', N'', N'2023-10-16 01:26:18', N'0') |
|
4812 |
GO |
|
4813 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2382, N'文章列表', N'', 2, 2, 2387, N'article', N'ep:connection', N'mall/promotion/article/index', N'Article', 0, N'1', N'1', N'1', N'', N'2023-10-16 01:26:18', N'1', N'2023-10-16 09:41:19', N'0') |
|
4814 |
GO |
|
4815 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2383, N'文章管理查询', N'promotion:article:query', 3, 1, 2382, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-16 01:26:18', N'', N'2023-10-16 01:26:18', N'0') |
|
4816 |
GO |
|
4817 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2384, N'文章管理创建', N'promotion:article:create', 3, 2, 2382, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-16 01:26:18', N'', N'2023-10-16 01:26:18', N'0') |
|
4818 |
GO |
|
4819 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2385, N'文章管理更新', N'promotion:article:update', 3, 3, 2382, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-16 01:26:18', N'', N'2023-10-16 01:26:18', N'0') |
|
4820 |
GO |
|
4821 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2386, N'文章管理删除', N'promotion:article:delete', 3, 4, 2382, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-16 01:26:18', N'', N'2023-10-16 01:26:18', N'0') |
|
4822 |
GO |
|
4823 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2387, N'内容管理', N'', 1, 1, 2030, N'content', N'ep:collection', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-10-16 09:37:31', N'1', N'2023-10-16 09:37:31', N'0') |
|
4824 |
GO |
|
4825 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2388, N'商城首页', N'', 2, 1, 2362, N'home', N'ep:home-filled', N'mall/home/index', N'MallHome', 0, N'1', N'1', N'1', N'', N'2023-10-16 12:10:33', N'', N'2023-10-16 12:10:33', N'0') |
|
4826 |
GO |
|
4827 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2389, N'核销订单', N'', 2, 2, 2166, N'pick-up-order', N'ep:list', N'mall/trade/delivery/pickUpOrder/index', N'PickUpOrder', 0, N'1', N'1', N'1', N'', N'2023-10-19 16:09:51', N'', N'2023-10-19 16:09:51', N'0') |
|
4828 |
GO |
|
4829 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2390, N'优惠活动', N'', 1, 99, 2030, N'youhui', N'ep:aim', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-10-21 19:23:49', N'1', N'2023-10-21 19:23:49', N'0') |
|
4830 |
GO |
|
4831 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2391, N'客户管理', N'', 2, 10, 2397, N'customer', N'fa:address-book-o', N'crm/customer/index', N'CrmCustomer', 0, N'1', N'1', N'1', N'', N'2023-10-29 09:04:21', N'1', N'2024-02-17 17:13:32', N'0') |
|
4832 |
GO |
|
4833 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2392, N'客户查询', N'crm:customer:query', 3, 1, 2391, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 09:04:21', N'', N'2023-10-29 09:04:21', N'0') |
|
4834 |
GO |
|
4835 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2393, N'客户创建', N'crm:customer:create', 3, 2, 2391, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 09:04:21', N'', N'2023-10-29 09:04:21', N'0') |
|
4836 |
GO |
|
4837 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2394, N'客户更新', N'crm:customer:update', 3, 3, 2391, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 09:04:21', N'', N'2023-10-29 09:04:21', N'0') |
|
4838 |
GO |
|
4839 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2395, N'客户删除', N'crm:customer:delete', 3, 4, 2391, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 09:04:21', N'', N'2023-10-29 09:04:21', N'0') |
|
4840 |
GO |
|
4841 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2396, N'客户导出', N'crm:customer:export', 3, 5, 2391, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 09:04:21', N'', N'2023-10-29 09:04:21', N'0') |
|
4842 |
GO |
|
4843 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2397, N'CRM 系统', N'', 1, 200, 0, N'/crm', N'ep:avatar', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-10-29 17:08:30', N'1', N'2024-02-04 15:37:31', N'0') |
|
4844 |
GO |
|
4845 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2398, N'合同管理', N'', 2, 50, 2397, N'contract', N'ep:notebook', N'crm/contract/index', N'CrmContract', 0, N'1', N'1', N'1', N'', N'2023-10-29 10:50:41', N'1', N'2024-02-17 17:15:09', N'0') |
|
4846 |
GO |
|
4847 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2399, N'合同查询', N'crm:contract:query', 3, 1, 2398, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 10:50:41', N'', N'2023-10-29 10:50:41', N'0') |
|
4848 |
GO |
|
4849 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2400, N'合同创建', N'crm:contract:create', 3, 2, 2398, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 10:50:41', N'', N'2023-10-29 10:50:41', N'0') |
|
4850 |
GO |
|
4851 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2401, N'合同更新', N'crm:contract:update', 3, 3, 2398, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 10:50:41', N'', N'2023-10-29 10:50:41', N'0') |
|
4852 |
GO |
|
4853 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2402, N'合同删除', N'crm:contract:delete', 3, 4, 2398, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 10:50:41', N'', N'2023-10-29 10:50:41', N'0') |
|
4854 |
GO |
|
4855 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2403, N'合同导出', N'crm:contract:export', 3, 5, 2398, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 10:50:41', N'', N'2023-10-29 10:50:41', N'0') |
|
4856 |
GO |
|
4857 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2404, N'线索管理', N'', 2, 8, 2397, N'clue', N'fa:pagelines', N'crm/clue/index', N'CrmClue', 0, N'1', N'1', N'1', N'', N'2023-10-29 11:06:29', N'1', N'2024-02-17 17:15:41', N'0') |
|
4858 |
GO |
|
4859 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2405, N'线索查询', N'crm:clue:query', 3, 1, 2404, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:06:29', N'', N'2023-10-29 11:06:29', N'0') |
|
4860 |
GO |
|
4861 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2406, N'线索创建', N'crm:clue:create', 3, 2, 2404, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:06:29', N'', N'2023-10-29 11:06:29', N'0') |
|
4862 |
GO |
|
4863 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2407, N'线索更新', N'crm:clue:update', 3, 3, 2404, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:06:29', N'', N'2023-10-29 11:06:29', N'0') |
|
4864 |
GO |
|
4865 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2408, N'线索删除', N'crm:clue:delete', 3, 4, 2404, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:06:29', N'', N'2023-10-29 11:06:29', N'0') |
|
4866 |
GO |
|
4867 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2409, N'线索导出', N'crm:clue:export', 3, 5, 2404, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:06:29', N'', N'2023-10-29 11:06:29', N'0') |
|
4868 |
GO |
|
4869 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2410, N'商机管理', N'', 2, 40, 2397, N'business', N'fa:bus', N'crm/business/index', N'CrmBusiness', 0, N'1', N'1', N'1', N'', N'2023-10-29 11:12:35', N'1', N'2024-02-17 17:14:55', N'0') |
|
4870 |
GO |
|
4871 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2411, N'商机查询', N'crm:business:query', 3, 1, 2410, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:12:35', N'', N'2023-10-29 11:12:35', N'0') |
|
4872 |
GO |
|
4873 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2412, N'商机创建', N'crm:business:create', 3, 2, 2410, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:12:35', N'', N'2023-10-29 11:12:35', N'0') |
|
4874 |
GO |
|
4875 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2413, N'商机更新', N'crm:business:update', 3, 3, 2410, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:12:35', N'', N'2023-10-29 11:12:35', N'0') |
|
4876 |
GO |
|
4877 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2414, N'商机删除', N'crm:business:delete', 3, 4, 2410, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:12:35', N'', N'2023-10-29 11:12:35', N'0') |
|
4878 |
GO |
|
4879 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2415, N'商机导出', N'crm:business:export', 3, 5, 2410, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:12:35', N'', N'2023-10-29 11:12:35', N'0') |
|
4880 |
GO |
|
4881 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2416, N'联系人管理', N'', 2, 20, 2397, N'contact', N'fa:address-book-o', N'crm/contact/index', N'CrmContact', 0, N'1', N'1', N'1', N'', N'2023-10-29 11:14:56', N'1', N'2024-02-17 17:13:49', N'0') |
|
4882 |
GO |
|
4883 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2417, N'联系人查询', N'crm:contact:query', 3, 1, 2416, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:14:56', N'', N'2023-10-29 11:14:56', N'0') |
|
4884 |
GO |
|
4885 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2418, N'联系人创建', N'crm:contact:create', 3, 2, 2416, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:14:56', N'', N'2023-10-29 11:14:56', N'0') |
|
4886 |
GO |
|
4887 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2419, N'联系人更新', N'crm:contact:update', 3, 3, 2416, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:14:56', N'', N'2023-10-29 11:14:56', N'0') |
|
4888 |
GO |
|
4889 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2420, N'联系人删除', N'crm:contact:delete', 3, 4, 2416, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:14:56', N'', N'2023-10-29 11:14:56', N'0') |
|
4890 |
GO |
|
4891 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2421, N'联系人导出', N'crm:contact:export', 3, 5, 2416, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:14:56', N'', N'2023-10-29 11:14:56', N'0') |
|
4892 |
GO |
|
4893 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2422, N'回款管理', N'', 2, 60, 2397, N'receivable', N'ep:money', N'crm/receivable/index', N'CrmReceivable', 0, N'1', N'1', N'1', N'', N'2023-10-29 11:18:09', N'1', N'2024-02-17 17:16:18', N'0') |
|
4894 |
GO |
|
4895 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2423, N'回款管理查询', N'crm:receivable:query', 3, 1, 2422, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:18:09', N'', N'2023-10-29 11:18:09', N'0') |
|
4896 |
GO |
|
4897 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2424, N'回款管理创建', N'crm:receivable:create', 3, 2, 2422, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:18:09', N'', N'2023-10-29 11:18:09', N'0') |
|
4898 |
GO |
|
4899 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2425, N'回款管理更新', N'crm:receivable:update', 3, 3, 2422, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:18:09', N'', N'2023-10-29 11:18:09', N'0') |
|
4900 |
GO |
|
4901 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2426, N'回款管理删除', N'crm:receivable:delete', 3, 4, 2422, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:18:09', N'', N'2023-10-29 11:18:09', N'0') |
|
4902 |
GO |
|
4903 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2427, N'回款管理导出', N'crm:receivable:export', 3, 5, 2422, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:18:09', N'', N'2023-10-29 11:18:09', N'0') |
|
4904 |
GO |
|
4905 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2428, N'回款计划', N'', 2, 61, 2397, N'receivable-plan', N'fa:money', N'crm/receivable/plan/index', N'CrmReceivablePlan', 0, N'1', N'1', N'1', N'', N'2023-10-29 11:18:09', N'1', N'2024-02-17 17:16:11', N'0') |
|
4906 |
GO |
|
4907 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2429, N'回款计划查询', N'crm:receivable-plan:query', 3, 1, 2428, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:18:09', N'', N'2023-10-29 11:18:09', N'0') |
|
4908 |
GO |
|
4909 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2430, N'回款计划创建', N'crm:receivable-plan:create', 3, 2, 2428, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:18:09', N'', N'2023-10-29 11:18:09', N'0') |
|
4910 |
GO |
|
4911 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2431, N'回款计划更新', N'crm:receivable-plan:update', 3, 3, 2428, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:18:09', N'', N'2023-10-29 11:18:09', N'0') |
|
4912 |
GO |
|
4913 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2432, N'回款计划删除', N'crm:receivable-plan:delete', 3, 4, 2428, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:18:09', N'', N'2023-10-29 11:18:09', N'0') |
|
4914 |
GO |
|
4915 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2433, N'回款计划导出', N'crm:receivable-plan:export', 3, 5, 2428, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 11:18:09', N'', N'2023-10-29 11:18:09', N'0') |
|
4916 |
GO |
|
4917 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2435, N'商城装修', N'', 2, 20, 2030, N'diy-template', N'fa6-solid:brush', N'mall/promotion/diy/template/index', N'DiyTemplate', 0, N'1', N'1', N'1', N'', N'2023-10-29 14:19:25', N'', N'2023-10-29 14:19:25', N'0') |
|
4918 |
GO |
|
4919 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2436, N'装修模板', N'', 2, 1, 2435, N'diy-template', N'fa6-solid:brush', N'mall/promotion/diy/template/index', N'DiyTemplate', 0, N'1', N'1', N'1', N'', N'2023-10-29 14:19:25', N'', N'2023-10-29 14:19:25', N'0') |
|
4920 |
GO |
|
4921 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2437, N'装修模板查询', N'promotion:diy-template:query', 3, 1, 2436, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 14:19:25', N'', N'2023-10-29 14:19:25', N'0') |
|
4922 |
GO |
|
4923 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2438, N'装修模板创建', N'promotion:diy-template:create', 3, 2, 2436, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 14:19:25', N'', N'2023-10-29 14:19:25', N'0') |
|
4924 |
GO |
|
4925 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2439, N'装修模板更新', N'promotion:diy-template:update', 3, 3, 2436, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 14:19:25', N'', N'2023-10-29 14:19:25', N'0') |
|
4926 |
GO |
|
4927 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2440, N'装修模板删除', N'promotion:diy-template:delete', 3, 4, 2436, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 14:19:25', N'', N'2023-10-29 14:19:25', N'0') |
|
4928 |
GO |
|
4929 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2441, N'装修模板使用', N'promotion:diy-template:use', 3, 5, 2436, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 14:19:25', N'', N'2023-10-29 14:19:25', N'0') |
|
4930 |
GO |
|
4931 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2442, N'装修页面', N'', 2, 2, 2435, N'diy-page', N'foundation:page-edit', N'mall/promotion/diy/page/index', N'DiyPage', 0, N'1', N'1', N'1', N'', N'2023-10-29 14:19:25', N'', N'2023-10-29 14:19:25', N'0') |
|
4932 |
GO |
|
4933 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2443, N'装修页面查询', N'promotion:diy-page:query', 3, 1, 2442, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 14:19:25', N'', N'2023-10-29 14:19:25', N'0') |
|
4934 |
GO |
|
4935 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2444, N'装修页面创建', N'promotion:diy-page:create', 3, 2, 2442, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 14:19:26', N'', N'2023-10-29 14:19:26', N'0') |
|
4936 |
GO |
|
4937 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2445, N'装修页面更新', N'promotion:diy-page:update', 3, 3, 2442, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 14:19:26', N'', N'2023-10-29 14:19:26', N'0') |
|
4938 |
GO |
|
4939 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2446, N'装修页面删除', N'promotion:diy-page:delete', 3, 4, 2442, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-10-29 14:19:26', N'', N'2023-10-29 14:19:26', N'0') |
|
4940 |
GO |
|
4941 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2447, N'三方登录', N'', 1, 10, 1, N'social', N'fa:rocket', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-11-04 12:12:01', N'1', N'2024-02-29 01:14:05', N'0') |
|
4942 |
GO |
|
4943 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2448, N'三方应用', N'', 2, 1, 2447, N'client', N'ep:set-up', N'views/system/social/client/index.vue', N'SocialClient', 0, N'1', N'1', N'1', N'1', N'2023-11-04 12:17:19', N'1', N'2023-11-04 12:17:19', N'0') |
|
4944 |
GO |
|
4945 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2449, N'三方应用查询', N'system:social-client:query', 3, 1, 2448, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-11-04 12:43:12', N'1', N'2023-11-04 12:43:33', N'0') |
|
4946 |
GO |
|
4947 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2450, N'三方应用创建', N'system:social-client:create', 3, 2, 2448, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-11-04 12:43:58', N'1', N'2023-11-04 12:43:58', N'0') |
|
4948 |
GO |
|
4949 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2451, N'三方应用更新', N'system:social-client:update', 3, 3, 2448, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-11-04 12:44:27', N'1', N'2023-11-04 12:44:27', N'0') |
|
4950 |
GO |
|
4951 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2452, N'三方应用删除', N'system:social-client:delete', 3, 4, 2448, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-11-04 12:44:43', N'1', N'2023-11-04 12:44:43', N'0') |
|
4952 |
GO |
|
4953 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2453, N'三方用户', N'system:social-user:query', 2, 2, 2447, N'user', N'ep:avatar', N'system/social/user/index.vue', N'SocialUser', 0, N'1', N'1', N'1', N'1', N'2023-11-04 14:01:05', N'1', N'2023-11-04 14:01:05', N'0') |
|
4954 |
GO |
|
4955 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2472, N'主子表(内嵌)', N'', 2, 12, 1070, N'demo03-inner', N'fa:power-off', N'infra/demo/demo03/inner/index', N'Demo03StudentInner', 0, N'1', N'1', N'1', N'', N'2023-11-13 04:39:51', N'1', N'2023-11-16 23:53:46', N'0') |
|
4956 |
GO |
|
4957 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2478, N'单表(增删改查)', N'', 2, 1, 1070, N'demo01-contact', N'ep:bicycle', N'infra/demo/demo01/index', N'Demo01Contact', 0, N'1', N'1', N'1', N'', N'2023-11-15 14:42:30', N'1', N'2023-11-16 20:34:40', N'0') |
|
4958 |
GO |
|
4959 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2479, N'示例联系人查询', N'infra:demo01-contact:query', 3, 1, 2478, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-15 14:42:30', N'', N'2023-11-15 14:42:30', N'0') |
|
4960 |
GO |
|
4961 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2480, N'示例联系人创建', N'infra:demo01-contact:create', 3, 2, 2478, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-15 14:42:30', N'', N'2023-11-15 14:42:30', N'0') |
|
4962 |
GO |
|
4963 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2481, N'示例联系人更新', N'infra:demo01-contact:update', 3, 3, 2478, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-15 14:42:30', N'', N'2023-11-15 14:42:30', N'0') |
|
4964 |
GO |
|
4965 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2482, N'示例联系人删除', N'infra:demo01-contact:delete', 3, 4, 2478, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-15 14:42:30', N'', N'2023-11-15 14:42:30', N'0') |
|
4966 |
GO |
|
4967 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2483, N'示例联系人导出', N'infra:demo01-contact:export', 3, 5, 2478, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-15 14:42:30', N'', N'2023-11-15 14:42:30', N'0') |
|
4968 |
GO |
|
4969 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2484, N'树表(增删改查)', N'', 2, 2, 1070, N'demo02-category', N'fa:tree', N'infra/demo/demo02/index', N'Demo02Category', 0, N'1', N'1', N'1', N'', N'2023-11-16 12:18:27', N'1', N'2023-11-16 20:35:01', N'0') |
|
4970 |
GO |
|
4971 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2485, N'示例分类查询', N'infra:demo02-category:query', 3, 1, 2484, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-16 12:18:27', N'', N'2023-11-16 12:18:27', N'0') |
|
4972 |
GO |
|
4973 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2486, N'示例分类创建', N'infra:demo02-category:create', 3, 2, 2484, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-16 12:18:27', N'', N'2023-11-16 12:18:27', N'0') |
|
4974 |
GO |
|
4975 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2487, N'示例分类更新', N'infra:demo02-category:update', 3, 3, 2484, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-16 12:18:27', N'', N'2023-11-16 12:18:27', N'0') |
|
4976 |
GO |
|
4977 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2488, N'示例分类删除', N'infra:demo02-category:delete', 3, 4, 2484, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-16 12:18:27', N'', N'2023-11-16 12:18:27', N'0') |
|
4978 |
GO |
|
4979 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2489, N'示例分类导出', N'infra:demo02-category:export', 3, 5, 2484, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-16 12:18:27', N'', N'2023-11-16 12:18:27', N'0') |
|
4980 |
GO |
|
4981 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2490, N'主子表(标准)', N'', 2, 10, 1070, N'demo03-normal', N'fa:battery-3', N'infra/demo/demo03/normal/index', N'Demo03StudentNormal', 0, N'1', N'1', N'1', N'', N'2023-11-16 12:53:37', N'1', N'2023-11-16 23:10:03', N'0') |
|
4982 |
GO |
|
4983 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2491, N'学生查询', N'infra:demo03-student:query', 3, 1, 2490, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-16 12:53:37', N'', N'2023-11-16 12:53:37', N'0') |
|
4984 |
GO |
|
4985 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2492, N'学生创建', N'infra:demo03-student:create', 3, 2, 2490, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-16 12:53:37', N'', N'2023-11-16 12:53:37', N'0') |
|
4986 |
GO |
|
4987 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2493, N'学生更新', N'infra:demo03-student:update', 3, 3, 2490, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-16 12:53:37', N'', N'2023-11-16 12:53:37', N'0') |
|
4988 |
GO |
|
4989 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2494, N'学生删除', N'infra:demo03-student:delete', 3, 4, 2490, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-16 12:53:37', N'', N'2023-11-16 12:53:37', N'0') |
|
4990 |
GO |
|
4991 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2495, N'学生导出', N'infra:demo03-student:export', 3, 5, 2490, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-16 12:53:37', N'', N'2023-11-16 12:53:37', N'0') |
|
4992 |
GO |
|
4993 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2497, N'主子表(ERP)', N'', 2, 11, 1070, N'demo03-erp', N'ep:calendar', N'infra/demo/demo03/erp/index', N'Demo03StudentERP', 0, N'1', N'1', N'1', N'', N'2023-11-16 15:50:59', N'1', N'2023-11-17 13:19:56', N'0') |
|
4994 |
GO |
|
4995 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2516, N'客户公海配置', N'', 2, 0, 2524, N'customer-pool-config', N'ep:data-analysis', N'crm/customer/poolConfig/index', N'CrmCustomerPoolConfig', 0, N'1', N'1', N'1', N'', N'2023-11-18 13:33:31', N'1', N'2024-01-03 19:52:06', N'0') |
|
4996 |
GO |
|
4997 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2517, N'客户公海配置保存', N'crm:customer-pool-config:update', 3, 1, 2516, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-18 13:33:31', N'', N'2023-11-18 13:33:31', N'0') |
|
4998 |
GO |
|
4999 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2518, N'客户限制配置', N'', 2, 1, 2524, N'customer-limit-config', N'ep:avatar', N'crm/customer/limitConfig/index', N'CrmCustomerLimitConfig', 0, N'1', N'1', N'1', N'', N'2023-11-18 13:33:53', N'1', N'2024-02-24 16:43:33', N'0') |
|
5000 |
GO |
|
5001 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2519, N'客户限制配置查询', N'crm:customer-limit-config:query', 3, 1, 2518, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-18 13:33:53', N'', N'2023-11-18 13:33:53', N'0') |
|
5002 |
GO |
|
5003 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2520, N'客户限制配置创建', N'crm:customer-limit-config:create', 3, 2, 2518, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-18 13:33:53', N'', N'2023-11-18 13:33:53', N'0') |
|
5004 |
GO |
|
5005 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2521, N'客户限制配置更新', N'crm:customer-limit-config:update', 3, 3, 2518, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-18 13:33:53', N'', N'2023-11-18 13:33:53', N'0') |
|
5006 |
GO |
|
5007 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2522, N'客户限制配置删除', N'crm:customer-limit-config:delete', 3, 4, 2518, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-18 13:33:53', N'', N'2023-11-18 13:33:53', N'0') |
|
5008 |
GO |
|
5009 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2523, N'客户限制配置导出', N'crm:customer-limit-config:export', 3, 5, 2518, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-11-18 13:33:53', N'', N'2023-11-18 13:33:53', N'0') |
|
5010 |
GO |
|
5011 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2524, N'系统配置', N'', 1, 999, 2397, N'config', N'ep:connection', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-11-18 21:58:00', N'1', N'2024-02-17 17:14:34', N'0') |
|
5012 |
GO |
|
5013 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2525, N'WebSocket', N'', 2, 5, 2, N'websocket', N'ep:connection', N'infra/webSocket/index', N'InfraWebSocket', 0, N'1', N'1', N'1', N'1', N'2023-11-23 19:41:55', N'1', N'2024-04-23 00:02:00', N'0') |
|
5014 |
GO |
|
5015 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2526, N'产品管理', N'', 2, 80, 2397, N'product', N'fa:product-hunt', N'crm/product/index', N'CrmProduct', 0, N'1', N'1', N'1', N'1', N'2023-12-05 22:45:26', N'1', N'2024-02-20 20:36:20', N'0') |
|
5016 |
GO |
|
5017 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2527, N'产品查询', N'crm:product:query', 3, 1, 2526, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-12-05 22:47:16', N'1', N'2023-12-05 22:47:16', N'0') |
|
5018 |
GO |
|
5019 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2528, N'产品创建', N'crm:product:create', 3, 2, 2526, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-12-05 22:47:41', N'1', N'2023-12-05 22:47:48', N'0') |
|
5020 |
GO |
|
5021 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2529, N'产品更新', N'crm:product:update', 3, 3, 2526, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-12-05 22:48:03', N'1', N'2023-12-05 22:48:03', N'0') |
|
5022 |
GO |
|
5023 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2530, N'产品删除', N'crm:product:delete', 3, 4, 2526, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-12-05 22:48:17', N'1', N'2023-12-05 22:48:17', N'0') |
|
5024 |
GO |
|
5025 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2531, N'产品导出', N'crm:product:export', 3, 5, 2526, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-12-05 22:48:29', N'1', N'2023-12-05 22:48:29', N'0') |
|
5026 |
GO |
|
5027 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2532, N'产品分类配置', N'', 2, 3, 2524, N'product/category', N'fa-solid:window-restore', N'crm/product/category/index', N'CrmProductCategory', 0, N'1', N'1', N'1', N'1', N'2023-12-06 12:52:36', N'1', N'2023-12-06 12:52:51', N'0') |
|
5028 |
GO |
|
5029 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2533, N'产品分类查询', N'crm:product-category:query', 3, 1, 2532, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-12-06 12:53:23', N'1', N'2023-12-06 12:53:23', N'0') |
|
5030 |
GO |
|
5031 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2534, N'产品分类创建', N'crm:product-category:create', 3, 2, 2532, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-12-06 12:53:41', N'1', N'2023-12-06 12:53:41', N'0') |
|
5032 |
GO |
|
5033 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2535, N'产品分类更新', N'crm:product-category:update', 3, 3, 2532, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-12-06 12:53:59', N'1', N'2023-12-06 12:53:59', N'0') |
|
5034 |
GO |
|
5035 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2536, N'产品分类删除', N'crm:product-category:delete', 3, 4, 2532, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2023-12-06 12:54:14', N'1', N'2023-12-06 12:54:14', N'0') |
|
5036 |
GO |
|
5037 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2543, N'关联商机', N'crm:contact:create-business', 3, 10, 2416, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-01-02 17:28:25', N'1', N'2024-01-02 17:28:25', N'0') |
|
5038 |
GO |
|
5039 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2544, N'取关商机', N'crm:contact:delete-business', 3, 11, 2416, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-01-02 17:28:43', N'1', N'2024-01-02 17:28:51', N'0') |
|
5040 |
GO |
|
5041 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2545, N'商品统计', N'', 2, 3, 2358, N'product', N'fa:product-hunt', N'mall/statistics/product/index', N'ProductStatistics', 0, N'1', N'1', N'1', N'', N'2023-12-15 18:54:28', N'1', N'2024-02-26 20:41:52', N'0') |
|
5042 |
GO |
|
5043 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2546, N'客户公海', N'', 2, 30, 2397, N'customer/pool', N'fa-solid:swimming-pool', N'crm/customer/pool/index', N'CrmCustomerPool', 0, N'1', N'1', N'1', N'1', N'2024-01-15 21:29:34', N'1', N'2024-02-17 17:14:18', N'0') |
|
5044 |
GO |
|
5045 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2547, N'订单查询', N'trade:order:query', 3, 1, 2076, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-01-16 08:52:00', N'1', N'2024-01-16 08:52:00', N'0') |
|
5046 |
GO |
|
5047 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2548, N'订单更新', N'trade:order:update', 3, 2, 2076, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-01-16 08:52:21', N'1', N'2024-01-16 08:52:21', N'0') |
|
5048 |
GO |
|
5049 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2549, N'支付&退款案例', N'', 2, 1, 2161, N'order', N'fa:paypal', N'pay/demo/order/index', N'', 0, N'1', N'1', N'1', N'1', N'2024-01-18 23:45:00', N'1', N'2024-01-18 23:47:21', N'0') |
|
5050 |
GO |
|
5051 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2550, N'转账案例', N'', 2, 2, 2161, N'transfer', N'fa:transgender-alt', N'pay/demo/transfer/index', N'', 0, N'1', N'1', N'1', N'1', N'2024-01-18 23:51:16', N'1', N'2024-01-18 23:51:16', N'0') |
|
5052 |
GO |
|
5053 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2551, N'钱包管理', N'', 1, 4, 1117, N'wallet', N'ep:wallet', N'', N'', 0, N'1', N'1', N'1', N'', N'2023-12-29 02:32:54', N'1', N'2024-02-29 08:58:54', N'0') |
|
5054 |
GO |
|
5055 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2552, N'充值套餐', N'', 2, 2, 2551, N'wallet-recharge-package', N'fa:leaf', N'pay/wallet/rechargePackage/index', N'WalletRechargePackage', 0, N'1', N'1', N'1', N'', N'2023-12-29 02:32:54', N'', N'2023-12-29 02:32:54', N'0') |
|
5056 |
GO |
|
5057 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2553, N'钱包充值套餐查询', N'pay:wallet-recharge-package:query', 3, 1, 2552, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-12-29 02:32:54', N'', N'2023-12-29 02:32:54', N'0') |
|
5058 |
GO |
|
5059 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2554, N'钱包充值套餐创建', N'pay:wallet-recharge-package:create', 3, 2, 2552, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-12-29 02:32:54', N'', N'2023-12-29 02:32:54', N'0') |
|
5060 |
GO |
|
5061 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2555, N'钱包充值套餐更新', N'pay:wallet-recharge-package:update', 3, 3, 2552, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-12-29 02:32:54', N'', N'2023-12-29 02:32:54', N'0') |
|
5062 |
GO |
|
5063 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2556, N'钱包充值套餐删除', N'pay:wallet-recharge-package:delete', 3, 4, 2552, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-12-29 02:32:54', N'', N'2023-12-29 02:32:54', N'0') |
|
5064 |
GO |
|
5065 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2557, N'钱包余额', N'', 2, 1, 2551, N'wallet-balance', N'fa:leaf', N'pay/wallet/balance/index', N'WalletBalance', 0, N'1', N'1', N'1', N'', N'2023-12-29 02:32:54', N'', N'2023-12-29 02:32:54', N'0') |
|
5066 |
GO |
|
5067 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2558, N'钱包余额查询', N'pay:wallet:query', 3, 1, 2557, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2023-12-29 02:32:54', N'', N'2023-12-29 02:32:54', N'0') |
|
5068 |
GO |
|
5069 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2559, N'转账订单', N'', 2, 3, 1117, N'transfer', N'ep:credit-card', N'pay/transfer/index', N'PayTransfer', 0, N'1', N'1', N'1', N'', N'2023-12-29 02:32:54', N'', N'2023-12-29 02:32:54', N'0') |
|
5070 |
GO |
|
5071 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2560, N'数据统计', N'', 1, 200, 2397, N'statistics', N'ep:data-line', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-01-26 22:50:35', N'1', N'2024-02-24 20:10:07', N'0') |
|
5072 |
GO |
|
5073 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2561, N'排行榜', N'crm:statistics-rank:query', 2, 1, 2560, N'ranking', N'fa:area-chart', N'crm/statistics/rank/index', N'CrmStatisticsRank', 0, N'1', N'1', N'1', N'1', N'2024-01-26 22:52:09', N'1', N'2024-04-24 19:39:11', N'0') |
|
5074 |
GO |
|
5075 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2562, N'客户导入', N'crm:customer:import', 3, 6, 2391, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-02-01 13:09:00', N'1', N'2024-02-01 13:09:05', N'0') |
|
5076 |
GO |
|
5077 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2563, N'ERP 系统', N'', 1, 300, 0, N'/erp', N'fa-solid:store', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-02-04 15:37:25', N'1', N'2024-02-04 15:37:25', N'0') |
|
5078 |
GO |
|
5079 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2564, N'产品管理', N'', 1, 40, 2563, N'product', N'fa:product-hunt', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-02-04 15:38:43', N'1', N'2024-02-04 15:38:43', N'0') |
|
5080 |
GO |
|
5081 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2565, N'产品信息', N'', 2, 0, 2564, N'product', N'fa-solid:apple-alt', N'erp/product/product/index', N'ErpProduct', 0, N'1', N'1', N'1', N'', N'2024-02-04 07:52:15', N'1', N'2024-02-05 14:42:11', N'0') |
|
5082 |
GO |
|
5083 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2566, N'产品查询', N'erp:product:query', 3, 1, 2565, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2024-02-04 07:52:15', N'1', N'2024-02-04 17:21:57', N'0') |
|
5084 |
GO |
|
5085 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2567, N'产品创建', N'erp:product:create', 3, 2, 2565, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2024-02-04 07:52:15', N'1', N'2024-02-04 17:22:12', N'0') |
|
5086 |
GO |
|
5087 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2568, N'产品更新', N'erp:product:update', 3, 3, 2565, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2024-02-04 07:52:15', N'1', N'2024-02-04 17:22:16', N'0') |
|
5088 |
GO |
|
5089 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2569, N'产品删除', N'erp:product:delete', 3, 4, 2565, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2024-02-04 07:52:15', N'1', N'2024-02-04 17:22:22', N'0') |
|
5090 |
GO |
|
5091 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2570, N'产品导出', N'erp:product:export', 3, 5, 2565, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2024-02-04 07:52:15', N'1', N'2024-02-04 17:22:26', N'0') |
|
5092 |
GO |
|
5093 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2571, N'产品分类', N'', 2, 1, 2564, N'product-category', N'fa:certificate', N'erp/product/category/index', N'ErpProductCategory', 0, N'1', N'1', N'1', N'', N'2024-02-04 09:21:04', N'1', N'2024-02-04 17:24:58', N'0') |
|
5094 |
GO |
|
5095 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2572, N'分类查询', N'erp:product-category:query', 3, 1, 2571, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-04 09:21:04', N'', N'2024-02-04 09:21:04', N'0') |
|
5096 |
GO |
|
5097 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2573, N'分类创建', N'erp:product-category:create', 3, 2, 2571, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-04 09:21:04', N'', N'2024-02-04 09:21:04', N'0') |
|
5098 |
GO |
|
5099 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2574, N'分类更新', N'erp:product-category:update', 3, 3, 2571, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-04 09:21:04', N'', N'2024-02-04 09:21:04', N'0') |
|
5100 |
GO |
|
5101 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2575, N'分类删除', N'erp:product-category:delete', 3, 4, 2571, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-04 09:21:04', N'', N'2024-02-04 09:21:04', N'0') |
|
5102 |
GO |
|
5103 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2576, N'分类导出', N'erp:product-category:export', 3, 5, 2571, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-04 09:21:04', N'', N'2024-02-04 09:21:04', N'0') |
|
5104 |
GO |
|
5105 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2577, N'产品单位', N'', 2, 2, 2564, N'unit', N'ep:opportunity', N'erp/product/unit/index', N'ErpProductUnit', 0, N'1', N'1', N'1', N'', N'2024-02-04 11:54:08', N'1', N'2024-02-04 19:54:37', N'0') |
|
5106 |
GO |
|
5107 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2578, N'单位查询', N'erp:product-unit:query', 3, 1, 2577, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-04 11:54:08', N'', N'2024-02-04 11:54:08', N'0') |
|
5108 |
GO |
|
5109 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2579, N'单位创建', N'erp:product-unit:create', 3, 2, 2577, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-04 11:54:08', N'', N'2024-02-04 11:54:08', N'0') |
|
5110 |
GO |
|
5111 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2580, N'单位更新', N'erp:product-unit:update', 3, 3, 2577, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-04 11:54:08', N'', N'2024-02-04 11:54:08', N'0') |
|
5112 |
GO |
|
5113 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2581, N'单位删除', N'erp:product-unit:delete', 3, 4, 2577, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-04 11:54:08', N'', N'2024-02-04 11:54:08', N'0') |
|
5114 |
GO |
|
5115 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2582, N'单位导出', N'erp:product-unit:export', 3, 5, 2577, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-04 11:54:08', N'', N'2024-02-04 11:54:08', N'0') |
|
5116 |
GO |
|
5117 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2583, N'库存管理', N'', 1, 30, 2563, N'stock', N'fa:window-restore', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-02-05 00:29:37', N'1', N'2024-02-05 00:29:37', N'0') |
|
5118 |
GO |
|
5119 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2584, N'仓库信息', N'', 2, 0, 2583, N'warehouse', N'ep:house', N'erp/stock/warehouse/index', N'ErpWarehouse', 0, N'1', N'1', N'1', N'', N'2024-02-04 17:12:09', N'1', N'2024-02-05 01:12:53', N'0') |
|
5120 |
GO |
|
5121 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2585, N'仓库查询', N'erp:warehouse:query', 3, 1, 2584, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-04 17:12:09', N'', N'2024-02-04 17:12:09', N'0') |
|
5122 |
GO |
|
5123 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2586, N'仓库创建', N'erp:warehouse:create', 3, 2, 2584, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-04 17:12:09', N'', N'2024-02-04 17:12:09', N'0') |
|
5124 |
GO |
|
5125 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2587, N'仓库更新', N'erp:warehouse:update', 3, 3, 2584, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-04 17:12:09', N'', N'2024-02-04 17:12:09', N'0') |
|
5126 |
GO |
|
5127 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2588, N'仓库删除', N'erp:warehouse:delete', 3, 4, 2584, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-04 17:12:09', N'', N'2024-02-04 17:12:09', N'0') |
|
5128 |
GO |
|
5129 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2589, N'仓库导出', N'erp:warehouse:export', 3, 5, 2584, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-04 17:12:09', N'', N'2024-02-04 17:12:09', N'0') |
|
5130 |
GO |
|
5131 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2590, N'产品库存', N'', 2, 1, 2583, N'stock', N'ep:coffee', N'erp/stock/stock/index', N'ErpStock', 0, N'1', N'1', N'1', N'', N'2024-02-05 06:40:50', N'1', N'2024-02-05 14:42:44', N'0') |
|
5132 |
GO |
|
5133 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2591, N'库存查询', N'erp:stock:query', 3, 1, 2590, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 06:40:50', N'', N'2024-02-05 06:40:50', N'0') |
|
5134 |
GO |
|
5135 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2592, N'库存导出', N'erp:stock:export', 3, 5, 2590, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 06:40:50', N'', N'2024-02-05 06:40:50', N'0') |
|
5136 |
GO |
|
5137 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2593, N'出入库明细', N'', 2, 2, 2583, N'record', N'fa-solid:blog', N'erp/stock/record/index', N'ErpStockRecord', 0, N'1', N'1', N'1', N'', N'2024-02-05 10:27:21', N'1', N'2024-02-06 17:26:11', N'0') |
|
5138 |
GO |
|
5139 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2594, N'库存明细查询', N'erp:stock-record:query', 3, 1, 2593, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 10:27:21', N'', N'2024-02-05 10:27:21', N'0') |
|
5140 |
GO |
|
5141 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2595, N'库存明细导出', N'erp:stock-record:export', 3, 5, 2593, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 10:27:21', N'', N'2024-02-05 10:27:21', N'0') |
|
5142 |
GO |
|
5143 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2596, N'其它入库', N'', 2, 3, 2583, N'in', N'ep:zoom-in', N'erp/stock/in/index', N'ErpStockIn', 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'1', N'2024-02-07 19:06:51', N'0') |
|
5144 |
GO |
|
5145 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2597, N'其它入库单查询', N'erp:stock-in:query', 3, 1, 2596, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-05 16:08:56', N'0') |
|
5146 |
GO |
|
5147 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2598, N'其它入库单创建', N'erp:stock-in:create', 3, 2, 2596, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-05 16:08:56', N'0') |
|
5148 |
GO |
|
5149 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2599, N'其它入库单更新', N'erp:stock-in:update', 3, 3, 2596, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-05 16:08:56', N'0') |
|
5150 |
GO |
|
5151 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2600, N'其它入库单删除', N'erp:stock-in:delete', 3, 4, 2596, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-05 16:08:56', N'0') |
|
5152 |
GO |
|
5153 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2601, N'其它入库单导出', N'erp:stock-in:export', 3, 5, 2596, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-05 16:08:56', N'0') |
|
5154 |
GO |
|
5155 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2602, N'采购管理', N'', 1, 10, 2563, N'purchase', N'fa:buysellads', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-02-06 16:01:01', N'1', N'2024-02-06 16:01:23', N'0') |
|
5156 |
GO |
|
5157 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2603, N'供应商信息', N'', 2, 4, 2602, N'supplier', N'fa:superpowers', N'erp/purchase/supplier/index', N'ErpSupplier', 0, N'1', N'1', N'1', N'', N'2024-02-06 08:21:55', N'1', N'2024-02-06 16:22:25', N'0') |
|
5158 |
GO |
|
5159 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2604, N'供应商查询', N'erp:supplier:query', 3, 1, 2603, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-06 08:21:55', N'', N'2024-02-06 08:21:55', N'0') |
|
5160 |
GO |
|
5161 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2605, N'供应商创建', N'erp:supplier:create', 3, 2, 2603, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-06 08:21:55', N'', N'2024-02-06 08:21:55', N'0') |
|
5162 |
GO |
|
5163 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2606, N'供应商更新', N'erp:supplier:update', 3, 3, 2603, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-06 08:21:55', N'', N'2024-02-06 08:21:55', N'0') |
|
5164 |
GO |
|
5165 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2607, N'供应商删除', N'erp:supplier:delete', 3, 4, 2603, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-06 08:21:55', N'', N'2024-02-06 08:21:55', N'0') |
|
5166 |
GO |
|
5167 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2608, N'供应商导出', N'erp:supplier:export', 3, 5, 2603, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-06 08:21:55', N'', N'2024-02-06 08:21:55', N'0') |
|
5168 |
GO |
|
5169 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2609, N'其它入库单审批', N'erp:stock-in:update-status', 3, 6, 2596, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-05 16:08:56', N'0') |
|
5170 |
GO |
|
5171 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2610, N'其它出库', N'', 2, 4, 2583, N'out', N'ep:zoom-out', N'erp/stock/out/index', N'ErpStockOut', 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'1', N'2024-02-07 19:06:55', N'0') |
|
5172 |
GO |
|
5173 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2611, N'其它出库单查询', N'erp:stock-out:query', 3, 1, 2610, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 06:43:39', N'0') |
|
5174 |
GO |
|
5175 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2612, N'其它出库单创建', N'erp:stock-out:create', 3, 2, 2610, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 06:43:42', N'0') |
|
5176 |
GO |
|
5177 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2613, N'其它出库单更新', N'erp:stock-out:update', 3, 3, 2610, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 06:43:44', N'0') |
|
5178 |
GO |
|
5179 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2614, N'其它出库单删除', N'erp:stock-out:delete', 3, 4, 2610, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 06:43:56', N'0') |
|
5180 |
GO |
|
5181 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2615, N'其它出库单导出', N'erp:stock-out:export', 3, 5, 2610, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 06:43:57', N'0') |
|
5182 |
GO |
|
5183 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2616, N'其它出库单审批', N'erp:stock-out:update-status', 3, 6, 2610, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 06:43:58', N'0') |
|
5184 |
GO |
|
5185 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2617, N'销售管理', N'', 1, 20, 2563, N'sale', N'fa:sellsy', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-02-07 15:12:32', N'1', N'2024-02-07 15:12:32', N'0') |
|
5186 |
GO |
|
5187 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2618, N'客户信息', N'', 2, 4, 2617, N'customer', N'ep:avatar', N'erp/sale/customer/index', N'ErpCustomer', 0, N'1', N'1', N'1', N'', N'2024-02-07 07:21:45', N'1', N'2024-02-07 15:22:25', N'0') |
|
5188 |
GO |
|
5189 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2619, N'客户查询', N'erp:customer:query', 3, 1, 2618, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-07 07:21:45', N'', N'2024-02-07 07:21:45', N'0') |
|
5190 |
GO |
|
5191 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2620, N'客户创建', N'erp:customer:create', 3, 2, 2618, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-07 07:21:45', N'', N'2024-02-07 07:21:45', N'0') |
|
5192 |
GO |
|
5193 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2621, N'客户更新', N'erp:customer:update', 3, 3, 2618, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-07 07:21:45', N'', N'2024-02-07 07:21:45', N'0') |
|
5194 |
GO |
|
5195 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2622, N'客户删除', N'erp:customer:delete', 3, 4, 2618, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-07 07:21:45', N'', N'2024-02-07 07:21:45', N'0') |
|
5196 |
GO |
|
5197 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2623, N'客户导出', N'erp:customer:export', 3, 5, 2618, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-07 07:21:45', N'', N'2024-02-07 07:21:45', N'0') |
|
5198 |
GO |
|
5199 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2624, N'库存调拨', N'', 2, 5, 2583, N'move', N'ep:folder-remove', N'erp/stock/move/index', N'ErpStockMove', 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'1', N'2024-02-16 18:53:55', N'0') |
|
5200 |
GO |
|
5201 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2625, N'库存调度单查询', N'erp:stock-move:query', 3, 1, 2624, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:49', N'0') |
|
5202 |
GO |
|
5203 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2626, N'库存调度单创建', N'erp:stock-move:create', 3, 2, 2624, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:52', N'0') |
|
5204 |
GO |
|
5205 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2627, N'库存调度单更新', N'erp:stock-move:update', 3, 3, 2624, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:55', N'0') |
|
5206 |
GO |
|
5207 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2628, N'库存调度单删除', N'erp:stock-move:delete', 3, 4, 2624, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:57', N'0') |
|
5208 |
GO |
|
5209 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2629, N'库存调度单导出', N'erp:stock-move:export', 3, 5, 2624, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:59', N'0') |
|
5210 |
GO |
|
5211 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2630, N'库存调度单审批', N'erp:stock-move:update-status', 3, 6, 2624, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:13:03', N'0') |
|
5212 |
GO |
|
5213 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2631, N'库存盘点', N'', 2, 6, 2583, N'check', N'ep:circle-check-filled', N'erp/stock/check/index', N'ErpStockCheck', 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'1', N'2024-02-08 08:31:09', N'0') |
|
5214 |
GO |
|
5215 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2632, N'库存盘点单查询', N'erp:stock-check:query', 3, 1, 2631, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:49', N'0') |
|
5216 |
GO |
|
5217 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2633, N'库存盘点单创建', N'erp:stock-check:create', 3, 2, 2631, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:52', N'0') |
|
5218 |
GO |
|
5219 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2634, N'库存盘点单更新', N'erp:stock-check:update', 3, 3, 2631, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:55', N'0') |
|
5220 |
GO |
|
5221 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2635, N'库存盘点单删除', N'erp:stock-check:delete', 3, 4, 2631, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:57', N'0') |
|
5222 |
GO |
|
5223 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2636, N'库存盘点单导出', N'erp:stock-check:export', 3, 5, 2631, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:59', N'0') |
|
5224 |
GO |
|
5225 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2637, N'库存盘点单审批', N'erp:stock-check:update-status', 3, 6, 2631, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:13:03', N'0') |
|
5226 |
GO |
|
5227 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2638, N'销售订单', N'', 2, 1, 2617, N'order', N'fa:first-order', N'erp/sale/order/index', N'ErpSaleOrder', 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'1', N'2024-02-10 21:59:20', N'0') |
|
5228 |
GO |
|
5229 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2639, N'销售订单查询', N'erp:sale-order:query', 3, 1, 2638, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:49', N'0') |
|
5230 |
GO |
|
5231 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2640, N'销售订单创建', N'erp:sale-order:create', 3, 2, 2638, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:52', N'0') |
|
5232 |
GO |
|
5233 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2641, N'销售订单更新', N'erp:sale-order:update', 3, 3, 2638, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:55', N'0') |
|
5234 |
GO |
|
5235 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2642, N'销售订单删除', N'erp:sale-order:delete', 3, 4, 2638, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:57', N'0') |
|
5236 |
GO |
|
5237 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2643, N'销售订单导出', N'erp:sale-order:export', 3, 5, 2638, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:59', N'0') |
|
5238 |
GO |
|
5239 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2644, N'销售订单审批', N'erp:sale-order:update-status', 3, 6, 2638, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:13:03', N'0') |
|
5240 |
GO |
|
5241 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2645, N'财务管理', N'', 1, 50, 2563, N'finance', N'ep:money', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-02-10 08:05:58', N'1', N'2024-02-10 08:06:07', N'0') |
|
5242 |
GO |
|
5243 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2646, N'结算账户', N'', 2, 10, 2645, N'account', N'fa:universal-access', N'erp/finance/account/index', N'ErpAccount', 0, N'1', N'1', N'1', N'', N'2024-02-10 00:15:07', N'1', N'2024-02-14 08:24:31', N'0') |
|
5244 |
GO |
|
5245 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2647, N'结算账户查询', N'erp:account:query', 3, 1, 2646, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-10 00:15:07', N'', N'2024-02-10 00:15:07', N'0') |
|
5246 |
GO |
|
5247 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2648, N'结算账户创建', N'erp:account:create', 3, 2, 2646, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-10 00:15:07', N'', N'2024-02-10 00:15:07', N'0') |
|
5248 |
GO |
|
5249 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2649, N'结算账户更新', N'erp:account:update', 3, 3, 2646, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-10 00:15:07', N'', N'2024-02-10 00:15:07', N'0') |
|
5250 |
GO |
|
5251 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2650, N'结算账户删除', N'erp:account:delete', 3, 4, 2646, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-10 00:15:07', N'', N'2024-02-10 00:15:07', N'0') |
|
5252 |
GO |
|
5253 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2651, N'结算账户导出', N'erp:account:export', 3, 5, 2646, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-10 00:15:07', N'', N'2024-02-10 00:15:07', N'0') |
|
5254 |
GO |
|
5255 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2652, N'销售出库', N'', 2, 2, 2617, N'out', N'ep:sold-out', N'erp/sale/out/index', N'ErpSaleOut', 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'1', N'2024-02-10 22:02:07', N'0') |
|
5256 |
GO |
|
5257 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2653, N'销售出库查询', N'erp:sale-out:query', 3, 1, 2652, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:49', N'0') |
|
5258 |
GO |
|
5259 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2654, N'销售出库创建', N'erp:sale-out:create', 3, 2, 2652, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:52', N'0') |
|
5260 |
GO |
|
5261 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2655, N'销售出库更新', N'erp:sale-out:update', 3, 3, 2652, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:55', N'0') |
|
5262 |
GO |
|
5263 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2656, N'销售出库删除', N'erp:sale-out:delete', 3, 4, 2652, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:57', N'0') |
|
5264 |
GO |
|
5265 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2657, N'销售出库导出', N'erp:sale-out:export', 3, 5, 2652, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:59', N'0') |
|
5266 |
GO |
|
5267 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2658, N'销售出库审批', N'erp:sale-out:update-status', 3, 6, 2652, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:13:03', N'0') |
|
5268 |
GO |
|
5269 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2659, N'销售退货', N'', 2, 3, 2617, N'return', N'fa-solid:bone', N'erp/sale/return/index', N'ErpSaleReturn', 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'1', N'2024-02-12 06:12:58', N'0') |
|
5270 |
GO |
|
5271 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2660, N'销售退货查询', N'erp:sale-return:query', 3, 1, 2659, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:49', N'0') |
|
5272 |
GO |
|
5273 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2661, N'销售退货创建', N'erp:sale-return:create', 3, 2, 2659, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:52', N'0') |
|
5274 |
GO |
|
5275 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2662, N'销售退货更新', N'erp:sale-return:update', 3, 3, 2659, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:55', N'0') |
|
5276 |
GO |
|
5277 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2663, N'销售退货删除', N'erp:sale-return:delete', 3, 4, 2659, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:57', N'0') |
|
5278 |
GO |
|
5279 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2664, N'销售退货导出', N'erp:sale-return:export', 3, 5, 2659, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:12:59', N'0') |
|
5280 |
GO |
|
5281 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2665, N'销售退货审批', N'erp:sale-return:update-status', 3, 6, 2659, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-07 11:13:03', N'0') |
|
5282 |
GO |
|
5283 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2666, N'采购订单', N'', 2, 1, 2602, N'order', N'fa-solid:border-all', N'erp/purchase/order/index', N'ErpPurchaseOrder', 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'1', N'2024-02-12 08:51:49', N'0') |
|
5284 |
GO |
|
5285 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2667, N'采购订单查询', N'erp:purchase-order:query', 3, 1, 2666, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:17', N'0') |
|
5286 |
GO |
|
5287 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2668, N'采购订单创建', N'erp:purchase-order:create', 3, 2, 2666, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:44:54', N'0') |
|
5288 |
GO |
|
5289 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2669, N'采购订单更新', N'erp:purchase-order:update', 3, 3, 2666, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:44:58', N'0') |
|
5290 |
GO |
|
5291 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2670, N'采购订单删除', N'erp:purchase-order:delete', 3, 4, 2666, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:00', N'0') |
|
5292 |
GO |
|
5293 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2671, N'采购订单导出', N'erp:purchase-order:export', 3, 5, 2666, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:05', N'0') |
|
5294 |
GO |
|
5295 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2672, N'采购订单审批', N'erp:purchase-order:update-status', 3, 6, 2666, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:08', N'0') |
|
5296 |
GO |
|
5297 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2673, N'采购入库', N'', 2, 2, 2602, N'in', N'fa-solid:gopuram', N'erp/purchase/in/index', N'ErpPurchaseIn', 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'1', N'2024-02-12 11:19:27', N'0') |
|
5298 |
GO |
|
5299 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2674, N'采购入库查询', N'erp:purchase-in:query', 3, 1, 2673, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:17', N'0') |
|
5300 |
GO |
|
5301 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2675, N'采购入库创建', N'erp:purchase-in:create', 3, 2, 2673, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:44:54', N'0') |
|
5302 |
GO |
|
5303 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2676, N'采购入库更新', N'erp:purchase-in:update', 3, 3, 2673, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:44:58', N'0') |
|
5304 |
GO |
|
5305 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2677, N'采购入库删除', N'erp:purchase-in:delete', 3, 4, 2673, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:00', N'0') |
|
5306 |
GO |
|
5307 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2678, N'采购入库导出', N'erp:purchase-in:export', 3, 5, 2673, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:05', N'0') |
|
5308 |
GO |
|
5309 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2679, N'采购入库审批', N'erp:purchase-in:update-status', 3, 6, 2673, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:08', N'0') |
|
5310 |
GO |
|
5311 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2680, N'采购退货', N'', 2, 3, 2602, N'return', N'ep:minus', N'erp/purchase/return/index', N'ErpPurchaseReturn', 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'1', N'2024-02-12 20:51:02', N'0') |
|
5312 |
GO |
|
5313 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2681, N'采购退货查询', N'erp:purchase-return:query', 3, 1, 2680, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:17', N'0') |
|
5314 |
GO |
|
5315 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2682, N'采购退货创建', N'erp:purchase-return:create', 3, 2, 2680, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:44:54', N'0') |
|
5316 |
GO |
|
5317 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2683, N'采购退货更新', N'erp:purchase-return:update', 3, 3, 2680, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:44:58', N'0') |
|
5318 |
GO |
|
5319 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2684, N'采购退货删除', N'erp:purchase-return:delete', 3, 4, 2680, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:00', N'0') |
|
5320 |
GO |
|
5321 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2685, N'采购退货导出', N'erp:purchase-return:export', 3, 5, 2680, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:05', N'0') |
|
5322 |
GO |
|
5323 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2686, N'采购退货审批', N'erp:purchase-return:update-status', 3, 6, 2680, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:08', N'0') |
|
5324 |
GO |
|
5325 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2687, N'付款单', N'', 2, 1, 2645, N'payment', N'ep:caret-right', N'erp/finance/payment/index', N'ErpFinancePayment', 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'1', N'2024-02-14 08:24:23', N'0') |
|
5326 |
GO |
|
5327 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2688, N'付款单查询', N'erp:finance-payment:query', 3, 1, 2687, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:17', N'0') |
|
5328 |
GO |
|
5329 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2689, N'付款单创建', N'erp:finance-payment:create', 3, 2, 2687, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:44:54', N'0') |
|
5330 |
GO |
|
5331 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2690, N'付款单更新', N'erp:finance-payment:update', 3, 3, 2687, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:44:58', N'0') |
|
5332 |
GO |
|
5333 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2691, N'付款单删除', N'erp:finance-payment:delete', 3, 4, 2687, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:00', N'0') |
|
5334 |
GO |
|
5335 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2692, N'付款单导出', N'erp:finance-payment:export', 3, 5, 2687, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:05', N'0') |
|
5336 |
GO |
|
5337 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2693, N'付款单审批', N'erp:finance-payment:update-status', 3, 6, 2687, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:08', N'0') |
|
5338 |
GO |
|
5339 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2694, N'收款单', N'', 2, 2, 2645, N'receipt', N'ep:expand', N'erp/finance/receipt/index', N'ErpFinanceReceipt', 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'1', N'2024-02-15 19:35:45', N'0') |
|
5340 |
GO |
|
5341 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2695, N'收款单查询', N'erp:finance-receipt:query', 3, 1, 2694, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:17', N'0') |
|
5342 |
GO |
|
5343 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2696, N'收款单创建', N'erp:finance-receipt:create', 3, 2, 2694, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:44:54', N'0') |
|
5344 |
GO |
|
5345 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2697, N'收款单更新', N'erp:finance-receipt:update', 3, 3, 2694, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:44:58', N'0') |
|
5346 |
GO |
|
5347 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2698, N'收款单删除', N'erp:finance-receipt:delete', 3, 4, 2694, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:00', N'0') |
|
5348 |
GO |
|
5349 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2699, N'收款单导出', N'erp:finance-receipt:export', 3, 5, 2694, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:05', N'0') |
|
5350 |
GO |
|
5351 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2700, N'收款单审批', N'erp:finance-receipt:update-status', 3, 6, 2694, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-02-05 16:08:56', N'', N'2024-02-12 00:45:08', N'0') |
|
5352 |
GO |
|
5353 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2701, N'待办事项', N'', 2, 0, 2397, N'backlog', N'fa-solid:tasks', N'crm/backlog/index', N'CrmBacklog', 0, N'1', N'1', N'1', N'1', N'2024-02-17 17:17:11', N'1', N'2024-02-17 17:17:11', N'0') |
|
5354 |
GO |
|
5355 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2702, N'ERP 首页', N'erp:statistics:query', 2, 0, 2563, N'home', N'ep:home-filled', N'erp/home/index.vue', N'ErpHome', 0, N'1', N'1', N'1', N'1', N'2024-02-18 16:49:40', N'1', N'2024-02-26 21:12:18', N'0') |
|
5356 |
GO |
|
5357 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2703, N'商机状态配置', N'', 2, 4, 2524, N'business-status', N'fa-solid:charging-station', N'crm/business/status/index', N'CrmBusinessStatus', 0, N'1', N'1', N'1', N'1', N'2024-02-21 20:15:17', N'1', N'2024-02-21 20:15:17', N'0') |
|
5358 |
GO |
|
5359 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2704, N'商机状态查询', N'crm:business-status:query', 3, 1, 2703, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-02-21 20:35:36', N'1', N'2024-02-21 20:36:06', N'0') |
|
5360 |
GO |
|
5361 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2705, N'商机状态创建', N'crm:business-status:create', 3, 2, 2703, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-02-21 20:35:57', N'1', N'2024-02-21 20:35:57', N'0') |
|
5362 |
GO |
|
5363 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2706, N'商机状态更新', N'crm:business-status:update', 3, 3, 2703, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-02-21 20:36:21', N'1', N'2024-02-21 20:36:21', N'0') |
|
5364 |
GO |
|
5365 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2707, N'商机状态删除', N'crm:business-status:delete', 3, 4, 2703, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-02-21 20:36:36', N'1', N'2024-02-21 20:36:36', N'0') |
|
5366 |
GO |
|
5367 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2708, N'合同配置', N'', 2, 5, 2524, N'contract-config', N'ep:connection', N'crm/contract/config/index', N'CrmContractConfig', 0, N'1', N'1', N'1', N'1', N'2024-02-24 16:44:40', N'1', N'2024-02-24 16:44:48', N'0') |
|
5368 |
GO |
|
5369 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2709, N'客户公海配置查询', N'crm:customer-pool-config:query', 3, 2, 2516, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-02-24 16:45:19', N'1', N'2024-02-24 16:45:28', N'0') |
|
5370 |
GO |
|
5371 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2710, N'合同配置更新', N'crm:contract-config:update', 3, 1, 2708, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-02-24 16:45:56', N'1', N'2024-02-24 16:45:56', N'0') |
|
5372 |
GO |
|
5373 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2711, N'合同配置查询', N'crm:contract-config:query', 3, 2, 2708, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-02-24 16:46:16', N'1', N'2024-02-24 16:46:16', N'0') |
|
5374 |
GO |
|
5375 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2712, N'客户分析', N'crm:statistics-customer:query', 2, 0, 2560, N'customer', N'ep:avatar', N'views/crm/statistics/customer/index.vue', N'CrmStatisticsCustomer', 0, N'1', N'1', N'1', N'1', N'2024-03-09 16:43:56', N'1', N'2024-04-24 19:42:52', N'0') |
|
5376 |
GO |
|
5377 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2713, N'抄送我的', N'bpm:process-instance-cc:query', 2, 30, 1200, N'copy', N'ep:copy-document', N'bpm/task/copy/index', N'BpmProcessInstanceCopy', 0, N'1', N'1', N'1', N'1', N'2024-03-17 21:50:23', N'1', N'2024-04-24 19:55:12', N'0') |
|
5378 |
GO |
|
5379 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2714, N'流程分类', N'', 2, 3, 1186, N'category', N'fa:object-ungroup', N'bpm/category/index', N'BpmCategory', 0, N'1', N'1', N'1', N'', N'2024-03-08 02:00:51', N'1', N'2024-03-21 23:51:18', N'0') |
|
5380 |
GO |
|
5381 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2715, N'分类查询', N'bpm:category:query', 3, 1, 2714, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2024-03-08 02:00:51', N'1', N'2024-03-19 14:36:25', N'0') |
|
5382 |
GO |
|
5383 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2716, N'分类创建', N'bpm:category:create', 3, 2, 2714, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2024-03-08 02:00:51', N'1', N'2024-03-19 14:36:31', N'0') |
|
5384 |
GO |
|
5385 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2717, N'分类更新', N'bpm:category:update', 3, 3, 2714, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2024-03-08 02:00:51', N'1', N'2024-03-19 14:36:35', N'0') |
|
5386 |
GO |
|
5387 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2718, N'分类删除', N'bpm:category:delete', 3, 4, 2714, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'', N'2024-03-08 02:00:51', N'1', N'2024-03-19 14:36:41', N'0') |
|
5388 |
GO |
|
5389 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2720, N'发起流程', N'', 2, 0, 1200, N'create', N'fa-solid:grin-stars', N'bpm/processInstance/create/index', N'BpmProcessInstanceCreate', 0, N'1', N'0', N'1', N'1', N'2024-03-19 19:46:05', N'1', N'2024-03-23 19:03:42', N'0') |
|
5390 |
GO |
|
5391 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2721, N'流程实例', N'', 2, 10, 1186, N'process-instance/manager', N'fa:square', N'bpm/processInstance/manager/index', N'BpmProcessInstanceManager', 0, N'1', N'1', N'1', N'1', N'2024-03-21 23:57:30', N'1', N'2024-03-21 23:57:30', N'0') |
|
5392 |
GO |
|
5393 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2722, N'流程实例的查询(管理员)', N'bpm:process-instance:manager-query', 3, 1, 2721, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-03-22 08:18:27', N'1', N'2024-03-22 08:19:05', N'0') |
|
5394 |
GO |
|
5395 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2723, N'流程实例的取消(管理员)', N'bpm:process-instance:cancel-by-admin', 3, 2, 2721, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-03-22 08:19:25', N'1', N'2024-03-22 08:19:25', N'0') |
|
5396 |
GO |
|
5397 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2724, N'流程任务', N'', 2, 11, 1186, N'process-tasnk', N'ep:collection-tag', N'bpm/task/manager/index', N'BpmManagerTask', 0, N'1', N'1', N'1', N'1', N'2024-03-22 08:43:22', N'1', N'2024-03-22 08:43:27', N'0') |
|
5398 |
GO |
|
5399 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2725, N'流程任务的查询(管理员)', N'bpm:task:mananger-query', 3, 1, 2724, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-03-22 08:43:49', N'1', N'2024-03-22 08:43:49', N'0') |
|
5400 |
GO |
|
5401 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2726, N'流程监听器', N'', 2, 5, 1186, N'process-listener', N'fa:assistive-listening-systems', N'bpm/processListener/index', N'BpmProcessListener', 0, N'1', N'1', N'1', N'', N'2024-03-09 16:05:34', N'1', N'2024-03-23 13:13:38', N'0') |
|
5402 |
GO |
|
5403 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2727, N'流程监听器查询', N'bpm:process-listener:query', 3, 1, 2726, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-03-09 16:05:34', N'', N'2024-03-09 16:05:34', N'0') |
|
5404 |
GO |
|
5405 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2728, N'流程监听器创建', N'bpm:process-listener:create', 3, 2, 2726, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-03-09 16:05:34', N'', N'2024-03-09 16:05:34', N'0') |
|
5406 |
GO |
|
5407 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2729, N'流程监听器更新', N'bpm:process-listener:update', 3, 3, 2726, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-03-09 16:05:34', N'', N'2024-03-09 16:05:34', N'0') |
|
5408 |
GO |
|
5409 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2730, N'流程监听器删除', N'bpm:process-listener:delete', 3, 4, 2726, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-03-09 16:05:34', N'', N'2024-03-09 16:05:34', N'0') |
|
5410 |
GO |
|
5411 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2731, N'流程表达式', N'', 2, 6, 1186, N'process-expression', N'fa:wpexplorer', N'bpm/processExpression/index', N'BpmProcessExpression', 0, N'1', N'1', N'1', N'', N'2024-03-09 22:35:08', N'1', N'2024-03-23 19:43:05', N'0') |
|
5412 |
GO |
|
5413 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2732, N'流程表达式查询', N'bpm:process-expression:query', 3, 1, 2731, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-03-09 22:35:08', N'', N'2024-03-09 22:35:08', N'0') |
|
5414 |
GO |
|
5415 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2733, N'流程表达式创建', N'bpm:process-expression:create', 3, 2, 2731, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-03-09 22:35:08', N'', N'2024-03-09 22:35:08', N'0') |
|
5416 |
GO |
|
5417 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2734, N'流程表达式更新', N'bpm:process-expression:update', 3, 3, 2731, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-03-09 22:35:08', N'', N'2024-03-09 22:35:08', N'0') |
|
5418 |
GO |
|
5419 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2735, N'流程表达式删除', N'bpm:process-expression:delete', 3, 4, 2731, N'', N'', N'', NULL, 0, N'1', N'1', N'1', N'', N'2024-03-09 22:35:08', N'', N'2024-03-09 22:35:08', N'0') |
|
5420 |
GO |
|
5421 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2736, N'员工业绩', N'crm:statistics-performance:query', 2, 3, 2560, N'performance', N'ep:dish-dot', N'crm/statistics/performance/index', N'CrmStatisticsPerformance', 0, N'1', N'1', N'1', N'1', N'2024-04-05 13:49:20', N'1', N'2024-04-24 19:42:43', N'0') |
|
5422 |
GO |
|
5423 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2737, N'客户画像', N'crm:statistics-portrait:query', 2, 4, 2560, N'portrait', N'ep:picture', N'crm/statistics/portrait/index', N'CrmStatisticsPortrait', 0, N'1', N'1', N'1', N'1', N'2024-04-05 13:57:40', N'1', N'2024-04-24 19:42:24', N'0') |
|
5424 |
GO |
|
5425 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2738, N'销售漏斗', N'crm:statistics-funnel:query', 2, 5, 2560, N'funnel', N'ep:grape', N'crm/statistics/funnel/index', N'CrmStatisticsFunnel', 0, N'1', N'1', N'1', N'1', N'2024-04-13 10:53:26', N'1', N'2024-04-24 19:39:33', N'0') |
|
5426 |
GO |
|
5427 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2739, N'消息中心', N'', 1, 7, 1, N'messages', N'ep:chat-dot-round', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-22 23:54:30', N'1', N'2024-04-23 09:36:35', N'0') |
|
5428 |
GO |
|
5429 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2740, N'监控中心', N'', 1, 10, 2, N'monitors', N'ep:monitor', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-23 00:04:44', N'1', N'2024-04-23 00:04:44', N'0') |
|
5430 |
GO |
|
5431 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2741, N'领取公海客户', N'crm:customer:receive', 3, 1, 2546, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 19:47:45', N'1', N'2024-04-24 19:47:45', N'0') |
|
5432 |
GO |
|
5433 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2742, N'分配公海客户', N'crm:customer:distribute', 3, 2, 2546, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 19:48:05', N'1', N'2024-04-24 19:48:05', N'0') |
|
5434 |
GO |
|
5435 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2743, N'商品统计查询', N'statistics:product:query', 3, 1, 2545, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 19:50:05', N'1', N'2024-04-24 19:50:05', N'0') |
|
5436 |
GO |
|
5437 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2744, N'商品统计导出', N'statistics:product:export', 3, 2, 2545, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 19:50:26', N'1', N'2024-04-24 19:50:26', N'0') |
|
5438 |
GO |
|
5439 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2745, N'支付渠道查询', N'pay:channel:query', 3, 10, 1126, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 19:53:01', N'1', N'2024-04-24 19:53:01', N'0') |
|
5440 |
GO |
|
5441 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2746, N'支付渠道创建', N'pay:channel:create', 3, 11, 1126, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 19:53:18', N'1', N'2024-04-24 19:53:18', N'0') |
|
5442 |
GO |
|
5443 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2747, N'支付渠道更新', N'pay:channel:update', 3, 12, 1126, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 19:53:32', N'1', N'2024-04-24 19:53:58', N'0') |
|
5444 |
GO |
|
5445 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2748, N'支付渠道删除', N'pay:channel:delete', 3, 13, 1126, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 19:54:34', N'1', N'2024-04-24 19:54:34', N'0') |
|
5446 |
GO |
|
5447 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2749, N'商品收藏查询', N'product:favorite:query', 3, 10, 2014, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 19:55:47', N'1', N'2024-04-24 19:55:47', N'0') |
|
5448 |
GO |
|
5449 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2750, N'商品浏览查询', N'product:browse-history:query', 3, 20, 2014, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 19:57:43', N'1', N'2024-04-24 19:57:43', N'0') |
|
5450 |
GO |
|
5451 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2751, N'售后同意', N'trade:after-sale:agree', 3, 2, 2073, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 19:58:40', N'1', N'2024-04-24 19:58:40', N'0') |
|
5452 |
GO |
|
5453 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2752, N'售后不同意', N'trade:after-sale:disagree', 3, 3, 2073, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 19:59:03', N'1', N'2024-04-24 19:59:03', N'0') |
|
5454 |
GO |
|
5455 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2753, N'售后确认退货', N'trade:after-sale:receive', 3, 4, 2073, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 20:00:07', N'1', N'2024-04-24 20:00:07', N'0') |
|
5456 |
GO |
|
5457 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2754, N'售后确认退款', N'trade:after-sale:refund', 3, 5, 2073, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 20:00:24', N'1', N'2024-04-24 20:00:24', N'0') |
|
5458 |
GO |
|
5459 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2755, N'删除项目', N'report:go-view-project:delete', 3, 2, 2153, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 20:01:37', N'1', N'2024-04-24 20:01:37', N'0') |
|
5460 |
GO |
|
5461 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2756, N'会员等级记录查询', N'member:level-record:query', 3, 10, 2325, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 20:02:32', N'1', N'2024-04-24 20:02:32', N'0') |
|
5462 |
GO |
|
5463 |
INSERT INTO system_menu (id, name, permission, type, sort, parent_id, path, icon, component, component_name, status, visible, keep_alive, always_show, creator, create_time, updater, update_time, deleted) VALUES (2757, N'会员经验记录查询', N'member:experience-record:query', 3, 11, 2325, N'', N'', N'', N'', 0, N'1', N'1', N'1', N'1', N'2024-04-24 20:02:51', N'1', N'2024-04-24 20:02:51', N'0') |
|
5464 |
GO |
|
5465 |
SET IDENTITY_INSERT system_menu OFF |
|
5466 |
GO |
|
5467 |
COMMIT |
|
5468 |
GO |
|
5469 |
-- @formatter:on |
|
5470 |
|
|
5471 |
-- ---------------------------- |
|
5472 |
-- Table structure for system_notice |
|
5473 |
-- ---------------------------- |
|
5474 |
DROP TABLE IF EXISTS system_notice; |
|
5475 |
CREATE TABLE system_notice |
|
5476 |
( |
|
5477 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
5478 |
title nvarchar(50) NOT NULL, |
|
5479 |
content nvarchar(max) NOT NULL, |
|
5480 |
type tinyint NOT NULL, |
|
5481 |
status tinyint DEFAULT 0 NOT NULL, |
|
5482 |
creator nvarchar(64) DEFAULT '' NULL, |
|
5483 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
5484 |
updater nvarchar(64) DEFAULT '' NULL, |
|
5485 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
5486 |
deleted bit DEFAULT 0 NOT NULL, |
|
5487 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
5488 |
) |
|
5489 |
GO |
|
5490 |
|
|
5491 |
EXEC sp_addextendedproperty |
|
5492 |
'MS_Description', N'公告ID', |
|
5493 |
'SCHEMA', N'dbo', |
|
5494 |
'TABLE', N'system_notice', |
|
5495 |
'COLUMN', N'id' |
|
5496 |
GO |
|
5497 |
|
|
5498 |
EXEC sp_addextendedproperty |
|
5499 |
'MS_Description', N'公告标题', |
|
5500 |
'SCHEMA', N'dbo', |
|
5501 |
'TABLE', N'system_notice', |
|
5502 |
'COLUMN', N'title' |
|
5503 |
GO |
|
5504 |
|
|
5505 |
EXEC sp_addextendedproperty |
|
5506 |
'MS_Description', N'公告内容', |
|
5507 |
'SCHEMA', N'dbo', |
|
5508 |
'TABLE', N'system_notice', |
|
5509 |
'COLUMN', N'content' |
|
5510 |
GO |
|
5511 |
|
|
5512 |
EXEC sp_addextendedproperty |
|
5513 |
'MS_Description', N'公告类型(1通知 2公告)', |
|
5514 |
'SCHEMA', N'dbo', |
|
5515 |
'TABLE', N'system_notice', |
|
5516 |
'COLUMN', N'type' |
|
5517 |
GO |
|
5518 |
|
|
5519 |
EXEC sp_addextendedproperty |
|
5520 |
'MS_Description', N'公告状态(0正常 1关闭)', |
|
5521 |
'SCHEMA', N'dbo', |
|
5522 |
'TABLE', N'system_notice', |
|
5523 |
'COLUMN', N'status' |
|
5524 |
GO |
|
5525 |
|
|
5526 |
EXEC sp_addextendedproperty |
|
5527 |
'MS_Description', N'创建者', |
|
5528 |
'SCHEMA', N'dbo', |
|
5529 |
'TABLE', N'system_notice', |
|
5530 |
'COLUMN', N'creator' |
|
5531 |
GO |
|
5532 |
|
|
5533 |
EXEC sp_addextendedproperty |
|
5534 |
'MS_Description', N'创建时间', |
|
5535 |
'SCHEMA', N'dbo', |
|
5536 |
'TABLE', N'system_notice', |
|
5537 |
'COLUMN', N'create_time' |
|
5538 |
GO |
|
5539 |
|
|
5540 |
EXEC sp_addextendedproperty |
|
5541 |
'MS_Description', N'更新者', |
|
5542 |
'SCHEMA', N'dbo', |
|
5543 |
'TABLE', N'system_notice', |
|
5544 |
'COLUMN', N'updater' |
|
5545 |
GO |
|
5546 |
|
|
5547 |
EXEC sp_addextendedproperty |
|
5548 |
'MS_Description', N'更新时间', |
|
5549 |
'SCHEMA', N'dbo', |
|
5550 |
'TABLE', N'system_notice', |
|
5551 |
'COLUMN', N'update_time' |
|
5552 |
GO |
|
5553 |
|
|
5554 |
EXEC sp_addextendedproperty |
|
5555 |
'MS_Description', N'是否删除', |
|
5556 |
'SCHEMA', N'dbo', |
|
5557 |
'TABLE', N'system_notice', |
|
5558 |
'COLUMN', N'deleted' |
|
5559 |
GO |
|
5560 |
|
|
5561 |
EXEC sp_addextendedproperty |
|
5562 |
'MS_Description', N'租户编号', |
|
5563 |
'SCHEMA', N'dbo', |
|
5564 |
'TABLE', N'system_notice', |
|
5565 |
'COLUMN', N'tenant_id' |
|
5566 |
GO |
|
5567 |
|
|
5568 |
EXEC sp_addextendedproperty |
|
5569 |
'MS_Description', N'通知公告表', |
|
5570 |
'SCHEMA', N'dbo', |
|
5571 |
'TABLE', N'system_notice' |
|
5572 |
GO |
|
5573 |
|
|
5574 |
-- ---------------------------- |
|
5575 |
-- Records of system_notice |
|
5576 |
-- ---------------------------- |
|
5577 |
-- @formatter:off |
|
5578 |
BEGIN TRANSACTION |
|
5579 |
GO |
|
5580 |
SET IDENTITY_INSERT system_notice ON |
|
5581 |
GO |
|
5582 |
INSERT INTO system_notice (id, title, content, type, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1, N'平台的公众', N'<p>新版本内容133</p>', 1, 0, N'admin', N'2021-01-05 17:03:48', N'1', N'2022-05-04 21:00:20', N'0', 1) |
|
5583 |
GO |
|
5584 |
INSERT INTO system_notice (id, title, content, type, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2, N'维护通知:2018-07-01 系统凌晨维护', N'<p><img src="http://test.iailab.iocoder.cn/b7cb3cf49b4b3258bf7309a09dd2f4e5.jpg" alt="" data-href="" style=""/>11112222</p>', 2, 1, N'admin', N'2021-01-05 17:03:48', N'1', N'2023-12-02 20:07:26', N'0', 1) |
|
5585 |
GO |
|
5586 |
INSERT INTO system_notice (id, title, content, type, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4, N'我是测试标题', N'<p>哈哈哈哈123</p>', 1, 0, N'110', N'2022-02-22 01:01:25', N'110', N'2022-02-22 01:01:46', N'0', 121) |
|
5587 |
GO |
|
5588 |
SET IDENTITY_INSERT system_notice OFF |
|
5589 |
GO |
|
5590 |
COMMIT |
|
5591 |
GO |
|
5592 |
-- @formatter:on |
|
5593 |
|
|
5594 |
-- ---------------------------- |
|
5595 |
-- Table structure for system_notify_message |
|
5596 |
-- ---------------------------- |
|
5597 |
DROP TABLE IF EXISTS system_notify_message; |
|
5598 |
CREATE TABLE system_notify_message |
|
5599 |
( |
|
5600 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
5601 |
user_id bigint NOT NULL, |
|
5602 |
user_type tinyint NOT NULL, |
|
5603 |
template_id bigint NOT NULL, |
|
5604 |
template_code nvarchar(64) NOT NULL, |
|
5605 |
template_nickname nvarchar(63) NOT NULL, |
|
5606 |
template_content nvarchar(1024) NOT NULL, |
|
5607 |
template_type int NOT NULL, |
|
5608 |
template_params nvarchar(255) NOT NULL, |
|
5609 |
read_status varchar(1) NOT NULL, |
|
5610 |
read_time datetime2 DEFAULT NULL NULL, |
|
5611 |
creator nvarchar(64) DEFAULT '' NULL, |
|
5612 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
5613 |
updater nvarchar(64) DEFAULT '' NULL, |
|
5614 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
5615 |
deleted bit DEFAULT 0 NOT NULL, |
|
5616 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
5617 |
) |
|
5618 |
GO |
|
5619 |
|
|
5620 |
EXEC sp_addextendedproperty |
|
5621 |
'MS_Description', N'用户ID', |
|
5622 |
'SCHEMA', N'dbo', |
|
5623 |
'TABLE', N'system_notify_message', |
|
5624 |
'COLUMN', N'id' |
|
5625 |
GO |
|
5626 |
|
|
5627 |
EXEC sp_addextendedproperty |
|
5628 |
'MS_Description', N'用户id', |
|
5629 |
'SCHEMA', N'dbo', |
|
5630 |
'TABLE', N'system_notify_message', |
|
5631 |
'COLUMN', N'user_id' |
|
5632 |
GO |
|
5633 |
|
|
5634 |
EXEC sp_addextendedproperty |
|
5635 |
'MS_Description', N'用户类型', |
|
5636 |
'SCHEMA', N'dbo', |
|
5637 |
'TABLE', N'system_notify_message', |
|
5638 |
'COLUMN', N'user_type' |
|
5639 |
GO |
|
5640 |
|
|
5641 |
EXEC sp_addextendedproperty |
|
5642 |
'MS_Description', N'模版编号', |
|
5643 |
'SCHEMA', N'dbo', |
|
5644 |
'TABLE', N'system_notify_message', |
|
5645 |
'COLUMN', N'template_id' |
|
5646 |
GO |
|
5647 |
|
|
5648 |
EXEC sp_addextendedproperty |
|
5649 |
'MS_Description', N'模板编码', |
|
5650 |
'SCHEMA', N'dbo', |
|
5651 |
'TABLE', N'system_notify_message', |
|
5652 |
'COLUMN', N'template_code' |
|
5653 |
GO |
|
5654 |
|
|
5655 |
EXEC sp_addextendedproperty |
|
5656 |
'MS_Description', N'模版发送人名称', |
|
5657 |
'SCHEMA', N'dbo', |
|
5658 |
'TABLE', N'system_notify_message', |
|
5659 |
'COLUMN', N'template_nickname' |
|
5660 |
GO |
|
5661 |
|
|
5662 |
EXEC sp_addextendedproperty |
|
5663 |
'MS_Description', N'模版内容', |
|
5664 |
'SCHEMA', N'dbo', |
|
5665 |
'TABLE', N'system_notify_message', |
|
5666 |
'COLUMN', N'template_content' |
|
5667 |
GO |
|
5668 |
|
|
5669 |
EXEC sp_addextendedproperty |
|
5670 |
'MS_Description', N'模版类型', |
|
5671 |
'SCHEMA', N'dbo', |
|
5672 |
'TABLE', N'system_notify_message', |
|
5673 |
'COLUMN', N'template_type' |
|
5674 |
GO |
|
5675 |
|
|
5676 |
EXEC sp_addextendedproperty |
|
5677 |
'MS_Description', N'模版参数', |
|
5678 |
'SCHEMA', N'dbo', |
|
5679 |
'TABLE', N'system_notify_message', |
|
5680 |
'COLUMN', N'template_params' |
|
5681 |
GO |
|
5682 |
|
|
5683 |
EXEC sp_addextendedproperty |
|
5684 |
'MS_Description', N'是否已读', |
|
5685 |
'SCHEMA', N'dbo', |
|
5686 |
'TABLE', N'system_notify_message', |
|
5687 |
'COLUMN', N'read_status' |
|
5688 |
GO |
|
5689 |
|
|
5690 |
EXEC sp_addextendedproperty |
|
5691 |
'MS_Description', N'阅读时间', |
|
5692 |
'SCHEMA', N'dbo', |
|
5693 |
'TABLE', N'system_notify_message', |
|
5694 |
'COLUMN', N'read_time' |
|
5695 |
GO |
|
5696 |
|
|
5697 |
EXEC sp_addextendedproperty |
|
5698 |
'MS_Description', N'创建者', |
|
5699 |
'SCHEMA', N'dbo', |
|
5700 |
'TABLE', N'system_notify_message', |
|
5701 |
'COLUMN', N'creator' |
|
5702 |
GO |
|
5703 |
|
|
5704 |
EXEC sp_addextendedproperty |
|
5705 |
'MS_Description', N'创建时间', |
|
5706 |
'SCHEMA', N'dbo', |
|
5707 |
'TABLE', N'system_notify_message', |
|
5708 |
'COLUMN', N'create_time' |
|
5709 |
GO |
|
5710 |
|
|
5711 |
EXEC sp_addextendedproperty |
|
5712 |
'MS_Description', N'更新者', |
|
5713 |
'SCHEMA', N'dbo', |
|
5714 |
'TABLE', N'system_notify_message', |
|
5715 |
'COLUMN', N'updater' |
|
5716 |
GO |
|
5717 |
|
|
5718 |
EXEC sp_addextendedproperty |
|
5719 |
'MS_Description', N'更新时间', |
|
5720 |
'SCHEMA', N'dbo', |
|
5721 |
'TABLE', N'system_notify_message', |
|
5722 |
'COLUMN', N'update_time' |
|
5723 |
GO |
|
5724 |
|
|
5725 |
EXEC sp_addextendedproperty |
|
5726 |
'MS_Description', N'是否删除', |
|
5727 |
'SCHEMA', N'dbo', |
|
5728 |
'TABLE', N'system_notify_message', |
|
5729 |
'COLUMN', N'deleted' |
|
5730 |
GO |
|
5731 |
|
|
5732 |
EXEC sp_addextendedproperty |
|
5733 |
'MS_Description', N'租户编号', |
|
5734 |
'SCHEMA', N'dbo', |
|
5735 |
'TABLE', N'system_notify_message', |
|
5736 |
'COLUMN', N'tenant_id' |
|
5737 |
GO |
|
5738 |
|
|
5739 |
EXEC sp_addextendedproperty |
|
5740 |
'MS_Description', N'站内信消息表', |
|
5741 |
'SCHEMA', N'dbo', |
|
5742 |
'TABLE', N'system_notify_message' |
|
5743 |
GO |
|
5744 |
|
|
5745 |
-- ---------------------------- |
|
5746 |
-- Records of system_notify_message |
|
5747 |
-- ---------------------------- |
|
5748 |
-- @formatter:off |
|
5749 |
BEGIN TRANSACTION |
|
5750 |
GO |
|
5751 |
SET IDENTITY_INSERT system_notify_message ON |
|
5752 |
GO |
|
5753 |
INSERT INTO system_notify_message (id, user_id, user_type, template_id, template_code, template_nickname, template_content, template_type, template_params, read_status, read_time, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2, 1, 2, 1, N'test', N'123', N'我是 1,我开始 2 了', 1, N'{"name":"1","what":"2"}', N'1', N'2023-02-10 00:47:04', N'1', N'2023-01-28 11:44:08', N'1', N'2023-02-10 00:47:04', N'0', 1) |
|
5754 |
GO |
|
5755 |
INSERT INTO system_notify_message (id, user_id, user_type, template_id, template_code, template_nickname, template_content, template_type, template_params, read_status, read_time, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3, 1, 2, 1, N'test', N'123', N'我是 1,我开始 2 了', 1, N'{"name":"1","what":"2"}', N'1', N'2023-02-10 00:47:04', N'1', N'2023-01-28 11:45:04', N'1', N'2023-02-10 00:47:04', N'0', 1) |
|
5756 |
GO |
|
5757 |
INSERT INTO system_notify_message (id, user_id, user_type, template_id, template_code, template_nickname, template_content, template_type, template_params, read_status, read_time, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4, 103, 2, 2, N'register', N'系统消息', N'你好,欢迎 哈哈 加入大家庭!', 2, N'{"name":"哈哈"}', N'0', NULL, N'1', N'2023-01-28 21:02:20', N'1', N'2023-01-28 21:02:20', N'0', 1) |
|
5758 |
GO |
|
5759 |
INSERT INTO system_notify_message (id, user_id, user_type, template_id, template_code, template_nickname, template_content, template_type, template_params, read_status, read_time, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (5, 1, 2, 1, N'test', N'123', N'我是 iailab,我开始 写代码 了', 1, N'{"name":"iailab","what":"写代码"}', N'1', N'2023-02-10 00:47:04', N'1', N'2023-01-28 22:21:42', N'1', N'2023-02-10 00:47:04', N'0', 1) |
|
5760 |
GO |
|
5761 |
INSERT INTO system_notify_message (id, user_id, user_type, template_id, template_code, template_nickname, template_content, template_type, template_params, read_status, read_time, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (6, 1, 2, 1, N'test', N'123', N'我是 iailab,我开始 写代码 了', 1, N'{"name":"iailab","what":"写代码"}', N'1', N'2023-01-29 10:52:06', N'1', N'2023-01-28 22:22:07', N'1', N'2023-01-29 10:52:06', N'0', 1) |
|
5762 |
GO |
|
5763 |
INSERT INTO system_notify_message (id, user_id, user_type, template_id, template_code, template_nickname, template_content, template_type, template_params, read_status, read_time, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (7, 1, 2, 1, N'test', N'123', N'我是 2,我开始 3 了', 1, N'{"name":"2","what":"3"}', N'1', N'2023-01-29 10:52:06', N'1', N'2023-01-28 23:45:21', N'1', N'2023-01-29 10:52:06', N'0', 1) |
|
5764 |
GO |
|
5765 |
INSERT INTO system_notify_message (id, user_id, user_type, template_id, template_code, template_nickname, template_content, template_type, template_params, read_status, read_time, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (8, 1, 2, 2, N'register', N'系统消息', N'你好,欢迎 123 加入大家庭!', 2, N'{"name":"123"}', N'1', N'2023-01-29 10:52:06', N'1', N'2023-01-28 23:50:21', N'1', N'2023-01-29 10:52:06', N'0', 1) |
|
5766 |
GO |
|
5767 |
INSERT INTO system_notify_message (id, user_id, user_type, template_id, template_code, template_nickname, template_content, template_type, template_params, read_status, read_time, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (9, 247, 1, 4, N'brokerage_withdraw_audit_approve', N'system', N'您在2023-09-28 08:35:46提现¥0.09元的申请已通过审核', 2, N'{"reason":null,"createTime":"2023-09-28 08:35:46","price":"0.09"}', N'0', NULL, N'1', N'2023-09-28 16:36:22', N'1', N'2023-09-28 16:36:22', N'0', 1) |
|
5768 |
GO |
|
5769 |
INSERT INTO system_notify_message (id, user_id, user_type, template_id, template_code, template_nickname, template_content, template_type, template_params, read_status, read_time, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (10, 247, 1, 4, N'brokerage_withdraw_audit_approve', N'system', N'您在2023-09-30 20:59:40提现¥1.00元的申请已通过审核', 2, N'{"reason":null,"createTime":"2023-09-30 20:59:40","price":"1.00"}', N'0', NULL, N'1', N'2023-10-03 12:11:34', N'1', N'2023-10-03 12:11:34', N'0', 1) |
|
5770 |
GO |
|
5771 |
SET IDENTITY_INSERT system_notify_message OFF |
|
5772 |
GO |
|
5773 |
COMMIT |
|
5774 |
GO |
|
5775 |
-- @formatter:on |
|
5776 |
|
|
5777 |
-- ---------------------------- |
|
5778 |
-- Table structure for system_notify_template |
|
5779 |
-- ---------------------------- |
|
5780 |
DROP TABLE IF EXISTS system_notify_template; |
|
5781 |
CREATE TABLE system_notify_template |
|
5782 |
( |
|
5783 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
5784 |
name nvarchar(63) NOT NULL, |
|
5785 |
code nvarchar(64) NOT NULL, |
|
5786 |
nickname nvarchar(255) NOT NULL, |
|
5787 |
content nvarchar(1024) NOT NULL, |
|
5788 |
type tinyint NOT NULL, |
|
5789 |
params nvarchar(255) DEFAULT NULL NULL, |
|
5790 |
status tinyint NOT NULL, |
|
5791 |
remark nvarchar(255) DEFAULT NULL NULL, |
|
5792 |
creator nvarchar(64) DEFAULT '' NULL, |
|
5793 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
5794 |
updater nvarchar(64) DEFAULT '' NULL, |
|
5795 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
5796 |
deleted bit DEFAULT 0 NOT NULL |
|
5797 |
) |
|
5798 |
GO |
|
5799 |
|
|
5800 |
EXEC sp_addextendedproperty |
|
5801 |
'MS_Description', N'主键', |
|
5802 |
'SCHEMA', N'dbo', |
|
5803 |
'TABLE', N'system_notify_template', |
|
5804 |
'COLUMN', N'id' |
|
5805 |
GO |
|
5806 |
|
|
5807 |
EXEC sp_addextendedproperty |
|
5808 |
'MS_Description', N'模板名称', |
|
5809 |
'SCHEMA', N'dbo', |
|
5810 |
'TABLE', N'system_notify_template', |
|
5811 |
'COLUMN', N'name' |
|
5812 |
GO |
|
5813 |
|
|
5814 |
EXEC sp_addextendedproperty |
|
5815 |
'MS_Description', N'模版编码', |
|
5816 |
'SCHEMA', N'dbo', |
|
5817 |
'TABLE', N'system_notify_template', |
|
5818 |
'COLUMN', N'code' |
|
5819 |
GO |
|
5820 |
|
|
5821 |
EXEC sp_addextendedproperty |
|
5822 |
'MS_Description', N'发送人名称', |
|
5823 |
'SCHEMA', N'dbo', |
|
5824 |
'TABLE', N'system_notify_template', |
|
5825 |
'COLUMN', N'nickname' |
|
5826 |
GO |
|
5827 |
|
|
5828 |
EXEC sp_addextendedproperty |
|
5829 |
'MS_Description', N'模版内容', |
|
5830 |
'SCHEMA', N'dbo', |
|
5831 |
'TABLE', N'system_notify_template', |
|
5832 |
'COLUMN', N'content' |
|
5833 |
GO |
|
5834 |
|
|
5835 |
EXEC sp_addextendedproperty |
|
5836 |
'MS_Description', N'类型', |
|
5837 |
'SCHEMA', N'dbo', |
|
5838 |
'TABLE', N'system_notify_template', |
|
5839 |
'COLUMN', N'type' |
|
5840 |
GO |
|
5841 |
|
|
5842 |
EXEC sp_addextendedproperty |
|
5843 |
'MS_Description', N'参数数组', |
|
5844 |
'SCHEMA', N'dbo', |
|
5845 |
'TABLE', N'system_notify_template', |
|
5846 |
'COLUMN', N'params' |
|
5847 |
GO |
|
5848 |
|
|
5849 |
EXEC sp_addextendedproperty |
|
5850 |
'MS_Description', N'状态', |
|
5851 |
'SCHEMA', N'dbo', |
|
5852 |
'TABLE', N'system_notify_template', |
|
5853 |
'COLUMN', N'status' |
|
5854 |
GO |
|
5855 |
|
|
5856 |
EXEC sp_addextendedproperty |
|
5857 |
'MS_Description', N'备注', |
|
5858 |
'SCHEMA', N'dbo', |
|
5859 |
'TABLE', N'system_notify_template', |
|
5860 |
'COLUMN', N'remark' |
|
5861 |
GO |
|
5862 |
|
|
5863 |
EXEC sp_addextendedproperty |
|
5864 |
'MS_Description', N'创建者', |
|
5865 |
'SCHEMA', N'dbo', |
|
5866 |
'TABLE', N'system_notify_template', |
|
5867 |
'COLUMN', N'creator' |
|
5868 |
GO |
|
5869 |
|
|
5870 |
EXEC sp_addextendedproperty |
|
5871 |
'MS_Description', N'创建时间', |
|
5872 |
'SCHEMA', N'dbo', |
|
5873 |
'TABLE', N'system_notify_template', |
|
5874 |
'COLUMN', N'create_time' |
|
5875 |
GO |
|
5876 |
|
|
5877 |
EXEC sp_addextendedproperty |
|
5878 |
'MS_Description', N'更新者', |
|
5879 |
'SCHEMA', N'dbo', |
|
5880 |
'TABLE', N'system_notify_template', |
|
5881 |
'COLUMN', N'updater' |
|
5882 |
GO |
|
5883 |
|
|
5884 |
EXEC sp_addextendedproperty |
|
5885 |
'MS_Description', N'更新时间', |
|
5886 |
'SCHEMA', N'dbo', |
|
5887 |
'TABLE', N'system_notify_template', |
|
5888 |
'COLUMN', N'update_time' |
|
5889 |
GO |
|
5890 |
|
|
5891 |
EXEC sp_addextendedproperty |
|
5892 |
'MS_Description', N'是否删除', |
|
5893 |
'SCHEMA', N'dbo', |
|
5894 |
'TABLE', N'system_notify_template', |
|
5895 |
'COLUMN', N'deleted' |
|
5896 |
GO |
|
5897 |
|
|
5898 |
EXEC sp_addextendedproperty |
|
5899 |
'MS_Description', N'站内信模板表', |
|
5900 |
'SCHEMA', N'dbo', |
|
5901 |
'TABLE', N'system_notify_template' |
|
5902 |
GO |
|
5903 |
|
|
5904 |
-- ---------------------------- |
|
5905 |
-- Table structure for system_oauth2_access_token |
|
5906 |
-- ---------------------------- |
|
5907 |
DROP TABLE IF EXISTS system_oauth2_access_token; |
|
5908 |
CREATE TABLE system_oauth2_access_token |
|
5909 |
( |
|
5910 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
5911 |
user_id bigint NOT NULL, |
|
5912 |
user_type tinyint NOT NULL, |
|
5913 |
user_info nvarchar(512) NOT NULL, |
|
5914 |
access_token nvarchar(255) NOT NULL, |
|
5915 |
refresh_token nvarchar(32) NOT NULL, |
|
5916 |
client_id nvarchar(255) NOT NULL, |
|
5917 |
scopes nvarchar(255) DEFAULT NULL NULL, |
|
5918 |
expires_time datetime2 NOT NULL, |
|
5919 |
creator nvarchar(64) DEFAULT '' NULL, |
|
5920 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
5921 |
updater nvarchar(64) DEFAULT '' NULL, |
|
5922 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
5923 |
deleted bit DEFAULT 0 NOT NULL, |
|
5924 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
5925 |
) |
|
5926 |
GO |
|
5927 |
|
|
5928 |
CREATE INDEX idx_system_oauth2_access_token_01 ON system_oauth2_access_token (access_token) |
|
5929 |
GO |
|
5930 |
CREATE INDEX idx_system_oauth2_access_token_02 ON system_oauth2_access_token (refresh_token) |
|
5931 |
GO |
|
5932 |
|
|
5933 |
EXEC sp_addextendedproperty |
|
5934 |
'MS_Description', N'编号', |
|
5935 |
'SCHEMA', N'dbo', |
|
5936 |
'TABLE', N'system_oauth2_access_token', |
|
5937 |
'COLUMN', N'id' |
|
5938 |
GO |
|
5939 |
|
|
5940 |
EXEC sp_addextendedproperty |
|
5941 |
'MS_Description', N'用户编号', |
|
5942 |
'SCHEMA', N'dbo', |
|
5943 |
'TABLE', N'system_oauth2_access_token', |
|
5944 |
'COLUMN', N'user_id' |
|
5945 |
GO |
|
5946 |
|
|
5947 |
EXEC sp_addextendedproperty |
|
5948 |
'MS_Description', N'用户类型', |
|
5949 |
'SCHEMA', N'dbo', |
|
5950 |
'TABLE', N'system_oauth2_access_token', |
|
5951 |
'COLUMN', N'user_type' |
|
5952 |
GO |
|
5953 |
|
|
5954 |
EXEC sp_addextendedproperty |
|
5955 |
'MS_Description', N'用户信息', |
|
5956 |
'SCHEMA', N'dbo', |
|
5957 |
'TABLE', N'system_oauth2_access_token', |
|
5958 |
'COLUMN', N'user_info' |
|
5959 |
GO |
|
5960 |
|
|
5961 |
EXEC sp_addextendedproperty |
|
5962 |
'MS_Description', N'访问令牌', |
|
5963 |
'SCHEMA', N'dbo', |
|
5964 |
'TABLE', N'system_oauth2_access_token', |
|
5965 |
'COLUMN', N'access_token' |
|
5966 |
GO |
|
5967 |
|
|
5968 |
EXEC sp_addextendedproperty |
|
5969 |
'MS_Description', N'刷新令牌', |
|
5970 |
'SCHEMA', N'dbo', |
|
5971 |
'TABLE', N'system_oauth2_access_token', |
|
5972 |
'COLUMN', N'refresh_token' |
|
5973 |
GO |
|
5974 |
|
|
5975 |
EXEC sp_addextendedproperty |
|
5976 |
'MS_Description', N'客户端编号', |
|
5977 |
'SCHEMA', N'dbo', |
|
5978 |
'TABLE', N'system_oauth2_access_token', |
|
5979 |
'COLUMN', N'client_id' |
|
5980 |
GO |
|
5981 |
|
|
5982 |
EXEC sp_addextendedproperty |
|
5983 |
'MS_Description', N'授权范围', |
|
5984 |
'SCHEMA', N'dbo', |
|
5985 |
'TABLE', N'system_oauth2_access_token', |
|
5986 |
'COLUMN', N'scopes' |
|
5987 |
GO |
|
5988 |
|
|
5989 |
EXEC sp_addextendedproperty |
|
5990 |
'MS_Description', N'过期时间', |
|
5991 |
'SCHEMA', N'dbo', |
|
5992 |
'TABLE', N'system_oauth2_access_token', |
|
5993 |
'COLUMN', N'expires_time' |
|
5994 |
GO |
|
5995 |
|
|
5996 |
EXEC sp_addextendedproperty |
|
5997 |
'MS_Description', N'创建者', |
|
5998 |
'SCHEMA', N'dbo', |
|
5999 |
'TABLE', N'system_oauth2_access_token', |
|
6000 |
'COLUMN', N'creator' |
|
6001 |
GO |
|
6002 |
|
|
6003 |
EXEC sp_addextendedproperty |
|
6004 |
'MS_Description', N'创建时间', |
|
6005 |
'SCHEMA', N'dbo', |
|
6006 |
'TABLE', N'system_oauth2_access_token', |
|
6007 |
'COLUMN', N'create_time' |
|
6008 |
GO |
|
6009 |
|
|
6010 |
EXEC sp_addextendedproperty |
|
6011 |
'MS_Description', N'更新者', |
|
6012 |
'SCHEMA', N'dbo', |
|
6013 |
'TABLE', N'system_oauth2_access_token', |
|
6014 |
'COLUMN', N'updater' |
|
6015 |
GO |
|
6016 |
|
|
6017 |
EXEC sp_addextendedproperty |
|
6018 |
'MS_Description', N'更新时间', |
|
6019 |
'SCHEMA', N'dbo', |
|
6020 |
'TABLE', N'system_oauth2_access_token', |
|
6021 |
'COLUMN', N'update_time' |
|
6022 |
GO |
|
6023 |
|
|
6024 |
EXEC sp_addextendedproperty |
|
6025 |
'MS_Description', N'是否删除', |
|
6026 |
'SCHEMA', N'dbo', |
|
6027 |
'TABLE', N'system_oauth2_access_token', |
|
6028 |
'COLUMN', N'deleted' |
|
6029 |
GO |
|
6030 |
|
|
6031 |
EXEC sp_addextendedproperty |
|
6032 |
'MS_Description', N'租户编号', |
|
6033 |
'SCHEMA', N'dbo', |
|
6034 |
'TABLE', N'system_oauth2_access_token', |
|
6035 |
'COLUMN', N'tenant_id' |
|
6036 |
GO |
|
6037 |
|
|
6038 |
EXEC sp_addextendedproperty |
|
6039 |
'MS_Description', N'OAuth2 访问令牌', |
|
6040 |
'SCHEMA', N'dbo', |
|
6041 |
'TABLE', N'system_oauth2_access_token' |
|
6042 |
GO |
|
6043 |
|
|
6044 |
-- ---------------------------- |
|
6045 |
-- Table structure for system_oauth2_approve |
|
6046 |
-- ---------------------------- |
|
6047 |
DROP TABLE IF EXISTS system_oauth2_approve; |
|
6048 |
CREATE TABLE system_oauth2_approve |
|
6049 |
( |
|
6050 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
6051 |
user_id bigint NOT NULL, |
|
6052 |
user_type tinyint NOT NULL, |
|
6053 |
client_id nvarchar(255) NOT NULL, |
|
6054 |
scope nvarchar(255) DEFAULT '' NOT NULL, |
|
6055 |
approved varchar(1) DEFAULT '0' NOT NULL, |
|
6056 |
expires_time datetime2 NOT NULL, |
|
6057 |
creator nvarchar(64) DEFAULT '' NULL, |
|
6058 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
6059 |
updater nvarchar(64) DEFAULT '' NULL, |
|
6060 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
6061 |
deleted bit DEFAULT 0 NOT NULL, |
|
6062 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
6063 |
) |
|
6064 |
GO |
|
6065 |
|
|
6066 |
EXEC sp_addextendedproperty |
|
6067 |
'MS_Description', N'编号', |
|
6068 |
'SCHEMA', N'dbo', |
|
6069 |
'TABLE', N'system_oauth2_approve', |
|
6070 |
'COLUMN', N'id' |
|
6071 |
GO |
|
6072 |
|
|
6073 |
EXEC sp_addextendedproperty |
|
6074 |
'MS_Description', N'用户编号', |
|
6075 |
'SCHEMA', N'dbo', |
|
6076 |
'TABLE', N'system_oauth2_approve', |
|
6077 |
'COLUMN', N'user_id' |
|
6078 |
GO |
|
6079 |
|
|
6080 |
EXEC sp_addextendedproperty |
|
6081 |
'MS_Description', N'用户类型', |
|
6082 |
'SCHEMA', N'dbo', |
|
6083 |
'TABLE', N'system_oauth2_approve', |
|
6084 |
'COLUMN', N'user_type' |
|
6085 |
GO |
|
6086 |
|
|
6087 |
EXEC sp_addextendedproperty |
|
6088 |
'MS_Description', N'客户端编号', |
|
6089 |
'SCHEMA', N'dbo', |
|
6090 |
'TABLE', N'system_oauth2_approve', |
|
6091 |
'COLUMN', N'client_id' |
|
6092 |
GO |
|
6093 |
|
|
6094 |
EXEC sp_addextendedproperty |
|
6095 |
'MS_Description', N'授权范围', |
|
6096 |
'SCHEMA', N'dbo', |
|
6097 |
'TABLE', N'system_oauth2_approve', |
|
6098 |
'COLUMN', N'scope' |
|
6099 |
GO |
|
6100 |
|
|
6101 |
EXEC sp_addextendedproperty |
|
6102 |
'MS_Description', N'是否接受', |
|
6103 |
'SCHEMA', N'dbo', |
|
6104 |
'TABLE', N'system_oauth2_approve', |
|
6105 |
'COLUMN', N'approved' |
|
6106 |
GO |
|
6107 |
|
|
6108 |
EXEC sp_addextendedproperty |
|
6109 |
'MS_Description', N'过期时间', |
|
6110 |
'SCHEMA', N'dbo', |
|
6111 |
'TABLE', N'system_oauth2_approve', |
|
6112 |
'COLUMN', N'expires_time' |
|
6113 |
GO |
|
6114 |
|
|
6115 |
EXEC sp_addextendedproperty |
|
6116 |
'MS_Description', N'创建者', |
|
6117 |
'SCHEMA', N'dbo', |
|
6118 |
'TABLE', N'system_oauth2_approve', |
|
6119 |
'COLUMN', N'creator' |
|
6120 |
GO |
|
6121 |
|
|
6122 |
EXEC sp_addextendedproperty |
|
6123 |
'MS_Description', N'创建时间', |
|
6124 |
'SCHEMA', N'dbo', |
|
6125 |
'TABLE', N'system_oauth2_approve', |
|
6126 |
'COLUMN', N'create_time' |
|
6127 |
GO |
|
6128 |
|
|
6129 |
EXEC sp_addextendedproperty |
|
6130 |
'MS_Description', N'更新者', |
|
6131 |
'SCHEMA', N'dbo', |
|
6132 |
'TABLE', N'system_oauth2_approve', |
|
6133 |
'COLUMN', N'updater' |
|
6134 |
GO |
|
6135 |
|
|
6136 |
EXEC sp_addextendedproperty |
|
6137 |
'MS_Description', N'更新时间', |
|
6138 |
'SCHEMA', N'dbo', |
|
6139 |
'TABLE', N'system_oauth2_approve', |
|
6140 |
'COLUMN', N'update_time' |
|
6141 |
GO |
|
6142 |
|
|
6143 |
EXEC sp_addextendedproperty |
|
6144 |
'MS_Description', N'是否删除', |
|
6145 |
'SCHEMA', N'dbo', |
|
6146 |
'TABLE', N'system_oauth2_approve', |
|
6147 |
'COLUMN', N'deleted' |
|
6148 |
GO |
|
6149 |
|
|
6150 |
EXEC sp_addextendedproperty |
|
6151 |
'MS_Description', N'租户编号', |
|
6152 |
'SCHEMA', N'dbo', |
|
6153 |
'TABLE', N'system_oauth2_approve', |
|
6154 |
'COLUMN', N'tenant_id' |
|
6155 |
GO |
|
6156 |
|
|
6157 |
EXEC sp_addextendedproperty |
|
6158 |
'MS_Description', N'OAuth2 批准表', |
|
6159 |
'SCHEMA', N'dbo', |
|
6160 |
'TABLE', N'system_oauth2_approve' |
|
6161 |
GO |
|
6162 |
|
|
6163 |
-- ---------------------------- |
|
6164 |
-- Table structure for system_oauth2_client |
|
6165 |
-- ---------------------------- |
|
6166 |
DROP TABLE IF EXISTS system_oauth2_client; |
|
6167 |
CREATE TABLE system_oauth2_client |
|
6168 |
( |
|
6169 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
6170 |
client_id nvarchar(255) NOT NULL, |
|
6171 |
secret nvarchar(255) NOT NULL, |
|
6172 |
name nvarchar(255) NOT NULL, |
|
6173 |
logo nvarchar(255) NOT NULL, |
|
6174 |
description nvarchar(255) DEFAULT NULL NULL, |
|
6175 |
status tinyint NOT NULL, |
|
6176 |
access_token_validity_seconds int NOT NULL, |
|
6177 |
refresh_token_validity_seconds int NOT NULL, |
|
6178 |
redirect_uris nvarchar(255) NOT NULL, |
|
6179 |
authorized_grant_types nvarchar(255) NOT NULL, |
|
6180 |
scopes nvarchar(255) DEFAULT NULL NULL, |
|
6181 |
auto_approve_scopes nvarchar(255) DEFAULT NULL NULL, |
|
6182 |
authorities nvarchar(255) DEFAULT NULL NULL, |
|
6183 |
resource_ids nvarchar(255) DEFAULT NULL NULL, |
|
6184 |
additional_information nvarchar(4000) DEFAULT NULL NULL, |
|
6185 |
creator nvarchar(64) DEFAULT '' NULL, |
|
6186 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
6187 |
updater nvarchar(64) DEFAULT '' NULL, |
|
6188 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
6189 |
deleted bit DEFAULT 0 NOT NULL |
|
6190 |
) |
|
6191 |
GO |
|
6192 |
|
|
6193 |
EXEC sp_addextendedproperty |
|
6194 |
'MS_Description', N'编号', |
|
6195 |
'SCHEMA', N'dbo', |
|
6196 |
'TABLE', N'system_oauth2_client', |
|
6197 |
'COLUMN', N'id' |
|
6198 |
GO |
|
6199 |
|
|
6200 |
EXEC sp_addextendedproperty |
|
6201 |
'MS_Description', N'客户端编号', |
|
6202 |
'SCHEMA', N'dbo', |
|
6203 |
'TABLE', N'system_oauth2_client', |
|
6204 |
'COLUMN', N'client_id' |
|
6205 |
GO |
|
6206 |
|
|
6207 |
EXEC sp_addextendedproperty |
|
6208 |
'MS_Description', N'客户端密钥', |
|
6209 |
'SCHEMA', N'dbo', |
|
6210 |
'TABLE', N'system_oauth2_client', |
|
6211 |
'COLUMN', N'secret' |
|
6212 |
GO |
|
6213 |
|
|
6214 |
EXEC sp_addextendedproperty |
|
6215 |
'MS_Description', N'应用名', |
|
6216 |
'SCHEMA', N'dbo', |
|
6217 |
'TABLE', N'system_oauth2_client', |
|
6218 |
'COLUMN', N'name' |
|
6219 |
GO |
|
6220 |
|
|
6221 |
EXEC sp_addextendedproperty |
|
6222 |
'MS_Description', N'应用图标', |
|
6223 |
'SCHEMA', N'dbo', |
|
6224 |
'TABLE', N'system_oauth2_client', |
|
6225 |
'COLUMN', N'logo' |
|
6226 |
GO |
|
6227 |
|
|
6228 |
EXEC sp_addextendedproperty |
|
6229 |
'MS_Description', N'应用描述', |
|
6230 |
'SCHEMA', N'dbo', |
|
6231 |
'TABLE', N'system_oauth2_client', |
|
6232 |
'COLUMN', N'description' |
|
6233 |
GO |
|
6234 |
|
|
6235 |
EXEC sp_addextendedproperty |
|
6236 |
'MS_Description', N'状态', |
|
6237 |
'SCHEMA', N'dbo', |
|
6238 |
'TABLE', N'system_oauth2_client', |
|
6239 |
'COLUMN', N'status' |
|
6240 |
GO |
|
6241 |
|
|
6242 |
EXEC sp_addextendedproperty |
|
6243 |
'MS_Description', N'访问令牌的有效期', |
|
6244 |
'SCHEMA', N'dbo', |
|
6245 |
'TABLE', N'system_oauth2_client', |
|
6246 |
'COLUMN', N'access_token_validity_seconds' |
|
6247 |
GO |
|
6248 |
|
|
6249 |
EXEC sp_addextendedproperty |
|
6250 |
'MS_Description', N'刷新令牌的有效期', |
|
6251 |
'SCHEMA', N'dbo', |
|
6252 |
'TABLE', N'system_oauth2_client', |
|
6253 |
'COLUMN', N'refresh_token_validity_seconds' |
|
6254 |
GO |
|
6255 |
|
|
6256 |
EXEC sp_addextendedproperty |
|
6257 |
'MS_Description', N'可重定向的 URI 地址', |
|
6258 |
'SCHEMA', N'dbo', |
|
6259 |
'TABLE', N'system_oauth2_client', |
|
6260 |
'COLUMN', N'redirect_uris' |
|
6261 |
GO |
|
6262 |
|
|
6263 |
EXEC sp_addextendedproperty |
|
6264 |
'MS_Description', N'授权类型', |
|
6265 |
'SCHEMA', N'dbo', |
|
6266 |
'TABLE', N'system_oauth2_client', |
|
6267 |
'COLUMN', N'authorized_grant_types' |
|
6268 |
GO |
|
6269 |
|
|
6270 |
EXEC sp_addextendedproperty |
|
6271 |
'MS_Description', N'授权范围', |
|
6272 |
'SCHEMA', N'dbo', |
|
6273 |
'TABLE', N'system_oauth2_client', |
|
6274 |
'COLUMN', N'scopes' |
|
6275 |
GO |
|
6276 |
|
|
6277 |
EXEC sp_addextendedproperty |
|
6278 |
'MS_Description', N'自动通过的授权范围', |
|
6279 |
'SCHEMA', N'dbo', |
|
6280 |
'TABLE', N'system_oauth2_client', |
|
6281 |
'COLUMN', N'auto_approve_scopes' |
|
6282 |
GO |
|
6283 |
|
|
6284 |
EXEC sp_addextendedproperty |
|
6285 |
'MS_Description', N'权限', |
|
6286 |
'SCHEMA', N'dbo', |
|
6287 |
'TABLE', N'system_oauth2_client', |
|
6288 |
'COLUMN', N'authorities' |
|
6289 |
GO |
|
6290 |
|
|
6291 |
EXEC sp_addextendedproperty |
|
6292 |
'MS_Description', N'资源', |
|
6293 |
'SCHEMA', N'dbo', |
|
6294 |
'TABLE', N'system_oauth2_client', |
|
6295 |
'COLUMN', N'resource_ids' |
|
6296 |
GO |
|
6297 |
|
|
6298 |
EXEC sp_addextendedproperty |
|
6299 |
'MS_Description', N'附加信息', |
|
6300 |
'SCHEMA', N'dbo', |
|
6301 |
'TABLE', N'system_oauth2_client', |
|
6302 |
'COLUMN', N'additional_information' |
|
6303 |
GO |
|
6304 |
|
|
6305 |
EXEC sp_addextendedproperty |
|
6306 |
'MS_Description', N'创建者', |
|
6307 |
'SCHEMA', N'dbo', |
|
6308 |
'TABLE', N'system_oauth2_client', |
|
6309 |
'COLUMN', N'creator' |
|
6310 |
GO |
|
6311 |
|
|
6312 |
EXEC sp_addextendedproperty |
|
6313 |
'MS_Description', N'创建时间', |
|
6314 |
'SCHEMA', N'dbo', |
|
6315 |
'TABLE', N'system_oauth2_client', |
|
6316 |
'COLUMN', N'create_time' |
|
6317 |
GO |
|
6318 |
|
|
6319 |
EXEC sp_addextendedproperty |
|
6320 |
'MS_Description', N'更新者', |
|
6321 |
'SCHEMA', N'dbo', |
|
6322 |
'TABLE', N'system_oauth2_client', |
|
6323 |
'COLUMN', N'updater' |
|
6324 |
GO |
|
6325 |
|
|
6326 |
EXEC sp_addextendedproperty |
|
6327 |
'MS_Description', N'更新时间', |
|
6328 |
'SCHEMA', N'dbo', |
|
6329 |
'TABLE', N'system_oauth2_client', |
|
6330 |
'COLUMN', N'update_time' |
|
6331 |
GO |
|
6332 |
|
|
6333 |
EXEC sp_addextendedproperty |
|
6334 |
'MS_Description', N'是否删除', |
|
6335 |
'SCHEMA', N'dbo', |
|
6336 |
'TABLE', N'system_oauth2_client', |
|
6337 |
'COLUMN', N'deleted' |
|
6338 |
GO |
|
6339 |
|
|
6340 |
EXEC sp_addextendedproperty |
|
6341 |
'MS_Description', N'OAuth2 客户端表', |
|
6342 |
'SCHEMA', N'dbo', |
|
6343 |
'TABLE', N'system_oauth2_client' |
|
6344 |
GO |
|
6345 |
|
|
6346 |
-- ---------------------------- |
|
6347 |
-- Records of system_oauth2_client |
|
6348 |
-- ---------------------------- |
|
6349 |
-- @formatter:off |
|
6350 |
BEGIN TRANSACTION |
|
6351 |
GO |
|
6352 |
SET IDENTITY_INSERT system_oauth2_client ON |
|
6353 |
GO |
|
6354 |
INSERT INTO system_oauth2_client (id, client_id, secret, name, logo, description, status, access_token_validity_seconds, refresh_token_validity_seconds, redirect_uris, authorized_grant_types, scopes, auto_approve_scopes, authorities, resource_ids, additional_information, creator, create_time, updater, update_time, deleted) VALUES (1, N'default', N'admin123', N'iailab', N'http://test.iailab.iocoder.cn/a5e2e244368878a366b516805a4aabf1.png', N'我是描述', 0, 1800, 2592000, N'["https://www.baidu.com","https://doc.iocoder.cn"]', N'["password","authorization_code","implicit","refresh_token"]', N'["user.read","user.write"]', N'[]', N'["user.read","user.write"]', N'[]', N'{}', N'1', N'2022-05-11 21:47:12', N'1', N'2024-02-22 16:31:52', N'0') |
|
6355 |
GO |
|
6356 |
INSERT INTO system_oauth2_client (id, client_id, secret, name, logo, description, status, access_token_validity_seconds, refresh_token_validity_seconds, redirect_uris, authorized_grant_types, scopes, auto_approve_scopes, authorities, resource_ids, additional_information, creator, create_time, updater, update_time, deleted) VALUES (40, N'test', N'test2', N'biubiu', N'http://test.iailab.iocoder.cn/277a899d573723f1fcdfb57340f00379.png', N'啦啦啦啦', 0, 1800, 43200, N'["https://www.baidu.com"]', N'["password","authorization_code","implicit"]', N'["user_info","projects"]', N'["user_info"]', N'[]', N'[]', N'{}', N'1', N'2022-05-12 00:28:20', N'1', N'2023-12-02 21:01:01', N'0') |
|
6357 |
GO |
|
6358 |
INSERT INTO system_oauth2_client (id, client_id, secret, name, logo, description, status, access_token_validity_seconds, refresh_token_validity_seconds, redirect_uris, authorized_grant_types, scopes, auto_approve_scopes, authorities, resource_ids, additional_information, creator, create_time, updater, update_time, deleted) VALUES (41, N'iailab-sso-demo-by-code', N'test', N'基于授权码模式,如何实现 SSO 单点登录?', N'http://test.iailab.iocoder.cn/fe4ed36596adad5120036ef61a6d0153654544d44af8dd4ad3ffe8f759933d6f.png', NULL, 0, 1800, 43200, N'["http://127.0.0.1:18080"]', N'["authorization_code","refresh_token"]', N'["user.read","user.write"]', N'[]', N'[]', N'[]', NULL, N'1', N'2022-09-29 13:28:31', N'1', N'2022-09-29 13:28:31', N'0') |
|
6359 |
GO |
|
6360 |
INSERT INTO system_oauth2_client (id, client_id, secret, name, logo, description, status, access_token_validity_seconds, refresh_token_validity_seconds, redirect_uris, authorized_grant_types, scopes, auto_approve_scopes, authorities, resource_ids, additional_information, creator, create_time, updater, update_time, deleted) VALUES (42, N'iailab-sso-demo-by-password', N'test', N'基于密码模式,如何实现 SSO 单点登录?', N'http://test.iailab.iocoder.cn/604bdc695e13b3b22745be704d1f2aa8ee05c5f26f9fead6d1ca49005afbc857.jpeg', NULL, 0, 1800, 43200, N'["http://127.0.0.1:18080"]', N'["password","refresh_token"]', N'["user.read","user.write"]', N'[]', N'[]', N'[]', NULL, N'1', N'2022-10-04 17:40:16', N'1', N'2022-10-04 20:31:21', N'0') |
|
6361 |
GO |
|
6362 |
SET IDENTITY_INSERT system_oauth2_client OFF |
|
6363 |
GO |
|
6364 |
COMMIT |
|
6365 |
GO |
|
6366 |
-- @formatter:on |
|
6367 |
|
|
6368 |
-- ---------------------------- |
|
6369 |
-- Table structure for system_oauth2_code |
|
6370 |
-- ---------------------------- |
|
6371 |
DROP TABLE IF EXISTS system_oauth2_code; |
|
6372 |
CREATE TABLE system_oauth2_code |
|
6373 |
( |
|
6374 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
6375 |
user_id bigint NOT NULL, |
|
6376 |
user_type tinyint NOT NULL, |
|
6377 |
code nvarchar(32) NOT NULL, |
|
6378 |
client_id nvarchar(255) NOT NULL, |
|
6379 |
scopes nvarchar(255) DEFAULT '' NULL, |
|
6380 |
expires_time datetime2 NOT NULL, |
|
6381 |
redirect_uri nvarchar(255) DEFAULT NULL NULL, |
|
6382 |
state nvarchar(255) DEFAULT '' NOT NULL, |
|
6383 |
creator nvarchar(64) DEFAULT '' NULL, |
|
6384 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
6385 |
updater nvarchar(64) DEFAULT '' NULL, |
|
6386 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
6387 |
deleted bit DEFAULT 0 NOT NULL, |
|
6388 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
6389 |
) |
|
6390 |
GO |
|
6391 |
|
|
6392 |
EXEC sp_addextendedproperty |
|
6393 |
'MS_Description', N'编号', |
|
6394 |
'SCHEMA', N'dbo', |
|
6395 |
'TABLE', N'system_oauth2_code', |
|
6396 |
'COLUMN', N'id' |
|
6397 |
GO |
|
6398 |
|
|
6399 |
EXEC sp_addextendedproperty |
|
6400 |
'MS_Description', N'用户编号', |
|
6401 |
'SCHEMA', N'dbo', |
|
6402 |
'TABLE', N'system_oauth2_code', |
|
6403 |
'COLUMN', N'user_id' |
|
6404 |
GO |
|
6405 |
|
|
6406 |
EXEC sp_addextendedproperty |
|
6407 |
'MS_Description', N'用户类型', |
|
6408 |
'SCHEMA', N'dbo', |
|
6409 |
'TABLE', N'system_oauth2_code', |
|
6410 |
'COLUMN', N'user_type' |
|
6411 |
GO |
|
6412 |
|
|
6413 |
EXEC sp_addextendedproperty |
|
6414 |
'MS_Description', N'授权码', |
|
6415 |
'SCHEMA', N'dbo', |
|
6416 |
'TABLE', N'system_oauth2_code', |
|
6417 |
'COLUMN', N'code' |
|
6418 |
GO |
|
6419 |
|
|
6420 |
EXEC sp_addextendedproperty |
|
6421 |
'MS_Description', N'客户端编号', |
|
6422 |
'SCHEMA', N'dbo', |
|
6423 |
'TABLE', N'system_oauth2_code', |
|
6424 |
'COLUMN', N'client_id' |
|
6425 |
GO |
|
6426 |
|
|
6427 |
EXEC sp_addextendedproperty |
|
6428 |
'MS_Description', N'授权范围', |
|
6429 |
'SCHEMA', N'dbo', |
|
6430 |
'TABLE', N'system_oauth2_code', |
|
6431 |
'COLUMN', N'scopes' |
|
6432 |
GO |
|
6433 |
|
|
6434 |
EXEC sp_addextendedproperty |
|
6435 |
'MS_Description', N'过期时间', |
|
6436 |
'SCHEMA', N'dbo', |
|
6437 |
'TABLE', N'system_oauth2_code', |
|
6438 |
'COLUMN', N'expires_time' |
|
6439 |
GO |
|
6440 |
|
|
6441 |
EXEC sp_addextendedproperty |
|
6442 |
'MS_Description', N'可重定向的 URI 地址', |
|
6443 |
'SCHEMA', N'dbo', |
|
6444 |
'TABLE', N'system_oauth2_code', |
|
6445 |
'COLUMN', N'redirect_uri' |
|
6446 |
GO |
|
6447 |
|
|
6448 |
EXEC sp_addextendedproperty |
|
6449 |
'MS_Description', N'状态', |
|
6450 |
'SCHEMA', N'dbo', |
|
6451 |
'TABLE', N'system_oauth2_code', |
|
6452 |
'COLUMN', N'state' |
|
6453 |
GO |
|
6454 |
|
|
6455 |
EXEC sp_addextendedproperty |
|
6456 |
'MS_Description', N'创建者', |
|
6457 |
'SCHEMA', N'dbo', |
|
6458 |
'TABLE', N'system_oauth2_code', |
|
6459 |
'COLUMN', N'creator' |
|
6460 |
GO |
|
6461 |
|
|
6462 |
EXEC sp_addextendedproperty |
|
6463 |
'MS_Description', N'创建时间', |
|
6464 |
'SCHEMA', N'dbo', |
|
6465 |
'TABLE', N'system_oauth2_code', |
|
6466 |
'COLUMN', N'create_time' |
|
6467 |
GO |
|
6468 |
|
|
6469 |
EXEC sp_addextendedproperty |
|
6470 |
'MS_Description', N'更新者', |
|
6471 |
'SCHEMA', N'dbo', |
|
6472 |
'TABLE', N'system_oauth2_code', |
|
6473 |
'COLUMN', N'updater' |
|
6474 |
GO |
|
6475 |
|
|
6476 |
EXEC sp_addextendedproperty |
|
6477 |
'MS_Description', N'更新时间', |
|
6478 |
'SCHEMA', N'dbo', |
|
6479 |
'TABLE', N'system_oauth2_code', |
|
6480 |
'COLUMN', N'update_time' |
|
6481 |
GO |
|
6482 |
|
|
6483 |
EXEC sp_addextendedproperty |
|
6484 |
'MS_Description', N'是否删除', |
|
6485 |
'SCHEMA', N'dbo', |
|
6486 |
'TABLE', N'system_oauth2_code', |
|
6487 |
'COLUMN', N'deleted' |
|
6488 |
GO |
|
6489 |
|
|
6490 |
EXEC sp_addextendedproperty |
|
6491 |
'MS_Description', N'租户编号', |
|
6492 |
'SCHEMA', N'dbo', |
|
6493 |
'TABLE', N'system_oauth2_code', |
|
6494 |
'COLUMN', N'tenant_id' |
|
6495 |
GO |
|
6496 |
|
|
6497 |
EXEC sp_addextendedproperty |
|
6498 |
'MS_Description', N'OAuth2 授权码表', |
|
6499 |
'SCHEMA', N'dbo', |
|
6500 |
'TABLE', N'system_oauth2_code' |
|
6501 |
GO |
|
6502 |
|
|
6503 |
-- ---------------------------- |
|
6504 |
-- Table structure for system_oauth2_refresh_token |
|
6505 |
-- ---------------------------- |
|
6506 |
DROP TABLE IF EXISTS system_oauth2_refresh_token; |
|
6507 |
CREATE TABLE system_oauth2_refresh_token |
|
6508 |
( |
|
6509 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
6510 |
user_id bigint NOT NULL, |
|
6511 |
refresh_token nvarchar(32) NOT NULL, |
|
6512 |
user_type tinyint NOT NULL, |
|
6513 |
client_id nvarchar(255) NOT NULL, |
|
6514 |
scopes nvarchar(255) DEFAULT NULL NULL, |
|
6515 |
expires_time datetime2 NOT NULL, |
|
6516 |
creator nvarchar(64) DEFAULT '' NULL, |
|
6517 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
6518 |
updater nvarchar(64) DEFAULT '' NULL, |
|
6519 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
6520 |
deleted bit DEFAULT 0 NOT NULL, |
|
6521 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
6522 |
) |
|
6523 |
GO |
|
6524 |
|
|
6525 |
EXEC sp_addextendedproperty |
|
6526 |
'MS_Description', N'编号', |
|
6527 |
'SCHEMA', N'dbo', |
|
6528 |
'TABLE', N'system_oauth2_refresh_token', |
|
6529 |
'COLUMN', N'id' |
|
6530 |
GO |
|
6531 |
|
|
6532 |
EXEC sp_addextendedproperty |
|
6533 |
'MS_Description', N'用户编号', |
|
6534 |
'SCHEMA', N'dbo', |
|
6535 |
'TABLE', N'system_oauth2_refresh_token', |
|
6536 |
'COLUMN', N'user_id' |
|
6537 |
GO |
|
6538 |
|
|
6539 |
EXEC sp_addextendedproperty |
|
6540 |
'MS_Description', N'刷新令牌', |
|
6541 |
'SCHEMA', N'dbo', |
|
6542 |
'TABLE', N'system_oauth2_refresh_token', |
|
6543 |
'COLUMN', N'refresh_token' |
|
6544 |
GO |
|
6545 |
|
|
6546 |
EXEC sp_addextendedproperty |
|
6547 |
'MS_Description', N'用户类型', |
|
6548 |
'SCHEMA', N'dbo', |
|
6549 |
'TABLE', N'system_oauth2_refresh_token', |
|
6550 |
'COLUMN', N'user_type' |
|
6551 |
GO |
|
6552 |
|
|
6553 |
EXEC sp_addextendedproperty |
|
6554 |
'MS_Description', N'客户端编号', |
|
6555 |
'SCHEMA', N'dbo', |
|
6556 |
'TABLE', N'system_oauth2_refresh_token', |
|
6557 |
'COLUMN', N'client_id' |
|
6558 |
GO |
|
6559 |
|
|
6560 |
EXEC sp_addextendedproperty |
|
6561 |
'MS_Description', N'授权范围', |
|
6562 |
'SCHEMA', N'dbo', |
|
6563 |
'TABLE', N'system_oauth2_refresh_token', |
|
6564 |
'COLUMN', N'scopes' |
|
6565 |
GO |
|
6566 |
|
|
6567 |
EXEC sp_addextendedproperty |
|
6568 |
'MS_Description', N'过期时间', |
|
6569 |
'SCHEMA', N'dbo', |
|
6570 |
'TABLE', N'system_oauth2_refresh_token', |
|
6571 |
'COLUMN', N'expires_time' |
|
6572 |
GO |
|
6573 |
|
|
6574 |
EXEC sp_addextendedproperty |
|
6575 |
'MS_Description', N'创建者', |
|
6576 |
'SCHEMA', N'dbo', |
|
6577 |
'TABLE', N'system_oauth2_refresh_token', |
|
6578 |
'COLUMN', N'creator' |
|
6579 |
GO |
|
6580 |
|
|
6581 |
EXEC sp_addextendedproperty |
|
6582 |
'MS_Description', N'创建时间', |
|
6583 |
'SCHEMA', N'dbo', |
|
6584 |
'TABLE', N'system_oauth2_refresh_token', |
|
6585 |
'COLUMN', N'create_time' |
|
6586 |
GO |
|
6587 |
|
|
6588 |
EXEC sp_addextendedproperty |
|
6589 |
'MS_Description', N'更新者', |
|
6590 |
'SCHEMA', N'dbo', |
|
6591 |
'TABLE', N'system_oauth2_refresh_token', |
|
6592 |
'COLUMN', N'updater' |
|
6593 |
GO |
|
6594 |
|
|
6595 |
EXEC sp_addextendedproperty |
|
6596 |
'MS_Description', N'更新时间', |
|
6597 |
'SCHEMA', N'dbo', |
|
6598 |
'TABLE', N'system_oauth2_refresh_token', |
|
6599 |
'COLUMN', N'update_time' |
|
6600 |
GO |
|
6601 |
|
|
6602 |
EXEC sp_addextendedproperty |
|
6603 |
'MS_Description', N'是否删除', |
|
6604 |
'SCHEMA', N'dbo', |
|
6605 |
'TABLE', N'system_oauth2_refresh_token', |
|
6606 |
'COLUMN', N'deleted' |
|
6607 |
GO |
|
6608 |
|
|
6609 |
EXEC sp_addextendedproperty |
|
6610 |
'MS_Description', N'租户编号', |
|
6611 |
'SCHEMA', N'dbo', |
|
6612 |
'TABLE', N'system_oauth2_refresh_token', |
|
6613 |
'COLUMN', N'tenant_id' |
|
6614 |
GO |
|
6615 |
|
|
6616 |
EXEC sp_addextendedproperty |
|
6617 |
'MS_Description', N'OAuth2 刷新令牌', |
|
6618 |
'SCHEMA', N'dbo', |
|
6619 |
'TABLE', N'system_oauth2_refresh_token' |
|
6620 |
GO |
|
6621 |
|
|
6622 |
-- ---------------------------- |
|
6623 |
-- Table structure for system_operate_log |
|
6624 |
-- ---------------------------- |
|
6625 |
DROP TABLE IF EXISTS system_operate_log; |
|
6626 |
CREATE TABLE system_operate_log |
|
6627 |
( |
|
6628 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
6629 |
trace_id nvarchar(64) DEFAULT '' NOT NULL, |
|
6630 |
user_id bigint NOT NULL, |
|
6631 |
user_type tinyint DEFAULT 0 NOT NULL, |
|
6632 |
type nvarchar(50) NOT NULL, |
|
6633 |
sub_type nvarchar(50) NOT NULL, |
|
6634 |
biz_id bigint NOT NULL, |
|
6635 |
action nvarchar(2000) DEFAULT '' NOT NULL, |
|
6636 |
extra nvarchar(2000) DEFAULT '' NOT NULL, |
|
6637 |
request_method nvarchar(16) DEFAULT '' NULL, |
|
6638 |
request_url nvarchar(255) DEFAULT '' NULL, |
|
6639 |
user_ip nvarchar(50) DEFAULT NULL NULL, |
|
6640 |
user_agent nvarchar(200) DEFAULT NULL NULL, |
|
6641 |
creator nvarchar(64) DEFAULT '' NULL, |
|
6642 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
6643 |
updater nvarchar(64) DEFAULT '' NULL, |
|
6644 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
6645 |
deleted bit DEFAULT 0 NOT NULL, |
|
6646 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
6647 |
) |
|
6648 |
GO |
|
6649 |
|
|
6650 |
EXEC sp_addextendedproperty |
|
6651 |
'MS_Description', N'日志主键', |
|
6652 |
'SCHEMA', N'dbo', |
|
6653 |
'TABLE', N'system_operate_log', |
|
6654 |
'COLUMN', N'id' |
|
6655 |
GO |
|
6656 |
|
|
6657 |
EXEC sp_addextendedproperty |
|
6658 |
'MS_Description', N'链路追踪编号', |
|
6659 |
'SCHEMA', N'dbo', |
|
6660 |
'TABLE', N'system_operate_log', |
|
6661 |
'COLUMN', N'trace_id' |
|
6662 |
GO |
|
6663 |
|
|
6664 |
EXEC sp_addextendedproperty |
|
6665 |
'MS_Description', N'用户编号', |
|
6666 |
'SCHEMA', N'dbo', |
|
6667 |
'TABLE', N'system_operate_log', |
|
6668 |
'COLUMN', N'user_id' |
|
6669 |
GO |
|
6670 |
|
|
6671 |
EXEC sp_addextendedproperty |
|
6672 |
'MS_Description', N'用户类型', |
|
6673 |
'SCHEMA', N'dbo', |
|
6674 |
'TABLE', N'system_operate_log', |
|
6675 |
'COLUMN', N'user_type' |
|
6676 |
GO |
|
6677 |
|
|
6678 |
EXEC sp_addextendedproperty |
|
6679 |
'MS_Description', N'操作模块类型', |
|
6680 |
'SCHEMA', N'dbo', |
|
6681 |
'TABLE', N'system_operate_log', |
|
6682 |
'COLUMN', N'type' |
|
6683 |
GO |
|
6684 |
|
|
6685 |
EXEC sp_addextendedproperty |
|
6686 |
'MS_Description', N'操作名', |
|
6687 |
'SCHEMA', N'dbo', |
|
6688 |
'TABLE', N'system_operate_log', |
|
6689 |
'COLUMN', N'sub_type' |
|
6690 |
GO |
|
6691 |
|
|
6692 |
EXEC sp_addextendedproperty |
|
6693 |
'MS_Description', N'操作数据模块编号', |
|
6694 |
'SCHEMA', N'dbo', |
|
6695 |
'TABLE', N'system_operate_log', |
|
6696 |
'COLUMN', N'biz_id' |
|
6697 |
GO |
|
6698 |
|
|
6699 |
EXEC sp_addextendedproperty |
|
6700 |
'MS_Description', N'操作内容', |
|
6701 |
'SCHEMA', N'dbo', |
|
6702 |
'TABLE', N'system_operate_log', |
|
6703 |
'COLUMN', N'action' |
|
6704 |
GO |
|
6705 |
|
|
6706 |
EXEC sp_addextendedproperty |
|
6707 |
'MS_Description', N'拓展字段', |
|
6708 |
'SCHEMA', N'dbo', |
|
6709 |
'TABLE', N'system_operate_log', |
|
6710 |
'COLUMN', N'extra' |
|
6711 |
GO |
|
6712 |
|
|
6713 |
EXEC sp_addextendedproperty |
|
6714 |
'MS_Description', N'请求方法名', |
|
6715 |
'SCHEMA', N'dbo', |
|
6716 |
'TABLE', N'system_operate_log', |
|
6717 |
'COLUMN', N'request_method' |
|
6718 |
GO |
|
6719 |
|
|
6720 |
EXEC sp_addextendedproperty |
|
6721 |
'MS_Description', N'请求地址', |
|
6722 |
'SCHEMA', N'dbo', |
|
6723 |
'TABLE', N'system_operate_log', |
|
6724 |
'COLUMN', N'request_url' |
|
6725 |
GO |
|
6726 |
|
|
6727 |
EXEC sp_addextendedproperty |
|
6728 |
'MS_Description', N'用户 IP', |
|
6729 |
'SCHEMA', N'dbo', |
|
6730 |
'TABLE', N'system_operate_log', |
|
6731 |
'COLUMN', N'user_ip' |
|
6732 |
GO |
|
6733 |
|
|
6734 |
EXEC sp_addextendedproperty |
|
6735 |
'MS_Description', N'浏览器 UA', |
|
6736 |
'SCHEMA', N'dbo', |
|
6737 |
'TABLE', N'system_operate_log', |
|
6738 |
'COLUMN', N'user_agent' |
|
6739 |
GO |
|
6740 |
|
|
6741 |
EXEC sp_addextendedproperty |
|
6742 |
'MS_Description', N'创建者', |
|
6743 |
'SCHEMA', N'dbo', |
|
6744 |
'TABLE', N'system_operate_log', |
|
6745 |
'COLUMN', N'creator' |
|
6746 |
GO |
|
6747 |
|
|
6748 |
EXEC sp_addextendedproperty |
|
6749 |
'MS_Description', N'创建时间', |
|
6750 |
'SCHEMA', N'dbo', |
|
6751 |
'TABLE', N'system_operate_log', |
|
6752 |
'COLUMN', N'create_time' |
|
6753 |
GO |
|
6754 |
|
|
6755 |
EXEC sp_addextendedproperty |
|
6756 |
'MS_Description', N'更新者', |
|
6757 |
'SCHEMA', N'dbo', |
|
6758 |
'TABLE', N'system_operate_log', |
|
6759 |
'COLUMN', N'updater' |
|
6760 |
GO |
|
6761 |
|
|
6762 |
EXEC sp_addextendedproperty |
|
6763 |
'MS_Description', N'更新时间', |
|
6764 |
'SCHEMA', N'dbo', |
|
6765 |
'TABLE', N'system_operate_log', |
|
6766 |
'COLUMN', N'update_time' |
|
6767 |
GO |
|
6768 |
|
|
6769 |
EXEC sp_addextendedproperty |
|
6770 |
'MS_Description', N'是否删除', |
|
6771 |
'SCHEMA', N'dbo', |
|
6772 |
'TABLE', N'system_operate_log', |
|
6773 |
'COLUMN', N'deleted' |
|
6774 |
GO |
|
6775 |
|
|
6776 |
EXEC sp_addextendedproperty |
|
6777 |
'MS_Description', N'租户编号', |
|
6778 |
'SCHEMA', N'dbo', |
|
6779 |
'TABLE', N'system_operate_log', |
|
6780 |
'COLUMN', N'tenant_id' |
|
6781 |
GO |
|
6782 |
|
|
6783 |
EXEC sp_addextendedproperty |
|
6784 |
'MS_Description', N'操作日志记录 V2 版本', |
|
6785 |
'SCHEMA', N'dbo', |
|
6786 |
'TABLE', N'system_operate_log' |
|
6787 |
GO |
|
6788 |
|
|
6789 |
-- ---------------------------- |
|
6790 |
-- Table structure for system_post |
|
6791 |
-- ---------------------------- |
|
6792 |
DROP TABLE IF EXISTS system_post; |
|
6793 |
CREATE TABLE system_post |
|
6794 |
( |
|
6795 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
6796 |
code nvarchar(64) NOT NULL, |
|
6797 |
name nvarchar(50) NOT NULL, |
|
6798 |
sort int NOT NULL, |
|
6799 |
status tinyint NOT NULL, |
|
6800 |
remark nvarchar(500) DEFAULT NULL NULL, |
|
6801 |
creator nvarchar(64) DEFAULT '' NULL, |
|
6802 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
6803 |
updater nvarchar(64) DEFAULT '' NULL, |
|
6804 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
6805 |
deleted bit DEFAULT 0 NOT NULL, |
|
6806 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
6807 |
) |
|
6808 |
GO |
|
6809 |
|
|
6810 |
EXEC sp_addextendedproperty |
|
6811 |
'MS_Description', N'岗位ID', |
|
6812 |
'SCHEMA', N'dbo', |
|
6813 |
'TABLE', N'system_post', |
|
6814 |
'COLUMN', N'id' |
|
6815 |
GO |
|
6816 |
|
|
6817 |
EXEC sp_addextendedproperty |
|
6818 |
'MS_Description', N'岗位编码', |
|
6819 |
'SCHEMA', N'dbo', |
|
6820 |
'TABLE', N'system_post', |
|
6821 |
'COLUMN', N'code' |
|
6822 |
GO |
|
6823 |
|
|
6824 |
EXEC sp_addextendedproperty |
|
6825 |
'MS_Description', N'岗位名称', |
|
6826 |
'SCHEMA', N'dbo', |
|
6827 |
'TABLE', N'system_post', |
|
6828 |
'COLUMN', N'name' |
|
6829 |
GO |
|
6830 |
|
|
6831 |
EXEC sp_addextendedproperty |
|
6832 |
'MS_Description', N'显示顺序', |
|
6833 |
'SCHEMA', N'dbo', |
|
6834 |
'TABLE', N'system_post', |
|
6835 |
'COLUMN', N'sort' |
|
6836 |
GO |
|
6837 |
|
|
6838 |
EXEC sp_addextendedproperty |
|
6839 |
'MS_Description', N'状态(0正常 1停用)', |
|
6840 |
'SCHEMA', N'dbo', |
|
6841 |
'TABLE', N'system_post', |
|
6842 |
'COLUMN', N'status' |
|
6843 |
GO |
|
6844 |
|
|
6845 |
EXEC sp_addextendedproperty |
|
6846 |
'MS_Description', N'备注', |
|
6847 |
'SCHEMA', N'dbo', |
|
6848 |
'TABLE', N'system_post', |
|
6849 |
'COLUMN', N'remark' |
|
6850 |
GO |
|
6851 |
|
|
6852 |
EXEC sp_addextendedproperty |
|
6853 |
'MS_Description', N'创建者', |
|
6854 |
'SCHEMA', N'dbo', |
|
6855 |
'TABLE', N'system_post', |
|
6856 |
'COLUMN', N'creator' |
|
6857 |
GO |
|
6858 |
|
|
6859 |
EXEC sp_addextendedproperty |
|
6860 |
'MS_Description', N'创建时间', |
|
6861 |
'SCHEMA', N'dbo', |
|
6862 |
'TABLE', N'system_post', |
|
6863 |
'COLUMN', N'create_time' |
|
6864 |
GO |
|
6865 |
|
|
6866 |
EXEC sp_addextendedproperty |
|
6867 |
'MS_Description', N'更新者', |
|
6868 |
'SCHEMA', N'dbo', |
|
6869 |
'TABLE', N'system_post', |
|
6870 |
'COLUMN', N'updater' |
|
6871 |
GO |
|
6872 |
|
|
6873 |
EXEC sp_addextendedproperty |
|
6874 |
'MS_Description', N'更新时间', |
|
6875 |
'SCHEMA', N'dbo', |
|
6876 |
'TABLE', N'system_post', |
|
6877 |
'COLUMN', N'update_time' |
|
6878 |
GO |
|
6879 |
|
|
6880 |
EXEC sp_addextendedproperty |
|
6881 |
'MS_Description', N'是否删除', |
|
6882 |
'SCHEMA', N'dbo', |
|
6883 |
'TABLE', N'system_post', |
|
6884 |
'COLUMN', N'deleted' |
|
6885 |
GO |
|
6886 |
|
|
6887 |
EXEC sp_addextendedproperty |
|
6888 |
'MS_Description', N'租户编号', |
|
6889 |
'SCHEMA', N'dbo', |
|
6890 |
'TABLE', N'system_post', |
|
6891 |
'COLUMN', N'tenant_id' |
|
6892 |
GO |
|
6893 |
|
|
6894 |
EXEC sp_addextendedproperty |
|
6895 |
'MS_Description', N'岗位信息表', |
|
6896 |
'SCHEMA', N'dbo', |
|
6897 |
'TABLE', N'system_post' |
|
6898 |
GO |
|
6899 |
|
|
6900 |
-- ---------------------------- |
|
6901 |
-- Records of system_post |
|
6902 |
-- ---------------------------- |
|
6903 |
-- @formatter:off |
|
6904 |
BEGIN TRANSACTION |
|
6905 |
GO |
|
6906 |
SET IDENTITY_INSERT system_post ON |
|
6907 |
GO |
|
6908 |
INSERT INTO system_post (id, code, name, sort, status, remark, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1, N'ceo', N'董事长', 1, 0, N'', N'admin', N'2021-01-06 17:03:48', N'1', N'2023-02-11 15:19:04', N'0', 1) |
|
6909 |
GO |
|
6910 |
INSERT INTO system_post (id, code, name, sort, status, remark, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2, N'se', N'项目经理', 2, 0, N'', N'admin', N'2021-01-05 17:03:48', N'1', N'2023-11-15 09:18:20', N'0', 1) |
|
6911 |
GO |
|
6912 |
INSERT INTO system_post (id, code, name, sort, status, remark, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4, N'user', N'普通员工', 4, 0, N'111', N'admin', N'2021-01-05 17:03:48', N'1', N'2023-12-02 10:04:37', N'0', 1) |
|
6913 |
GO |
|
6914 |
INSERT INTO system_post (id, code, name, sort, status, remark, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (5, N'HR', N'人力资源', 5, 0, N'', N'1', N'2024-03-24 20:45:40', N'1', N'2024-03-24 20:45:40', N'0', 1) |
|
6915 |
GO |
|
6916 |
SET IDENTITY_INSERT system_post OFF |
|
6917 |
GO |
|
6918 |
COMMIT |
|
6919 |
GO |
|
6920 |
-- @formatter:on |
|
6921 |
|
|
6922 |
-- ---------------------------- |
|
6923 |
-- Table structure for system_role |
|
6924 |
-- ---------------------------- |
|
6925 |
DROP TABLE IF EXISTS system_role; |
|
6926 |
CREATE TABLE system_role |
|
6927 |
( |
|
6928 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
6929 |
name nvarchar(30) NOT NULL, |
|
6930 |
code nvarchar(100) NOT NULL, |
|
6931 |
sort int NOT NULL, |
|
6932 |
data_scope tinyint DEFAULT 1 NOT NULL, |
|
6933 |
data_scope_dept_ids nvarchar(500) DEFAULT '' NOT NULL, |
|
6934 |
status tinyint NOT NULL, |
|
6935 |
type tinyint NOT NULL, |
|
6936 |
remark nvarchar(500) DEFAULT NULL NULL, |
|
6937 |
creator nvarchar(64) DEFAULT '' NULL, |
|
6938 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
6939 |
updater nvarchar(64) DEFAULT '' NULL, |
|
6940 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
6941 |
deleted bit DEFAULT 0 NOT NULL, |
|
6942 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
6943 |
) |
|
6944 |
GO |
|
6945 |
|
|
6946 |
EXEC sp_addextendedproperty |
|
6947 |
'MS_Description', N'角色ID', |
|
6948 |
'SCHEMA', N'dbo', |
|
6949 |
'TABLE', N'system_role', |
|
6950 |
'COLUMN', N'id' |
|
6951 |
GO |
|
6952 |
|
|
6953 |
EXEC sp_addextendedproperty |
|
6954 |
'MS_Description', N'角色名称', |
|
6955 |
'SCHEMA', N'dbo', |
|
6956 |
'TABLE', N'system_role', |
|
6957 |
'COLUMN', N'name' |
|
6958 |
GO |
|
6959 |
|
|
6960 |
EXEC sp_addextendedproperty |
|
6961 |
'MS_Description', N'角色权限字符串', |
|
6962 |
'SCHEMA', N'dbo', |
|
6963 |
'TABLE', N'system_role', |
|
6964 |
'COLUMN', N'code' |
|
6965 |
GO |
|
6966 |
|
|
6967 |
EXEC sp_addextendedproperty |
|
6968 |
'MS_Description', N'显示顺序', |
|
6969 |
'SCHEMA', N'dbo', |
|
6970 |
'TABLE', N'system_role', |
|
6971 |
'COLUMN', N'sort' |
|
6972 |
GO |
|
6973 |
|
|
6974 |
EXEC sp_addextendedproperty |
|
6975 |
'MS_Description', N'数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)', |
|
6976 |
'SCHEMA', N'dbo', |
|
6977 |
'TABLE', N'system_role', |
|
6978 |
'COLUMN', N'data_scope' |
|
6979 |
GO |
|
6980 |
|
|
6981 |
EXEC sp_addextendedproperty |
|
6982 |
'MS_Description', N'数据范围(指定部门数组)', |
|
6983 |
'SCHEMA', N'dbo', |
|
6984 |
'TABLE', N'system_role', |
|
6985 |
'COLUMN', N'data_scope_dept_ids' |
|
6986 |
GO |
|
6987 |
|
|
6988 |
EXEC sp_addextendedproperty |
|
6989 |
'MS_Description', N'角色状态(0正常 1停用)', |
|
6990 |
'SCHEMA', N'dbo', |
|
6991 |
'TABLE', N'system_role', |
|
6992 |
'COLUMN', N'status' |
|
6993 |
GO |
|
6994 |
|
|
6995 |
EXEC sp_addextendedproperty |
|
6996 |
'MS_Description', N'角色类型', |
|
6997 |
'SCHEMA', N'dbo', |
|
6998 |
'TABLE', N'system_role', |
|
6999 |
'COLUMN', N'type' |
|
7000 |
GO |
|
7001 |
|
|
7002 |
EXEC sp_addextendedproperty |
|
7003 |
'MS_Description', N'备注', |
|
7004 |
'SCHEMA', N'dbo', |
|
7005 |
'TABLE', N'system_role', |
|
7006 |
'COLUMN', N'remark' |
|
7007 |
GO |
|
7008 |
|
|
7009 |
EXEC sp_addextendedproperty |
|
7010 |
'MS_Description', N'创建者', |
|
7011 |
'SCHEMA', N'dbo', |
|
7012 |
'TABLE', N'system_role', |
|
7013 |
'COLUMN', N'creator' |
|
7014 |
GO |
|
7015 |
|
|
7016 |
EXEC sp_addextendedproperty |
|
7017 |
'MS_Description', N'创建时间', |
|
7018 |
'SCHEMA', N'dbo', |
|
7019 |
'TABLE', N'system_role', |
|
7020 |
'COLUMN', N'create_time' |
|
7021 |
GO |
|
7022 |
|
|
7023 |
EXEC sp_addextendedproperty |
|
7024 |
'MS_Description', N'更新者', |
|
7025 |
'SCHEMA', N'dbo', |
|
7026 |
'TABLE', N'system_role', |
|
7027 |
'COLUMN', N'updater' |
|
7028 |
GO |
|
7029 |
|
|
7030 |
EXEC sp_addextendedproperty |
|
7031 |
'MS_Description', N'更新时间', |
|
7032 |
'SCHEMA', N'dbo', |
|
7033 |
'TABLE', N'system_role', |
|
7034 |
'COLUMN', N'update_time' |
|
7035 |
GO |
|
7036 |
|
|
7037 |
EXEC sp_addextendedproperty |
|
7038 |
'MS_Description', N'是否删除', |
|
7039 |
'SCHEMA', N'dbo', |
|
7040 |
'TABLE', N'system_role', |
|
7041 |
'COLUMN', N'deleted' |
|
7042 |
GO |
|
7043 |
|
|
7044 |
EXEC sp_addextendedproperty |
|
7045 |
'MS_Description', N'租户编号', |
|
7046 |
'SCHEMA', N'dbo', |
|
7047 |
'TABLE', N'system_role', |
|
7048 |
'COLUMN', N'tenant_id' |
|
7049 |
GO |
|
7050 |
|
|
7051 |
EXEC sp_addextendedproperty |
|
7052 |
'MS_Description', N'角色信息表', |
|
7053 |
'SCHEMA', N'dbo', |
|
7054 |
'TABLE', N'system_role' |
|
7055 |
GO |
|
7056 |
|
|
7057 |
-- ---------------------------- |
|
7058 |
-- Records of system_role |
|
7059 |
-- ---------------------------- |
|
7060 |
-- @formatter:off |
|
7061 |
BEGIN TRANSACTION |
|
7062 |
GO |
|
7063 |
SET IDENTITY_INSERT system_role ON |
|
7064 |
GO |
|
7065 |
INSERT INTO system_role (id, name, code, sort, data_scope, data_scope_dept_ids, status, type, remark, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1, N'超级管理员', N'super_admin', 1, 1, N'', 0, 1, N'超级管理员', N'admin', N'2021-01-05 17:03:48', N'', N'2022-02-22 05:08:21', N'0', 1) |
|
7066 |
GO |
|
7067 |
INSERT INTO system_role (id, name, code, sort, data_scope, data_scope_dept_ids, status, type, remark, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2, N'普通角色', N'common', 2, 2, N'', 0, 1, N'普通角色', N'admin', N'2021-01-05 17:03:48', N'', N'2022-02-22 05:08:20', N'0', 1) |
|
7068 |
GO |
|
7069 |
INSERT INTO system_role (id, name, code, sort, data_scope, data_scope_dept_ids, status, type, remark, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3, N'CRM 管理员', N'crm_admin', 2, 1, N'', 0, 1, N'CRM 专属角色', N'1', N'2024-02-24 10:51:13', N'1', N'2024-02-24 02:51:32', N'0', 1) |
|
7070 |
GO |
|
7071 |
INSERT INTO system_role (id, name, code, sort, data_scope, data_scope_dept_ids, status, type, remark, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (101, N'测试账号', N'test', 0, 1, N'[]', 0, 2, N'我想测试', N'', N'2021-01-06 13:49:35', N'1', N'2024-03-24 22:22:45', N'0', 1) |
|
7072 |
GO |
|
7073 |
INSERT INTO system_role (id, name, code, sort, data_scope, data_scope_dept_ids, status, type, remark, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (109, N'租户管理员', N'tenant_admin', 0, 1, N'', 0, 1, N'系统自动生成', N'1', N'2022-02-22 00:56:14', N'1', N'2022-02-22 00:56:14', N'0', 121) |
|
7074 |
GO |
|
7075 |
INSERT INTO system_role (id, name, code, sort, data_scope, data_scope_dept_ids, status, type, remark, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (111, N'租户管理员', N'tenant_admin', 0, 1, N'', 0, 1, N'系统自动生成', N'1', N'2022-03-07 21:37:58', N'1', N'2022-03-07 21:37:58', N'0', 122) |
|
7076 |
GO |
|
7077 |
SET IDENTITY_INSERT system_role OFF |
|
7078 |
GO |
|
7079 |
COMMIT |
|
7080 |
GO |
|
7081 |
-- @formatter:on |
|
7082 |
|
|
7083 |
-- ---------------------------- |
|
7084 |
-- Table structure for system_role_menu |
|
7085 |
-- ---------------------------- |
|
7086 |
DROP TABLE IF EXISTS system_role_menu; |
|
7087 |
CREATE TABLE system_role_menu |
|
7088 |
( |
|
7089 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
7090 |
role_id bigint NOT NULL, |
|
7091 |
menu_id bigint NOT NULL, |
|
7092 |
creator nvarchar(64) DEFAULT '' NULL, |
|
7093 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
7094 |
updater nvarchar(64) DEFAULT '' NULL, |
|
7095 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
7096 |
deleted bit DEFAULT 0 NOT NULL, |
|
7097 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
7098 |
) |
|
7099 |
GO |
|
7100 |
|
|
7101 |
EXEC sp_addextendedproperty |
|
7102 |
'MS_Description', N'自增编号', |
|
7103 |
'SCHEMA', N'dbo', |
|
7104 |
'TABLE', N'system_role_menu', |
|
7105 |
'COLUMN', N'id' |
|
7106 |
GO |
|
7107 |
|
|
7108 |
EXEC sp_addextendedproperty |
|
7109 |
'MS_Description', N'角色ID', |
|
7110 |
'SCHEMA', N'dbo', |
|
7111 |
'TABLE', N'system_role_menu', |
|
7112 |
'COLUMN', N'role_id' |
|
7113 |
GO |
|
7114 |
|
|
7115 |
EXEC sp_addextendedproperty |
|
7116 |
'MS_Description', N'菜单ID', |
|
7117 |
'SCHEMA', N'dbo', |
|
7118 |
'TABLE', N'system_role_menu', |
|
7119 |
'COLUMN', N'menu_id' |
|
7120 |
GO |
|
7121 |
|
|
7122 |
EXEC sp_addextendedproperty |
|
7123 |
'MS_Description', N'创建者', |
|
7124 |
'SCHEMA', N'dbo', |
|
7125 |
'TABLE', N'system_role_menu', |
|
7126 |
'COLUMN', N'creator' |
|
7127 |
GO |
|
7128 |
|
|
7129 |
EXEC sp_addextendedproperty |
|
7130 |
'MS_Description', N'创建时间', |
|
7131 |
'SCHEMA', N'dbo', |
|
7132 |
'TABLE', N'system_role_menu', |
|
7133 |
'COLUMN', N'create_time' |
|
7134 |
GO |
|
7135 |
|
|
7136 |
EXEC sp_addextendedproperty |
|
7137 |
'MS_Description', N'更新者', |
|
7138 |
'SCHEMA', N'dbo', |
|
7139 |
'TABLE', N'system_role_menu', |
|
7140 |
'COLUMN', N'updater' |
|
7141 |
GO |
|
7142 |
|
|
7143 |
EXEC sp_addextendedproperty |
|
7144 |
'MS_Description', N'更新时间', |
|
7145 |
'SCHEMA', N'dbo', |
|
7146 |
'TABLE', N'system_role_menu', |
|
7147 |
'COLUMN', N'update_time' |
|
7148 |
GO |
|
7149 |
|
|
7150 |
EXEC sp_addextendedproperty |
|
7151 |
'MS_Description', N'是否删除', |
|
7152 |
'SCHEMA', N'dbo', |
|
7153 |
'TABLE', N'system_role_menu', |
|
7154 |
'COLUMN', N'deleted' |
|
7155 |
GO |
|
7156 |
|
|
7157 |
EXEC sp_addextendedproperty |
|
7158 |
'MS_Description', N'租户编号', |
|
7159 |
'SCHEMA', N'dbo', |
|
7160 |
'TABLE', N'system_role_menu', |
|
7161 |
'COLUMN', N'tenant_id' |
|
7162 |
GO |
|
7163 |
|
|
7164 |
EXEC sp_addextendedproperty |
|
7165 |
'MS_Description', N'角色和菜单关联表', |
|
7166 |
'SCHEMA', N'dbo', |
|
7167 |
'TABLE', N'system_role_menu' |
|
7168 |
GO |
|
7169 |
|
|
7170 |
-- ---------------------------- |
|
7171 |
-- Records of system_role_menu |
|
7172 |
-- ---------------------------- |
|
7173 |
-- @formatter:off |
|
7174 |
BEGIN TRANSACTION |
|
7175 |
GO |
|
7176 |
SET IDENTITY_INSERT system_role_menu ON |
|
7177 |
GO |
|
7178 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (263, 109, 1, N'1', N'2022-02-22 00:56:14', N'1', N'2022-02-22 00:56:14', N'0', 121) |
|
7179 |
GO |
|
7180 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (434, 2, 1, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7181 |
GO |
|
7182 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (454, 2, 1093, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7183 |
GO |
|
7184 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (455, 2, 1094, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7185 |
GO |
|
7186 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (460, 2, 1100, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7187 |
GO |
|
7188 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (467, 2, 1107, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7189 |
GO |
|
7190 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (476, 2, 1117, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7191 |
GO |
|
7192 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (477, 2, 100, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7193 |
GO |
|
7194 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (478, 2, 101, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7195 |
GO |
|
7196 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (479, 2, 102, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7197 |
GO |
|
7198 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (480, 2, 1126, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7199 |
GO |
|
7200 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (481, 2, 103, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7201 |
GO |
|
7202 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (483, 2, 104, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7203 |
GO |
|
7204 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (485, 2, 105, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7205 |
GO |
|
7206 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (488, 2, 107, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7207 |
GO |
|
7208 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (490, 2, 108, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7209 |
GO |
|
7210 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (492, 2, 109, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7211 |
GO |
|
7212 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (498, 2, 1138, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7213 |
GO |
|
7214 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (523, 2, 1224, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7215 |
GO |
|
7216 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (524, 2, 1225, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7217 |
GO |
|
7218 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (541, 2, 500, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7219 |
GO |
|
7220 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (543, 2, 501, N'1', N'2022-02-22 13:09:12', N'1', N'2022-02-22 13:09:12', N'0', 1) |
|
7221 |
GO |
|
7222 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (675, 2, 2, N'1', N'2022-02-22 13:16:57', N'1', N'2022-02-22 13:16:57', N'0', 1) |
|
7223 |
GO |
|
7224 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (689, 2, 1077, N'1', N'2022-02-22 13:16:57', N'1', N'2022-02-22 13:16:57', N'0', 1) |
|
7225 |
GO |
|
7226 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (690, 2, 1078, N'1', N'2022-02-22 13:16:57', N'1', N'2022-02-22 13:16:57', N'0', 1) |
|
7227 |
GO |
|
7228 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (692, 2, 1083, N'1', N'2022-02-22 13:16:57', N'1', N'2022-02-22 13:16:57', N'0', 1) |
|
7229 |
GO |
|
7230 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (693, 2, 1084, N'1', N'2022-02-22 13:16:57', N'1', N'2022-02-22 13:16:57', N'0', 1) |
|
7231 |
GO |
|
7232 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (699, 2, 1090, N'1', N'2022-02-22 13:16:57', N'1', N'2022-02-22 13:16:57', N'0', 1) |
|
7233 |
GO |
|
7234 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (703, 2, 106, N'1', N'2022-02-22 13:16:57', N'1', N'2022-02-22 13:16:57', N'0', 1) |
|
7235 |
GO |
|
7236 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (704, 2, 110, N'1', N'2022-02-22 13:16:57', N'1', N'2022-02-22 13:16:57', N'0', 1) |
|
7237 |
GO |
|
7238 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (705, 2, 111, N'1', N'2022-02-22 13:16:57', N'1', N'2022-02-22 13:16:57', N'0', 1) |
|
7239 |
GO |
|
7240 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (706, 2, 112, N'1', N'2022-02-22 13:16:57', N'1', N'2022-02-22 13:16:57', N'0', 1) |
|
7241 |
GO |
|
7242 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (707, 2, 113, N'1', N'2022-02-22 13:16:57', N'1', N'2022-02-22 13:16:57', N'0', 1) |
|
7243 |
GO |
|
7244 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1296, 110, 1, N'110', N'2022-02-23 00:23:55', N'110', N'2022-02-23 00:23:55', N'0', 121) |
|
7245 |
GO |
|
7246 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1578, 111, 1, N'1', N'2022-03-07 21:37:58', N'1', N'2022-03-07 21:37:58', N'0', 122) |
|
7247 |
GO |
|
7248 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1604, 101, 1216, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7249 |
GO |
|
7250 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1605, 101, 1217, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7251 |
GO |
|
7252 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1606, 101, 1218, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7253 |
GO |
|
7254 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1607, 101, 1219, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7255 |
GO |
|
7256 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1608, 101, 1220, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7257 |
GO |
|
7258 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1609, 101, 1221, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7259 |
GO |
|
7260 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1610, 101, 5, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7261 |
GO |
|
7262 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1611, 101, 1222, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7263 |
GO |
|
7264 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1612, 101, 1118, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7265 |
GO |
|
7266 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1613, 101, 1119, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7267 |
GO |
|
7268 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1614, 101, 1120, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7269 |
GO |
|
7270 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1615, 101, 1185, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7271 |
GO |
|
7272 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1616, 101, 1186, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7273 |
GO |
|
7274 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1617, 101, 1187, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7275 |
GO |
|
7276 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1618, 101, 1188, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7277 |
GO |
|
7278 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1619, 101, 1189, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7279 |
GO |
|
7280 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1620, 101, 1190, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7281 |
GO |
|
7282 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1621, 101, 1191, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7283 |
GO |
|
7284 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1622, 101, 1192, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7285 |
GO |
|
7286 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1623, 101, 1193, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7287 |
GO |
|
7288 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1624, 101, 1194, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7289 |
GO |
|
7290 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1625, 101, 1195, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7291 |
GO |
|
7292 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1626, 101, 1196, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7293 |
GO |
|
7294 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1627, 101, 1197, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7295 |
GO |
|
7296 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1628, 101, 1198, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7297 |
GO |
|
7298 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1629, 101, 1199, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7299 |
GO |
|
7300 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1630, 101, 1200, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7301 |
GO |
|
7302 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1631, 101, 1201, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7303 |
GO |
|
7304 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1632, 101, 1202, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7305 |
GO |
|
7306 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1633, 101, 1207, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7307 |
GO |
|
7308 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1634, 101, 1208, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7309 |
GO |
|
7310 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1635, 101, 1209, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7311 |
GO |
|
7312 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1636, 101, 1210, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7313 |
GO |
|
7314 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1637, 101, 1211, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7315 |
GO |
|
7316 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1638, 101, 1212, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7317 |
GO |
|
7318 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1639, 101, 1213, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7319 |
GO |
|
7320 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1640, 101, 1215, N'1', N'2022-03-19 21:45:52', N'1', N'2022-03-19 21:45:52', N'0', 1) |
|
7321 |
GO |
|
7322 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1641, 101, 2, N'1', N'2022-04-01 22:21:24', N'1', N'2022-04-01 22:21:24', N'0', 1) |
|
7323 |
GO |
|
7324 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1642, 101, 1031, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7325 |
GO |
|
7326 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1643, 101, 1032, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7327 |
GO |
|
7328 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1644, 101, 1033, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7329 |
GO |
|
7330 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1645, 101, 1034, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7331 |
GO |
|
7332 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1646, 101, 1035, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7333 |
GO |
|
7334 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1647, 101, 1050, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7335 |
GO |
|
7336 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1648, 101, 1051, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7337 |
GO |
|
7338 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1649, 101, 1052, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7339 |
GO |
|
7340 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1650, 101, 1053, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7341 |
GO |
|
7342 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1651, 101, 1054, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7343 |
GO |
|
7344 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1652, 101, 1056, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7345 |
GO |
|
7346 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1653, 101, 1057, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7347 |
GO |
|
7348 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1654, 101, 1058, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7349 |
GO |
|
7350 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1655, 101, 1059, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7351 |
GO |
|
7352 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1656, 101, 1060, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7353 |
GO |
|
7354 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1657, 101, 1066, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7355 |
GO |
|
7356 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1658, 101, 1067, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7357 |
GO |
|
7358 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1659, 101, 1070, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7359 |
GO |
|
7360 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1664, 101, 1075, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7361 |
GO |
|
7362 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1666, 101, 1077, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7363 |
GO |
|
7364 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1667, 101, 1078, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7365 |
GO |
|
7366 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1668, 101, 1082, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7367 |
GO |
|
7368 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1669, 101, 1083, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7369 |
GO |
|
7370 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1670, 101, 1084, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7371 |
GO |
|
7372 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1671, 101, 1085, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7373 |
GO |
|
7374 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1672, 101, 1086, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7375 |
GO |
|
7376 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1673, 101, 1087, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7377 |
GO |
|
7378 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1674, 101, 1088, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7379 |
GO |
|
7380 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1675, 101, 1089, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7381 |
GO |
|
7382 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1679, 101, 1237, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7383 |
GO |
|
7384 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1680, 101, 1238, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7385 |
GO |
|
7386 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1681, 101, 1239, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7387 |
GO |
|
7388 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1682, 101, 1240, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7389 |
GO |
|
7390 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1683, 101, 1241, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7391 |
GO |
|
7392 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1684, 101, 1242, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7393 |
GO |
|
7394 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1685, 101, 1243, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7395 |
GO |
|
7396 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1687, 101, 106, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7397 |
GO |
|
7398 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1688, 101, 110, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7399 |
GO |
|
7400 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1689, 101, 111, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7401 |
GO |
|
7402 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1690, 101, 112, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7403 |
GO |
|
7404 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1691, 101, 113, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7405 |
GO |
|
7406 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1692, 101, 114, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7407 |
GO |
|
7408 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1693, 101, 115, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7409 |
GO |
|
7410 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1694, 101, 116, N'1', N'2022-04-01 22:21:37', N'1', N'2022-04-01 22:21:37', N'0', 1) |
|
7411 |
GO |
|
7412 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1729, 109, 100, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7413 |
GO |
|
7414 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1730, 109, 101, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7415 |
GO |
|
7416 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1731, 109, 1063, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7417 |
GO |
|
7418 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1732, 109, 1064, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7419 |
GO |
|
7420 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1733, 109, 1001, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7421 |
GO |
|
7422 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1734, 109, 1065, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7423 |
GO |
|
7424 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1735, 109, 1002, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7425 |
GO |
|
7426 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1736, 109, 1003, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7427 |
GO |
|
7428 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1737, 109, 1004, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7429 |
GO |
|
7430 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1738, 109, 1005, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7431 |
GO |
|
7432 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1739, 109, 1006, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7433 |
GO |
|
7434 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1740, 109, 1007, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7435 |
GO |
|
7436 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1741, 109, 1008, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7437 |
GO |
|
7438 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1742, 109, 1009, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7439 |
GO |
|
7440 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1743, 109, 1010, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7441 |
GO |
|
7442 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1744, 109, 1011, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7443 |
GO |
|
7444 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1745, 109, 1012, N'1', N'2022-09-21 22:08:51', N'1', N'2022-09-21 22:08:51', N'0', 121) |
|
7445 |
GO |
|
7446 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1746, 111, 100, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7447 |
GO |
|
7448 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1747, 111, 101, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7449 |
GO |
|
7450 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1748, 111, 1063, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7451 |
GO |
|
7452 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1749, 111, 1064, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7453 |
GO |
|
7454 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1750, 111, 1001, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7455 |
GO |
|
7456 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1751, 111, 1065, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7457 |
GO |
|
7458 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1752, 111, 1002, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7459 |
GO |
|
7460 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1753, 111, 1003, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7461 |
GO |
|
7462 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1754, 111, 1004, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7463 |
GO |
|
7464 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1755, 111, 1005, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7465 |
GO |
|
7466 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1756, 111, 1006, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7467 |
GO |
|
7468 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1757, 111, 1007, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7469 |
GO |
|
7470 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1758, 111, 1008, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7471 |
GO |
|
7472 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1759, 111, 1009, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7473 |
GO |
|
7474 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1760, 111, 1010, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7475 |
GO |
|
7476 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1761, 111, 1011, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7477 |
GO |
|
7478 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1762, 111, 1012, N'1', N'2022-09-21 22:08:52', N'1', N'2022-09-21 22:08:52', N'0', 122) |
|
7479 |
GO |
|
7480 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1763, 109, 100, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7481 |
GO |
|
7482 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1764, 109, 101, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7483 |
GO |
|
7484 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1765, 109, 1063, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7485 |
GO |
|
7486 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1766, 109, 1064, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7487 |
GO |
|
7488 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1767, 109, 1001, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7489 |
GO |
|
7490 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1768, 109, 1065, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7491 |
GO |
|
7492 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1769, 109, 1002, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7493 |
GO |
|
7494 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1770, 109, 1003, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7495 |
GO |
|
7496 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1771, 109, 1004, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7497 |
GO |
|
7498 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1772, 109, 1005, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7499 |
GO |
|
7500 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1773, 109, 1006, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7501 |
GO |
|
7502 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1774, 109, 1007, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7503 |
GO |
|
7504 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1775, 109, 1008, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7505 |
GO |
|
7506 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1776, 109, 1009, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7507 |
GO |
|
7508 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1777, 109, 1010, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7509 |
GO |
|
7510 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1778, 109, 1011, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7511 |
GO |
|
7512 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1779, 109, 1012, N'1', N'2022-09-21 22:08:53', N'1', N'2022-09-21 22:08:53', N'0', 121) |
|
7513 |
GO |
|
7514 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1780, 111, 100, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7515 |
GO |
|
7516 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1781, 111, 101, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7517 |
GO |
|
7518 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1782, 111, 1063, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7519 |
GO |
|
7520 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1783, 111, 1064, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7521 |
GO |
|
7522 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1784, 111, 1001, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7523 |
GO |
|
7524 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1785, 111, 1065, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7525 |
GO |
|
7526 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1786, 111, 1002, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7527 |
GO |
|
7528 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1787, 111, 1003, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7529 |
GO |
|
7530 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1788, 111, 1004, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7531 |
GO |
|
7532 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1789, 111, 1005, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7533 |
GO |
|
7534 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1790, 111, 1006, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7535 |
GO |
|
7536 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1791, 111, 1007, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7537 |
GO |
|
7538 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1792, 111, 1008, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7539 |
GO |
|
7540 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1793, 111, 1009, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7541 |
GO |
|
7542 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1794, 111, 1010, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7543 |
GO |
|
7544 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1795, 111, 1011, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7545 |
GO |
|
7546 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1796, 111, 1012, N'1', N'2022-09-21 22:08:54', N'1', N'2022-09-21 22:08:54', N'0', 122) |
|
7547 |
GO |
|
7548 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1797, 109, 100, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7549 |
GO |
|
7550 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1798, 109, 101, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7551 |
GO |
|
7552 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1799, 109, 1063, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7553 |
GO |
|
7554 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1800, 109, 1064, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7555 |
GO |
|
7556 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1801, 109, 1001, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7557 |
GO |
|
7558 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1802, 109, 1065, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7559 |
GO |
|
7560 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1803, 109, 1002, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7561 |
GO |
|
7562 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1804, 109, 1003, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7563 |
GO |
|
7564 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1805, 109, 1004, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7565 |
GO |
|
7566 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1806, 109, 1005, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7567 |
GO |
|
7568 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1807, 109, 1006, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7569 |
GO |
|
7570 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1808, 109, 1007, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7571 |
GO |
|
7572 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1809, 109, 1008, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7573 |
GO |
|
7574 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1810, 109, 1009, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7575 |
GO |
|
7576 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1811, 109, 1010, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7577 |
GO |
|
7578 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1812, 109, 1011, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7579 |
GO |
|
7580 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1813, 109, 1012, N'1', N'2022-09-21 22:08:55', N'1', N'2022-09-21 22:08:55', N'0', 121) |
|
7581 |
GO |
|
7582 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1814, 111, 100, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7583 |
GO |
|
7584 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1815, 111, 101, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7585 |
GO |
|
7586 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1816, 111, 1063, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7587 |
GO |
|
7588 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1817, 111, 1064, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7589 |
GO |
|
7590 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1818, 111, 1001, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7591 |
GO |
|
7592 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1819, 111, 1065, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7593 |
GO |
|
7594 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1820, 111, 1002, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7595 |
GO |
|
7596 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1821, 111, 1003, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7597 |
GO |
|
7598 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1822, 111, 1004, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7599 |
GO |
|
7600 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1823, 111, 1005, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7601 |
GO |
|
7602 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1824, 111, 1006, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7603 |
GO |
|
7604 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1825, 111, 1007, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7605 |
GO |
|
7606 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1826, 111, 1008, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7607 |
GO |
|
7608 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1827, 111, 1009, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7609 |
GO |
|
7610 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1828, 111, 1010, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7611 |
GO |
|
7612 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1829, 111, 1011, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7613 |
GO |
|
7614 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1830, 111, 1012, N'1', N'2022-09-21 22:08:56', N'1', N'2022-09-21 22:08:56', N'0', 122) |
|
7615 |
GO |
|
7616 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1831, 109, 103, N'1', N'2022-09-21 22:43:23', N'1', N'2022-09-21 22:43:23', N'0', 121) |
|
7617 |
GO |
|
7618 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1832, 109, 1017, N'1', N'2022-09-21 22:43:23', N'1', N'2022-09-21 22:43:23', N'0', 121) |
|
7619 |
GO |
|
7620 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1833, 109, 1018, N'1', N'2022-09-21 22:43:23', N'1', N'2022-09-21 22:43:23', N'0', 121) |
|
7621 |
GO |
|
7622 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1834, 109, 1019, N'1', N'2022-09-21 22:43:23', N'1', N'2022-09-21 22:43:23', N'0', 121) |
|
7623 |
GO |
|
7624 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1835, 109, 1020, N'1', N'2022-09-21 22:43:23', N'1', N'2022-09-21 22:43:23', N'0', 121) |
|
7625 |
GO |
|
7626 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1836, 111, 103, N'1', N'2022-09-21 22:43:24', N'1', N'2022-09-21 22:43:24', N'0', 122) |
|
7627 |
GO |
|
7628 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1837, 111, 1017, N'1', N'2022-09-21 22:43:24', N'1', N'2022-09-21 22:43:24', N'0', 122) |
|
7629 |
GO |
|
7630 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1838, 111, 1018, N'1', N'2022-09-21 22:43:24', N'1', N'2022-09-21 22:43:24', N'0', 122) |
|
7631 |
GO |
|
7632 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1839, 111, 1019, N'1', N'2022-09-21 22:43:24', N'1', N'2022-09-21 22:43:24', N'0', 122) |
|
7633 |
GO |
|
7634 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1840, 111, 1020, N'1', N'2022-09-21 22:43:24', N'1', N'2022-09-21 22:43:24', N'0', 122) |
|
7635 |
GO |
|
7636 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1841, 109, 1036, N'1', N'2022-09-21 22:48:13', N'1', N'2022-09-21 22:48:13', N'0', 121) |
|
7637 |
GO |
|
7638 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1842, 109, 1037, N'1', N'2022-09-21 22:48:13', N'1', N'2022-09-21 22:48:13', N'0', 121) |
|
7639 |
GO |
|
7640 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1843, 109, 1038, N'1', N'2022-09-21 22:48:13', N'1', N'2022-09-21 22:48:13', N'0', 121) |
|
7641 |
GO |
|
7642 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1844, 109, 1039, N'1', N'2022-09-21 22:48:13', N'1', N'2022-09-21 22:48:13', N'0', 121) |
|
7643 |
GO |
|
7644 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1845, 109, 107, N'1', N'2022-09-21 22:48:13', N'1', N'2022-09-21 22:48:13', N'0', 121) |
|
7645 |
GO |
|
7646 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1846, 111, 1036, N'1', N'2022-09-21 22:48:13', N'1', N'2022-09-21 22:48:13', N'0', 122) |
|
7647 |
GO |
|
7648 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1847, 111, 1037, N'1', N'2022-09-21 22:48:13', N'1', N'2022-09-21 22:48:13', N'0', 122) |
|
7649 |
GO |
|
7650 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1848, 111, 1038, N'1', N'2022-09-21 22:48:13', N'1', N'2022-09-21 22:48:13', N'0', 122) |
|
7651 |
GO |
|
7652 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1849, 111, 1039, N'1', N'2022-09-21 22:48:13', N'1', N'2022-09-21 22:48:13', N'0', 122) |
|
7653 |
GO |
|
7654 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1850, 111, 107, N'1', N'2022-09-21 22:48:13', N'1', N'2022-09-21 22:48:13', N'0', 122) |
|
7655 |
GO |
|
7656 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1991, 2, 1024, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7657 |
GO |
|
7658 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1992, 2, 1025, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7659 |
GO |
|
7660 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1993, 2, 1026, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7661 |
GO |
|
7662 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1994, 2, 1027, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7663 |
GO |
|
7664 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1995, 2, 1028, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7665 |
GO |
|
7666 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1996, 2, 1029, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7667 |
GO |
|
7668 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1997, 2, 1030, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7669 |
GO |
|
7670 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1998, 2, 1031, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7671 |
GO |
|
7672 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1999, 2, 1032, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7673 |
GO |
|
7674 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2000, 2, 1033, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7675 |
GO |
|
7676 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2001, 2, 1034, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7677 |
GO |
|
7678 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2002, 2, 1035, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7679 |
GO |
|
7680 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2003, 2, 1036, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7681 |
GO |
|
7682 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2004, 2, 1037, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7683 |
GO |
|
7684 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2005, 2, 1038, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7685 |
GO |
|
7686 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2006, 2, 1039, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7687 |
GO |
|
7688 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2007, 2, 1040, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7689 |
GO |
|
7690 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2008, 2, 1042, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7691 |
GO |
|
7692 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2009, 2, 1043, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7693 |
GO |
|
7694 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2010, 2, 1045, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7695 |
GO |
|
7696 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2011, 2, 1046, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7697 |
GO |
|
7698 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2012, 2, 1048, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7699 |
GO |
|
7700 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2013, 2, 1050, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7701 |
GO |
|
7702 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2014, 2, 1051, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7703 |
GO |
|
7704 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2015, 2, 1052, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7705 |
GO |
|
7706 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2016, 2, 1053, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7707 |
GO |
|
7708 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2017, 2, 1054, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7709 |
GO |
|
7710 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2018, 2, 1056, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7711 |
GO |
|
7712 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2019, 2, 1057, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7713 |
GO |
|
7714 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2020, 2, 1058, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7715 |
GO |
|
7716 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2021, 2, 2083, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7717 |
GO |
|
7718 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2022, 2, 1059, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7719 |
GO |
|
7720 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2023, 2, 1060, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7721 |
GO |
|
7722 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2024, 2, 1063, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7723 |
GO |
|
7724 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2025, 2, 1064, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7725 |
GO |
|
7726 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2026, 2, 1065, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7727 |
GO |
|
7728 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2027, 2, 1066, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7729 |
GO |
|
7730 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2028, 2, 1067, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7731 |
GO |
|
7732 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2029, 2, 1070, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7733 |
GO |
|
7734 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2034, 2, 1075, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7735 |
GO |
|
7736 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2036, 2, 1082, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7737 |
GO |
|
7738 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2037, 2, 1085, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7739 |
GO |
|
7740 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2038, 2, 1086, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7741 |
GO |
|
7742 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2039, 2, 1087, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7743 |
GO |
|
7744 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2040, 2, 1088, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7745 |
GO |
|
7746 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2041, 2, 1089, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7747 |
GO |
|
7748 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2042, 2, 1091, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7749 |
GO |
|
7750 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2043, 2, 1092, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7751 |
GO |
|
7752 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2044, 2, 1095, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7753 |
GO |
|
7754 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2045, 2, 1096, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7755 |
GO |
|
7756 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2046, 2, 1097, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7757 |
GO |
|
7758 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2047, 2, 1098, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7759 |
GO |
|
7760 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2048, 2, 1101, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7761 |
GO |
|
7762 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2049, 2, 1102, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7763 |
GO |
|
7764 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2050, 2, 1103, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7765 |
GO |
|
7766 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2051, 2, 1104, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7767 |
GO |
|
7768 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2052, 2, 1105, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7769 |
GO |
|
7770 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2053, 2, 1106, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7771 |
GO |
|
7772 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2054, 2, 1108, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7773 |
GO |
|
7774 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2055, 2, 1109, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7775 |
GO |
|
7776 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2061, 2, 1127, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7777 |
GO |
|
7778 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2062, 2, 1128, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7779 |
GO |
|
7780 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2063, 2, 1129, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7781 |
GO |
|
7782 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2064, 2, 1130, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7783 |
GO |
|
7784 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2066, 2, 1132, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7785 |
GO |
|
7786 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2067, 2, 1133, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7787 |
GO |
|
7788 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2068, 2, 1134, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7789 |
GO |
|
7790 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2069, 2, 1135, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7791 |
GO |
|
7792 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2070, 2, 1136, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7793 |
GO |
|
7794 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2071, 2, 1137, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7795 |
GO |
|
7796 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2072, 2, 114, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7797 |
GO |
|
7798 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2073, 2, 1139, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7799 |
GO |
|
7800 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2074, 2, 115, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7801 |
GO |
|
7802 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2075, 2, 1140, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7803 |
GO |
|
7804 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2076, 2, 116, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7805 |
GO |
|
7806 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2077, 2, 1141, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7807 |
GO |
|
7808 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2078, 2, 1142, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7809 |
GO |
|
7810 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2079, 2, 1143, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7811 |
GO |
|
7812 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2080, 2, 1150, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7813 |
GO |
|
7814 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2081, 2, 1161, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7815 |
GO |
|
7816 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2082, 2, 1162, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7817 |
GO |
|
7818 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2083, 2, 1163, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7819 |
GO |
|
7820 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2084, 2, 1164, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7821 |
GO |
|
7822 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2085, 2, 1165, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7823 |
GO |
|
7824 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2086, 2, 1166, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7825 |
GO |
|
7826 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2087, 2, 1173, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7827 |
GO |
|
7828 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2088, 2, 1174, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7829 |
GO |
|
7830 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2089, 2, 1175, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7831 |
GO |
|
7832 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2090, 2, 1176, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7833 |
GO |
|
7834 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2091, 2, 1177, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7835 |
GO |
|
7836 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2092, 2, 1178, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7837 |
GO |
|
7838 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2099, 2, 1226, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7839 |
GO |
|
7840 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2100, 2, 1227, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7841 |
GO |
|
7842 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2101, 2, 1228, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7843 |
GO |
|
7844 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2102, 2, 1229, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7845 |
GO |
|
7846 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2103, 2, 1237, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7847 |
GO |
|
7848 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2104, 2, 1238, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7849 |
GO |
|
7850 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2105, 2, 1239, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7851 |
GO |
|
7852 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2106, 2, 1240, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7853 |
GO |
|
7854 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2107, 2, 1241, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7855 |
GO |
|
7856 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2108, 2, 1242, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7857 |
GO |
|
7858 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2109, 2, 1243, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7859 |
GO |
|
7860 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2116, 2, 1254, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7861 |
GO |
|
7862 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2117, 2, 1255, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7863 |
GO |
|
7864 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2118, 2, 1256, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7865 |
GO |
|
7866 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2119, 2, 1257, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7867 |
GO |
|
7868 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2120, 2, 1258, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7869 |
GO |
|
7870 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2121, 2, 1259, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7871 |
GO |
|
7872 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2122, 2, 1260, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7873 |
GO |
|
7874 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2123, 2, 1261, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7875 |
GO |
|
7876 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2124, 2, 1263, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7877 |
GO |
|
7878 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2125, 2, 1264, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7879 |
GO |
|
7880 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2126, 2, 1265, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7881 |
GO |
|
7882 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2127, 2, 1266, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7883 |
GO |
|
7884 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2128, 2, 1267, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7885 |
GO |
|
7886 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2129, 2, 1001, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7887 |
GO |
|
7888 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2130, 2, 1002, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7889 |
GO |
|
7890 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2131, 2, 1003, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7891 |
GO |
|
7892 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2132, 2, 1004, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7893 |
GO |
|
7894 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2133, 2, 1005, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7895 |
GO |
|
7896 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2134, 2, 1006, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7897 |
GO |
|
7898 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2135, 2, 1007, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7899 |
GO |
|
7900 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2136, 2, 1008, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7901 |
GO |
|
7902 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2137, 2, 1009, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7903 |
GO |
|
7904 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2138, 2, 1010, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7905 |
GO |
|
7906 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2139, 2, 1011, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7907 |
GO |
|
7908 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2140, 2, 1012, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7909 |
GO |
|
7910 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2141, 2, 1013, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7911 |
GO |
|
7912 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2142, 2, 1014, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7913 |
GO |
|
7914 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2143, 2, 1015, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7915 |
GO |
|
7916 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2144, 2, 1016, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7917 |
GO |
|
7918 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2145, 2, 1017, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7919 |
GO |
|
7920 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2146, 2, 1018, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7921 |
GO |
|
7922 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2147, 2, 1019, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7923 |
GO |
|
7924 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2148, 2, 1020, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7925 |
GO |
|
7926 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2149, 2, 1021, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7927 |
GO |
|
7928 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2150, 2, 1022, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7929 |
GO |
|
7930 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2151, 2, 1023, N'1', N'2023-01-25 08:42:52', N'1', N'2023-01-25 08:42:52', N'0', 1) |
|
7931 |
GO |
|
7932 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2152, 2, 1281, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7933 |
GO |
|
7934 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2153, 2, 1282, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7935 |
GO |
|
7936 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2154, 2, 2000, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7937 |
GO |
|
7938 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2155, 2, 2002, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7939 |
GO |
|
7940 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2156, 2, 2003, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7941 |
GO |
|
7942 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2157, 2, 2004, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7943 |
GO |
|
7944 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2158, 2, 2005, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7945 |
GO |
|
7946 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2159, 2, 2006, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7947 |
GO |
|
7948 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2160, 2, 2008, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7949 |
GO |
|
7950 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2161, 2, 2009, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7951 |
GO |
|
7952 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2162, 2, 2010, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7953 |
GO |
|
7954 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2163, 2, 2011, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7955 |
GO |
|
7956 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2164, 2, 2012, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7957 |
GO |
|
7958 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2170, 2, 2019, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7959 |
GO |
|
7960 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2171, 2, 2020, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7961 |
GO |
|
7962 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2172, 2, 2021, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7963 |
GO |
|
7964 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2173, 2, 2022, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7965 |
GO |
|
7966 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2174, 2, 2023, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7967 |
GO |
|
7968 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2175, 2, 2025, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7969 |
GO |
|
7970 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2177, 2, 2027, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7971 |
GO |
|
7972 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2178, 2, 2028, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7973 |
GO |
|
7974 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2179, 2, 2029, N'1', N'2023-01-25 08:42:58', N'1', N'2023-01-25 08:42:58', N'0', 1) |
|
7975 |
GO |
|
7976 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2180, 2, 2014, N'1', N'2023-01-25 08:43:12', N'1', N'2023-01-25 08:43:12', N'0', 1) |
|
7977 |
GO |
|
7978 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2181, 2, 2015, N'1', N'2023-01-25 08:43:12', N'1', N'2023-01-25 08:43:12', N'0', 1) |
|
7979 |
GO |
|
7980 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2182, 2, 2016, N'1', N'2023-01-25 08:43:12', N'1', N'2023-01-25 08:43:12', N'0', 1) |
|
7981 |
GO |
|
7982 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2183, 2, 2017, N'1', N'2023-01-25 08:43:12', N'1', N'2023-01-25 08:43:12', N'0', 1) |
|
7983 |
GO |
|
7984 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2184, 2, 2018, N'1', N'2023-01-25 08:43:12', N'1', N'2023-01-25 08:43:12', N'0', 1) |
|
7985 |
GO |
|
7986 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2188, 101, 1024, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
7987 |
GO |
|
7988 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2189, 101, 1, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
7989 |
GO |
|
7990 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2190, 101, 1025, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
7991 |
GO |
|
7992 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2191, 101, 1026, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
7993 |
GO |
|
7994 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2192, 101, 1027, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
7995 |
GO |
|
7996 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2193, 101, 1028, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
7997 |
GO |
|
7998 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2194, 101, 1029, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
7999 |
GO |
|
8000 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2195, 101, 1030, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8001 |
GO |
|
8002 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2196, 101, 1036, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8003 |
GO |
|
8004 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2197, 101, 1037, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8005 |
GO |
|
8006 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2198, 101, 1038, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8007 |
GO |
|
8008 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2199, 101, 1039, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8009 |
GO |
|
8010 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2200, 101, 1040, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8011 |
GO |
|
8012 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2201, 101, 1042, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8013 |
GO |
|
8014 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2202, 101, 1043, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8015 |
GO |
|
8016 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2203, 101, 1045, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8017 |
GO |
|
8018 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2204, 101, 1046, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8019 |
GO |
|
8020 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2205, 101, 1048, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8021 |
GO |
|
8022 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2206, 101, 2083, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8023 |
GO |
|
8024 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2207, 101, 1063, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8025 |
GO |
|
8026 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2208, 101, 1064, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8027 |
GO |
|
8028 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2209, 101, 1065, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8029 |
GO |
|
8030 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2210, 101, 1093, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8031 |
GO |
|
8032 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2211, 101, 1094, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8033 |
GO |
|
8034 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2212, 101, 1095, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8035 |
GO |
|
8036 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2213, 101, 1096, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8037 |
GO |
|
8038 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2214, 101, 1097, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8039 |
GO |
|
8040 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2215, 101, 1098, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8041 |
GO |
|
8042 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2216, 101, 1100, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8043 |
GO |
|
8044 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2217, 101, 1101, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8045 |
GO |
|
8046 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2218, 101, 1102, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8047 |
GO |
|
8048 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2219, 101, 1103, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8049 |
GO |
|
8050 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2220, 101, 1104, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8051 |
GO |
|
8052 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2221, 101, 1105, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8053 |
GO |
|
8054 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2222, 101, 1106, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8055 |
GO |
|
8056 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2223, 101, 2130, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8057 |
GO |
|
8058 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2224, 101, 1107, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8059 |
GO |
|
8060 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2225, 101, 2131, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8061 |
GO |
|
8062 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2226, 101, 1108, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8063 |
GO |
|
8064 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2227, 101, 2132, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8065 |
GO |
|
8066 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2228, 101, 1109, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8067 |
GO |
|
8068 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2229, 101, 2133, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8069 |
GO |
|
8070 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2230, 101, 2134, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8071 |
GO |
|
8072 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2232, 101, 2135, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8073 |
GO |
|
8074 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2234, 101, 2136, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8075 |
GO |
|
8076 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2236, 101, 2137, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8077 |
GO |
|
8078 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2238, 101, 2138, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8079 |
GO |
|
8080 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2240, 101, 2139, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8081 |
GO |
|
8082 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2242, 101, 2140, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8083 |
GO |
|
8084 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2243, 101, 2141, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8085 |
GO |
|
8086 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2244, 101, 2142, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8087 |
GO |
|
8088 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2245, 101, 2143, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8089 |
GO |
|
8090 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2246, 101, 2144, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8091 |
GO |
|
8092 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2247, 101, 2145, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8093 |
GO |
|
8094 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2248, 101, 2146, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8095 |
GO |
|
8096 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2249, 101, 2147, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8097 |
GO |
|
8098 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2250, 101, 100, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8099 |
GO |
|
8100 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2251, 101, 2148, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8101 |
GO |
|
8102 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2252, 101, 101, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8103 |
GO |
|
8104 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2253, 101, 2149, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8105 |
GO |
|
8106 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2254, 101, 102, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8107 |
GO |
|
8108 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2255, 101, 2150, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8109 |
GO |
|
8110 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2256, 101, 103, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8111 |
GO |
|
8112 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2257, 101, 2151, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8113 |
GO |
|
8114 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2258, 101, 104, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8115 |
GO |
|
8116 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2259, 101, 2152, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8117 |
GO |
|
8118 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2260, 101, 105, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8119 |
GO |
|
8120 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2261, 101, 107, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8121 |
GO |
|
8122 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2262, 101, 108, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8123 |
GO |
|
8124 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2263, 101, 109, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8125 |
GO |
|
8126 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2264, 101, 1138, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8127 |
GO |
|
8128 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2265, 101, 1139, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8129 |
GO |
|
8130 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2266, 101, 1140, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8131 |
GO |
|
8132 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2267, 101, 1141, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8133 |
GO |
|
8134 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2268, 101, 1142, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8135 |
GO |
|
8136 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2269, 101, 1143, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8137 |
GO |
|
8138 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2270, 101, 1224, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8139 |
GO |
|
8140 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2271, 101, 1225, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8141 |
GO |
|
8142 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2272, 101, 1226, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8143 |
GO |
|
8144 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2273, 101, 1227, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8145 |
GO |
|
8146 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2274, 101, 1228, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8147 |
GO |
|
8148 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2275, 101, 1229, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8149 |
GO |
|
8150 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2282, 101, 1261, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8151 |
GO |
|
8152 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2283, 101, 1263, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8153 |
GO |
|
8154 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2284, 101, 1264, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8155 |
GO |
|
8156 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2285, 101, 1265, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8157 |
GO |
|
8158 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2286, 101, 1266, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8159 |
GO |
|
8160 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2287, 101, 1267, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8161 |
GO |
|
8162 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2288, 101, 1001, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8163 |
GO |
|
8164 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2289, 101, 1002, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8165 |
GO |
|
8166 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2290, 101, 1003, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8167 |
GO |
|
8168 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2291, 101, 1004, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8169 |
GO |
|
8170 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2292, 101, 1005, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8171 |
GO |
|
8172 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2293, 101, 1006, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8173 |
GO |
|
8174 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2294, 101, 1007, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8175 |
GO |
|
8176 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2295, 101, 1008, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8177 |
GO |
|
8178 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2296, 101, 1009, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8179 |
GO |
|
8180 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2297, 101, 1010, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8181 |
GO |
|
8182 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2298, 101, 1011, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8183 |
GO |
|
8184 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2299, 101, 1012, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8185 |
GO |
|
8186 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2300, 101, 500, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8187 |
GO |
|
8188 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2301, 101, 1013, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8189 |
GO |
|
8190 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2302, 101, 501, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8191 |
GO |
|
8192 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2303, 101, 1014, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8193 |
GO |
|
8194 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2304, 101, 1015, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8195 |
GO |
|
8196 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2305, 101, 1016, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8197 |
GO |
|
8198 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2306, 101, 1017, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8199 |
GO |
|
8200 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2307, 101, 1018, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8201 |
GO |
|
8202 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2308, 101, 1019, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8203 |
GO |
|
8204 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2309, 101, 1020, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8205 |
GO |
|
8206 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2310, 101, 1021, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8207 |
GO |
|
8208 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2311, 101, 1022, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8209 |
GO |
|
8210 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2312, 101, 1023, N'1', N'2023-02-09 23:49:46', N'1', N'2023-02-09 23:49:46', N'0', 1) |
|
8211 |
GO |
|
8212 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2929, 109, 1224, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 121) |
|
8213 |
GO |
|
8214 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2930, 109, 1225, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 121) |
|
8215 |
GO |
|
8216 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2931, 109, 1226, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 121) |
|
8217 |
GO |
|
8218 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2932, 109, 1227, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 121) |
|
8219 |
GO |
|
8220 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2933, 109, 1228, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 121) |
|
8221 |
GO |
|
8222 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2934, 109, 1229, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 121) |
|
8223 |
GO |
|
8224 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2935, 109, 1138, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 121) |
|
8225 |
GO |
|
8226 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2936, 109, 1139, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 121) |
|
8227 |
GO |
|
8228 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2937, 109, 1140, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 121) |
|
8229 |
GO |
|
8230 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2938, 109, 1141, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 121) |
|
8231 |
GO |
|
8232 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2939, 109, 1142, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 121) |
|
8233 |
GO |
|
8234 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2940, 109, 1143, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 121) |
|
8235 |
GO |
|
8236 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2941, 111, 1224, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 122) |
|
8237 |
GO |
|
8238 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2942, 111, 1225, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 122) |
|
8239 |
GO |
|
8240 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2943, 111, 1226, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 122) |
|
8241 |
GO |
|
8242 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2944, 111, 1227, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 122) |
|
8243 |
GO |
|
8244 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2945, 111, 1228, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 122) |
|
8245 |
GO |
|
8246 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2946, 111, 1229, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 122) |
|
8247 |
GO |
|
8248 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2947, 111, 1138, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 122) |
|
8249 |
GO |
|
8250 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2948, 111, 1139, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 122) |
|
8251 |
GO |
|
8252 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2949, 111, 1140, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 122) |
|
8253 |
GO |
|
8254 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2950, 111, 1141, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 122) |
|
8255 |
GO |
|
8256 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2951, 111, 1142, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 122) |
|
8257 |
GO |
|
8258 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2952, 111, 1143, N'1', N'2023-12-02 23:19:40', N'1', N'2023-12-02 23:19:40', N'0', 122) |
|
8259 |
GO |
|
8260 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2993, 109, 2, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8261 |
GO |
|
8262 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2994, 109, 1031, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8263 |
GO |
|
8264 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2995, 109, 1032, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8265 |
GO |
|
8266 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2996, 109, 1033, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8267 |
GO |
|
8268 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2997, 109, 1034, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8269 |
GO |
|
8270 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2998, 109, 1035, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8271 |
GO |
|
8272 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2999, 109, 1050, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8273 |
GO |
|
8274 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3000, 109, 1051, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8275 |
GO |
|
8276 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3001, 109, 1052, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8277 |
GO |
|
8278 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3002, 109, 1053, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8279 |
GO |
|
8280 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3003, 109, 1054, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8281 |
GO |
|
8282 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3004, 109, 1056, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8283 |
GO |
|
8284 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3005, 109, 1057, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8285 |
GO |
|
8286 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3006, 109, 1058, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8287 |
GO |
|
8288 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3007, 109, 1059, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8289 |
GO |
|
8290 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3008, 109, 1060, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8291 |
GO |
|
8292 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3009, 109, 1066, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8293 |
GO |
|
8294 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3010, 109, 1067, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8295 |
GO |
|
8296 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3011, 109, 1070, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8297 |
GO |
|
8298 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3012, 109, 1075, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8299 |
GO |
|
8300 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3013, 109, 1076, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8301 |
GO |
|
8302 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3014, 109, 1077, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8303 |
GO |
|
8304 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3015, 109, 1078, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8305 |
GO |
|
8306 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3016, 109, 1082, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8307 |
GO |
|
8308 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3017, 109, 1083, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8309 |
GO |
|
8310 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3018, 109, 1084, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8311 |
GO |
|
8312 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3019, 109, 1085, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8313 |
GO |
|
8314 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3020, 109, 1086, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8315 |
GO |
|
8316 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3021, 109, 1087, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8317 |
GO |
|
8318 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3022, 109, 1088, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8319 |
GO |
|
8320 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3023, 109, 1089, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8321 |
GO |
|
8322 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3024, 109, 1090, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8323 |
GO |
|
8324 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3025, 109, 1091, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8325 |
GO |
|
8326 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3026, 109, 1092, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8327 |
GO |
|
8328 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3027, 109, 106, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8329 |
GO |
|
8330 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3028, 109, 110, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8331 |
GO |
|
8332 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3029, 109, 111, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8333 |
GO |
|
8334 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3030, 109, 112, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8335 |
GO |
|
8336 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3031, 109, 113, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8337 |
GO |
|
8338 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3032, 109, 114, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8339 |
GO |
|
8340 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3033, 109, 115, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8341 |
GO |
|
8342 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3034, 109, 116, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8343 |
GO |
|
8344 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3035, 109, 2472, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8345 |
GO |
|
8346 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3036, 109, 2478, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8347 |
GO |
|
8348 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3037, 109, 2479, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8349 |
GO |
|
8350 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3038, 109, 2480, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8351 |
GO |
|
8352 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3039, 109, 2481, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8353 |
GO |
|
8354 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3040, 109, 2482, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8355 |
GO |
|
8356 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3041, 109, 2483, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8357 |
GO |
|
8358 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3042, 109, 2484, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8359 |
GO |
|
8360 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3043, 109, 2485, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8361 |
GO |
|
8362 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3044, 109, 2486, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8363 |
GO |
|
8364 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3045, 109, 2487, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8365 |
GO |
|
8366 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3046, 109, 2488, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8367 |
GO |
|
8368 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3047, 109, 2489, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8369 |
GO |
|
8370 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3048, 109, 2490, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8371 |
GO |
|
8372 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3049, 109, 2491, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8373 |
GO |
|
8374 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3050, 109, 2492, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8375 |
GO |
|
8376 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3051, 109, 2493, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8377 |
GO |
|
8378 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3052, 109, 2494, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8379 |
GO |
|
8380 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3053, 109, 2495, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8381 |
GO |
|
8382 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3054, 109, 2497, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8383 |
GO |
|
8384 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3055, 109, 1237, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8385 |
GO |
|
8386 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3056, 109, 1238, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8387 |
GO |
|
8388 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3057, 109, 1239, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8389 |
GO |
|
8390 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3058, 109, 1240, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8391 |
GO |
|
8392 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3059, 109, 1241, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8393 |
GO |
|
8394 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3060, 109, 1242, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8395 |
GO |
|
8396 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3061, 109, 1243, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8397 |
GO |
|
8398 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3062, 109, 2525, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8399 |
GO |
|
8400 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3063, 109, 1255, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8401 |
GO |
|
8402 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3064, 109, 1256, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8403 |
GO |
|
8404 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3065, 109, 1257, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8405 |
GO |
|
8406 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3066, 109, 1258, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8407 |
GO |
|
8408 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3067, 109, 1259, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8409 |
GO |
|
8410 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3068, 109, 1260, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 121) |
|
8411 |
GO |
|
8412 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3069, 111, 2, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8413 |
GO |
|
8414 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3070, 111, 1031, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8415 |
GO |
|
8416 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3071, 111, 1032, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8417 |
GO |
|
8418 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3072, 111, 1033, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8419 |
GO |
|
8420 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3073, 111, 1034, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8421 |
GO |
|
8422 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3074, 111, 1035, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8423 |
GO |
|
8424 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3075, 111, 1050, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8425 |
GO |
|
8426 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3076, 111, 1051, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8427 |
GO |
|
8428 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3077, 111, 1052, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8429 |
GO |
|
8430 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3078, 111, 1053, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8431 |
GO |
|
8432 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3079, 111, 1054, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8433 |
GO |
|
8434 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3080, 111, 1056, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8435 |
GO |
|
8436 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3081, 111, 1057, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8437 |
GO |
|
8438 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3082, 111, 1058, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8439 |
GO |
|
8440 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3083, 111, 1059, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8441 |
GO |
|
8442 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3084, 111, 1060, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8443 |
GO |
|
8444 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3085, 111, 1066, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8445 |
GO |
|
8446 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3086, 111, 1067, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8447 |
GO |
|
8448 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3087, 111, 1070, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8449 |
GO |
|
8450 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3088, 111, 1075, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8451 |
GO |
|
8452 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3089, 111, 1076, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8453 |
GO |
|
8454 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3090, 111, 1077, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8455 |
GO |
|
8456 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3091, 111, 1078, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8457 |
GO |
|
8458 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3092, 111, 1082, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8459 |
GO |
|
8460 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3093, 111, 1083, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8461 |
GO |
|
8462 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3094, 111, 1084, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8463 |
GO |
|
8464 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3095, 111, 1085, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8465 |
GO |
|
8466 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3096, 111, 1086, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8467 |
GO |
|
8468 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3097, 111, 1087, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8469 |
GO |
|
8470 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3098, 111, 1088, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8471 |
GO |
|
8472 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3099, 111, 1089, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8473 |
GO |
|
8474 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3100, 111, 1090, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8475 |
GO |
|
8476 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3101, 111, 1091, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8477 |
GO |
|
8478 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3102, 111, 1092, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8479 |
GO |
|
8480 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3103, 111, 106, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8481 |
GO |
|
8482 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3104, 111, 110, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8483 |
GO |
|
8484 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3105, 111, 111, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8485 |
GO |
|
8486 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3106, 111, 112, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8487 |
GO |
|
8488 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3107, 111, 113, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8489 |
GO |
|
8490 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3108, 111, 114, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8491 |
GO |
|
8492 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3109, 111, 115, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8493 |
GO |
|
8494 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3110, 111, 116, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8495 |
GO |
|
8496 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3111, 111, 2472, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8497 |
GO |
|
8498 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3112, 111, 2478, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8499 |
GO |
|
8500 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3113, 111, 2479, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8501 |
GO |
|
8502 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3114, 111, 2480, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8503 |
GO |
|
8504 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3115, 111, 2481, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8505 |
GO |
|
8506 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3116, 111, 2482, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8507 |
GO |
|
8508 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3117, 111, 2483, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8509 |
GO |
|
8510 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3118, 111, 2484, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8511 |
GO |
|
8512 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3119, 111, 2485, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8513 |
GO |
|
8514 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3120, 111, 2486, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8515 |
GO |
|
8516 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3121, 111, 2487, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8517 |
GO |
|
8518 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3122, 111, 2488, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8519 |
GO |
|
8520 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3123, 111, 2489, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8521 |
GO |
|
8522 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3124, 111, 2490, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8523 |
GO |
|
8524 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3125, 111, 2491, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8525 |
GO |
|
8526 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3126, 111, 2492, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8527 |
GO |
|
8528 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3127, 111, 2493, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8529 |
GO |
|
8530 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3128, 111, 2494, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8531 |
GO |
|
8532 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3129, 111, 2495, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8533 |
GO |
|
8534 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3130, 111, 2497, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8535 |
GO |
|
8536 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3131, 111, 1237, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8537 |
GO |
|
8538 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3132, 111, 1238, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8539 |
GO |
|
8540 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3133, 111, 1239, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8541 |
GO |
|
8542 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3134, 111, 1240, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8543 |
GO |
|
8544 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3135, 111, 1241, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8545 |
GO |
|
8546 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3136, 111, 1242, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8547 |
GO |
|
8548 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3137, 111, 1243, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8549 |
GO |
|
8550 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3138, 111, 2525, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8551 |
GO |
|
8552 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3139, 111, 1255, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8553 |
GO |
|
8554 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3140, 111, 1256, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8555 |
GO |
|
8556 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3141, 111, 1257, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8557 |
GO |
|
8558 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3142, 111, 1258, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8559 |
GO |
|
8560 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3143, 111, 1259, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8561 |
GO |
|
8562 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3144, 111, 1260, N'1', N'2023-12-02 23:41:02', N'1', N'2023-12-02 23:41:02', N'0', 122) |
|
8563 |
GO |
|
8564 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3221, 109, 102, N'1', N'2023-12-30 11:42:36', N'1', N'2023-12-30 11:42:36', N'0', 121) |
|
8565 |
GO |
|
8566 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3222, 109, 1013, N'1', N'2023-12-30 11:42:36', N'1', N'2023-12-30 11:42:36', N'0', 121) |
|
8567 |
GO |
|
8568 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3223, 109, 1014, N'1', N'2023-12-30 11:42:36', N'1', N'2023-12-30 11:42:36', N'0', 121) |
|
8569 |
GO |
|
8570 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3224, 109, 1015, N'1', N'2023-12-30 11:42:36', N'1', N'2023-12-30 11:42:36', N'0', 121) |
|
8571 |
GO |
|
8572 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3225, 109, 1016, N'1', N'2023-12-30 11:42:36', N'1', N'2023-12-30 11:42:36', N'0', 121) |
|
8573 |
GO |
|
8574 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3226, 111, 102, N'1', N'2023-12-30 11:42:36', N'1', N'2023-12-30 11:42:36', N'0', 122) |
|
8575 |
GO |
|
8576 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3227, 111, 1013, N'1', N'2023-12-30 11:42:36', N'1', N'2023-12-30 11:42:36', N'0', 122) |
|
8577 |
GO |
|
8578 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3228, 111, 1014, N'1', N'2023-12-30 11:42:36', N'1', N'2023-12-30 11:42:36', N'0', 122) |
|
8579 |
GO |
|
8580 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3229, 111, 1015, N'1', N'2023-12-30 11:42:36', N'1', N'2023-12-30 11:42:36', N'0', 122) |
|
8581 |
GO |
|
8582 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3230, 111, 1016, N'1', N'2023-12-30 11:42:36', N'1', N'2023-12-30 11:42:36', N'0', 122) |
|
8583 |
GO |
|
8584 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4163, 109, 5, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8585 |
GO |
|
8586 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4164, 109, 1118, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8587 |
GO |
|
8588 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4165, 109, 1119, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8589 |
GO |
|
8590 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4166, 109, 1120, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8591 |
GO |
|
8592 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4167, 109, 2713, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8593 |
GO |
|
8594 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4168, 109, 2714, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8595 |
GO |
|
8596 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4169, 109, 2715, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8597 |
GO |
|
8598 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4170, 109, 2716, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8599 |
GO |
|
8600 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4171, 109, 2717, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8601 |
GO |
|
8602 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4172, 109, 2718, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8603 |
GO |
|
8604 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4173, 109, 2720, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8605 |
GO |
|
8606 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4174, 109, 1185, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8607 |
GO |
|
8608 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4175, 109, 2721, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8609 |
GO |
|
8610 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4176, 109, 1186, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8611 |
GO |
|
8612 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4177, 109, 2722, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8613 |
GO |
|
8614 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4178, 109, 1187, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8615 |
GO |
|
8616 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4179, 109, 2723, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8617 |
GO |
|
8618 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4180, 109, 1188, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8619 |
GO |
|
8620 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4181, 109, 2724, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8621 |
GO |
|
8622 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4182, 109, 1189, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8623 |
GO |
|
8624 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4183, 109, 2725, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8625 |
GO |
|
8626 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4184, 109, 1190, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8627 |
GO |
|
8628 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4185, 109, 2726, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8629 |
GO |
|
8630 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4186, 109, 1191, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8631 |
GO |
|
8632 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4187, 109, 2727, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8633 |
GO |
|
8634 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4188, 109, 1192, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8635 |
GO |
|
8636 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4189, 109, 2728, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8637 |
GO |
|
8638 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4190, 109, 1193, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8639 |
GO |
|
8640 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4191, 109, 2729, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8641 |
GO |
|
8642 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4192, 109, 1194, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8643 |
GO |
|
8644 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4193, 109, 2730, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8645 |
GO |
|
8646 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4194, 109, 1195, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8647 |
GO |
|
8648 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4195, 109, 2731, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8649 |
GO |
|
8650 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4196, 109, 1196, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8651 |
GO |
|
8652 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4197, 109, 2732, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8653 |
GO |
|
8654 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4198, 109, 1197, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8655 |
GO |
|
8656 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4199, 109, 2733, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8657 |
GO |
|
8658 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4200, 109, 1198, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8659 |
GO |
|
8660 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4201, 109, 2734, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8661 |
GO |
|
8662 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4202, 109, 1199, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8663 |
GO |
|
8664 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4203, 109, 2735, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8665 |
GO |
|
8666 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4204, 109, 1200, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8667 |
GO |
|
8668 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4205, 109, 1201, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8669 |
GO |
|
8670 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4206, 109, 1202, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8671 |
GO |
|
8672 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4207, 109, 1207, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8673 |
GO |
|
8674 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4208, 109, 1208, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8675 |
GO |
|
8676 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4209, 109, 1209, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8677 |
GO |
|
8678 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4210, 109, 1210, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8679 |
GO |
|
8680 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4211, 109, 1211, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8681 |
GO |
|
8682 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4212, 109, 1212, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8683 |
GO |
|
8684 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4213, 109, 1213, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8685 |
GO |
|
8686 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4214, 109, 1215, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8687 |
GO |
|
8688 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4215, 109, 1216, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8689 |
GO |
|
8690 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4216, 109, 1217, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8691 |
GO |
|
8692 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4217, 109, 1218, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8693 |
GO |
|
8694 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4218, 109, 1219, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8695 |
GO |
|
8696 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4219, 109, 1220, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8697 |
GO |
|
8698 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4220, 109, 1221, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8699 |
GO |
|
8700 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4221, 109, 1222, N'1', N'2024-03-30 17:53:17', N'1', N'2024-03-30 17:53:17', N'0', 121) |
|
8701 |
GO |
|
8702 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4222, 111, 5, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8703 |
GO |
|
8704 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4223, 111, 1118, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8705 |
GO |
|
8706 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4224, 111, 1119, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8707 |
GO |
|
8708 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4225, 111, 1120, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8709 |
GO |
|
8710 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4226, 111, 2713, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8711 |
GO |
|
8712 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4227, 111, 2714, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8713 |
GO |
|
8714 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4228, 111, 2715, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8715 |
GO |
|
8716 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4229, 111, 2716, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8717 |
GO |
|
8718 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4230, 111, 2717, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8719 |
GO |
|
8720 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4231, 111, 2718, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8721 |
GO |
|
8722 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4232, 111, 2720, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8723 |
GO |
|
8724 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4233, 111, 1185, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8725 |
GO |
|
8726 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4234, 111, 2721, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8727 |
GO |
|
8728 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4235, 111, 1186, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8729 |
GO |
|
8730 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4236, 111, 2722, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8731 |
GO |
|
8732 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4237, 111, 1187, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8733 |
GO |
|
8734 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4238, 111, 2723, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8735 |
GO |
|
8736 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4239, 111, 1188, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8737 |
GO |
|
8738 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4240, 111, 2724, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8739 |
GO |
|
8740 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4241, 111, 1189, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8741 |
GO |
|
8742 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4242, 111, 2725, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8743 |
GO |
|
8744 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4243, 111, 1190, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8745 |
GO |
|
8746 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4244, 111, 2726, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8747 |
GO |
|
8748 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4245, 111, 1191, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8749 |
GO |
|
8750 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4246, 111, 2727, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8751 |
GO |
|
8752 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4247, 111, 1192, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8753 |
GO |
|
8754 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4248, 111, 2728, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8755 |
GO |
|
8756 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4249, 111, 1193, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8757 |
GO |
|
8758 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4250, 111, 2729, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8759 |
GO |
|
8760 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4251, 111, 1194, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8761 |
GO |
|
8762 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4252, 111, 2730, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8763 |
GO |
|
8764 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4253, 111, 1195, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8765 |
GO |
|
8766 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4254, 111, 2731, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8767 |
GO |
|
8768 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4255, 111, 1196, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8769 |
GO |
|
8770 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4256, 111, 2732, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8771 |
GO |
|
8772 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4257, 111, 1197, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8773 |
GO |
|
8774 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4258, 111, 2733, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8775 |
GO |
|
8776 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4259, 111, 1198, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8777 |
GO |
|
8778 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4260, 111, 2734, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8779 |
GO |
|
8780 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4261, 111, 1199, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8781 |
GO |
|
8782 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4262, 111, 2735, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8783 |
GO |
|
8784 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4263, 111, 1200, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8785 |
GO |
|
8786 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4264, 111, 1201, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8787 |
GO |
|
8788 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4265, 111, 1202, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8789 |
GO |
|
8790 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4266, 111, 1207, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8791 |
GO |
|
8792 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4267, 111, 1208, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8793 |
GO |
|
8794 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4268, 111, 1209, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8795 |
GO |
|
8796 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4269, 111, 1210, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8797 |
GO |
|
8798 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4270, 111, 1211, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8799 |
GO |
|
8800 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4271, 111, 1212, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8801 |
GO |
|
8802 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4272, 111, 1213, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8803 |
GO |
|
8804 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4273, 111, 1215, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8805 |
GO |
|
8806 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4274, 111, 1216, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8807 |
GO |
|
8808 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4275, 111, 1217, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8809 |
GO |
|
8810 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4276, 111, 1218, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8811 |
GO |
|
8812 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4277, 111, 1219, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8813 |
GO |
|
8814 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4278, 111, 1220, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8815 |
GO |
|
8816 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4279, 111, 1221, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8817 |
GO |
|
8818 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4280, 111, 1222, N'1', N'2024-03-30 17:53:18', N'1', N'2024-03-30 17:53:18', N'0', 122) |
|
8819 |
GO |
|
8820 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (5777, 101, 2739, N'1', N'2024-04-30 09:38:37', N'1', N'2024-04-30 09:38:37', N'0', 1) |
|
8821 |
GO |
|
8822 |
INSERT INTO system_role_menu (id, role_id, menu_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (5778, 101, 2740, N'1', N'2024-04-30 09:38:37', N'1', N'2024-04-30 09:38:37', N'0', 1) |
|
8823 |
GO |
|
8824 |
SET IDENTITY_INSERT system_role_menu OFF |
|
8825 |
GO |
|
8826 |
COMMIT |
|
8827 |
GO |
|
8828 |
-- @formatter:on |
|
8829 |
|
|
8830 |
-- ---------------------------- |
|
8831 |
-- Table structure for system_sms_channel |
|
8832 |
-- ---------------------------- |
|
8833 |
DROP TABLE IF EXISTS system_sms_channel; |
|
8834 |
CREATE TABLE system_sms_channel |
|
8835 |
( |
|
8836 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
8837 |
signature nvarchar(12) NOT NULL, |
|
8838 |
code nvarchar(63) NOT NULL, |
|
8839 |
status tinyint NOT NULL, |
|
8840 |
remark nvarchar(255) DEFAULT NULL NULL, |
|
8841 |
api_key nvarchar(128) NOT NULL, |
|
8842 |
api_secret nvarchar(128) DEFAULT NULL NULL, |
|
8843 |
callback_url nvarchar(255) DEFAULT NULL NULL, |
|
8844 |
creator nvarchar(64) DEFAULT '' NULL, |
|
8845 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
8846 |
updater nvarchar(64) DEFAULT '' NULL, |
|
8847 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
8848 |
deleted bit DEFAULT 0 NOT NULL |
|
8849 |
) |
|
8850 |
GO |
|
8851 |
|
|
8852 |
EXEC sp_addextendedproperty |
|
8853 |
'MS_Description', N'编号', |
|
8854 |
'SCHEMA', N'dbo', |
|
8855 |
'TABLE', N'system_sms_channel', |
|
8856 |
'COLUMN', N'id' |
|
8857 |
GO |
|
8858 |
|
|
8859 |
EXEC sp_addextendedproperty |
|
8860 |
'MS_Description', N'短信签名', |
|
8861 |
'SCHEMA', N'dbo', |
|
8862 |
'TABLE', N'system_sms_channel', |
|
8863 |
'COLUMN', N'signature' |
|
8864 |
GO |
|
8865 |
|
|
8866 |
EXEC sp_addextendedproperty |
|
8867 |
'MS_Description', N'渠道编码', |
|
8868 |
'SCHEMA', N'dbo', |
|
8869 |
'TABLE', N'system_sms_channel', |
|
8870 |
'COLUMN', N'code' |
|
8871 |
GO |
|
8872 |
|
|
8873 |
EXEC sp_addextendedproperty |
|
8874 |
'MS_Description', N'开启状态', |
|
8875 |
'SCHEMA', N'dbo', |
|
8876 |
'TABLE', N'system_sms_channel', |
|
8877 |
'COLUMN', N'status' |
|
8878 |
GO |
|
8879 |
|
|
8880 |
EXEC sp_addextendedproperty |
|
8881 |
'MS_Description', N'备注', |
|
8882 |
'SCHEMA', N'dbo', |
|
8883 |
'TABLE', N'system_sms_channel', |
|
8884 |
'COLUMN', N'remark' |
|
8885 |
GO |
|
8886 |
|
|
8887 |
EXEC sp_addextendedproperty |
|
8888 |
'MS_Description', N'短信 API 的账号', |
|
8889 |
'SCHEMA', N'dbo', |
|
8890 |
'TABLE', N'system_sms_channel', |
|
8891 |
'COLUMN', N'api_key' |
|
8892 |
GO |
|
8893 |
|
|
8894 |
EXEC sp_addextendedproperty |
|
8895 |
'MS_Description', N'短信 API 的秘钥', |
|
8896 |
'SCHEMA', N'dbo', |
|
8897 |
'TABLE', N'system_sms_channel', |
|
8898 |
'COLUMN', N'api_secret' |
|
8899 |
GO |
|
8900 |
|
|
8901 |
EXEC sp_addextendedproperty |
|
8902 |
'MS_Description', N'短信发送回调 URL', |
|
8903 |
'SCHEMA', N'dbo', |
|
8904 |
'TABLE', N'system_sms_channel', |
|
8905 |
'COLUMN', N'callback_url' |
|
8906 |
GO |
|
8907 |
|
|
8908 |
EXEC sp_addextendedproperty |
|
8909 |
'MS_Description', N'创建者', |
|
8910 |
'SCHEMA', N'dbo', |
|
8911 |
'TABLE', N'system_sms_channel', |
|
8912 |
'COLUMN', N'creator' |
|
8913 |
GO |
|
8914 |
|
|
8915 |
EXEC sp_addextendedproperty |
|
8916 |
'MS_Description', N'创建时间', |
|
8917 |
'SCHEMA', N'dbo', |
|
8918 |
'TABLE', N'system_sms_channel', |
|
8919 |
'COLUMN', N'create_time' |
|
8920 |
GO |
|
8921 |
|
|
8922 |
EXEC sp_addextendedproperty |
|
8923 |
'MS_Description', N'更新者', |
|
8924 |
'SCHEMA', N'dbo', |
|
8925 |
'TABLE', N'system_sms_channel', |
|
8926 |
'COLUMN', N'updater' |
|
8927 |
GO |
|
8928 |
|
|
8929 |
EXEC sp_addextendedproperty |
|
8930 |
'MS_Description', N'更新时间', |
|
8931 |
'SCHEMA', N'dbo', |
|
8932 |
'TABLE', N'system_sms_channel', |
|
8933 |
'COLUMN', N'update_time' |
|
8934 |
GO |
|
8935 |
|
|
8936 |
EXEC sp_addextendedproperty |
|
8937 |
'MS_Description', N'是否删除', |
|
8938 |
'SCHEMA', N'dbo', |
|
8939 |
'TABLE', N'system_sms_channel', |
|
8940 |
'COLUMN', N'deleted' |
|
8941 |
GO |
|
8942 |
|
|
8943 |
EXEC sp_addextendedproperty |
|
8944 |
'MS_Description', N'短信渠道', |
|
8945 |
'SCHEMA', N'dbo', |
|
8946 |
'TABLE', N'system_sms_channel' |
|
8947 |
GO |
|
8948 |
|
|
8949 |
-- ---------------------------- |
|
8950 |
-- Records of system_sms_channel |
|
8951 |
-- ---------------------------- |
|
8952 |
-- @formatter:off |
|
8953 |
BEGIN TRANSACTION |
|
8954 |
GO |
|
8955 |
SET IDENTITY_INSERT system_sms_channel ON |
|
8956 |
GO |
|
8957 |
INSERT INTO system_sms_channel (id, signature, code, status, remark, api_key, api_secret, callback_url, creator, create_time, updater, update_time, deleted) VALUES (2, N'Ballcat', N'ALIYUN', 0, N'你要改哦,只有我可以用!!!!', N'LTAI5tCnKso2uG3kJ5gRav88', N'fGJ5SNXL7P1NHNRmJ7DJaMJGPyE55C', NULL, N'', N'2021-03-31 11:53:10', N'1', N'2023-12-02 22:10:17', N'0') |
|
8958 |
GO |
|
8959 |
INSERT INTO system_sms_channel (id, signature, code, status, remark, api_key, api_secret, callback_url, creator, create_time, updater, update_time, deleted) VALUES (4, N'测试渠道', N'DEBUG_DING_TALK', 0, N'123', N'696b5d8ead48071237e4aa5861ff08dbadb2b4ded1c688a7b7c9afc615579859', N'SEC5c4e5ff888bc8a9923ae47f59e7ccd30af1f14d93c55b4e2c9cb094e35aeed67', NULL, N'1', N'2021-04-13 00:23:14', N'1', N'2022-03-27 20:29:49', N'0') |
|
8960 |
GO |
|
8961 |
INSERT INTO system_sms_channel (id, signature, code, status, remark, api_key, api_secret, callback_url, creator, create_time, updater, update_time, deleted) VALUES (6, N'测试演示', N'DEBUG_DING_TALK', 0, N'仅测试', N'696b5d8ead48071237e4aa5861ff08dbadb2b4ded1c688a7b7c9afc615579859', N'SEC5c4e5ff888bc8a9923ae47f59e7ccd30af1f14d93c55b4e2c9cb094e35aeed67', NULL, N'1', N'2022-04-10 23:07:59', N'1', N'2023-12-02 22:10:08', N'0') |
|
8962 |
GO |
|
8963 |
SET IDENTITY_INSERT system_sms_channel OFF |
|
8964 |
GO |
|
8965 |
COMMIT |
|
8966 |
GO |
|
8967 |
-- @formatter:on |
|
8968 |
|
|
8969 |
-- ---------------------------- |
|
8970 |
-- Table structure for system_sms_code |
|
8971 |
-- ---------------------------- |
|
8972 |
DROP TABLE IF EXISTS system_sms_code; |
|
8973 |
CREATE TABLE system_sms_code |
|
8974 |
( |
|
8975 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
8976 |
mobile nvarchar(11) NOT NULL, |
|
8977 |
code nvarchar(6) NOT NULL, |
|
8978 |
create_ip nvarchar(15) NOT NULL, |
|
8979 |
scene tinyint NOT NULL, |
|
8980 |
today_index tinyint NOT NULL, |
|
8981 |
used tinyint NOT NULL, |
|
8982 |
used_time datetime2 DEFAULT NULL NULL, |
|
8983 |
used_ip nvarchar(255) DEFAULT NULL NULL, |
|
8984 |
creator nvarchar(64) DEFAULT '' NULL, |
|
8985 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
8986 |
updater nvarchar(64) DEFAULT '' NULL, |
|
8987 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
8988 |
deleted bit DEFAULT 0 NOT NULL, |
|
8989 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
8990 |
) |
|
8991 |
GO |
|
8992 |
|
|
8993 |
CREATE INDEX idx_system_sms_code_01 ON system_sms_code (mobile) |
|
8994 |
GO |
|
8995 |
|
|
8996 |
EXEC sp_addextendedproperty |
|
8997 |
'MS_Description', N'编号', |
|
8998 |
'SCHEMA', N'dbo', |
|
8999 |
'TABLE', N'system_sms_code', |
|
9000 |
'COLUMN', N'id' |
|
9001 |
GO |
|
9002 |
|
|
9003 |
EXEC sp_addextendedproperty |
|
9004 |
'MS_Description', N'手机号', |
|
9005 |
'SCHEMA', N'dbo', |
|
9006 |
'TABLE', N'system_sms_code', |
|
9007 |
'COLUMN', N'mobile' |
|
9008 |
GO |
|
9009 |
|
|
9010 |
EXEC sp_addextendedproperty |
|
9011 |
'MS_Description', N'验证码', |
|
9012 |
'SCHEMA', N'dbo', |
|
9013 |
'TABLE', N'system_sms_code', |
|
9014 |
'COLUMN', N'code' |
|
9015 |
GO |
|
9016 |
|
|
9017 |
EXEC sp_addextendedproperty |
|
9018 |
'MS_Description', N'创建 IP', |
|
9019 |
'SCHEMA', N'dbo', |
|
9020 |
'TABLE', N'system_sms_code', |
|
9021 |
'COLUMN', N'create_ip' |
|
9022 |
GO |
|
9023 |
|
|
9024 |
EXEC sp_addextendedproperty |
|
9025 |
'MS_Description', N'发送场景', |
|
9026 |
'SCHEMA', N'dbo', |
|
9027 |
'TABLE', N'system_sms_code', |
|
9028 |
'COLUMN', N'scene' |
|
9029 |
GO |
|
9030 |
|
|
9031 |
EXEC sp_addextendedproperty |
|
9032 |
'MS_Description', N'今日发送的第几条', |
|
9033 |
'SCHEMA', N'dbo', |
|
9034 |
'TABLE', N'system_sms_code', |
|
9035 |
'COLUMN', N'today_index' |
|
9036 |
GO |
|
9037 |
|
|
9038 |
EXEC sp_addextendedproperty |
|
9039 |
'MS_Description', N'是否使用', |
|
9040 |
'SCHEMA', N'dbo', |
|
9041 |
'TABLE', N'system_sms_code', |
|
9042 |
'COLUMN', N'used' |
|
9043 |
GO |
|
9044 |
|
|
9045 |
EXEC sp_addextendedproperty |
|
9046 |
'MS_Description', N'使用时间', |
|
9047 |
'SCHEMA', N'dbo', |
|
9048 |
'TABLE', N'system_sms_code', |
|
9049 |
'COLUMN', N'used_time' |
|
9050 |
GO |
|
9051 |
|
|
9052 |
EXEC sp_addextendedproperty |
|
9053 |
'MS_Description', N'使用 IP', |
|
9054 |
'SCHEMA', N'dbo', |
|
9055 |
'TABLE', N'system_sms_code', |
|
9056 |
'COLUMN', N'used_ip' |
|
9057 |
GO |
|
9058 |
|
|
9059 |
EXEC sp_addextendedproperty |
|
9060 |
'MS_Description', N'创建者', |
|
9061 |
'SCHEMA', N'dbo', |
|
9062 |
'TABLE', N'system_sms_code', |
|
9063 |
'COLUMN', N'creator' |
|
9064 |
GO |
|
9065 |
|
|
9066 |
EXEC sp_addextendedproperty |
|
9067 |
'MS_Description', N'创建时间', |
|
9068 |
'SCHEMA', N'dbo', |
|
9069 |
'TABLE', N'system_sms_code', |
|
9070 |
'COLUMN', N'create_time' |
|
9071 |
GO |
|
9072 |
|
|
9073 |
EXEC sp_addextendedproperty |
|
9074 |
'MS_Description', N'更新者', |
|
9075 |
'SCHEMA', N'dbo', |
|
9076 |
'TABLE', N'system_sms_code', |
|
9077 |
'COLUMN', N'updater' |
|
9078 |
GO |
|
9079 |
|
|
9080 |
EXEC sp_addextendedproperty |
|
9081 |
'MS_Description', N'更新时间', |
|
9082 |
'SCHEMA', N'dbo', |
|
9083 |
'TABLE', N'system_sms_code', |
|
9084 |
'COLUMN', N'update_time' |
|
9085 |
GO |
|
9086 |
|
|
9087 |
EXEC sp_addextendedproperty |
|
9088 |
'MS_Description', N'是否删除', |
|
9089 |
'SCHEMA', N'dbo', |
|
9090 |
'TABLE', N'system_sms_code', |
|
9091 |
'COLUMN', N'deleted' |
|
9092 |
GO |
|
9093 |
|
|
9094 |
EXEC sp_addextendedproperty |
|
9095 |
'MS_Description', N'租户编号', |
|
9096 |
'SCHEMA', N'dbo', |
|
9097 |
'TABLE', N'system_sms_code', |
|
9098 |
'COLUMN', N'tenant_id' |
|
9099 |
GO |
|
9100 |
|
|
9101 |
EXEC sp_addextendedproperty |
|
9102 |
'MS_Description', N'手机验证码', |
|
9103 |
'SCHEMA', N'dbo', |
|
9104 |
'TABLE', N'system_sms_code' |
|
9105 |
GO |
|
9106 |
|
|
9107 |
-- ---------------------------- |
|
9108 |
-- Table structure for system_sms_log |
|
9109 |
-- ---------------------------- |
|
9110 |
DROP TABLE IF EXISTS system_sms_log; |
|
9111 |
CREATE TABLE system_sms_log |
|
9112 |
( |
|
9113 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
9114 |
channel_id bigint NOT NULL, |
|
9115 |
channel_code nvarchar(63) NOT NULL, |
|
9116 |
template_id bigint NOT NULL, |
|
9117 |
template_code nvarchar(63) NOT NULL, |
|
9118 |
template_type tinyint NOT NULL, |
|
9119 |
template_content nvarchar(255) NOT NULL, |
|
9120 |
template_params nvarchar(255) NOT NULL, |
|
9121 |
api_template_id nvarchar(63) NOT NULL, |
|
9122 |
mobile nvarchar(11) NOT NULL, |
|
9123 |
user_id bigint DEFAULT NULL NULL, |
|
9124 |
user_type tinyint DEFAULT NULL NULL, |
|
9125 |
send_status tinyint DEFAULT 0 NOT NULL, |
|
9126 |
send_time datetime2 DEFAULT NULL NULL, |
|
9127 |
api_send_code nvarchar(63) DEFAULT NULL NULL, |
|
9128 |
api_send_msg nvarchar(255) DEFAULT NULL NULL, |
|
9129 |
api_request_id nvarchar(255) DEFAULT NULL NULL, |
|
9130 |
api_serial_no nvarchar(255) DEFAULT NULL NULL, |
|
9131 |
receive_status tinyint DEFAULT 0 NOT NULL, |
|
9132 |
receive_time datetime2 DEFAULT NULL NULL, |
|
9133 |
api_receive_code nvarchar(63) DEFAULT NULL NULL, |
|
9134 |
api_receive_msg nvarchar(255) DEFAULT NULL NULL, |
|
9135 |
creator nvarchar(64) DEFAULT '' NULL, |
|
9136 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
9137 |
updater nvarchar(64) DEFAULT '' NULL, |
|
9138 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
9139 |
deleted bit DEFAULT 0 NOT NULL |
|
9140 |
) |
|
9141 |
GO |
|
9142 |
|
|
9143 |
EXEC sp_addextendedproperty |
|
9144 |
'MS_Description', N'编号', |
|
9145 |
'SCHEMA', N'dbo', |
|
9146 |
'TABLE', N'system_sms_log', |
|
9147 |
'COLUMN', N'id' |
|
9148 |
GO |
|
9149 |
|
|
9150 |
EXEC sp_addextendedproperty |
|
9151 |
'MS_Description', N'短信渠道编号', |
|
9152 |
'SCHEMA', N'dbo', |
|
9153 |
'TABLE', N'system_sms_log', |
|
9154 |
'COLUMN', N'channel_id' |
|
9155 |
GO |
|
9156 |
|
|
9157 |
EXEC sp_addextendedproperty |
|
9158 |
'MS_Description', N'短信渠道编码', |
|
9159 |
'SCHEMA', N'dbo', |
|
9160 |
'TABLE', N'system_sms_log', |
|
9161 |
'COLUMN', N'channel_code' |
|
9162 |
GO |
|
9163 |
|
|
9164 |
EXEC sp_addextendedproperty |
|
9165 |
'MS_Description', N'模板编号', |
|
9166 |
'SCHEMA', N'dbo', |
|
9167 |
'TABLE', N'system_sms_log', |
|
9168 |
'COLUMN', N'template_id' |
|
9169 |
GO |
|
9170 |
|
|
9171 |
EXEC sp_addextendedproperty |
|
9172 |
'MS_Description', N'模板编码', |
|
9173 |
'SCHEMA', N'dbo', |
|
9174 |
'TABLE', N'system_sms_log', |
|
9175 |
'COLUMN', N'template_code' |
|
9176 |
GO |
|
9177 |
|
|
9178 |
EXEC sp_addextendedproperty |
|
9179 |
'MS_Description', N'短信类型', |
|
9180 |
'SCHEMA', N'dbo', |
|
9181 |
'TABLE', N'system_sms_log', |
|
9182 |
'COLUMN', N'template_type' |
|
9183 |
GO |
|
9184 |
|
|
9185 |
EXEC sp_addextendedproperty |
|
9186 |
'MS_Description', N'短信内容', |
|
9187 |
'SCHEMA', N'dbo', |
|
9188 |
'TABLE', N'system_sms_log', |
|
9189 |
'COLUMN', N'template_content' |
|
9190 |
GO |
|
9191 |
|
|
9192 |
EXEC sp_addextendedproperty |
|
9193 |
'MS_Description', N'短信参数', |
|
9194 |
'SCHEMA', N'dbo', |
|
9195 |
'TABLE', N'system_sms_log', |
|
9196 |
'COLUMN', N'template_params' |
|
9197 |
GO |
|
9198 |
|
|
9199 |
EXEC sp_addextendedproperty |
|
9200 |
'MS_Description', N'短信 API 的模板编号', |
|
9201 |
'SCHEMA', N'dbo', |
|
9202 |
'TABLE', N'system_sms_log', |
|
9203 |
'COLUMN', N'api_template_id' |
|
9204 |
GO |
|
9205 |
|
|
9206 |
EXEC sp_addextendedproperty |
|
9207 |
'MS_Description', N'手机号', |
|
9208 |
'SCHEMA', N'dbo', |
|
9209 |
'TABLE', N'system_sms_log', |
|
9210 |
'COLUMN', N'mobile' |
|
9211 |
GO |
|
9212 |
|
|
9213 |
EXEC sp_addextendedproperty |
|
9214 |
'MS_Description', N'用户编号', |
|
9215 |
'SCHEMA', N'dbo', |
|
9216 |
'TABLE', N'system_sms_log', |
|
9217 |
'COLUMN', N'user_id' |
|
9218 |
GO |
|
9219 |
|
|
9220 |
EXEC sp_addextendedproperty |
|
9221 |
'MS_Description', N'用户类型', |
|
9222 |
'SCHEMA', N'dbo', |
|
9223 |
'TABLE', N'system_sms_log', |
|
9224 |
'COLUMN', N'user_type' |
|
9225 |
GO |
|
9226 |
|
|
9227 |
EXEC sp_addextendedproperty |
|
9228 |
'MS_Description', N'发送状态', |
|
9229 |
'SCHEMA', N'dbo', |
|
9230 |
'TABLE', N'system_sms_log', |
|
9231 |
'COLUMN', N'send_status' |
|
9232 |
GO |
|
9233 |
|
|
9234 |
EXEC sp_addextendedproperty |
|
9235 |
'MS_Description', N'发送时间', |
|
9236 |
'SCHEMA', N'dbo', |
|
9237 |
'TABLE', N'system_sms_log', |
|
9238 |
'COLUMN', N'send_time' |
|
9239 |
GO |
|
9240 |
|
|
9241 |
EXEC sp_addextendedproperty |
|
9242 |
'MS_Description', N'短信 API 发送结果的编码', |
|
9243 |
'SCHEMA', N'dbo', |
|
9244 |
'TABLE', N'system_sms_log', |
|
9245 |
'COLUMN', N'api_send_code' |
|
9246 |
GO |
|
9247 |
|
|
9248 |
EXEC sp_addextendedproperty |
|
9249 |
'MS_Description', N'短信 API 发送失败的提示', |
|
9250 |
'SCHEMA', N'dbo', |
|
9251 |
'TABLE', N'system_sms_log', |
|
9252 |
'COLUMN', N'api_send_msg' |
|
9253 |
GO |
|
9254 |
|
|
9255 |
EXEC sp_addextendedproperty |
|
9256 |
'MS_Description', N'短信 API 发送返回的唯一请求 ID', |
|
9257 |
'SCHEMA', N'dbo', |
|
9258 |
'TABLE', N'system_sms_log', |
|
9259 |
'COLUMN', N'api_request_id' |
|
9260 |
GO |
|
9261 |
|
|
9262 |
EXEC sp_addextendedproperty |
|
9263 |
'MS_Description', N'短信 API 发送返回的序号', |
|
9264 |
'SCHEMA', N'dbo', |
|
9265 |
'TABLE', N'system_sms_log', |
|
9266 |
'COLUMN', N'api_serial_no' |
|
9267 |
GO |
|
9268 |
|
|
9269 |
EXEC sp_addextendedproperty |
|
9270 |
'MS_Description', N'接收状态', |
|
9271 |
'SCHEMA', N'dbo', |
|
9272 |
'TABLE', N'system_sms_log', |
|
9273 |
'COLUMN', N'receive_status' |
|
9274 |
GO |
|
9275 |
|
|
9276 |
EXEC sp_addextendedproperty |
|
9277 |
'MS_Description', N'接收时间', |
|
9278 |
'SCHEMA', N'dbo', |
|
9279 |
'TABLE', N'system_sms_log', |
|
9280 |
'COLUMN', N'receive_time' |
|
9281 |
GO |
|
9282 |
|
|
9283 |
EXEC sp_addextendedproperty |
|
9284 |
'MS_Description', N'API 接收结果的编码', |
|
9285 |
'SCHEMA', N'dbo', |
|
9286 |
'TABLE', N'system_sms_log', |
|
9287 |
'COLUMN', N'api_receive_code' |
|
9288 |
GO |
|
9289 |
|
|
9290 |
EXEC sp_addextendedproperty |
|
9291 |
'MS_Description', N'API 接收结果的说明', |
|
9292 |
'SCHEMA', N'dbo', |
|
9293 |
'TABLE', N'system_sms_log', |
|
9294 |
'COLUMN', N'api_receive_msg' |
|
9295 |
GO |
|
9296 |
|
|
9297 |
EXEC sp_addextendedproperty |
|
9298 |
'MS_Description', N'创建者', |
|
9299 |
'SCHEMA', N'dbo', |
|
9300 |
'TABLE', N'system_sms_log', |
|
9301 |
'COLUMN', N'creator' |
|
9302 |
GO |
|
9303 |
|
|
9304 |
EXEC sp_addextendedproperty |
|
9305 |
'MS_Description', N'创建时间', |
|
9306 |
'SCHEMA', N'dbo', |
|
9307 |
'TABLE', N'system_sms_log', |
|
9308 |
'COLUMN', N'create_time' |
|
9309 |
GO |
|
9310 |
|
|
9311 |
EXEC sp_addextendedproperty |
|
9312 |
'MS_Description', N'更新者', |
|
9313 |
'SCHEMA', N'dbo', |
|
9314 |
'TABLE', N'system_sms_log', |
|
9315 |
'COLUMN', N'updater' |
|
9316 |
GO |
|
9317 |
|
|
9318 |
EXEC sp_addextendedproperty |
|
9319 |
'MS_Description', N'更新时间', |
|
9320 |
'SCHEMA', N'dbo', |
|
9321 |
'TABLE', N'system_sms_log', |
|
9322 |
'COLUMN', N'update_time' |
|
9323 |
GO |
|
9324 |
|
|
9325 |
EXEC sp_addextendedproperty |
|
9326 |
'MS_Description', N'是否删除', |
|
9327 |
'SCHEMA', N'dbo', |
|
9328 |
'TABLE', N'system_sms_log', |
|
9329 |
'COLUMN', N'deleted' |
|
9330 |
GO |
|
9331 |
|
|
9332 |
EXEC sp_addextendedproperty |
|
9333 |
'MS_Description', N'短信日志', |
|
9334 |
'SCHEMA', N'dbo', |
|
9335 |
'TABLE', N'system_sms_log' |
|
9336 |
GO |
|
9337 |
|
|
9338 |
-- ---------------------------- |
|
9339 |
-- Table structure for system_sms_template |
|
9340 |
-- ---------------------------- |
|
9341 |
DROP TABLE IF EXISTS system_sms_template; |
|
9342 |
CREATE TABLE system_sms_template |
|
9343 |
( |
|
9344 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
9345 |
type tinyint NOT NULL, |
|
9346 |
status tinyint NOT NULL, |
|
9347 |
code nvarchar(63) NOT NULL, |
|
9348 |
name nvarchar(63) NOT NULL, |
|
9349 |
content nvarchar(255) NOT NULL, |
|
9350 |
params nvarchar(255) NOT NULL, |
|
9351 |
remark nvarchar(255) DEFAULT NULL NULL, |
|
9352 |
api_template_id nvarchar(63) NOT NULL, |
|
9353 |
channel_id bigint NOT NULL, |
|
9354 |
channel_code nvarchar(63) NOT NULL, |
|
9355 |
creator nvarchar(64) DEFAULT '' NULL, |
|
9356 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
9357 |
updater nvarchar(64) DEFAULT '' NULL, |
|
9358 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
9359 |
deleted bit DEFAULT 0 NOT NULL |
|
9360 |
) |
|
9361 |
GO |
|
9362 |
|
|
9363 |
EXEC sp_addextendedproperty |
|
9364 |
'MS_Description', N'编号', |
|
9365 |
'SCHEMA', N'dbo', |
|
9366 |
'TABLE', N'system_sms_template', |
|
9367 |
'COLUMN', N'id' |
|
9368 |
GO |
|
9369 |
|
|
9370 |
EXEC sp_addextendedproperty |
|
9371 |
'MS_Description', N'模板类型', |
|
9372 |
'SCHEMA', N'dbo', |
|
9373 |
'TABLE', N'system_sms_template', |
|
9374 |
'COLUMN', N'type' |
|
9375 |
GO |
|
9376 |
|
|
9377 |
EXEC sp_addextendedproperty |
|
9378 |
'MS_Description', N'开启状态', |
|
9379 |
'SCHEMA', N'dbo', |
|
9380 |
'TABLE', N'system_sms_template', |
|
9381 |
'COLUMN', N'status' |
|
9382 |
GO |
|
9383 |
|
|
9384 |
EXEC sp_addextendedproperty |
|
9385 |
'MS_Description', N'模板编码', |
|
9386 |
'SCHEMA', N'dbo', |
|
9387 |
'TABLE', N'system_sms_template', |
|
9388 |
'COLUMN', N'code' |
|
9389 |
GO |
|
9390 |
|
|
9391 |
EXEC sp_addextendedproperty |
|
9392 |
'MS_Description', N'模板名称', |
|
9393 |
'SCHEMA', N'dbo', |
|
9394 |
'TABLE', N'system_sms_template', |
|
9395 |
'COLUMN', N'name' |
|
9396 |
GO |
|
9397 |
|
|
9398 |
EXEC sp_addextendedproperty |
|
9399 |
'MS_Description', N'模板内容', |
|
9400 |
'SCHEMA', N'dbo', |
|
9401 |
'TABLE', N'system_sms_template', |
|
9402 |
'COLUMN', N'content' |
|
9403 |
GO |
|
9404 |
|
|
9405 |
EXEC sp_addextendedproperty |
|
9406 |
'MS_Description', N'参数数组', |
|
9407 |
'SCHEMA', N'dbo', |
|
9408 |
'TABLE', N'system_sms_template', |
|
9409 |
'COLUMN', N'params' |
|
9410 |
GO |
|
9411 |
|
|
9412 |
EXEC sp_addextendedproperty |
|
9413 |
'MS_Description', N'备注', |
|
9414 |
'SCHEMA', N'dbo', |
|
9415 |
'TABLE', N'system_sms_template', |
|
9416 |
'COLUMN', N'remark' |
|
9417 |
GO |
|
9418 |
|
|
9419 |
EXEC sp_addextendedproperty |
|
9420 |
'MS_Description', N'短信 API 的模板编号', |
|
9421 |
'SCHEMA', N'dbo', |
|
9422 |
'TABLE', N'system_sms_template', |
|
9423 |
'COLUMN', N'api_template_id' |
|
9424 |
GO |
|
9425 |
|
|
9426 |
EXEC sp_addextendedproperty |
|
9427 |
'MS_Description', N'短信渠道编号', |
|
9428 |
'SCHEMA', N'dbo', |
|
9429 |
'TABLE', N'system_sms_template', |
|
9430 |
'COLUMN', N'channel_id' |
|
9431 |
GO |
|
9432 |
|
|
9433 |
EXEC sp_addextendedproperty |
|
9434 |
'MS_Description', N'短信渠道编码', |
|
9435 |
'SCHEMA', N'dbo', |
|
9436 |
'TABLE', N'system_sms_template', |
|
9437 |
'COLUMN', N'channel_code' |
|
9438 |
GO |
|
9439 |
|
|
9440 |
EXEC sp_addextendedproperty |
|
9441 |
'MS_Description', N'创建者', |
|
9442 |
'SCHEMA', N'dbo', |
|
9443 |
'TABLE', N'system_sms_template', |
|
9444 |
'COLUMN', N'creator' |
|
9445 |
GO |
|
9446 |
|
|
9447 |
EXEC sp_addextendedproperty |
|
9448 |
'MS_Description', N'创建时间', |
|
9449 |
'SCHEMA', N'dbo', |
|
9450 |
'TABLE', N'system_sms_template', |
|
9451 |
'COLUMN', N'create_time' |
|
9452 |
GO |
|
9453 |
|
|
9454 |
EXEC sp_addextendedproperty |
|
9455 |
'MS_Description', N'更新者', |
|
9456 |
'SCHEMA', N'dbo', |
|
9457 |
'TABLE', N'system_sms_template', |
|
9458 |
'COLUMN', N'updater' |
|
9459 |
GO |
|
9460 |
|
|
9461 |
EXEC sp_addextendedproperty |
|
9462 |
'MS_Description', N'更新时间', |
|
9463 |
'SCHEMA', N'dbo', |
|
9464 |
'TABLE', N'system_sms_template', |
|
9465 |
'COLUMN', N'update_time' |
|
9466 |
GO |
|
9467 |
|
|
9468 |
EXEC sp_addextendedproperty |
|
9469 |
'MS_Description', N'是否删除', |
|
9470 |
'SCHEMA', N'dbo', |
|
9471 |
'TABLE', N'system_sms_template', |
|
9472 |
'COLUMN', N'deleted' |
|
9473 |
GO |
|
9474 |
|
|
9475 |
EXEC sp_addextendedproperty |
|
9476 |
'MS_Description', N'短信模板', |
|
9477 |
'SCHEMA', N'dbo', |
|
9478 |
'TABLE', N'system_sms_template' |
|
9479 |
GO |
|
9480 |
|
|
9481 |
-- ---------------------------- |
|
9482 |
-- Records of system_sms_template |
|
9483 |
-- ---------------------------- |
|
9484 |
-- @formatter:off |
|
9485 |
BEGIN TRANSACTION |
|
9486 |
GO |
|
9487 |
SET IDENTITY_INSERT system_sms_template ON |
|
9488 |
GO |
|
9489 |
INSERT INTO system_sms_template (id, type, status, code, name, content, params, remark, api_template_id, channel_id, channel_code, creator, create_time, updater, update_time, deleted) VALUES (2, 1, 0, N'test_01', N'测试验证码短信', N'正在进行登录操作{operation},您的验证码是{code}', N'["operation","code"]', N'测试备注', N'4383920', 6, N'DEBUG_DING_TALK', N'', N'2021-03-31 10:49:38', N'1', N'2023-12-02 22:32:47', N'0') |
|
9490 |
GO |
|
9491 |
INSERT INTO system_sms_template (id, type, status, code, name, content, params, remark, api_template_id, channel_id, channel_code, creator, create_time, updater, update_time, deleted) VALUES (3, 1, 0, N'test_02', N'公告通知', N'您的验证码{code},该验证码5分钟内有效,请勿泄漏于他人!', N'["code"]', NULL, N'SMS_207945135', 2, N'ALIYUN', N'', N'2021-03-31 11:56:30', N'1', N'2021-04-10 01:22:02', N'0') |
|
9492 |
GO |
|
9493 |
INSERT INTO system_sms_template (id, type, status, code, name, content, params, remark, api_template_id, channel_id, channel_code, creator, create_time, updater, update_time, deleted) VALUES (6, 3, 0, N'test-01', N'测试模板', N'哈哈哈 {name}', N'["name"]', N'f哈哈哈', N'4383920', 6, N'DEBUG_DING_TALK', N'1', N'2021-04-10 01:07:21', N'1', N'2022-12-10 21:26:09', N'0') |
|
9494 |
GO |
|
9495 |
INSERT INTO system_sms_template (id, type, status, code, name, content, params, remark, api_template_id, channel_id, channel_code, creator, create_time, updater, update_time, deleted) VALUES (7, 3, 0, N'test-04', N'测试下', N'老鸡{name},牛逼{code}', N'["name","code"]', N'哈哈哈哈', N'suibian', 4, N'DEBUG_DING_TALK', N'1', N'2021-04-13 00:29:53', N'1', N'2023-12-02 22:35:34', N'0') |
|
9496 |
GO |
|
9497 |
INSERT INTO system_sms_template (id, type, status, code, name, content, params, remark, api_template_id, channel_id, channel_code, creator, create_time, updater, update_time, deleted) VALUES (8, 1, 0, N'user-sms-login', N'前台用户短信登录', N'您的验证码是{code}', N'["code"]', NULL, N'4372216', 6, N'DEBUG_DING_TALK', N'1', N'2021-10-11 08:10:00', N'1', N'2022-12-10 21:25:59', N'0') |
|
9498 |
GO |
|
9499 |
INSERT INTO system_sms_template (id, type, status, code, name, content, params, remark, api_template_id, channel_id, channel_code, creator, create_time, updater, update_time, deleted) VALUES (9, 2, 0, N'bpm_task_assigned', N'【工作流】任务被分配', N'您收到了一条新的待办任务:{processInstanceName}-{taskName},申请人:{startUserNickname},处理链接:{detailUrl}', N'["processInstanceName","taskName","startUserNickname","detailUrl"]', NULL, N'suibian', 4, N'DEBUG_DING_TALK', N'1', N'2022-01-21 22:31:19', N'1', N'2022-01-22 00:03:36', N'0') |
|
9500 |
GO |
|
9501 |
INSERT INTO system_sms_template (id, type, status, code, name, content, params, remark, api_template_id, channel_id, channel_code, creator, create_time, updater, update_time, deleted) VALUES (10, 2, 0, N'bpm_process_instance_reject', N'【工作流】流程被不通过', N'您的流程被审批不通过:{processInstanceName},原因:{reason},查看链接:{detailUrl}', N'["processInstanceName","reason","detailUrl"]', NULL, N'suibian', 4, N'DEBUG_DING_TALK', N'1', N'2022-01-22 00:03:31', N'1', N'2022-05-01 12:33:14', N'0') |
|
9502 |
GO |
|
9503 |
INSERT INTO system_sms_template (id, type, status, code, name, content, params, remark, api_template_id, channel_id, channel_code, creator, create_time, updater, update_time, deleted) VALUES (11, 2, 0, N'bpm_process_instance_approve', N'【工作流】流程被通过', N'您的流程被审批通过:{processInstanceName},查看链接:{detailUrl}', N'["processInstanceName","detailUrl"]', NULL, N'suibian', 4, N'DEBUG_DING_TALK', N'1', N'2022-01-22 00:04:31', N'1', N'2022-03-27 20:32:21', N'0') |
|
9504 |
GO |
|
9505 |
INSERT INTO system_sms_template (id, type, status, code, name, content, params, remark, api_template_id, channel_id, channel_code, creator, create_time, updater, update_time, deleted) VALUES (12, 2, 0, N'demo', N'演示模板', N'我就是测试一下下', N'[]', NULL, N'biubiubiu', 6, N'DEBUG_DING_TALK', N'1', N'2022-04-10 23:22:49', N'1', N'2023-03-24 23:45:07', N'0') |
|
9506 |
GO |
|
9507 |
INSERT INTO system_sms_template (id, type, status, code, name, content, params, remark, api_template_id, channel_id, channel_code, creator, create_time, updater, update_time, deleted) VALUES (14, 1, 0, N'user-update-mobile', N'会员用户 - 修改手机', N'您的验证码{code},该验证码 5 分钟内有效,请勿泄漏于他人!', N'["code"]', N'', N'null', 4, N'DEBUG_DING_TALK', N'1', N'2023-08-19 18:58:01', N'1', N'2023-08-19 11:34:04', N'0') |
|
9508 |
GO |
|
9509 |
INSERT INTO system_sms_template (id, type, status, code, name, content, params, remark, api_template_id, channel_id, channel_code, creator, create_time, updater, update_time, deleted) VALUES (15, 1, 0, N'user-update-password', N'会员用户 - 修改密码', N'您的验证码{code},该验证码 5 分钟内有效,请勿泄漏于他人!', N'["code"]', N'', N'null', 4, N'DEBUG_DING_TALK', N'1', N'2023-08-19 18:58:01', N'1', N'2023-08-19 11:34:18', N'0') |
|
9510 |
GO |
|
9511 |
INSERT INTO system_sms_template (id, type, status, code, name, content, params, remark, api_template_id, channel_id, channel_code, creator, create_time, updater, update_time, deleted) VALUES (16, 1, 0, N'user-reset-password', N'会员用户 - 重置密码', N'您的验证码{code},该验证码 5 分钟内有效,请勿泄漏于他人!', N'["code"]', N'', N'null', 4, N'DEBUG_DING_TALK', N'1', N'2023-08-19 18:58:01', N'1', N'2023-12-02 22:35:27', N'0') |
|
9512 |
GO |
|
9513 |
SET IDENTITY_INSERT system_sms_template OFF |
|
9514 |
GO |
|
9515 |
COMMIT |
|
9516 |
GO |
|
9517 |
-- @formatter:on |
|
9518 |
|
|
9519 |
-- ---------------------------- |
|
9520 |
-- Table structure for system_social_client |
|
9521 |
-- ---------------------------- |
|
9522 |
DROP TABLE IF EXISTS system_social_client; |
|
9523 |
CREATE TABLE system_social_client |
|
9524 |
( |
|
9525 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
9526 |
name nvarchar(255) NOT NULL, |
|
9527 |
social_type tinyint NOT NULL, |
|
9528 |
user_type tinyint NOT NULL, |
|
9529 |
client_id nvarchar(255) NOT NULL, |
|
9530 |
client_secret nvarchar(255) NOT NULL, |
|
9531 |
agent_id nvarchar(255) DEFAULT NULL NULL, |
|
9532 |
status tinyint NOT NULL, |
|
9533 |
creator nvarchar(64) DEFAULT '' NULL, |
|
9534 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
9535 |
updater nvarchar(64) DEFAULT '' NULL, |
|
9536 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
9537 |
deleted bit DEFAULT 0 NOT NULL, |
|
9538 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
9539 |
) |
|
9540 |
GO |
|
9541 |
|
|
9542 |
EXEC sp_addextendedproperty |
|
9543 |
'MS_Description', N'编号', |
|
9544 |
'SCHEMA', N'dbo', |
|
9545 |
'TABLE', N'system_social_client', |
|
9546 |
'COLUMN', N'id' |
|
9547 |
GO |
|
9548 |
|
|
9549 |
EXEC sp_addextendedproperty |
|
9550 |
'MS_Description', N'应用名', |
|
9551 |
'SCHEMA', N'dbo', |
|
9552 |
'TABLE', N'system_social_client', |
|
9553 |
'COLUMN', N'name' |
|
9554 |
GO |
|
9555 |
|
|
9556 |
EXEC sp_addextendedproperty |
|
9557 |
'MS_Description', N'社交平台的类型', |
|
9558 |
'SCHEMA', N'dbo', |
|
9559 |
'TABLE', N'system_social_client', |
|
9560 |
'COLUMN', N'social_type' |
|
9561 |
GO |
|
9562 |
|
|
9563 |
EXEC sp_addextendedproperty |
|
9564 |
'MS_Description', N'用户类型', |
|
9565 |
'SCHEMA', N'dbo', |
|
9566 |
'TABLE', N'system_social_client', |
|
9567 |
'COLUMN', N'user_type' |
|
9568 |
GO |
|
9569 |
|
|
9570 |
EXEC sp_addextendedproperty |
|
9571 |
'MS_Description', N'客户端编号', |
|
9572 |
'SCHEMA', N'dbo', |
|
9573 |
'TABLE', N'system_social_client', |
|
9574 |
'COLUMN', N'client_id' |
|
9575 |
GO |
|
9576 |
|
|
9577 |
EXEC sp_addextendedproperty |
|
9578 |
'MS_Description', N'客户端密钥', |
|
9579 |
'SCHEMA', N'dbo', |
|
9580 |
'TABLE', N'system_social_client', |
|
9581 |
'COLUMN', N'client_secret' |
|
9582 |
GO |
|
9583 |
|
|
9584 |
EXEC sp_addextendedproperty |
|
9585 |
'MS_Description', N'代理编号', |
|
9586 |
'SCHEMA', N'dbo', |
|
9587 |
'TABLE', N'system_social_client', |
|
9588 |
'COLUMN', N'agent_id' |
|
9589 |
GO |
|
9590 |
|
|
9591 |
EXEC sp_addextendedproperty |
|
9592 |
'MS_Description', N'状态', |
|
9593 |
'SCHEMA', N'dbo', |
|
9594 |
'TABLE', N'system_social_client', |
|
9595 |
'COLUMN', N'status' |
|
9596 |
GO |
|
9597 |
|
|
9598 |
EXEC sp_addextendedproperty |
|
9599 |
'MS_Description', N'创建者', |
|
9600 |
'SCHEMA', N'dbo', |
|
9601 |
'TABLE', N'system_social_client', |
|
9602 |
'COLUMN', N'creator' |
|
9603 |
GO |
|
9604 |
|
|
9605 |
EXEC sp_addextendedproperty |
|
9606 |
'MS_Description', N'创建时间', |
|
9607 |
'SCHEMA', N'dbo', |
|
9608 |
'TABLE', N'system_social_client', |
|
9609 |
'COLUMN', N'create_time' |
|
9610 |
GO |
|
9611 |
|
|
9612 |
EXEC sp_addextendedproperty |
|
9613 |
'MS_Description', N'更新者', |
|
9614 |
'SCHEMA', N'dbo', |
|
9615 |
'TABLE', N'system_social_client', |
|
9616 |
'COLUMN', N'updater' |
|
9617 |
GO |
|
9618 |
|
|
9619 |
EXEC sp_addextendedproperty |
|
9620 |
'MS_Description', N'更新时间', |
|
9621 |
'SCHEMA', N'dbo', |
|
9622 |
'TABLE', N'system_social_client', |
|
9623 |
'COLUMN', N'update_time' |
|
9624 |
GO |
|
9625 |
|
|
9626 |
EXEC sp_addextendedproperty |
|
9627 |
'MS_Description', N'是否删除', |
|
9628 |
'SCHEMA', N'dbo', |
|
9629 |
'TABLE', N'system_social_client', |
|
9630 |
'COLUMN', N'deleted' |
|
9631 |
GO |
|
9632 |
|
|
9633 |
EXEC sp_addextendedproperty |
|
9634 |
'MS_Description', N'租户编号', |
|
9635 |
'SCHEMA', N'dbo', |
|
9636 |
'TABLE', N'system_social_client', |
|
9637 |
'COLUMN', N'tenant_id' |
|
9638 |
GO |
|
9639 |
|
|
9640 |
EXEC sp_addextendedproperty |
|
9641 |
'MS_Description', N'社交客户端表', |
|
9642 |
'SCHEMA', N'dbo', |
|
9643 |
'TABLE', N'system_social_client' |
|
9644 |
GO |
|
9645 |
|
|
9646 |
-- ---------------------------- |
|
9647 |
-- Records of system_social_client |
|
9648 |
-- ---------------------------- |
|
9649 |
-- @formatter:off |
|
9650 |
BEGIN TRANSACTION |
|
9651 |
GO |
|
9652 |
SET IDENTITY_INSERT system_social_client ON |
|
9653 |
GO |
|
9654 |
INSERT INTO system_social_client (id, name, social_type, user_type, client_id, client_secret, agent_id, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1, N'钉钉', 20, 2, N'dingvrnreaje3yqvzhxg', N'i8E6iZyDvZj51JIb0tYsYfVQYOks9Cq1lgryEjFRqC79P3iJcrxEwT6Qk2QvLrLI', NULL, 0, N'', N'2023-10-18 11:21:18', N'1', N'2023-12-20 21:28:26', N'1', 1) |
|
9655 |
GO |
|
9656 |
INSERT INTO system_social_client (id, name, social_type, user_type, client_id, client_secret, agent_id, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2, N'钉钉(王土豆)', 20, 2, N'dingtsu9hpepjkbmthhw', N'FP_bnSq_HAHKCSncmJjw5hxhnzs6vaVDSZZn3egj6rdqTQ_hu5tQVJyLMpgCakdP', NULL, 0, N'', N'2023-10-18 11:21:18', N'', N'2023-12-20 21:28:26', N'1', 121) |
|
9657 |
GO |
|
9658 |
INSERT INTO system_social_client (id, name, social_type, user_type, client_id, client_secret, agent_id, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3, N'微信公众号', 31, 1, N'wx5b23ba7a5589ecbb', N'2a7b3b20c537e52e74afd395eb85f61f', NULL, 0, N'', N'2023-10-18 16:07:46', N'1', N'2023-12-20 21:28:23', N'1', 1) |
|
9659 |
GO |
|
9660 |
INSERT INTO system_social_client (id, name, social_type, user_type, client_id, client_secret, agent_id, status, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (43, N'微信小程序', 34, 1, N'wx63c280fe3248a3e7', N'6f270509224a7ae1296bbf1c8cb97aed', NULL, 0, N'', N'2023-10-19 13:37:41', N'1', N'2023-12-20 21:28:25', N'1', 1) |
|
9661 |
GO |
|
9662 |
SET IDENTITY_INSERT system_social_client OFF |
|
9663 |
GO |
|
9664 |
COMMIT |
|
9665 |
GO |
|
9666 |
-- @formatter:on |
|
9667 |
|
|
9668 |
-- ---------------------------- |
|
9669 |
-- Table structure for system_social_user |
|
9670 |
-- ---------------------------- |
|
9671 |
DROP TABLE IF EXISTS system_social_user; |
|
9672 |
CREATE TABLE system_social_user |
|
9673 |
( |
|
9674 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
9675 |
type tinyint NOT NULL, |
|
9676 |
openid nvarchar(32) NOT NULL, |
|
9677 |
token nvarchar(256) DEFAULT NULL NULL, |
|
9678 |
raw_token_info nvarchar(1024) NOT NULL, |
|
9679 |
nickname nvarchar(32) NOT NULL, |
|
9680 |
avatar nvarchar(255) DEFAULT NULL NULL, |
|
9681 |
raw_user_info nvarchar(1024) NOT NULL, |
|
9682 |
code nvarchar(256) NOT NULL, |
|
9683 |
state nvarchar(256) DEFAULT NULL NULL, |
|
9684 |
creator nvarchar(64) DEFAULT '' NULL, |
|
9685 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
9686 |
updater nvarchar(64) DEFAULT '' NULL, |
|
9687 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
9688 |
deleted bit DEFAULT 0 NOT NULL, |
|
9689 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
9690 |
) |
|
9691 |
GO |
|
9692 |
|
|
9693 |
EXEC sp_addextendedproperty |
|
9694 |
'MS_Description', N'主键(自增策略)', |
|
9695 |
'SCHEMA', N'dbo', |
|
9696 |
'TABLE', N'system_social_user', |
|
9697 |
'COLUMN', N'id' |
|
9698 |
GO |
|
9699 |
|
|
9700 |
EXEC sp_addextendedproperty |
|
9701 |
'MS_Description', N'社交平台的类型', |
|
9702 |
'SCHEMA', N'dbo', |
|
9703 |
'TABLE', N'system_social_user', |
|
9704 |
'COLUMN', N'type' |
|
9705 |
GO |
|
9706 |
|
|
9707 |
EXEC sp_addextendedproperty |
|
9708 |
'MS_Description', N'社交 openid', |
|
9709 |
'SCHEMA', N'dbo', |
|
9710 |
'TABLE', N'system_social_user', |
|
9711 |
'COLUMN', N'openid' |
|
9712 |
GO |
|
9713 |
|
|
9714 |
EXEC sp_addextendedproperty |
|
9715 |
'MS_Description', N'社交 token', |
|
9716 |
'SCHEMA', N'dbo', |
|
9717 |
'TABLE', N'system_social_user', |
|
9718 |
'COLUMN', N'token' |
|
9719 |
GO |
|
9720 |
|
|
9721 |
EXEC sp_addextendedproperty |
|
9722 |
'MS_Description', N'原始 Token 数据,一般是 JSON 格式', |
|
9723 |
'SCHEMA', N'dbo', |
|
9724 |
'TABLE', N'system_social_user', |
|
9725 |
'COLUMN', N'raw_token_info' |
|
9726 |
GO |
|
9727 |
|
|
9728 |
EXEC sp_addextendedproperty |
|
9729 |
'MS_Description', N'用户昵称', |
|
9730 |
'SCHEMA', N'dbo', |
|
9731 |
'TABLE', N'system_social_user', |
|
9732 |
'COLUMN', N'nickname' |
|
9733 |
GO |
|
9734 |
|
|
9735 |
EXEC sp_addextendedproperty |
|
9736 |
'MS_Description', N'用户头像', |
|
9737 |
'SCHEMA', N'dbo', |
|
9738 |
'TABLE', N'system_social_user', |
|
9739 |
'COLUMN', N'avatar' |
|
9740 |
GO |
|
9741 |
|
|
9742 |
EXEC sp_addextendedproperty |
|
9743 |
'MS_Description', N'原始用户数据,一般是 JSON 格式', |
|
9744 |
'SCHEMA', N'dbo', |
|
9745 |
'TABLE', N'system_social_user', |
|
9746 |
'COLUMN', N'raw_user_info' |
|
9747 |
GO |
|
9748 |
|
|
9749 |
EXEC sp_addextendedproperty |
|
9750 |
'MS_Description', N'最后一次的认证 code', |
|
9751 |
'SCHEMA', N'dbo', |
|
9752 |
'TABLE', N'system_social_user', |
|
9753 |
'COLUMN', N'code' |
|
9754 |
GO |
|
9755 |
|
|
9756 |
EXEC sp_addextendedproperty |
|
9757 |
'MS_Description', N'最后一次的认证 state', |
|
9758 |
'SCHEMA', N'dbo', |
|
9759 |
'TABLE', N'system_social_user', |
|
9760 |
'COLUMN', N'state' |
|
9761 |
GO |
|
9762 |
|
|
9763 |
EXEC sp_addextendedproperty |
|
9764 |
'MS_Description', N'创建者', |
|
9765 |
'SCHEMA', N'dbo', |
|
9766 |
'TABLE', N'system_social_user', |
|
9767 |
'COLUMN', N'creator' |
|
9768 |
GO |
|
9769 |
|
|
9770 |
EXEC sp_addextendedproperty |
|
9771 |
'MS_Description', N'创建时间', |
|
9772 |
'SCHEMA', N'dbo', |
|
9773 |
'TABLE', N'system_social_user', |
|
9774 |
'COLUMN', N'create_time' |
|
9775 |
GO |
|
9776 |
|
|
9777 |
EXEC sp_addextendedproperty |
|
9778 |
'MS_Description', N'更新者', |
|
9779 |
'SCHEMA', N'dbo', |
|
9780 |
'TABLE', N'system_social_user', |
|
9781 |
'COLUMN', N'updater' |
|
9782 |
GO |
|
9783 |
|
|
9784 |
EXEC sp_addextendedproperty |
|
9785 |
'MS_Description', N'更新时间', |
|
9786 |
'SCHEMA', N'dbo', |
|
9787 |
'TABLE', N'system_social_user', |
|
9788 |
'COLUMN', N'update_time' |
|
9789 |
GO |
|
9790 |
|
|
9791 |
EXEC sp_addextendedproperty |
|
9792 |
'MS_Description', N'是否删除', |
|
9793 |
'SCHEMA', N'dbo', |
|
9794 |
'TABLE', N'system_social_user', |
|
9795 |
'COLUMN', N'deleted' |
|
9796 |
GO |
|
9797 |
|
|
9798 |
EXEC sp_addextendedproperty |
|
9799 |
'MS_Description', N'租户编号', |
|
9800 |
'SCHEMA', N'dbo', |
|
9801 |
'TABLE', N'system_social_user', |
|
9802 |
'COLUMN', N'tenant_id' |
|
9803 |
GO |
|
9804 |
|
|
9805 |
EXEC sp_addextendedproperty |
|
9806 |
'MS_Description', N'社交用户表', |
|
9807 |
'SCHEMA', N'dbo', |
|
9808 |
'TABLE', N'system_social_user' |
|
9809 |
GO |
|
9810 |
|
|
9811 |
-- ---------------------------- |
|
9812 |
-- Table structure for system_social_user_bind |
|
9813 |
-- ---------------------------- |
|
9814 |
DROP TABLE IF EXISTS system_social_user_bind; |
|
9815 |
CREATE TABLE system_social_user_bind |
|
9816 |
( |
|
9817 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
9818 |
user_id bigint NOT NULL, |
|
9819 |
user_type tinyint NOT NULL, |
|
9820 |
social_type tinyint NOT NULL, |
|
9821 |
social_user_id bigint NOT NULL, |
|
9822 |
creator nvarchar(64) DEFAULT '' NULL, |
|
9823 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
9824 |
updater nvarchar(64) DEFAULT '' NULL, |
|
9825 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
9826 |
deleted bit DEFAULT 0 NOT NULL, |
|
9827 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
9828 |
) |
|
9829 |
GO |
|
9830 |
|
|
9831 |
EXEC sp_addextendedproperty |
|
9832 |
'MS_Description', N'主键(自增策略)', |
|
9833 |
'SCHEMA', N'dbo', |
|
9834 |
'TABLE', N'system_social_user_bind', |
|
9835 |
'COLUMN', N'id' |
|
9836 |
GO |
|
9837 |
|
|
9838 |
EXEC sp_addextendedproperty |
|
9839 |
'MS_Description', N'用户编号', |
|
9840 |
'SCHEMA', N'dbo', |
|
9841 |
'TABLE', N'system_social_user_bind', |
|
9842 |
'COLUMN', N'user_id' |
|
9843 |
GO |
|
9844 |
|
|
9845 |
EXEC sp_addextendedproperty |
|
9846 |
'MS_Description', N'用户类型', |
|
9847 |
'SCHEMA', N'dbo', |
|
9848 |
'TABLE', N'system_social_user_bind', |
|
9849 |
'COLUMN', N'user_type' |
|
9850 |
GO |
|
9851 |
|
|
9852 |
EXEC sp_addextendedproperty |
|
9853 |
'MS_Description', N'社交平台的类型', |
|
9854 |
'SCHEMA', N'dbo', |
|
9855 |
'TABLE', N'system_social_user_bind', |
|
9856 |
'COLUMN', N'social_type' |
|
9857 |
GO |
|
9858 |
|
|
9859 |
EXEC sp_addextendedproperty |
|
9860 |
'MS_Description', N'社交用户的编号', |
|
9861 |
'SCHEMA', N'dbo', |
|
9862 |
'TABLE', N'system_social_user_bind', |
|
9863 |
'COLUMN', N'social_user_id' |
|
9864 |
GO |
|
9865 |
|
|
9866 |
EXEC sp_addextendedproperty |
|
9867 |
'MS_Description', N'创建者', |
|
9868 |
'SCHEMA', N'dbo', |
|
9869 |
'TABLE', N'system_social_user_bind', |
|
9870 |
'COLUMN', N'creator' |
|
9871 |
GO |
|
9872 |
|
|
9873 |
EXEC sp_addextendedproperty |
|
9874 |
'MS_Description', N'创建时间', |
|
9875 |
'SCHEMA', N'dbo', |
|
9876 |
'TABLE', N'system_social_user_bind', |
|
9877 |
'COLUMN', N'create_time' |
|
9878 |
GO |
|
9879 |
|
|
9880 |
EXEC sp_addextendedproperty |
|
9881 |
'MS_Description', N'更新者', |
|
9882 |
'SCHEMA', N'dbo', |
|
9883 |
'TABLE', N'system_social_user_bind', |
|
9884 |
'COLUMN', N'updater' |
|
9885 |
GO |
|
9886 |
|
|
9887 |
EXEC sp_addextendedproperty |
|
9888 |
'MS_Description', N'更新时间', |
|
9889 |
'SCHEMA', N'dbo', |
|
9890 |
'TABLE', N'system_social_user_bind', |
|
9891 |
'COLUMN', N'update_time' |
|
9892 |
GO |
|
9893 |
|
|
9894 |
EXEC sp_addextendedproperty |
|
9895 |
'MS_Description', N'是否删除', |
|
9896 |
'SCHEMA', N'dbo', |
|
9897 |
'TABLE', N'system_social_user_bind', |
|
9898 |
'COLUMN', N'deleted' |
|
9899 |
GO |
|
9900 |
|
|
9901 |
EXEC sp_addextendedproperty |
|
9902 |
'MS_Description', N'租户编号', |
|
9903 |
'SCHEMA', N'dbo', |
|
9904 |
'TABLE', N'system_social_user_bind', |
|
9905 |
'COLUMN', N'tenant_id' |
|
9906 |
GO |
|
9907 |
|
|
9908 |
EXEC sp_addextendedproperty |
|
9909 |
'MS_Description', N'社交绑定表', |
|
9910 |
'SCHEMA', N'dbo', |
|
9911 |
'TABLE', N'system_social_user_bind' |
|
9912 |
GO |
|
9913 |
|
|
9914 |
-- ---------------------------- |
|
9915 |
-- Table structure for system_tenant |
|
9916 |
-- ---------------------------- |
|
9917 |
DROP TABLE IF EXISTS system_tenant; |
|
9918 |
CREATE TABLE system_tenant |
|
9919 |
( |
|
9920 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
9921 |
name nvarchar(30) NOT NULL, |
|
9922 |
contact_user_id bigint DEFAULT NULL NULL, |
|
9923 |
contact_name nvarchar(30) NOT NULL, |
|
9924 |
contact_mobile nvarchar(500) DEFAULT NULL NULL, |
|
9925 |
status tinyint DEFAULT 0 NOT NULL, |
|
9926 |
website nvarchar(256) DEFAULT '' NULL, |
|
9927 |
package_id bigint NOT NULL, |
|
9928 |
expire_time datetime2 NOT NULL, |
|
9929 |
account_count int NOT NULL, |
|
9930 |
creator nvarchar(64) DEFAULT '' NOT NULL, |
|
9931 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
9932 |
updater nvarchar(64) DEFAULT '' NULL, |
|
9933 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
9934 |
deleted bit DEFAULT 0 NOT NULL |
|
9935 |
) |
|
9936 |
GO |
|
9937 |
|
|
9938 |
EXEC sp_addextendedproperty |
|
9939 |
'MS_Description', N'租户编号', |
|
9940 |
'SCHEMA', N'dbo', |
|
9941 |
'TABLE', N'system_tenant', |
|
9942 |
'COLUMN', N'id' |
|
9943 |
GO |
|
9944 |
|
|
9945 |
EXEC sp_addextendedproperty |
|
9946 |
'MS_Description', N'租户名', |
|
9947 |
'SCHEMA', N'dbo', |
|
9948 |
'TABLE', N'system_tenant', |
|
9949 |
'COLUMN', N'name' |
|
9950 |
GO |
|
9951 |
|
|
9952 |
EXEC sp_addextendedproperty |
|
9953 |
'MS_Description', N'联系人的用户编号', |
|
9954 |
'SCHEMA', N'dbo', |
|
9955 |
'TABLE', N'system_tenant', |
|
9956 |
'COLUMN', N'contact_user_id' |
|
9957 |
GO |
|
9958 |
|
|
9959 |
EXEC sp_addextendedproperty |
|
9960 |
'MS_Description', N'联系人', |
|
9961 |
'SCHEMA', N'dbo', |
|
9962 |
'TABLE', N'system_tenant', |
|
9963 |
'COLUMN', N'contact_name' |
|
9964 |
GO |
|
9965 |
|
|
9966 |
EXEC sp_addextendedproperty |
|
9967 |
'MS_Description', N'联系手机', |
|
9968 |
'SCHEMA', N'dbo', |
|
9969 |
'TABLE', N'system_tenant', |
|
9970 |
'COLUMN', N'contact_mobile' |
|
9971 |
GO |
|
9972 |
|
|
9973 |
EXEC sp_addextendedproperty |
|
9974 |
'MS_Description', N'租户状态(0正常 1停用)', |
|
9975 |
'SCHEMA', N'dbo', |
|
9976 |
'TABLE', N'system_tenant', |
|
9977 |
'COLUMN', N'status' |
|
9978 |
GO |
|
9979 |
|
|
9980 |
EXEC sp_addextendedproperty |
|
9981 |
'MS_Description', N'绑定域名', |
|
9982 |
'SCHEMA', N'dbo', |
|
9983 |
'TABLE', N'system_tenant', |
|
9984 |
'COLUMN', N'website' |
|
9985 |
GO |
|
9986 |
|
|
9987 |
EXEC sp_addextendedproperty |
|
9988 |
'MS_Description', N'租户套餐编号', |
|
9989 |
'SCHEMA', N'dbo', |
|
9990 |
'TABLE', N'system_tenant', |
|
9991 |
'COLUMN', N'package_id' |
|
9992 |
GO |
|
9993 |
|
|
9994 |
EXEC sp_addextendedproperty |
|
9995 |
'MS_Description', N'过期时间', |
|
9996 |
'SCHEMA', N'dbo', |
|
9997 |
'TABLE', N'system_tenant', |
|
9998 |
'COLUMN', N'expire_time' |
|
9999 |
GO |
|
10000 |
|
|
10001 |
EXEC sp_addextendedproperty |
|
10002 |
'MS_Description', N'账号数量', |
|
10003 |
'SCHEMA', N'dbo', |
|
10004 |
'TABLE', N'system_tenant', |
|
10005 |
'COLUMN', N'account_count' |
|
10006 |
GO |
|
10007 |
|
|
10008 |
EXEC sp_addextendedproperty |
|
10009 |
'MS_Description', N'创建者', |
|
10010 |
'SCHEMA', N'dbo', |
|
10011 |
'TABLE', N'system_tenant', |
|
10012 |
'COLUMN', N'creator' |
|
10013 |
GO |
|
10014 |
|
|
10015 |
EXEC sp_addextendedproperty |
|
10016 |
'MS_Description', N'创建时间', |
|
10017 |
'SCHEMA', N'dbo', |
|
10018 |
'TABLE', N'system_tenant', |
|
10019 |
'COLUMN', N'create_time' |
|
10020 |
GO |
|
10021 |
|
|
10022 |
EXEC sp_addextendedproperty |
|
10023 |
'MS_Description', N'更新者', |
|
10024 |
'SCHEMA', N'dbo', |
|
10025 |
'TABLE', N'system_tenant', |
|
10026 |
'COLUMN', N'updater' |
|
10027 |
GO |
|
10028 |
|
|
10029 |
EXEC sp_addextendedproperty |
|
10030 |
'MS_Description', N'更新时间', |
|
10031 |
'SCHEMA', N'dbo', |
|
10032 |
'TABLE', N'system_tenant', |
|
10033 |
'COLUMN', N'update_time' |
|
10034 |
GO |
|
10035 |
|
|
10036 |
EXEC sp_addextendedproperty |
|
10037 |
'MS_Description', N'是否删除', |
|
10038 |
'SCHEMA', N'dbo', |
|
10039 |
'TABLE', N'system_tenant', |
|
10040 |
'COLUMN', N'deleted' |
|
10041 |
GO |
|
10042 |
|
|
10043 |
EXEC sp_addextendedproperty |
|
10044 |
'MS_Description', N'租户表', |
|
10045 |
'SCHEMA', N'dbo', |
|
10046 |
'TABLE', N'system_tenant' |
|
10047 |
GO |
|
10048 |
|
|
10049 |
-- ---------------------------- |
|
10050 |
-- Records of system_tenant |
|
10051 |
-- ---------------------------- |
|
10052 |
-- @formatter:off |
|
10053 |
BEGIN TRANSACTION |
|
10054 |
GO |
|
10055 |
SET IDENTITY_INSERT system_tenant ON |
|
10056 |
GO |
|
10057 |
INSERT INTO system_tenant (id, name, contact_user_id, contact_name, contact_mobile, status, website, package_id, expire_time, account_count, creator, create_time, updater, update_time, deleted) VALUES (1, N'iailab', NULL, N'iailab', N'17321315478', 0, N'www.baidu.com', 0, N'2099-02-19 17:14:16', 9999, N'1', N'2021-01-05 17:03:47', N'1', N'2023-11-06 11:41:41', N'0') |
|
10058 |
GO |
|
10059 |
INSERT INTO system_tenant (id, name, contact_user_id, contact_name, contact_mobile, status, website, package_id, expire_time, account_count, creator, create_time, updater, update_time, deleted) VALUES (121, N'小租户', 110, N'小王2', N'15601691300', 0, N'zsxq.iocoder.cn', 111, N'2024-03-11 00:00:00', 20, N'1', N'2022-02-22 00:56:14', N'1', N'2023-11-06 11:41:47', N'0') |
|
10060 |
GO |
|
10061 |
INSERT INTO system_tenant (id, name, contact_user_id, contact_name, contact_mobile, status, website, package_id, expire_time, account_count, creator, create_time, updater, update_time, deleted) VALUES (122, N'测试租户', 113, N'平台', N'15601691300', 0, N'test.iocoder.cn', 111, N'2022-04-30 00:00:00', 50, N'1', N'2022-03-07 21:37:58', N'1', N'2023-11-06 11:41:53', N'0') |
|
10062 |
GO |
|
10063 |
SET IDENTITY_INSERT system_tenant OFF |
|
10064 |
GO |
|
10065 |
COMMIT |
|
10066 |
GO |
|
10067 |
-- @formatter:on |
|
10068 |
|
|
10069 |
-- ---------------------------- |
|
10070 |
-- Table structure for system_tenant_package |
|
10071 |
-- ---------------------------- |
|
10072 |
DROP TABLE IF EXISTS system_tenant_package; |
|
10073 |
CREATE TABLE system_tenant_package |
|
10074 |
( |
|
10075 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
10076 |
name nvarchar(30) NOT NULL, |
|
10077 |
status tinyint DEFAULT 0 NOT NULL, |
|
10078 |
remark nvarchar(256) DEFAULT '' NULL, |
|
10079 |
menu_ids nvarchar(4000) NOT NULL, |
|
10080 |
creator nvarchar(64) DEFAULT '' NOT NULL, |
|
10081 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
10082 |
updater nvarchar(64) DEFAULT '' NULL, |
|
10083 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
10084 |
deleted bit DEFAULT 0 NOT NULL |
|
10085 |
) |
|
10086 |
GO |
|
10087 |
|
|
10088 |
EXEC sp_addextendedproperty |
|
10089 |
'MS_Description', N'套餐编号', |
|
10090 |
'SCHEMA', N'dbo', |
|
10091 |
'TABLE', N'system_tenant_package', |
|
10092 |
'COLUMN', N'id' |
|
10093 |
GO |
|
10094 |
|
|
10095 |
EXEC sp_addextendedproperty |
|
10096 |
'MS_Description', N'套餐名', |
|
10097 |
'SCHEMA', N'dbo', |
|
10098 |
'TABLE', N'system_tenant_package', |
|
10099 |
'COLUMN', N'name' |
|
10100 |
GO |
|
10101 |
|
|
10102 |
EXEC sp_addextendedproperty |
|
10103 |
'MS_Description', N'租户状态(0正常 1停用)', |
|
10104 |
'SCHEMA', N'dbo', |
|
10105 |
'TABLE', N'system_tenant_package', |
|
10106 |
'COLUMN', N'status' |
|
10107 |
GO |
|
10108 |
|
|
10109 |
EXEC sp_addextendedproperty |
|
10110 |
'MS_Description', N'备注', |
|
10111 |
'SCHEMA', N'dbo', |
|
10112 |
'TABLE', N'system_tenant_package', |
|
10113 |
'COLUMN', N'remark' |
|
10114 |
GO |
|
10115 |
|
|
10116 |
EXEC sp_addextendedproperty |
|
10117 |
'MS_Description', N'关联的菜单编号', |
|
10118 |
'SCHEMA', N'dbo', |
|
10119 |
'TABLE', N'system_tenant_package', |
|
10120 |
'COLUMN', N'menu_ids' |
|
10121 |
GO |
|
10122 |
|
|
10123 |
EXEC sp_addextendedproperty |
|
10124 |
'MS_Description', N'创建者', |
|
10125 |
'SCHEMA', N'dbo', |
|
10126 |
'TABLE', N'system_tenant_package', |
|
10127 |
'COLUMN', N'creator' |
|
10128 |
GO |
|
10129 |
|
|
10130 |
EXEC sp_addextendedproperty |
|
10131 |
'MS_Description', N'创建时间', |
|
10132 |
'SCHEMA', N'dbo', |
|
10133 |
'TABLE', N'system_tenant_package', |
|
10134 |
'COLUMN', N'create_time' |
|
10135 |
GO |
|
10136 |
|
|
10137 |
EXEC sp_addextendedproperty |
|
10138 |
'MS_Description', N'更新者', |
|
10139 |
'SCHEMA', N'dbo', |
|
10140 |
'TABLE', N'system_tenant_package', |
|
10141 |
'COLUMN', N'updater' |
|
10142 |
GO |
|
10143 |
|
|
10144 |
EXEC sp_addextendedproperty |
|
10145 |
'MS_Description', N'更新时间', |
|
10146 |
'SCHEMA', N'dbo', |
|
10147 |
'TABLE', N'system_tenant_package', |
|
10148 |
'COLUMN', N'update_time' |
|
10149 |
GO |
|
10150 |
|
|
10151 |
EXEC sp_addextendedproperty |
|
10152 |
'MS_Description', N'是否删除', |
|
10153 |
'SCHEMA', N'dbo', |
|
10154 |
'TABLE', N'system_tenant_package', |
|
10155 |
'COLUMN', N'deleted' |
|
10156 |
GO |
|
10157 |
|
|
10158 |
EXEC sp_addextendedproperty |
|
10159 |
'MS_Description', N'租户套餐表', |
|
10160 |
'SCHEMA', N'dbo', |
|
10161 |
'TABLE', N'system_tenant_package' |
|
10162 |
GO |
|
10163 |
|
|
10164 |
-- ---------------------------- |
|
10165 |
-- Records of system_tenant_package |
|
10166 |
-- ---------------------------- |
|
10167 |
-- @formatter:off |
|
10168 |
BEGIN TRANSACTION |
|
10169 |
GO |
|
10170 |
SET IDENTITY_INSERT system_tenant_package ON |
|
10171 |
GO |
|
10172 |
INSERT INTO system_tenant_package (id, name, status, remark, menu_ids, creator, create_time, updater, update_time, deleted) VALUES (111, N'普通套餐', 0, N'小功能', N'[1,2,5,1031,1032,1033,1034,1035,1036,1037,1038,1039,1050,1051,1052,1053,1054,1056,1057,1058,1059,1060,1063,1064,1065,1066,1067,1070,1075,1076,1077,1078,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1118,1119,1120,100,101,102,103,106,107,110,111,112,113,1138,114,1139,115,1140,116,1141,1142,1143,2713,2714,2715,2716,2717,2718,2720,1185,2721,1186,2722,1187,2723,1188,2724,1189,2725,1190,2726,1191,2727,2472,1192,2728,1193,2729,1194,2730,1195,2731,1196,2732,1197,2733,2478,1198,2734,2479,1199,2735,2480,1200,2481,1201,2482,1202,2483,2484,2485,2486,2487,1207,2488,1208,2489,1209,2490,1210,2491,1211,2492,1212,2493,1213,2494,2495,1215,1216,2497,1217,1218,1219,1220,1221,1222,1224,1225,1226,1227,1228,1229,1237,1238,1239,1240,1241,1242,1243,2525,1255,1256,1001,1257,1002,1258,1003,1259,1004,1260,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020]', N'1', N'2022-02-22 00:54:00', N'1', N'2024-03-30 17:53:17', N'0') |
|
10173 |
GO |
|
10174 |
SET IDENTITY_INSERT system_tenant_package OFF |
|
10175 |
GO |
|
10176 |
COMMIT |
|
10177 |
GO |
|
10178 |
-- @formatter:on |
|
10179 |
|
|
10180 |
-- ---------------------------- |
|
10181 |
-- Table structure for system_user_post |
|
10182 |
-- ---------------------------- |
|
10183 |
DROP TABLE IF EXISTS system_user_post; |
|
10184 |
CREATE TABLE system_user_post |
|
10185 |
( |
|
10186 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
10187 |
user_id bigint DEFAULT 0 NOT NULL, |
|
10188 |
post_id bigint DEFAULT 0 NOT NULL, |
|
10189 |
creator nvarchar(64) DEFAULT '' NULL, |
|
10190 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
10191 |
updater nvarchar(64) DEFAULT '' NULL, |
|
10192 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
10193 |
deleted bit DEFAULT 0 NOT NULL, |
|
10194 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
10195 |
) |
|
10196 |
GO |
|
10197 |
|
|
10198 |
EXEC sp_addextendedproperty |
|
10199 |
'MS_Description', N'id', |
|
10200 |
'SCHEMA', N'dbo', |
|
10201 |
'TABLE', N'system_user_post', |
|
10202 |
'COLUMN', N'id' |
|
10203 |
GO |
|
10204 |
|
|
10205 |
EXEC sp_addextendedproperty |
|
10206 |
'MS_Description', N'用户ID', |
|
10207 |
'SCHEMA', N'dbo', |
|
10208 |
'TABLE', N'system_user_post', |
|
10209 |
'COLUMN', N'user_id' |
|
10210 |
GO |
|
10211 |
|
|
10212 |
EXEC sp_addextendedproperty |
|
10213 |
'MS_Description', N'岗位ID', |
|
10214 |
'SCHEMA', N'dbo', |
|
10215 |
'TABLE', N'system_user_post', |
|
10216 |
'COLUMN', N'post_id' |
|
10217 |
GO |
|
10218 |
|
|
10219 |
EXEC sp_addextendedproperty |
|
10220 |
'MS_Description', N'创建者', |
|
10221 |
'SCHEMA', N'dbo', |
|
10222 |
'TABLE', N'system_user_post', |
|
10223 |
'COLUMN', N'creator' |
|
10224 |
GO |
|
10225 |
|
|
10226 |
EXEC sp_addextendedproperty |
|
10227 |
'MS_Description', N'创建时间', |
|
10228 |
'SCHEMA', N'dbo', |
|
10229 |
'TABLE', N'system_user_post', |
|
10230 |
'COLUMN', N'create_time' |
|
10231 |
GO |
|
10232 |
|
|
10233 |
EXEC sp_addextendedproperty |
|
10234 |
'MS_Description', N'更新者', |
|
10235 |
'SCHEMA', N'dbo', |
|
10236 |
'TABLE', N'system_user_post', |
|
10237 |
'COLUMN', N'updater' |
|
10238 |
GO |
|
10239 |
|
|
10240 |
EXEC sp_addextendedproperty |
|
10241 |
'MS_Description', N'更新时间', |
|
10242 |
'SCHEMA', N'dbo', |
|
10243 |
'TABLE', N'system_user_post', |
|
10244 |
'COLUMN', N'update_time' |
|
10245 |
GO |
|
10246 |
|
|
10247 |
EXEC sp_addextendedproperty |
|
10248 |
'MS_Description', N'是否删除', |
|
10249 |
'SCHEMA', N'dbo', |
|
10250 |
'TABLE', N'system_user_post', |
|
10251 |
'COLUMN', N'deleted' |
|
10252 |
GO |
|
10253 |
|
|
10254 |
EXEC sp_addextendedproperty |
|
10255 |
'MS_Description', N'租户编号', |
|
10256 |
'SCHEMA', N'dbo', |
|
10257 |
'TABLE', N'system_user_post', |
|
10258 |
'COLUMN', N'tenant_id' |
|
10259 |
GO |
|
10260 |
|
|
10261 |
EXEC sp_addextendedproperty |
|
10262 |
'MS_Description', N'用户岗位表', |
|
10263 |
'SCHEMA', N'dbo', |
|
10264 |
'TABLE', N'system_user_post' |
|
10265 |
GO |
|
10266 |
|
|
10267 |
-- ---------------------------- |
|
10268 |
-- Records of system_user_post |
|
10269 |
-- ---------------------------- |
|
10270 |
-- @formatter:off |
|
10271 |
BEGIN TRANSACTION |
|
10272 |
GO |
|
10273 |
SET IDENTITY_INSERT system_user_post ON |
|
10274 |
GO |
|
10275 |
INSERT INTO system_user_post (id, user_id, post_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (112, 1, 1, N'admin', N'2022-05-02 07:25:24', N'admin', N'2022-05-02 07:25:24', N'0', 1) |
|
10276 |
GO |
|
10277 |
INSERT INTO system_user_post (id, user_id, post_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (113, 100, 1, N'admin', N'2022-05-02 07:25:24', N'admin', N'2022-05-02 07:25:24', N'0', 1) |
|
10278 |
GO |
|
10279 |
INSERT INTO system_user_post (id, user_id, post_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (115, 104, 1, N'1', N'2022-05-16 19:36:28', N'1', N'2022-05-16 19:36:28', N'0', 1) |
|
10280 |
GO |
|
10281 |
INSERT INTO system_user_post (id, user_id, post_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (116, 117, 2, N'1', N'2022-07-09 17:40:26', N'1', N'2022-07-09 17:40:26', N'0', 1) |
|
10282 |
GO |
|
10283 |
INSERT INTO system_user_post (id, user_id, post_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (117, 118, 1, N'1', N'2022-07-09 17:44:44', N'1', N'2022-07-09 17:44:44', N'0', 1) |
|
10284 |
GO |
|
10285 |
INSERT INTO system_user_post (id, user_id, post_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (119, 114, 5, N'1', N'2024-03-24 20:45:51', N'1', N'2024-03-24 20:45:51', N'0', 1) |
|
10286 |
GO |
|
10287 |
INSERT INTO system_user_post (id, user_id, post_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (123, 115, 1, N'1', N'2024-04-04 09:37:14', N'1', N'2024-04-04 09:37:14', N'0', 1) |
|
10288 |
GO |
|
10289 |
INSERT INTO system_user_post (id, user_id, post_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (124, 115, 2, N'1', N'2024-04-04 09:37:14', N'1', N'2024-04-04 09:37:14', N'0', 1) |
|
10290 |
GO |
|
10291 |
SET IDENTITY_INSERT system_user_post OFF |
|
10292 |
GO |
|
10293 |
COMMIT |
|
10294 |
GO |
|
10295 |
-- @formatter:on |
|
10296 |
|
|
10297 |
-- ---------------------------- |
|
10298 |
-- Table structure for system_user_role |
|
10299 |
-- ---------------------------- |
|
10300 |
DROP TABLE IF EXISTS system_user_role; |
|
10301 |
CREATE TABLE system_user_role |
|
10302 |
( |
|
10303 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
10304 |
user_id bigint NOT NULL, |
|
10305 |
role_id bigint NOT NULL, |
|
10306 |
creator nvarchar(64) DEFAULT '' NULL, |
|
10307 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NULL, |
|
10308 |
updater nvarchar(64) DEFAULT '' NULL, |
|
10309 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NULL, |
|
10310 |
deleted bit DEFAULT 0 NOT NULL, |
|
10311 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
10312 |
) |
|
10313 |
GO |
|
10314 |
|
|
10315 |
EXEC sp_addextendedproperty |
|
10316 |
'MS_Description', N'自增编号', |
|
10317 |
'SCHEMA', N'dbo', |
|
10318 |
'TABLE', N'system_user_role', |
|
10319 |
'COLUMN', N'id' |
|
10320 |
GO |
|
10321 |
|
|
10322 |
EXEC sp_addextendedproperty |
|
10323 |
'MS_Description', N'用户ID', |
|
10324 |
'SCHEMA', N'dbo', |
|
10325 |
'TABLE', N'system_user_role', |
|
10326 |
'COLUMN', N'user_id' |
|
10327 |
GO |
|
10328 |
|
|
10329 |
EXEC sp_addextendedproperty |
|
10330 |
'MS_Description', N'角色ID', |
|
10331 |
'SCHEMA', N'dbo', |
|
10332 |
'TABLE', N'system_user_role', |
|
10333 |
'COLUMN', N'role_id' |
|
10334 |
GO |
|
10335 |
|
|
10336 |
EXEC sp_addextendedproperty |
|
10337 |
'MS_Description', N'创建者', |
|
10338 |
'SCHEMA', N'dbo', |
|
10339 |
'TABLE', N'system_user_role', |
|
10340 |
'COLUMN', N'creator' |
|
10341 |
GO |
|
10342 |
|
|
10343 |
EXEC sp_addextendedproperty |
|
10344 |
'MS_Description', N'创建时间', |
|
10345 |
'SCHEMA', N'dbo', |
|
10346 |
'TABLE', N'system_user_role', |
|
10347 |
'COLUMN', N'create_time' |
|
10348 |
GO |
|
10349 |
|
|
10350 |
EXEC sp_addextendedproperty |
|
10351 |
'MS_Description', N'更新者', |
|
10352 |
'SCHEMA', N'dbo', |
|
10353 |
'TABLE', N'system_user_role', |
|
10354 |
'COLUMN', N'updater' |
|
10355 |
GO |
|
10356 |
|
|
10357 |
EXEC sp_addextendedproperty |
|
10358 |
'MS_Description', N'更新时间', |
|
10359 |
'SCHEMA', N'dbo', |
|
10360 |
'TABLE', N'system_user_role', |
|
10361 |
'COLUMN', N'update_time' |
|
10362 |
GO |
|
10363 |
|
|
10364 |
EXEC sp_addextendedproperty |
|
10365 |
'MS_Description', N'是否删除', |
|
10366 |
'SCHEMA', N'dbo', |
|
10367 |
'TABLE', N'system_user_role', |
|
10368 |
'COLUMN', N'deleted' |
|
10369 |
GO |
|
10370 |
|
|
10371 |
EXEC sp_addextendedproperty |
|
10372 |
'MS_Description', N'租户编号', |
|
10373 |
'SCHEMA', N'dbo', |
|
10374 |
'TABLE', N'system_user_role', |
|
10375 |
'COLUMN', N'tenant_id' |
|
10376 |
GO |
|
10377 |
|
|
10378 |
EXEC sp_addextendedproperty |
|
10379 |
'MS_Description', N'用户和角色关联表', |
|
10380 |
'SCHEMA', N'dbo', |
|
10381 |
'TABLE', N'system_user_role' |
|
10382 |
GO |
|
10383 |
|
|
10384 |
-- ---------------------------- |
|
10385 |
-- Records of system_user_role |
|
10386 |
-- ---------------------------- |
|
10387 |
-- @formatter:off |
|
10388 |
BEGIN TRANSACTION |
|
10389 |
GO |
|
10390 |
SET IDENTITY_INSERT system_user_role ON |
|
10391 |
GO |
|
10392 |
INSERT INTO system_user_role (id, user_id, role_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1, 1, 1, N'', N'2022-01-11 13:19:45', N'', N'2022-05-12 12:35:17', N'0', 1) |
|
10393 |
GO |
|
10394 |
INSERT INTO system_user_role (id, user_id, role_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2, 2, 2, N'', N'2022-01-11 13:19:45', N'', N'2022-05-12 12:35:13', N'0', 1) |
|
10395 |
GO |
|
10396 |
INSERT INTO system_user_role (id, user_id, role_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4, 100, 101, N'', N'2022-01-11 13:19:45', N'', N'2022-05-12 12:35:13', N'0', 1) |
|
10397 |
GO |
|
10398 |
INSERT INTO system_user_role (id, user_id, role_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (5, 100, 1, N'', N'2022-01-11 13:19:45', N'', N'2022-05-12 12:35:12', N'0', 1) |
|
10399 |
GO |
|
10400 |
INSERT INTO system_user_role (id, user_id, role_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (6, 100, 2, N'', N'2022-01-11 13:19:45', N'', N'2022-05-12 12:35:11', N'0', 1) |
|
10401 |
GO |
|
10402 |
INSERT INTO system_user_role (id, user_id, role_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (10, 103, 1, N'1', N'2022-01-11 13:19:45', N'1', N'2022-01-11 13:19:45', N'0', 1) |
|
10403 |
GO |
|
10404 |
INSERT INTO system_user_role (id, user_id, role_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (14, 110, 109, N'1', N'2022-02-22 00:56:14', N'1', N'2022-02-22 00:56:14', N'0', 121) |
|
10405 |
GO |
|
10406 |
INSERT INTO system_user_role (id, user_id, role_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (15, 111, 110, N'110', N'2022-02-23 13:14:38', N'110', N'2022-02-23 13:14:38', N'0', 121) |
|
10407 |
GO |
|
10408 |
INSERT INTO system_user_role (id, user_id, role_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (16, 113, 111, N'1', N'2022-03-07 21:37:58', N'1', N'2022-03-07 21:37:58', N'0', 122) |
|
10409 |
GO |
|
10410 |
INSERT INTO system_user_role (id, user_id, role_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (18, 1, 2, N'1', N'2022-05-12 20:39:29', N'1', N'2022-05-12 20:39:29', N'0', 1) |
|
10411 |
GO |
|
10412 |
INSERT INTO system_user_role (id, user_id, role_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (20, 104, 101, N'1', N'2022-05-28 15:43:57', N'1', N'2022-05-28 15:43:57', N'0', 1) |
|
10413 |
GO |
|
10414 |
INSERT INTO system_user_role (id, user_id, role_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (22, 115, 2, N'1', N'2022-07-21 22:08:30', N'1', N'2022-07-21 22:08:30', N'0', 1) |
|
10415 |
GO |
|
10416 |
INSERT INTO system_user_role (id, user_id, role_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (35, 112, 1, N'1', N'2024-03-15 20:00:24', N'1', N'2024-03-15 20:00:24', N'0', 1) |
|
10417 |
GO |
|
10418 |
INSERT INTO system_user_role (id, user_id, role_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (36, 118, 1, N'1', N'2024-03-17 09:12:08', N'1', N'2024-03-17 09:12:08', N'0', 1) |
|
10419 |
GO |
|
10420 |
INSERT INTO system_user_role (id, user_id, role_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (38, 114, 101, N'1', N'2024-03-24 22:23:03', N'1', N'2024-03-24 22:23:03', N'0', 1) |
|
10421 |
GO |
|
10422 |
SET IDENTITY_INSERT system_user_role OFF |
|
10423 |
GO |
|
10424 |
COMMIT |
|
10425 |
GO |
|
10426 |
-- @formatter:on |
|
10427 |
|
|
10428 |
-- ---------------------------- |
|
10429 |
-- Table structure for system_users |
|
10430 |
-- ---------------------------- |
|
10431 |
DROP TABLE IF EXISTS system_users; |
|
10432 |
CREATE TABLE system_users |
|
10433 |
( |
|
10434 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
10435 |
username nvarchar(30) NOT NULL, |
|
10436 |
password nvarchar(100) DEFAULT '' NOT NULL, |
|
10437 |
nickname nvarchar(30) NOT NULL, |
|
10438 |
remark nvarchar(500) DEFAULT NULL NULL, |
|
10439 |
dept_id bigint DEFAULT NULL NULL, |
|
10440 |
post_ids nvarchar(255) DEFAULT NULL NULL, |
|
10441 |
email nvarchar(50) DEFAULT '' NULL, |
|
10442 |
mobile nvarchar(11) DEFAULT '' NULL, |
|
10443 |
sex tinyint DEFAULT 0 NULL, |
|
10444 |
avatar nvarchar(512) DEFAULT '' NULL, |
|
10445 |
status tinyint DEFAULT 0 NOT NULL, |
|
10446 |
login_ip nvarchar(50) DEFAULT '' NULL, |
|
10447 |
login_date datetime2 DEFAULT NULL NULL, |
|
10448 |
creator nvarchar(64) DEFAULT '' NULL, |
|
10449 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
10450 |
updater nvarchar(64) DEFAULT '' NULL, |
|
10451 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
10452 |
deleted bit DEFAULT 0 NOT NULL, |
|
10453 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
10454 |
) |
|
10455 |
GO |
|
10456 |
|
|
10457 |
EXEC sp_addextendedproperty |
|
10458 |
'MS_Description', N'用户ID', |
|
10459 |
'SCHEMA', N'dbo', |
|
10460 |
'TABLE', N'system_users', |
|
10461 |
'COLUMN', N'id' |
|
10462 |
GO |
|
10463 |
|
|
10464 |
EXEC sp_addextendedproperty |
|
10465 |
'MS_Description', N'用户账号', |
|
10466 |
'SCHEMA', N'dbo', |
|
10467 |
'TABLE', N'system_users', |
|
10468 |
'COLUMN', N'username' |
|
10469 |
GO |
|
10470 |
|
|
10471 |
EXEC sp_addextendedproperty |
|
10472 |
'MS_Description', N'密码', |
|
10473 |
'SCHEMA', N'dbo', |
|
10474 |
'TABLE', N'system_users', |
|
10475 |
'COLUMN', N'password' |
|
10476 |
GO |
|
10477 |
|
|
10478 |
EXEC sp_addextendedproperty |
|
10479 |
'MS_Description', N'用户昵称', |
|
10480 |
'SCHEMA', N'dbo', |
|
10481 |
'TABLE', N'system_users', |
|
10482 |
'COLUMN', N'nickname' |
|
10483 |
GO |
|
10484 |
|
|
10485 |
EXEC sp_addextendedproperty |
|
10486 |
'MS_Description', N'备注', |
|
10487 |
'SCHEMA', N'dbo', |
|
10488 |
'TABLE', N'system_users', |
|
10489 |
'COLUMN', N'remark' |
|
10490 |
GO |
|
10491 |
|
|
10492 |
EXEC sp_addextendedproperty |
|
10493 |
'MS_Description', N'部门ID', |
|
10494 |
'SCHEMA', N'dbo', |
|
10495 |
'TABLE', N'system_users', |
|
10496 |
'COLUMN', N'dept_id' |
|
10497 |
GO |
|
10498 |
|
|
10499 |
EXEC sp_addextendedproperty |
|
10500 |
'MS_Description', N'岗位编号数组', |
|
10501 |
'SCHEMA', N'dbo', |
|
10502 |
'TABLE', N'system_users', |
|
10503 |
'COLUMN', N'post_ids' |
|
10504 |
GO |
|
10505 |
|
|
10506 |
EXEC sp_addextendedproperty |
|
10507 |
'MS_Description', N'用户邮箱', |
|
10508 |
'SCHEMA', N'dbo', |
|
10509 |
'TABLE', N'system_users', |
|
10510 |
'COLUMN', N'email' |
|
10511 |
GO |
|
10512 |
|
|
10513 |
EXEC sp_addextendedproperty |
|
10514 |
'MS_Description', N'手机号码', |
|
10515 |
'SCHEMA', N'dbo', |
|
10516 |
'TABLE', N'system_users', |
|
10517 |
'COLUMN', N'mobile' |
|
10518 |
GO |
|
10519 |
|
|
10520 |
EXEC sp_addextendedproperty |
|
10521 |
'MS_Description', N'用户性别', |
|
10522 |
'SCHEMA', N'dbo', |
|
10523 |
'TABLE', N'system_users', |
|
10524 |
'COLUMN', N'sex' |
|
10525 |
GO |
|
10526 |
|
|
10527 |
EXEC sp_addextendedproperty |
|
10528 |
'MS_Description', N'头像地址', |
|
10529 |
'SCHEMA', N'dbo', |
|
10530 |
'TABLE', N'system_users', |
|
10531 |
'COLUMN', N'avatar' |
|
10532 |
GO |
|
10533 |
|
|
10534 |
EXEC sp_addextendedproperty |
|
10535 |
'MS_Description', N'帐号状态(0正常 1停用)', |
|
10536 |
'SCHEMA', N'dbo', |
|
10537 |
'TABLE', N'system_users', |
|
10538 |
'COLUMN', N'status' |
|
10539 |
GO |
|
10540 |
|
|
10541 |
EXEC sp_addextendedproperty |
|
10542 |
'MS_Description', N'最后登录IP', |
|
10543 |
'SCHEMA', N'dbo', |
|
10544 |
'TABLE', N'system_users', |
|
10545 |
'COLUMN', N'login_ip' |
|
10546 |
GO |
|
10547 |
|
|
10548 |
EXEC sp_addextendedproperty |
|
10549 |
'MS_Description', N'最后登录时间', |
|
10550 |
'SCHEMA', N'dbo', |
|
10551 |
'TABLE', N'system_users', |
|
10552 |
'COLUMN', N'login_date' |
|
10553 |
GO |
|
10554 |
|
|
10555 |
EXEC sp_addextendedproperty |
|
10556 |
'MS_Description', N'创建者', |
|
10557 |
'SCHEMA', N'dbo', |
|
10558 |
'TABLE', N'system_users', |
|
10559 |
'COLUMN', N'creator' |
|
10560 |
GO |
|
10561 |
|
|
10562 |
EXEC sp_addextendedproperty |
|
10563 |
'MS_Description', N'创建时间', |
|
10564 |
'SCHEMA', N'dbo', |
|
10565 |
'TABLE', N'system_users', |
|
10566 |
'COLUMN', N'create_time' |
|
10567 |
GO |
|
10568 |
|
|
10569 |
EXEC sp_addextendedproperty |
|
10570 |
'MS_Description', N'更新者', |
|
10571 |
'SCHEMA', N'dbo', |
|
10572 |
'TABLE', N'system_users', |
|
10573 |
'COLUMN', N'updater' |
|
10574 |
GO |
|
10575 |
|
|
10576 |
EXEC sp_addextendedproperty |
|
10577 |
'MS_Description', N'更新时间', |
|
10578 |
'SCHEMA', N'dbo', |
|
10579 |
'TABLE', N'system_users', |
|
10580 |
'COLUMN', N'update_time' |
|
10581 |
GO |
|
10582 |
|
|
10583 |
EXEC sp_addextendedproperty |
|
10584 |
'MS_Description', N'是否删除', |
|
10585 |
'SCHEMA', N'dbo', |
|
10586 |
'TABLE', N'system_users', |
|
10587 |
'COLUMN', N'deleted' |
|
10588 |
GO |
|
10589 |
|
|
10590 |
EXEC sp_addextendedproperty |
|
10591 |
'MS_Description', N'租户编号', |
|
10592 |
'SCHEMA', N'dbo', |
|
10593 |
'TABLE', N'system_users', |
|
10594 |
'COLUMN', N'tenant_id' |
|
10595 |
GO |
|
10596 |
|
|
10597 |
EXEC sp_addextendedproperty |
|
10598 |
'MS_Description', N'用户信息表', |
|
10599 |
'SCHEMA', N'dbo', |
|
10600 |
'TABLE', N'system_users' |
|
10601 |
GO |
|
10602 |
|
|
10603 |
-- ---------------------------- |
|
10604 |
-- Records of system_users |
|
10605 |
-- ---------------------------- |
|
10606 |
-- @formatter:off |
|
10607 |
BEGIN TRANSACTION |
|
10608 |
GO |
|
10609 |
SET IDENTITY_INSERT system_users ON |
|
10610 |
GO |
|
10611 |
INSERT INTO system_users (id, username, password, nickname, remark, dept_id, post_ids, email, mobile, sex, avatar, status, login_ip, login_date, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1, N'admin', N'$2a$10$mRMIYLDtRHlf6.9ipiqH1.Z.bh/R9dO9d5iHiGYPigi6r5KOoR2Wm', N'iailab', N'管理员', 103, N'[1]', N'aoteman@126.com', N'18818260277', 2, N'http://test.iailab.iocoder.cn/96c787a2ce88bf6d0ce3cd8b6cf5314e80e7703cd41bf4af8cd2e2909dbd6b6d.png', 0, N'0:0:0:0:0:0:0:1', N'2024-04-29 21:50:32', N'admin', N'2021-01-05 17:03:47', NULL, N'2024-04-29 21:50:32', N'0', 1) |
|
10612 |
GO |
|
10613 |
INSERT INTO system_users (id, username, password, nickname, remark, dept_id, post_ids, email, mobile, sex, avatar, status, login_ip, login_date, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (100, N'iailab', N'$2a$10$11U48RhyJ5pSBYWSn12AD./ld671.ycSzJHbyrtpeoMeYiw31eo8a', N'平台', N'不要吓我', 104, N'[1]', N'iailab@iocoder.cn', N'15601691300', 1, N'', 1, N'127.0.0.1', N'2022-07-09 23:03:33', N'', N'2021-01-07 09:07:17', NULL, N'2022-07-09 23:03:33', N'0', 1) |
|
10614 |
GO |
|
10615 |
INSERT INTO system_users (id, username, password, nickname, remark, dept_id, post_ids, email, mobile, sex, avatar, status, login_ip, login_date, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (103, N'yuanma', N'$2a$10$YMpimV4T6BtDhIaA8jSW.u8UTGBeGhc/qwXP4oxoMr4mOw9.qttt6', N'源码', NULL, 106, NULL, N'yuanma@iocoder.cn', N'15601701300', 0, N'', 0, N'0:0:0:0:0:0:0:1', N'2024-03-18 21:09:04', N'', N'2021-01-13 23:50:35', NULL, N'2024-03-18 21:09:04', N'0', 1) |
|
10616 |
GO |
|
10617 |
INSERT INTO system_users (id, username, password, nickname, remark, dept_id, post_ids, email, mobile, sex, avatar, status, login_ip, login_date, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (104, N'test', N'$2a$04$KhExCYl7lx6eWWZYKsibKOZ8IBJRyuNuCcEOLQ11RYhJKgHmlSwK.', N'测试号', NULL, 107, N'[1,2]', N'111@qq.com', N'15601691200', 1, N'', 0, N'0:0:0:0:0:0:0:1', N'2024-03-26 07:11:35', N'', N'2021-01-21 02:13:53', NULL, N'2024-03-26 07:11:35', N'0', 1) |
|
10618 |
GO |
|
10619 |
INSERT INTO system_users (id, username, password, nickname, remark, dept_id, post_ids, email, mobile, sex, avatar, status, login_ip, login_date, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (107, N'admin107', N'$2a$10$dYOOBKMO93v/.ReCqzyFg.o67Tqk.bbc2bhrpyBGkIw9aypCtr2pm', N'iailab', NULL, NULL, NULL, N'', N'15601691300', 0, N'', 0, N'', NULL, N'1', N'2022-02-20 22:59:33', N'1', N'2022-02-27 08:26:51', N'0', 118) |
|
10620 |
GO |
|
10621 |
INSERT INTO system_users (id, username, password, nickname, remark, dept_id, post_ids, email, mobile, sex, avatar, status, login_ip, login_date, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (108, N'admin108', N'$2a$10$y6mfvKoNYL1GXWak8nYwVOH.kCWqjactkzdoIDgiKl93WN3Ejg.Lu', N'iailab', NULL, NULL, NULL, N'', N'15601691300', 0, N'', 0, N'', NULL, N'1', N'2022-02-20 23:00:50', N'1', N'2022-02-27 08:26:53', N'0', 119) |
|
10622 |
GO |
|
10623 |
INSERT INTO system_users (id, username, password, nickname, remark, dept_id, post_ids, email, mobile, sex, avatar, status, login_ip, login_date, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (109, N'admin109', N'$2a$10$JAqvH0tEc0I7dfDVBI7zyuB4E3j.uH6daIjV53.vUS6PknFkDJkuK', N'iailab', NULL, NULL, NULL, N'', N'15601691300', 0, N'', 0, N'', NULL, N'1', N'2022-02-20 23:11:50', N'1', N'2022-02-27 08:26:56', N'0', 120) |
|
10624 |
GO |
|
10625 |
INSERT INTO system_users (id, username, password, nickname, remark, dept_id, post_ids, email, mobile, sex, avatar, status, login_ip, login_date, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (110, N'admin110', N'$2a$10$mRMIYLDtRHlf6.9ipiqH1.Z.bh/R9dO9d5iHiGYPigi6r5KOoR2Wm', N'小王', NULL, NULL, NULL, N'', N'15601691300', 0, N'', 0, N'127.0.0.1', N'2022-09-25 22:47:33', N'1', N'2022-02-22 00:56:14', NULL, N'2022-09-25 22:47:33', N'0', 121) |
|
10626 |
GO |
|
10627 |
INSERT INTO system_users (id, username, password, nickname, remark, dept_id, post_ids, email, mobile, sex, avatar, status, login_ip, login_date, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (111, N'test', N'$2a$10$mRMIYLDtRHlf6.9ipiqH1.Z.bh/R9dO9d5iHiGYPigi6r5KOoR2Wm', N'测试用户', NULL, NULL, N'[]', N'', N'', 0, N'', 0, N'0:0:0:0:0:0:0:1', N'2023-12-30 11:42:17', N'110', N'2022-02-23 13:14:33', NULL, N'2023-12-30 11:42:17', N'0', 121) |
|
10628 |
GO |
|
10629 |
INSERT INTO system_users (id, username, password, nickname, remark, dept_id, post_ids, email, mobile, sex, avatar, status, login_ip, login_date, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (112, N'newobject', N'$2a$04$dB0z8Q819fJWz0hbaLe6B.VfHCjYgWx6LFfET5lyz3JwcqlyCkQ4C', N'新对象', NULL, 100, N'[]', N'', N'15601691235', 1, N'', 0, N'0:0:0:0:0:0:0:1', N'2024-03-16 23:11:38', N'1', N'2022-02-23 19:08:03', NULL, N'2024-03-16 23:11:38', N'0', 1) |
|
10630 |
GO |
|
10631 |
INSERT INTO system_users (id, username, password, nickname, remark, dept_id, post_ids, email, mobile, sex, avatar, status, login_ip, login_date, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (113, N'aoteman', N'$2a$10$0acJOIk2D25/oC87nyclE..0lzeu9DtQ/n3geP4fkun/zIVRhHJIO', N'平台', NULL, NULL, NULL, N'', N'15601691300', 0, N'', 0, N'127.0.0.1', N'2022-03-19 18:38:51', N'1', N'2022-03-07 21:37:58', NULL, N'2022-03-19 18:38:51', N'0', 122) |
|
10632 |
GO |
|
10633 |
INSERT INTO system_users (id, username, password, nickname, remark, dept_id, post_ids, email, mobile, sex, avatar, status, login_ip, login_date, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (114, N'hrmgr', N'$2a$10$TR4eybBioGRhBmDBWkqWLO6NIh3mzYa8KBKDDB5woiGYFVlRAi.fu', N'hr 小姐姐', NULL, NULL, N'[5]', N'', N'15601691236', 1, N'', 0, N'0:0:0:0:0:0:0:1', N'2024-03-24 22:21:05', N'1', N'2022-03-19 21:50:58', NULL, N'2024-03-24 22:21:05', N'0', 1) |
|
10634 |
GO |
|
10635 |
INSERT INTO system_users (id, username, password, nickname, remark, dept_id, post_ids, email, mobile, sex, avatar, status, login_ip, login_date, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (115, N'aotemane', N'$2a$04$GcyP0Vyzb2F2Yni5PuIK9ueGxM0tkZGMtDwVRwrNbtMvorzbpNsV2', N'阿呆', N'11222', 102, N'[1,2]', N'7648@qq.com', N'15601691229', 2, N'', 0, N'', NULL, N'1', N'2022-04-30 02:55:43', N'1', N'2024-04-04 09:37:14', N'0', 1) |
|
10636 |
GO |
|
10637 |
INSERT INTO system_users (id, username, password, nickname, remark, dept_id, post_ids, email, mobile, sex, avatar, status, login_ip, login_date, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (117, N'admin123', N'$2a$10$WI8Gg/lpZQIrOEZMHqka7OdFaD4Nx.B/qY8ZGTTUKrOJwaHFqibaC', N'测试号', N'1111', 100, N'[2]', N'', N'15601691234', 1, N'', 0, N'', NULL, N'1', N'2022-07-09 17:40:26', N'1', N'2022-07-09 17:40:26', N'0', 1) |
|
10638 |
GO |
|
10639 |
INSERT INTO system_users (id, username, password, nickname, remark, dept_id, post_ids, email, mobile, sex, avatar, status, login_ip, login_date, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (118, N'goudan', N'$2a$04$OB1SuphCdiLVRpiYRKeqH.8NYS7UIp5vmIv1W7U4w6toiFeOAATVK', N'狗蛋', NULL, 103, N'[1]', N'', N'15601691239', 1, N'', 0, N'0:0:0:0:0:0:0:1', N'2024-03-17 09:10:27', N'1', N'2022-07-09 17:44:43', N'1', N'2024-04-04 09:48:05', N'0', 1) |
|
10640 |
GO |
|
10641 |
INSERT INTO system_users (id, username, password, nickname, remark, dept_id, post_ids, email, mobile, sex, avatar, status, login_ip, login_date, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (131, N'hh', N'$2a$04$jyH9h6.gaw8mpOjPfHIpx.8as2Rzfcmdlj5rlJFwgCw4rsv/MTb2K', N'呵呵', NULL, 100, N'[]', N'777@qq.com', N'15601882312', 1, N'', 0, N'', NULL, N'1', N'2024-04-27 08:45:56', N'1', N'2024-04-27 08:45:56', N'0', 1) |
|
10642 |
GO |
|
10643 |
SET IDENTITY_INSERT system_users OFF |
|
10644 |
GO |
|
10645 |
COMMIT |
|
10646 |
GO |
|
10647 |
-- @formatter:on |
|
10648 |
|
|
10649 |
-- ---------------------------- |
|
10650 |
-- Table structure for iailab_demo01_contact |
|
10651 |
-- ---------------------------- |
|
10652 |
DROP TABLE IF EXISTS iailab_demo01_contact; |
|
10653 |
CREATE TABLE iailab_demo01_contact |
|
10654 |
( |
|
10655 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
10656 |
name nvarchar(100) DEFAULT '' NOT NULL, |
|
10657 |
sex tinyint NOT NULL, |
|
10658 |
birthday datetime2 NOT NULL, |
|
10659 |
description nvarchar(255) NOT NULL, |
|
10660 |
avatar nvarchar(512) DEFAULT NULL NULL, |
|
10661 |
creator nvarchar(64) DEFAULT '' NULL, |
|
10662 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
10663 |
updater nvarchar(64) DEFAULT '' NULL, |
|
10664 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
10665 |
deleted bit DEFAULT 0 NOT NULL, |
|
10666 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
10667 |
) |
|
10668 |
GO |
|
10669 |
|
|
10670 |
EXEC sp_addextendedproperty |
|
10671 |
'MS_Description', N'编号', |
|
10672 |
'SCHEMA', N'dbo', |
|
10673 |
'TABLE', N'iailab_demo01_contact', |
|
10674 |
'COLUMN', N'id' |
|
10675 |
GO |
|
10676 |
|
|
10677 |
EXEC sp_addextendedproperty |
|
10678 |
'MS_Description', N'名字', |
|
10679 |
'SCHEMA', N'dbo', |
|
10680 |
'TABLE', N'iailab_demo01_contact', |
|
10681 |
'COLUMN', N'name' |
|
10682 |
GO |
|
10683 |
|
|
10684 |
EXEC sp_addextendedproperty |
|
10685 |
'MS_Description', N'性别', |
|
10686 |
'SCHEMA', N'dbo', |
|
10687 |
'TABLE', N'iailab_demo01_contact', |
|
10688 |
'COLUMN', N'sex' |
|
10689 |
GO |
|
10690 |
|
|
10691 |
EXEC sp_addextendedproperty |
|
10692 |
'MS_Description', N'出生年', |
|
10693 |
'SCHEMA', N'dbo', |
|
10694 |
'TABLE', N'iailab_demo01_contact', |
|
10695 |
'COLUMN', N'birthday' |
|
10696 |
GO |
|
10697 |
|
|
10698 |
EXEC sp_addextendedproperty |
|
10699 |
'MS_Description', N'简介', |
|
10700 |
'SCHEMA', N'dbo', |
|
10701 |
'TABLE', N'iailab_demo01_contact', |
|
10702 |
'COLUMN', N'description' |
|
10703 |
GO |
|
10704 |
|
|
10705 |
EXEC sp_addextendedproperty |
|
10706 |
'MS_Description', N'头像', |
|
10707 |
'SCHEMA', N'dbo', |
|
10708 |
'TABLE', N'iailab_demo01_contact', |
|
10709 |
'COLUMN', N'avatar' |
|
10710 |
GO |
|
10711 |
|
|
10712 |
EXEC sp_addextendedproperty |
|
10713 |
'MS_Description', N'创建者', |
|
10714 |
'SCHEMA', N'dbo', |
|
10715 |
'TABLE', N'iailab_demo01_contact', |
|
10716 |
'COLUMN', N'creator' |
|
10717 |
GO |
|
10718 |
|
|
10719 |
EXEC sp_addextendedproperty |
|
10720 |
'MS_Description', N'创建时间', |
|
10721 |
'SCHEMA', N'dbo', |
|
10722 |
'TABLE', N'iailab_demo01_contact', |
|
10723 |
'COLUMN', N'create_time' |
|
10724 |
GO |
|
10725 |
|
|
10726 |
EXEC sp_addextendedproperty |
|
10727 |
'MS_Description', N'更新者', |
|
10728 |
'SCHEMA', N'dbo', |
|
10729 |
'TABLE', N'iailab_demo01_contact', |
|
10730 |
'COLUMN', N'updater' |
|
10731 |
GO |
|
10732 |
|
|
10733 |
EXEC sp_addextendedproperty |
|
10734 |
'MS_Description', N'更新时间', |
|
10735 |
'SCHEMA', N'dbo', |
|
10736 |
'TABLE', N'iailab_demo01_contact', |
|
10737 |
'COLUMN', N'update_time' |
|
10738 |
GO |
|
10739 |
|
|
10740 |
EXEC sp_addextendedproperty |
|
10741 |
'MS_Description', N'是否删除', |
|
10742 |
'SCHEMA', N'dbo', |
|
10743 |
'TABLE', N'iailab_demo01_contact', |
|
10744 |
'COLUMN', N'deleted' |
|
10745 |
GO |
|
10746 |
|
|
10747 |
EXEC sp_addextendedproperty |
|
10748 |
'MS_Description', N'租户编号', |
|
10749 |
'SCHEMA', N'dbo', |
|
10750 |
'TABLE', N'iailab_demo01_contact', |
|
10751 |
'COLUMN', N'tenant_id' |
|
10752 |
GO |
|
10753 |
|
|
10754 |
EXEC sp_addextendedproperty |
|
10755 |
'MS_Description', N'示例联系人表', |
|
10756 |
'SCHEMA', N'dbo', |
|
10757 |
'TABLE', N'iailab_demo01_contact' |
|
10758 |
GO |
|
10759 |
|
|
10760 |
-- ---------------------------- |
|
10761 |
-- Records of iailab_demo01_contact |
|
10762 |
-- ---------------------------- |
|
10763 |
-- @formatter:off |
|
10764 |
BEGIN TRANSACTION |
|
10765 |
GO |
|
10766 |
SET IDENTITY_INSERT iailab_demo01_contact ON |
|
10767 |
GO |
|
10768 |
INSERT INTO iailab_demo01_contact (id, name, sex, birthday, description, avatar, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1, N'土豆', 2, N'2023-11-07 00:00:00', N'<p>天蚕土豆!呀</p>', N'http://127.0.0.1:48080/admin-api/infra/file/4/get/46f8fa1a37db3f3960d8910ff2fe3962ab3b2db87cf2f8ccb4dc8145b8bdf237.jpeg', N'1', N'2023-11-15 23:34:30', N'1', N'2023-11-15 23:47:39', N'0', 1) |
|
10769 |
GO |
|
10770 |
SET IDENTITY_INSERT iailab_demo01_contact OFF |
|
10771 |
GO |
|
10772 |
COMMIT |
|
10773 |
GO |
|
10774 |
-- @formatter:on |
|
10775 |
|
|
10776 |
-- ---------------------------- |
|
10777 |
-- Table structure for iailab_demo02_category |
|
10778 |
-- ---------------------------- |
|
10779 |
DROP TABLE IF EXISTS iailab_demo02_category; |
|
10780 |
CREATE TABLE iailab_demo02_category |
|
10781 |
( |
|
10782 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
10783 |
name nvarchar(100) DEFAULT '' NOT NULL, |
|
10784 |
parent_id bigint NOT NULL, |
|
10785 |
creator nvarchar(64) DEFAULT '' NULL, |
|
10786 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
10787 |
updater nvarchar(64) DEFAULT '' NULL, |
|
10788 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
10789 |
deleted bit DEFAULT 0 NOT NULL, |
|
10790 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
10791 |
) |
|
10792 |
GO |
|
10793 |
|
|
10794 |
EXEC sp_addextendedproperty |
|
10795 |
'MS_Description', N'编号', |
|
10796 |
'SCHEMA', N'dbo', |
|
10797 |
'TABLE', N'iailab_demo02_category', |
|
10798 |
'COLUMN', N'id' |
|
10799 |
GO |
|
10800 |
|
|
10801 |
EXEC sp_addextendedproperty |
|
10802 |
'MS_Description', N'名字', |
|
10803 |
'SCHEMA', N'dbo', |
|
10804 |
'TABLE', N'iailab_demo02_category', |
|
10805 |
'COLUMN', N'name' |
|
10806 |
GO |
|
10807 |
|
|
10808 |
EXEC sp_addextendedproperty |
|
10809 |
'MS_Description', N'父级编号', |
|
10810 |
'SCHEMA', N'dbo', |
|
10811 |
'TABLE', N'iailab_demo02_category', |
|
10812 |
'COLUMN', N'parent_id' |
|
10813 |
GO |
|
10814 |
|
|
10815 |
EXEC sp_addextendedproperty |
|
10816 |
'MS_Description', N'创建者', |
|
10817 |
'SCHEMA', N'dbo', |
|
10818 |
'TABLE', N'iailab_demo02_category', |
|
10819 |
'COLUMN', N'creator' |
|
10820 |
GO |
|
10821 |
|
|
10822 |
EXEC sp_addextendedproperty |
|
10823 |
'MS_Description', N'创建时间', |
|
10824 |
'SCHEMA', N'dbo', |
|
10825 |
'TABLE', N'iailab_demo02_category', |
|
10826 |
'COLUMN', N'create_time' |
|
10827 |
GO |
|
10828 |
|
|
10829 |
EXEC sp_addextendedproperty |
|
10830 |
'MS_Description', N'更新者', |
|
10831 |
'SCHEMA', N'dbo', |
|
10832 |
'TABLE', N'iailab_demo02_category', |
|
10833 |
'COLUMN', N'updater' |
|
10834 |
GO |
|
10835 |
|
|
10836 |
EXEC sp_addextendedproperty |
|
10837 |
'MS_Description', N'更新时间', |
|
10838 |
'SCHEMA', N'dbo', |
|
10839 |
'TABLE', N'iailab_demo02_category', |
|
10840 |
'COLUMN', N'update_time' |
|
10841 |
GO |
|
10842 |
|
|
10843 |
EXEC sp_addextendedproperty |
|
10844 |
'MS_Description', N'是否删除', |
|
10845 |
'SCHEMA', N'dbo', |
|
10846 |
'TABLE', N'iailab_demo02_category', |
|
10847 |
'COLUMN', N'deleted' |
|
10848 |
GO |
|
10849 |
|
|
10850 |
EXEC sp_addextendedproperty |
|
10851 |
'MS_Description', N'租户编号', |
|
10852 |
'SCHEMA', N'dbo', |
|
10853 |
'TABLE', N'iailab_demo02_category', |
|
10854 |
'COLUMN', N'tenant_id' |
|
10855 |
GO |
|
10856 |
|
|
10857 |
EXEC sp_addextendedproperty |
|
10858 |
'MS_Description', N'示例分类表', |
|
10859 |
'SCHEMA', N'dbo', |
|
10860 |
'TABLE', N'iailab_demo02_category' |
|
10861 |
GO |
|
10862 |
|
|
10863 |
-- ---------------------------- |
|
10864 |
-- Records of iailab_demo02_category |
|
10865 |
-- ---------------------------- |
|
10866 |
-- @formatter:off |
|
10867 |
BEGIN TRANSACTION |
|
10868 |
GO |
|
10869 |
SET IDENTITY_INSERT iailab_demo02_category ON |
|
10870 |
GO |
|
10871 |
INSERT INTO iailab_demo02_category (id, name, parent_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (1, N'土豆', 0, N'1', N'2023-11-15 23:34:30', N'1', N'2023-11-16 20:24:23', N'0', 1) |
|
10872 |
GO |
|
10873 |
INSERT INTO iailab_demo02_category (id, name, parent_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2, N'番茄', 0, N'1', N'2023-11-16 20:24:00', N'1', N'2023-11-16 20:24:15', N'0', 1) |
|
10874 |
GO |
|
10875 |
INSERT INTO iailab_demo02_category (id, name, parent_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3, N'怪怪', 0, N'1', N'2023-11-16 20:24:32', N'1', N'2023-11-16 20:24:32', N'0', 1) |
|
10876 |
GO |
|
10877 |
INSERT INTO iailab_demo02_category (id, name, parent_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (4, N'小番茄', 2, N'1', N'2023-11-16 20:24:39', N'1', N'2023-11-16 20:24:39', N'0', 1) |
|
10878 |
GO |
|
10879 |
INSERT INTO iailab_demo02_category (id, name, parent_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (5, N'大番茄', 2, N'1', N'2023-11-16 20:24:46', N'1', N'2023-11-16 20:24:46', N'0', 1) |
|
10880 |
GO |
|
10881 |
INSERT INTO iailab_demo02_category (id, name, parent_id, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (6, N'11', 3, N'1', N'2023-11-24 19:29:34', N'1', N'2023-11-24 19:29:34', N'0', 1) |
|
10882 |
GO |
|
10883 |
SET IDENTITY_INSERT iailab_demo02_category OFF |
|
10884 |
GO |
|
10885 |
COMMIT |
|
10886 |
GO |
|
10887 |
-- @formatter:on |
|
10888 |
|
|
10889 |
-- ---------------------------- |
|
10890 |
-- Table structure for iailab_demo03_course |
|
10891 |
-- ---------------------------- |
|
10892 |
DROP TABLE IF EXISTS iailab_demo03_course; |
|
10893 |
CREATE TABLE iailab_demo03_course |
|
10894 |
( |
|
10895 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
10896 |
student_id bigint NOT NULL, |
|
10897 |
name nvarchar(100) DEFAULT '' NOT NULL, |
|
10898 |
score tinyint NOT NULL, |
|
10899 |
creator nvarchar(64) DEFAULT '' NULL, |
|
10900 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
10901 |
updater nvarchar(64) DEFAULT '' NULL, |
|
10902 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
10903 |
deleted bit DEFAULT 0 NOT NULL, |
|
10904 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
10905 |
) |
|
10906 |
GO |
|
10907 |
|
|
10908 |
EXEC sp_addextendedproperty |
|
10909 |
'MS_Description', N'编号', |
|
10910 |
'SCHEMA', N'dbo', |
|
10911 |
'TABLE', N'iailab_demo03_course', |
|
10912 |
'COLUMN', N'id' |
|
10913 |
GO |
|
10914 |
|
|
10915 |
EXEC sp_addextendedproperty |
|
10916 |
'MS_Description', N'学生编号', |
|
10917 |
'SCHEMA', N'dbo', |
|
10918 |
'TABLE', N'iailab_demo03_course', |
|
10919 |
'COLUMN', N'student_id' |
|
10920 |
GO |
|
10921 |
|
|
10922 |
EXEC sp_addextendedproperty |
|
10923 |
'MS_Description', N'名字', |
|
10924 |
'SCHEMA', N'dbo', |
|
10925 |
'TABLE', N'iailab_demo03_course', |
|
10926 |
'COLUMN', N'name' |
|
10927 |
GO |
|
10928 |
|
|
10929 |
EXEC sp_addextendedproperty |
|
10930 |
'MS_Description', N'分数', |
|
10931 |
'SCHEMA', N'dbo', |
|
10932 |
'TABLE', N'iailab_demo03_course', |
|
10933 |
'COLUMN', N'score' |
|
10934 |
GO |
|
10935 |
|
|
10936 |
EXEC sp_addextendedproperty |
|
10937 |
'MS_Description', N'创建者', |
|
10938 |
'SCHEMA', N'dbo', |
|
10939 |
'TABLE', N'iailab_demo03_course', |
|
10940 |
'COLUMN', N'creator' |
|
10941 |
GO |
|
10942 |
|
|
10943 |
EXEC sp_addextendedproperty |
|
10944 |
'MS_Description', N'创建时间', |
|
10945 |
'SCHEMA', N'dbo', |
|
10946 |
'TABLE', N'iailab_demo03_course', |
|
10947 |
'COLUMN', N'create_time' |
|
10948 |
GO |
|
10949 |
|
|
10950 |
EXEC sp_addextendedproperty |
|
10951 |
'MS_Description', N'更新者', |
|
10952 |
'SCHEMA', N'dbo', |
|
10953 |
'TABLE', N'iailab_demo03_course', |
|
10954 |
'COLUMN', N'updater' |
|
10955 |
GO |
|
10956 |
|
|
10957 |
EXEC sp_addextendedproperty |
|
10958 |
'MS_Description', N'更新时间', |
|
10959 |
'SCHEMA', N'dbo', |
|
10960 |
'TABLE', N'iailab_demo03_course', |
|
10961 |
'COLUMN', N'update_time' |
|
10962 |
GO |
|
10963 |
|
|
10964 |
EXEC sp_addextendedproperty |
|
10965 |
'MS_Description', N'是否删除', |
|
10966 |
'SCHEMA', N'dbo', |
|
10967 |
'TABLE', N'iailab_demo03_course', |
|
10968 |
'COLUMN', N'deleted' |
|
10969 |
GO |
|
10970 |
|
|
10971 |
EXEC sp_addextendedproperty |
|
10972 |
'MS_Description', N'租户编号', |
|
10973 |
'SCHEMA', N'dbo', |
|
10974 |
'TABLE', N'iailab_demo03_course', |
|
10975 |
'COLUMN', N'tenant_id' |
|
10976 |
GO |
|
10977 |
|
|
10978 |
EXEC sp_addextendedproperty |
|
10979 |
'MS_Description', N'学生课程表', |
|
10980 |
'SCHEMA', N'dbo', |
|
10981 |
'TABLE', N'iailab_demo03_course' |
|
10982 |
GO |
|
10983 |
|
|
10984 |
-- ---------------------------- |
|
10985 |
-- Records of iailab_demo03_course |
|
10986 |
-- ---------------------------- |
|
10987 |
-- @formatter:off |
|
10988 |
BEGIN TRANSACTION |
|
10989 |
GO |
|
10990 |
SET IDENTITY_INSERT iailab_demo03_course ON |
|
10991 |
GO |
|
10992 |
INSERT INTO iailab_demo03_course (id, student_id, name, score, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2, 2, N'语文', 66, N'1', N'2023-11-16 23:21:49', N'1', N'2023-11-16 23:21:49', N'0', 1) |
|
10993 |
GO |
|
10994 |
INSERT INTO iailab_demo03_course (id, student_id, name, score, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (3, 2, N'数学', 22, N'1', N'2023-11-16 23:21:49', N'1', N'2023-11-16 23:21:49', N'0', 1) |
|
10995 |
GO |
|
10996 |
INSERT INTO iailab_demo03_course (id, student_id, name, score, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (6, 5, N'体育', 23, N'1', N'2023-11-16 23:22:46', N'1', N'2023-11-16 15:44:40', N'1', 1) |
|
10997 |
GO |
|
10998 |
INSERT INTO iailab_demo03_course (id, student_id, name, score, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (7, 5, N'计算机', 11, N'1', N'2023-11-16 23:22:46', N'1', N'2023-11-16 15:44:40', N'1', 1) |
|
10999 |
GO |
|
11000 |
INSERT INTO iailab_demo03_course (id, student_id, name, score, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (8, 5, N'体育', 23, N'1', N'2023-11-16 23:22:46', N'1', N'2023-11-16 15:47:09', N'1', 1) |
|
11001 |
GO |
|
11002 |
INSERT INTO iailab_demo03_course (id, student_id, name, score, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (9, 5, N'计算机', 11, N'1', N'2023-11-16 23:22:46', N'1', N'2023-11-16 15:47:09', N'1', 1) |
|
11003 |
GO |
|
11004 |
INSERT INTO iailab_demo03_course (id, student_id, name, score, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (10, 5, N'体育', 23, N'1', N'2023-11-16 23:22:46', N'1', N'2023-11-16 23:47:10', N'0', 1) |
|
11005 |
GO |
|
11006 |
INSERT INTO iailab_demo03_course (id, student_id, name, score, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (11, 5, N'计算机', 11, N'1', N'2023-11-16 23:22:46', N'1', N'2023-11-16 23:47:10', N'0', 1) |
|
11007 |
GO |
|
11008 |
INSERT INTO iailab_demo03_course (id, student_id, name, score, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (12, 2, N'电脑', 33, N'1', N'2023-11-17 00:20:42', N'1', N'2023-11-16 16:20:45', N'1', 1) |
|
11009 |
GO |
|
11010 |
INSERT INTO iailab_demo03_course (id, student_id, name, score, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (13, 9, N'滑雪', 12, N'1', N'2023-11-17 13:13:20', N'1', N'2023-11-17 13:13:20', N'0', 1) |
|
11011 |
GO |
|
11012 |
SET IDENTITY_INSERT iailab_demo03_course OFF |
|
11013 |
GO |
|
11014 |
COMMIT |
|
11015 |
GO |
|
11016 |
-- @formatter:on |
|
11017 |
|
|
11018 |
-- ---------------------------- |
|
11019 |
-- Table structure for iailab_demo03_grade |
|
11020 |
-- ---------------------------- |
|
11021 |
DROP TABLE IF EXISTS iailab_demo03_grade; |
|
11022 |
CREATE TABLE iailab_demo03_grade |
|
11023 |
( |
|
11024 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
11025 |
student_id bigint NOT NULL, |
|
11026 |
name nvarchar(100) DEFAULT '' NOT NULL, |
|
11027 |
teacher nvarchar(255) NOT NULL, |
|
11028 |
creator nvarchar(64) DEFAULT '' NULL, |
|
11029 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
11030 |
updater nvarchar(64) DEFAULT '' NULL, |
|
11031 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
11032 |
deleted bit DEFAULT 0 NOT NULL, |
|
11033 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
11034 |
) |
|
11035 |
GO |
|
11036 |
|
|
11037 |
EXEC sp_addextendedproperty |
|
11038 |
'MS_Description', N'编号', |
|
11039 |
'SCHEMA', N'dbo', |
|
11040 |
'TABLE', N'iailab_demo03_grade', |
|
11041 |
'COLUMN', N'id' |
|
11042 |
GO |
|
11043 |
|
|
11044 |
EXEC sp_addextendedproperty |
|
11045 |
'MS_Description', N'学生编号', |
|
11046 |
'SCHEMA', N'dbo', |
|
11047 |
'TABLE', N'iailab_demo03_grade', |
|
11048 |
'COLUMN', N'student_id' |
|
11049 |
GO |
|
11050 |
|
|
11051 |
EXEC sp_addextendedproperty |
|
11052 |
'MS_Description', N'名字', |
|
11053 |
'SCHEMA', N'dbo', |
|
11054 |
'TABLE', N'iailab_demo03_grade', |
|
11055 |
'COLUMN', N'name' |
|
11056 |
GO |
|
11057 |
|
|
11058 |
EXEC sp_addextendedproperty |
|
11059 |
'MS_Description', N'班主任', |
|
11060 |
'SCHEMA', N'dbo', |
|
11061 |
'TABLE', N'iailab_demo03_grade', |
|
11062 |
'COLUMN', N'teacher' |
|
11063 |
GO |
|
11064 |
|
|
11065 |
EXEC sp_addextendedproperty |
|
11066 |
'MS_Description', N'创建者', |
|
11067 |
'SCHEMA', N'dbo', |
|
11068 |
'TABLE', N'iailab_demo03_grade', |
|
11069 |
'COLUMN', N'creator' |
|
11070 |
GO |
|
11071 |
|
|
11072 |
EXEC sp_addextendedproperty |
|
11073 |
'MS_Description', N'创建时间', |
|
11074 |
'SCHEMA', N'dbo', |
|
11075 |
'TABLE', N'iailab_demo03_grade', |
|
11076 |
'COLUMN', N'create_time' |
|
11077 |
GO |
|
11078 |
|
|
11079 |
EXEC sp_addextendedproperty |
|
11080 |
'MS_Description', N'更新者', |
|
11081 |
'SCHEMA', N'dbo', |
|
11082 |
'TABLE', N'iailab_demo03_grade', |
|
11083 |
'COLUMN', N'updater' |
|
11084 |
GO |
|
11085 |
|
|
11086 |
EXEC sp_addextendedproperty |
|
11087 |
'MS_Description', N'更新时间', |
|
11088 |
'SCHEMA', N'dbo', |
|
11089 |
'TABLE', N'iailab_demo03_grade', |
|
11090 |
'COLUMN', N'update_time' |
|
11091 |
GO |
|
11092 |
|
|
11093 |
EXEC sp_addextendedproperty |
|
11094 |
'MS_Description', N'是否删除', |
|
11095 |
'SCHEMA', N'dbo', |
|
11096 |
'TABLE', N'iailab_demo03_grade', |
|
11097 |
'COLUMN', N'deleted' |
|
11098 |
GO |
|
11099 |
|
|
11100 |
EXEC sp_addextendedproperty |
|
11101 |
'MS_Description', N'租户编号', |
|
11102 |
'SCHEMA', N'dbo', |
|
11103 |
'TABLE', N'iailab_demo03_grade', |
|
11104 |
'COLUMN', N'tenant_id' |
|
11105 |
GO |
|
11106 |
|
|
11107 |
EXEC sp_addextendedproperty |
|
11108 |
'MS_Description', N'学生班级表', |
|
11109 |
'SCHEMA', N'dbo', |
|
11110 |
'TABLE', N'iailab_demo03_grade' |
|
11111 |
GO |
|
11112 |
|
|
11113 |
-- ---------------------------- |
|
11114 |
-- Records of iailab_demo03_grade |
|
11115 |
-- ---------------------------- |
|
11116 |
-- @formatter:off |
|
11117 |
BEGIN TRANSACTION |
|
11118 |
GO |
|
11119 |
SET IDENTITY_INSERT iailab_demo03_grade ON |
|
11120 |
GO |
|
11121 |
INSERT INTO iailab_demo03_grade (id, student_id, name, teacher, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (7, 2, N'三年 2 班', N'周杰伦', N'1', N'2023-11-16 23:21:49', N'1', N'2023-11-16 23:21:49', N'0', 1) |
|
11122 |
GO |
|
11123 |
INSERT INTO iailab_demo03_grade (id, student_id, name, teacher, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (8, 5, N'华为', N'遥遥领先', N'1', N'2023-11-16 23:22:46', N'1', N'2023-11-16 23:47:10', N'0', 1) |
|
11124 |
GO |
|
11125 |
INSERT INTO iailab_demo03_grade (id, student_id, name, teacher, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (9, 9, N'小图', N'小娃111', N'1', N'2023-11-17 13:10:23', N'1', N'2023-11-17 13:10:23', N'0', 1) |
|
11126 |
GO |
|
11127 |
SET IDENTITY_INSERT iailab_demo03_grade OFF |
|
11128 |
GO |
|
11129 |
COMMIT |
|
11130 |
GO |
|
11131 |
-- @formatter:on |
|
11132 |
|
|
11133 |
-- ---------------------------- |
|
11134 |
-- Table structure for iailab_demo03_student |
|
11135 |
-- ---------------------------- |
|
11136 |
DROP TABLE IF EXISTS iailab_demo03_student; |
|
11137 |
CREATE TABLE iailab_demo03_student |
|
11138 |
( |
|
11139 |
id bigint NOT NULL PRIMARY KEY IDENTITY, |
|
11140 |
name nvarchar(100) DEFAULT '' NOT NULL, |
|
11141 |
sex tinyint NOT NULL, |
|
11142 |
birthday datetime2 NOT NULL, |
|
11143 |
description nvarchar(255) NOT NULL, |
|
11144 |
creator nvarchar(64) DEFAULT '' NULL, |
|
11145 |
create_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
11146 |
updater nvarchar(64) DEFAULT '' NULL, |
|
11147 |
update_time datetime2 DEFAULT CURRENT_TIMESTAMP NOT NULL, |
|
11148 |
deleted bit DEFAULT 0 NOT NULL, |
|
11149 |
tenant_id bigint DEFAULT 0 NOT NULL |
|
11150 |
) |
|
11151 |
GO |
|
11152 |
|
|
11153 |
EXEC sp_addextendedproperty |
|
11154 |
'MS_Description', N'编号', |
|
11155 |
'SCHEMA', N'dbo', |
|
11156 |
'TABLE', N'iailab_demo03_student', |
|
11157 |
'COLUMN', N'id' |
|
11158 |
GO |
|
11159 |
|
|
11160 |
EXEC sp_addextendedproperty |
|
11161 |
'MS_Description', N'名字', |
|
11162 |
'SCHEMA', N'dbo', |
|
11163 |
'TABLE', N'iailab_demo03_student', |
|
11164 |
'COLUMN', N'name' |
|
11165 |
GO |
|
11166 |
|
|
11167 |
EXEC sp_addextendedproperty |
|
11168 |
'MS_Description', N'性别', |
|
11169 |
'SCHEMA', N'dbo', |
|
11170 |
'TABLE', N'iailab_demo03_student', |
|
11171 |
'COLUMN', N'sex' |
|
11172 |
GO |
|
11173 |
|
|
11174 |
EXEC sp_addextendedproperty |
|
11175 |
'MS_Description', N'出生日期', |
|
11176 |
'SCHEMA', N'dbo', |
|
11177 |
'TABLE', N'iailab_demo03_student', |
|
11178 |
'COLUMN', N'birthday' |
|
11179 |
GO |
|
11180 |
|
|
11181 |
EXEC sp_addextendedproperty |
|
11182 |
'MS_Description', N'简介', |
|
11183 |
'SCHEMA', N'dbo', |
|
11184 |
'TABLE', N'iailab_demo03_student', |
|
11185 |
'COLUMN', N'description' |
|
11186 |
GO |
|
11187 |
|
|
11188 |
EXEC sp_addextendedproperty |
|
11189 |
'MS_Description', N'创建者', |
|
11190 |
'SCHEMA', N'dbo', |
|
11191 |
'TABLE', N'iailab_demo03_student', |
|
11192 |
'COLUMN', N'creator' |
|
11193 |
GO |
|
11194 |
|
|
11195 |
EXEC sp_addextendedproperty |
|
11196 |
'MS_Description', N'创建时间', |
|
11197 |
'SCHEMA', N'dbo', |
|
11198 |
'TABLE', N'iailab_demo03_student', |
|
11199 |
'COLUMN', N'create_time' |
|
11200 |
GO |
|
11201 |
|
|
11202 |
EXEC sp_addextendedproperty |
|
11203 |
'MS_Description', N'更新者', |
|
11204 |
'SCHEMA', N'dbo', |
|
11205 |
'TABLE', N'iailab_demo03_student', |
|
11206 |
'COLUMN', N'updater' |
|
11207 |
GO |
|
11208 |
|
|
11209 |
EXEC sp_addextendedproperty |
|
11210 |
'MS_Description', N'更新时间', |
|
11211 |
'SCHEMA', N'dbo', |
|
11212 |
'TABLE', N'iailab_demo03_student', |
|
11213 |
'COLUMN', N'update_time' |
|
11214 |
GO |
|
11215 |
|
|
11216 |
EXEC sp_addextendedproperty |
|
11217 |
'MS_Description', N'是否删除', |
|
11218 |
'SCHEMA', N'dbo', |
|
11219 |
'TABLE', N'iailab_demo03_student', |
|
11220 |
'COLUMN', N'deleted' |
|
11221 |
GO |
|
11222 |
|
|
11223 |
EXEC sp_addextendedproperty |
|
11224 |
'MS_Description', N'租户编号', |
|
11225 |
'SCHEMA', N'dbo', |
|
11226 |
'TABLE', N'iailab_demo03_student', |
|
11227 |
'COLUMN', N'tenant_id' |
|
11228 |
GO |
|
11229 |
|
|
11230 |
EXEC sp_addextendedproperty |
|
11231 |
'MS_Description', N'学生表', |
|
11232 |
'SCHEMA', N'dbo', |
|
11233 |
'TABLE', N'iailab_demo03_student' |
|
11234 |
GO |
|
11235 |
|
|
11236 |
-- ---------------------------- |
|
11237 |
-- Records of iailab_demo03_student |
|
11238 |
-- ---------------------------- |
|
11239 |
-- @formatter:off |
|
11240 |
BEGIN TRANSACTION |
|
11241 |
GO |
|
11242 |
SET IDENTITY_INSERT iailab_demo03_student ON |
|
11243 |
GO |
|
11244 |
INSERT INTO iailab_demo03_student (id, name, sex, birthday, description, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (2, N'小白', 1, N'2023-11-16 00:00:00', N'<p>厉害</p>', N'1', N'2023-11-16 23:21:49', N'1', N'2023-11-17 16:49:06', N'0', 1) |
|
11245 |
GO |
|
11246 |
INSERT INTO iailab_demo03_student (id, name, sex, birthday, description, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (5, N'大黑', 2, N'2023-11-13 00:00:00', N'<p>你在教我做事?</p>', N'1', N'2023-11-16 23:22:46', N'1', N'2023-11-17 16:49:07', N'0', 1) |
|
11247 |
GO |
|
11248 |
INSERT INTO iailab_demo03_student (id, name, sex, birthday, description, creator, create_time, updater, update_time, deleted, tenant_id) VALUES (9, N'小花', 1, N'2023-11-07 00:00:00', N'<p>哈哈哈</p>', N'1', N'2023-11-17 00:04:47', N'1', N'2023-11-17 16:49:08', N'0', 1) |
|
11249 |
GO |
|
11250 |
SET IDENTITY_INSERT iailab_demo03_student OFF |
|
11251 |
GO |
|
11252 |
COMMIT |
|
11253 |
GO |
|
11254 |
-- @formatter:on |
|
11255 |
|