From e225a60b95cdb211b9e28cfedf740a5a72e507cb Mon Sep 17 00:00:00 2001
From: wangjiahao <1522128093@qq.com>
Date: Tue, 3 Jan 2023 17:26:33 +0800
Subject: [PATCH 1/8] =?UTF-8?q?style:=20=E6=98=8E=E7=BB=86=E5=AF=BC?=
=?UTF-8?q?=E5=87=BA=E7=AD=89=E6=A0=B7=E5=BC=8F=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../canvas/components/editor/EditBar.vue | 2 +-
.../canvas/components/editor/Preview.vue | 3 +
.../src/components/dataease/DeOutWidget.vue | 2 +-
.../src/views/panel/grantAuth/ShareTree.vue | 89 +++++++++----------
frontend/src/views/panel/list/PanelMain.vue | 2 +-
.../src/views/panel/list/PanelViewShow.vue | 4 +-
6 files changed, 52 insertions(+), 50 deletions(-)
diff --git a/frontend/src/components/canvas/components/editor/EditBar.vue b/frontend/src/components/canvas/components/editor/EditBar.vue
index 7c7e833cc5..81bfd83253 100644
--- a/frontend/src/components/canvas/components/editor/EditBar.vue
+++ b/frontend/src/components/canvas/components/editor/EditBar.vue
@@ -284,7 +284,7 @@ export default {
return this.curComponent.type === 'view' && this.terminal === 'pc' && this.curComponent.propValue.innerType !== 'richTextView'
},
enlargeShow() {
- return this.curComponent.type === 'view' && this.curComponent.propValue.innerType !== 'richTextView'
+ return this.curComponent.type === 'view' && this.curComponent.propValue.innerType !== 'richTextView' && !this.curComponent.propValue.innerType.includes('table')
},
selectFieldShow() {
return this.activeModel === 'edit' && this.curComponent.type === 'view' && this.curComponent.propValue.innerType === 'richTextView' && this.curComponent.editing
diff --git a/frontend/src/components/canvas/components/editor/Preview.vue b/frontend/src/components/canvas/components/editor/Preview.vue
index a94c23d16a..49a752d6bd 100644
--- a/frontend/src/components/canvas/components/editor/Preview.vue
+++ b/frontend/src/components/canvas/components/editor/Preview.vue
@@ -287,6 +287,9 @@ export default {
return this.$store.state.panel.mainActiveName
},
showUnpublishedArea() {
+ if (this.canvasId !== 'canvas-main') {
+ return false
+ }
if (this.showPosition === 'edit') {
return false
} else if (this.panelInfo && this.panelInfo.showType === 'view') {
diff --git a/frontend/src/components/dataease/DeOutWidget.vue b/frontend/src/components/dataease/DeOutWidget.vue
index c338e428ad..cd7e6134b6 100644
--- a/frontend/src/components/dataease/DeOutWidget.vue
+++ b/frontend/src/components/dataease/DeOutWidget.vue
@@ -226,7 +226,7 @@ export default {
.condition-main {
position: absolute;
- overflow: auto;
+ overflow: hidden;
top: 0px;
right: 0px;
bottom: 0px;
diff --git a/frontend/src/views/panel/grantAuth/ShareTree.vue b/frontend/src/views/panel/grantAuth/ShareTree.vue
index 88955c5479..9c8aa89596 100644
--- a/frontend/src/views/panel/grantAuth/ShareTree.vue
+++ b/frontend/src/views/panel/grantAuth/ShareTree.vue
@@ -93,7 +93,7 @@
diff --git a/frontend/src/views/panel/list/PanelMain.vue b/frontend/src/views/panel/list/PanelMain.vue
index d04d24deb1..811b75fd17 100644
--- a/frontend/src/views/panel/list/PanelMain.vue
+++ b/frontend/src/views/panel/list/PanelMain.vue
@@ -79,7 +79,7 @@ export default {
}
},
activeName: function(newVal, oldVal) {
- if (newVal !== 'PanelMain') {
+ if (newVal !== 'PanelList') {
this.clear()
}
}
diff --git a/frontend/src/views/panel/list/PanelViewShow.vue b/frontend/src/views/panel/list/PanelViewShow.vue
index 671b63ae69..e5e5bc15b9 100644
--- a/frontend/src/views/panel/list/PanelViewShow.vue
+++ b/frontend/src/views/panel/list/PanelViewShow.vue
@@ -17,7 +17,7 @@
style="border-bottom: 1px solid;border-bottom-color:#E6E6E6;"
>
-
+
-
+
Date: Tue, 3 Jan 2023 17:43:38 +0800
Subject: [PATCH 2/8] =?UTF-8?q?fix(=E8=A1=80=E6=BA=90=E5=85=B3=E7=B3=BB):?=
=?UTF-8?q?=20=E5=88=A0=E9=99=A4=E6=95=B0=E6=8D=AE=E6=BA=90=E5=92=8C?=
=?UTF-8?q?=E6=95=B0=E6=8D=AE=E9=9B=86=E6=97=B6=E5=A6=82=E6=9E=9C=E6=B2=A1?=
=?UTF-8?q?=E6=9C=89=E6=9F=A5=E7=9C=8B=E8=A1=80=E6=BA=90=E5=85=B3=E7=B3=BB?=
=?UTF-8?q?=E7=9A=84=E6=9D=83=E9=99=90=E5=88=99=E4=B8=8D=E6=8F=90=E7=A4=BA?=
=?UTF-8?q?=E8=B7=B3=E8=BD=AC?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
frontend/src/views/dataset/group/Group.vue | 19 ++++++++------
.../src/views/system/datasource/DsTree.vue | 25 ++++++++++---------
.../src/views/system/relationship/index.vue | 3 ++-
3 files changed, 27 insertions(+), 20 deletions(-)
diff --git a/frontend/src/views/dataset/group/Group.vue b/frontend/src/views/dataset/group/Group.vue
index bcdaf184a8..2e088cd9c4 100644
--- a/frontend/src/views/dataset/group/Group.vue
+++ b/frontend/src/views/dataset/group/Group.vue
@@ -545,9 +545,7 @@ import {
isKettleRunning,
alter
} from '@/api/dataset/dataset'
-import {
- getDatasetRelationship,
-} from '@/api/chart/chart.js'
+import { getDatasetRelationship } from '@/api/chart/chart.js'
import msgContent from '@/views/system/datasource/MsgContent.vue'
import GroupMoveSelector from './GroupMoveSelector'
@@ -556,6 +554,7 @@ import { queryAuthModel } from '@/api/authModel/authModel'
import { engineMode } from '@/api/system/engine'
import _ from 'lodash'
import msgCfm from '@/components/msgCfm/index'
+import { checkPermission } from '@/utils/permission'
export default {
name: 'Group',
@@ -925,8 +924,14 @@ export default {
}
const { queryType = 'dataset', id } = data
- getDatasetRelationship(id).then((res) => {
- if (res.data.subRelation?.length) {
+ if (checkPermission(['relationship:read'])) {
+ let hasSubRelation = false
+ await getDatasetRelationship(id).then((res) => {
+ if (res.data.subRelation?.length) {
+ hasSubRelation = true
+ }
+ })
+ if (hasSubRelation) {
options.title = this.$t('datasource.delete_this_dataset')
options.link = this.$t('datasource.click_to_check')
options.content = this.$t('datasource.cannot_be_deleted_dataset')
@@ -937,8 +942,8 @@ export default {
this.withLink(options, this.$t('commons.delete'))
return
}
- this.handlerConfirm(options)
- })
+ }
+ this.handlerConfirm(options)
},
linkTo(query) {
window.open(this.$router.resolve({
diff --git a/frontend/src/views/system/datasource/DsTree.vue b/frontend/src/views/system/datasource/DsTree.vue
index d774c7a2b7..b3aa20e810 100644
--- a/frontend/src/views/system/datasource/DsTree.vue
+++ b/frontend/src/views/system/datasource/DsTree.vue
@@ -339,13 +339,12 @@ import {
listDriverByType,
updateDriver
} from '@/api/system/datasource'
-import {
- getDatasourceRelationship,
-} from '@/api/chart/chart.js'
+import { getDatasourceRelationship } from '@/api/chart/chart.js'
import msgContent from './MsgContent.vue'
import deTextarea from '@/components/deCustomCm/DeTextarea.vue'
import msgCfm from '@/components/msgCfm'
+import { checkPermission } from '@/utils/permission'
export default {
name: 'DsTree',
components: { deTextarea },
@@ -754,15 +753,17 @@ export default {
}
const { queryType = 'datasource', name: label, id } = datasource
if (this.showView === 'Datasource') {
- await this.getDatasourceRelationship({ queryType, label, id })
- if (this.treeData.length) {
- params.title = this.$t('datasource.this_data_source')
- params.link = this.$t('datasource.click_to_check')
- params.content = this.$t('datasource.cannot_be_deleted_datasource')
- params.templateDel = msgContent
- params.linkTo = this.linkTo.bind(this, { queryType, id })
- this.withLink(params)
- return
+ if (checkPermission(['relationship:read'])) {
+ await this.getDatasourceRelationship({ queryType, label, id })
+ if (this.treeData.length) {
+ params.title = this.$t('datasource.this_data_source')
+ params.link = this.$t('datasource.click_to_check')
+ params.content = this.$t('datasource.cannot_be_deleted_datasource')
+ params.templateDel = msgContent
+ params.linkTo = this.linkTo.bind(this, { queryType, id })
+ this.withLink(params)
+ return
+ }
}
}
this.handlerConfirm(params)
diff --git a/frontend/src/views/system/relationship/index.vue b/frontend/src/views/system/relationship/index.vue
index 49a3c4b8ff..e94c940330 100644
--- a/frontend/src/views/system/relationship/index.vue
+++ b/frontend/src/views/system/relationship/index.vue
@@ -340,6 +340,7 @@ export default {
},
queryTypeChange(val) {
this.formInline.dataSourceName = ''
+ this.dataSourceNameList = []
switch (val) {
case 'datasource':
this.listDatasource()
@@ -427,4 +428,4 @@ export default {
}
}
}
-
\ No newline at end of file
+
From 77dc7162aa0fd00763c147b3a85090f2ff62c635 Mon Sep 17 00:00:00 2001
From: wangjiahao <1522128093@qq.com>
Date: Tue, 3 Jan 2023 18:14:24 +0800
Subject: [PATCH 3/8] =?UTF-8?q?style:=20=E8=B0=83=E6=95=B4=E5=9C=B0?=
=?UTF-8?q?=E5=9B=BE=E8=B7=B3=E8=BD=AC=E5=BC=B9=E6=A1=86=E6=A0=B7=E5=BC=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
frontend/src/components/canvas/customComponent/UserView.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frontend/src/components/canvas/customComponent/UserView.vue b/frontend/src/components/canvas/customComponent/UserView.vue
index 0c4ffe0fed..d1e4c9bf22 100644
--- a/frontend/src/components/canvas/customComponent/UserView.vue
+++ b/frontend/src/components/canvas/customComponent/UserView.vue
@@ -938,7 +938,7 @@ export default {
// 如果有名称name 获取和name匹配的dimension 否则倒序取最后一个能匹配的
if (param.name) {
param.dimensionList.forEach(dimensionItem => {
- if (dimensionItem.id === param.name) {
+ if (dimensionItem.id === param.name || dimensionItem.value === param.name) {
dimension = dimensionItem
sourceInfo = param.viewId + '#' + dimension.id
jumpInfo = this.nowPanelJumpInfo[sourceInfo]
From cd3122f9e022a141e27f9ccb8a4594ffe9139f85 Mon Sep 17 00:00:00 2001
From: fit2cloud-chenyw
Date: Wed, 4 Jan 2023 09:48:50 +0800
Subject: [PATCH 4/8] =?UTF-8?q?fix(api):=20=E6=81=A2=E5=A4=8D=E9=94=99?=
=?UTF-8?q?=E8=AF=AF=E6=8F=90=E4=BA=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../src/main/java/io/dataease/auth/filter/F2CDocFilter.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/backend/src/main/java/io/dataease/auth/filter/F2CDocFilter.java b/backend/src/main/java/io/dataease/auth/filter/F2CDocFilter.java
index f584cbf0a3..d5d8438c3a 100644
--- a/backend/src/main/java/io/dataease/auth/filter/F2CDocFilter.java
+++ b/backend/src/main/java/io/dataease/auth/filter/F2CDocFilter.java
@@ -40,10 +40,10 @@ public class F2CDocFilter extends AccessControlFilter {
DefaultLicenseService defaultLicenseService = CommonBeanFactory.getBean(DefaultLicenseService.class);
F2CLicenseResponse f2CLicenseResponse = defaultLicenseService.validateLicense();
Status status = f2CLicenseResponse.getStatus();
- /*if (status != Status.valid) {
+ if (status != Status.valid) {
request.setAttribute(RESULT_URI_KEY, NOLIC_PAGE);
return false;
- }*/
+ }
} catch (Exception e) {
request.setAttribute(RESULT_URI_KEY, NOLIC_PAGE);
LogUtil.error(e.getMessage(), e);
From eb0976f4b0122ab47681c17865e6c552e866d45d Mon Sep 17 00:00:00 2001
From: fit2cloud-chenyw
Date: Wed, 4 Jan 2023 10:50:53 +0800
Subject: [PATCH 5/8] =?UTF-8?q?fix(=E5=AE=9A=E6=97=B6=E6=8A=A5=E5=91=8A):?=
=?UTF-8?q?=20cron=E8=A1=A8=E8=BE=BE=E5=BC=8F=E9=94=99=E8=AF=AF=E6=96=87?=
=?UTF-8?q?=E6=A1=88?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../main/java/io/dataease/job/sechedule/ScheduleManager.java | 4 +++-
.../java/io/dataease/plugins/server/XEmailTaskServer.java | 2 ++
backend/src/main/resources/i18n/messages_en_US.properties | 1 +
backend/src/main/resources/i18n/messages_zh_CN.properties | 1 +
backend/src/main/resources/i18n/messages_zh_TW.properties | 2 ++
5 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/backend/src/main/java/io/dataease/job/sechedule/ScheduleManager.java b/backend/src/main/java/io/dataease/job/sechedule/ScheduleManager.java
index 3a41798e93..0a8a24758a 100644
--- a/backend/src/main/java/io/dataease/job/sechedule/ScheduleManager.java
+++ b/backend/src/main/java/io/dataease/job/sechedule/ScheduleManager.java
@@ -2,6 +2,7 @@ package io.dataease.job.sechedule;
import io.dataease.commons.utils.LogUtil;
import io.dataease.exception.DataEaseException;
+import io.dataease.i18n.Translator;
import org.quartz.*;
import org.springframework.stereotype.Component;
@@ -399,7 +400,8 @@ public class ScheduleManager {
public static CronTrigger getCronTrigger(String cron) {
if (!CronExpression.isValidExpression(cron)) {
- DataEaseException.throwException("cron :" + cron + " error");
+ String msg = Translator.get("I18N_CRON_ERROR");
+ DataEaseException.throwException(msg + " : " + cron);
}
return TriggerBuilder.newTrigger().withIdentity("Calculate Date")
.withSchedule(CronScheduleBuilder.cronSchedule(cron)).build();
diff --git a/backend/src/main/java/io/dataease/plugins/server/XEmailTaskServer.java b/backend/src/main/java/io/dataease/plugins/server/XEmailTaskServer.java
index 1e0ecb114f..965889d66a 100644
--- a/backend/src/main/java/io/dataease/plugins/server/XEmailTaskServer.java
+++ b/backend/src/main/java/io/dataease/plugins/server/XEmailTaskServer.java
@@ -31,6 +31,7 @@ import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.ByteArrayResource;
import org.springframework.http.*;
+import org.springframework.transaction.annotation.Transactional;
import org.springframework.util.Base64Utils;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.util.HtmlUtils;
@@ -128,6 +129,7 @@ public class XEmailTaskServer {
@RequiresPermissions("task-email:add")
@PostMapping("/save")
+ @Transactional
public void save(@RequestBody XpackEmailCreate param) throws Exception {
XpackEmailTaskRequest request = param.fillContent();
EmailXpackService emailXpackService = SpringContextUtil.getBean(EmailXpackService.class);
diff --git a/backend/src/main/resources/i18n/messages_en_US.properties b/backend/src/main/resources/i18n/messages_en_US.properties
index 1b815bb37e..63c80bb089 100644
--- a/backend/src/main/resources/i18n/messages_en_US.properties
+++ b/backend/src/main/resources/i18n/messages_en_US.properties
@@ -261,3 +261,4 @@ I18N_LOG_FORMAT_PREFIX=With authority of %s\u3010%s\u3011
\u6C34\u5370\u7BA1\u7406=Watermark
\u8840\u7F18\u5173\u7CFB=Relationship
+I18N_CRON_ERROR=Cron expression error
\ No newline at end of file
diff --git a/backend/src/main/resources/i18n/messages_zh_CN.properties b/backend/src/main/resources/i18n/messages_zh_CN.properties
index 188ff1523f..a0a278575f 100644
--- a/backend/src/main/resources/i18n/messages_zh_CN.properties
+++ b/backend/src/main/resources/i18n/messages_zh_CN.properties
@@ -261,4 +261,5 @@ I18N_LOG_FORMAT_PREFIX=\u4EE5%s\u3010%s\u3011\u6743\u9650
\u6C34\u5370\u7BA1\u7406=\u6C34\u5370\u7BA1\u7406
\u8840\u7F18\u5173\u7CFB=\u8840\u7F18\u5173\u7CFB
+I18N_CRON_ERROR=cron\u8868\u8FBE\u5F0F\u9519\u8BEF
diff --git a/backend/src/main/resources/i18n/messages_zh_TW.properties b/backend/src/main/resources/i18n/messages_zh_TW.properties
index 1301d7a0c0..fe253c3b6f 100644
--- a/backend/src/main/resources/i18n/messages_zh_TW.properties
+++ b/backend/src/main/resources/i18n/messages_zh_TW.properties
@@ -256,3 +256,5 @@ I18N_LOG_FORMAT_PREFIX=\u4EE5%s\u3010%s\u3011\u6B0A\u9650
\u5220\u9664\u8BB0\u5F55=\u522A\u9664\u8A18\u9304
\u6C34\u5370\u7BA1\u7406=\u6C34\u5370\u7BA1\u7406
\u8840\u7F18\u5173\u7CFB=\u8840\u7DE3\u95DC\u7CFB
+
+I18N_CRON_ERROR=cron\u8868\u9054\u5F0F\u932F\u8AA4
\ No newline at end of file
From cf8c4eca46d815b602b175b17f70a219a2624b02 Mon Sep 17 00:00:00 2001
From: wangjiahao <1522128093@qq.com>
Date: Wed, 4 Jan 2023 11:05:45 +0800
Subject: [PATCH 6/8] =?UTF-8?q?refactor:=20=E5=8F=96=E6=B6=88=E5=8F=91?=
=?UTF-8?q?=E5=B8=83=E7=9A=84=E4=BB=AA=E8=A1=A8=E6=9D=BF=E5=9C=A8=E6=94=B6?=
=?UTF-8?q?=E8=97=8F=E9=87=8C=E9=9A=90=E8=97=8F=E8=8F=9C=E5=8D=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../resources/db/migration/V47__1.18-panel-subject-add.sql | 3 ++-
frontend/src/views/panel/list/PanelViewShow.vue | 1 +
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/backend/src/main/resources/db/migration/V47__1.18-panel-subject-add.sql b/backend/src/main/resources/db/migration/V47__1.18-panel-subject-add.sql
index af92d97c11..89142acceb 100644
--- a/backend/src/main/resources/db/migration/V47__1.18-panel-subject-add.sql
+++ b/backend/src/main/resources/db/migration/V47__1.18-panel-subject-add.sql
@@ -1,5 +1,6 @@
delete
-from `panel_subject`;
+from `panel_subject`
+where id in ('system_1', 'system_2');
BEGIN;
INSERT INTO `panel_subject` (`id`, `name`, `type`, `details`, `create_num`, `create_time`, `create_by`, `update_time`,
`update_by`)
diff --git a/frontend/src/views/panel/list/PanelViewShow.vue b/frontend/src/views/panel/list/PanelViewShow.vue
index e5e5bc15b9..6fb0456d20 100644
--- a/frontend/src/views/panel/list/PanelViewShow.vue
+++ b/frontend/src/views/panel/list/PanelViewShow.vue
@@ -120,6 +120,7 @@
From 92067b7536d372a00fa141c77183a7a8e5bb872d Mon Sep 17 00:00:00 2001
From: wangjiahao <1522128093@qq.com>
Date: Wed, 4 Jan 2023 12:43:54 +0800
Subject: [PATCH 7/8] =?UTF-8?q?refactor:=20=E6=9B=B4=E6=96=B0flyway?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../main/resources/db/migration/V46__1.18.sql | 541 +++++++++---------
1 file changed, 282 insertions(+), 259 deletions(-)
diff --git a/backend/src/main/resources/db/migration/V46__1.18.sql b/backend/src/main/resources/db/migration/V46__1.18.sql
index 3e90d98fe2..63e768a606 100644
--- a/backend/src/main/resources/db/migration/V46__1.18.sql
+++ b/backend/src/main/resources/db/migration/V46__1.18.sql
@@ -33,6 +33,15 @@ ALTER TABLE `chart_view_cache`
ADD COLUMN `refresh_unit` varchar(255) NULL DEFAULT 'minute' COMMENT '刷新时间单位' AFTER `refresh_view_enable`,
ADD COLUMN `refresh_time` int(13) NULL DEFAULT 5 COMMENT '刷新时间' AFTER `refresh_unit`;
+delete
+from sys_menu
+where menu_id = 41;
+INSERT INTO `sys_menu` (`menu_id`, `pid`, `sub_count`, `type`, `title`, `name`, `component`, `menu_sort`, `icon`,
+ `path`, `i_frame`, `cache`, `hidden`, `permission`, `create_by`, `update_by`, `create_time`,
+ `update_time`)
+VALUES (45, 1, 1, 1, '应用管理', 'system-app-template', 'panel/appTemplate/index', 13, 'sys-param',
+ 'panel/appTemplate/index', b'0', b'0', b'0', 'app-template:read', NULL, NULL, NULL, 1620444227389);
+
delete
from sys_auth_detail
where auth_id in (select id from sys_auth where auth_target = 1 and auth_target_type = 'role');
@@ -41,613 +50,627 @@ from sys_auth
where auth_target = 1
and auth_target_type = 'role';
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('00590a7c-8e7b-45f4-8428-55532be07602', '10', 'menu', '1', 'role', 1630482462199, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('060b5084-e937-4212-8e7d-5b27d28d3813', '619', 'menu', '1', 'role', 1672306656110, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('06ba0edb-143d-4b51-a864-8cfcf2b5d71e', '1', 'menu', '1', 'role', 1630482426344, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('0a08d6de-a7de-40d9-86c4-fffd4bf54e3a', '101', 'menu', '1', 'role', 1672306649767, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('0c045d89-85ea-4676-8b5e-4b3dae5a734d', '700', 'menu', '1', 'role', 1664521306828, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+VALUES ('0d89fc57-8ecf-444f-aec2-868a6fec7e73', '45', 'menu', '1', 'role', 1672806834919, NULL, 'admin', NULL, NULL,
+ NULL);
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('1a18aa12-8daa-4f47-b5eb-999e473273df', '6', 'menu', '1', 'role', 1630482450994, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('1bf39d8d-7fe9-4832-8df3-f74b21a69288', '4', 'menu', '1', 'role', 1630482450458, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('2cada094-9543-4636-9b6f-b25c655399f0', '103', 'menu', '1', 'role', 1672306650137, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('359771bb-95b8-40ad-a6c5-b5c39c93cb10', '24', 'menu', '1', 'role', 1630482459156, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('37457802-97a6-4303-be89-cf82b4059db1', '910', 'menu', '1', 'role', 1664521307265, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('46e4e2cb-1349-40c3-a72d-7b0b30ab5d14', '203', 'menu', '1', 'role', 1666840141866, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('5960fd93-013c-4636-8f6b-2e6b49b7e869', '5', 'menu', '1', 'role', 1630482450626, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('5e0a9ad5-81ed-4f83-91f6-a74be724bda7', '23', 'menu', '1', 'role', 1630482452131, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('5ec5c9a7-04c0-4655-9b63-9ca5a439e2f3', '18', 'menu', '1', 'role', 1630482451166, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('60b3644b-2493-4805-8204-90880cfac9c6', '8', 'menu', '1', 'role', 1630482460538, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('6e22ad53-d737-447f-9686-5041e122b4dc', '205', 'menu', '1', 'role', 1666840141468, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('74ff225f-2a79-4221-9b32-c6eb9bcadd61', '19', 'menu', '1', 'role', 1630482451329, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('7669702f-1261-44a4-a1a6-4adc05c7edcd', '800', 'menu', '1', 'role', 1672306666561, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('7823499e-dbb6-42a9-a28f-22377de18a39', '40', 'menu', '1', 'role', 1630482427369, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('831449e3-cb7c-46a5-9ba2-4ef18af21985', '202', 'menu', '1', 'role', 1672306664677, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('88c778e6-ede3-4397-af4c-375e1feac8ef', '41', 'menu', '1', 'role', 1630482452340, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('9019e9e4-8ea6-47ea-9279-98d10be107fc', '710', 'menu', '1', 'role', 1664521307460, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('9037724f-b34c-45ca-9e73-59c4e7e72703', '64', 'menu', '1', 'role', 1672306653656, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('998e402b-6f15-48dc-ae4d-2cd04460a3f3', '15', 'menu', '1', 'role', 1630482426695, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('9f01c7ef-753b-4dea-97d4-c199f84c2c74', '17', 'menu', '1', 'role', 1630482427049, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('a2ece474-34d1-4d48-b7ff-4fcc6196d32b', '65', 'menu', '1', 'role', 1672306653103, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('a6837d68-80a6-4a26-a7c0-e84001dfc817', '34', 'menu', '1', 'role', 1630482458991, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('b319dc39-c499-423b-8e99-22e9a0caba6f', '58', 'menu', '1', 'role', 1630482427545, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('bdd3bed8-35d4-4aa8-84c2-85e2412d6cbb', '2', 'menu', '1', 'role', 1630482426513, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('c18b47e9-aa22-4f17-b12c-a3459ca4dd90', '28', 'menu', '1', 'role', 1630482427208, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('d234696d-bf9e-4a58-9670-b2ff91884bbe', '102', 'menu', '1', 'role', 1672306649957, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('d2368c49-33b0-46b2-894d-b182d1c03bd4', '810', 'menu', '1', 'role', 1664521307050, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('d3d558e5-b0b1-4475-bb69-f20fa5c47f4f', '22', 'menu', '1', 'role', 1630482451962, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('d400c00f-9c18-4eb6-a70f-9c8caf8dddfe', '21', 'menu', '1', 'role', 1630482451749, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('d8d18115-c7b9-4e99-96a8-fd1bbfddf543', '16', 'menu', '1', 'role', 1630482426857, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('d956b3af-588d-477b-b404-20ded826593d', '401', 'menu', '1', 'role', 1672306682532, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('da17fcfe-7875-4aaf-983b-d750d71f36d2', '204', 'menu', '1', 'role', 1666840141658, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('daf90066-0299-4feb-b369-3fbb4a0e0821', '60', 'menu', '1', 'role', 1672306652922, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('e4d09516-79ef-41d1-8358-584224e07b73', '618', 'menu', '1', 'role', 1672306655930, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('e9f0837f-e717-49cd-9167-4bf503997a4a', '63', 'menu', '1', 'role', 1672306653282, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('ee9c43c9-f599-4d4e-bccc-c46f62119ed2', '61', 'menu', '1', 'role', 1672306653481, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('f17dc7f3-c97a-41b4-a2f4-1a04a857ae8a', '20', 'menu', '1', 'role', 1630482451497, NULL, 'admin', NULL, NULL,
NULL);
-INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`,
- `auth_time`, `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
+INSERT INTO `sys_auth` (`id`, `auth_source`, `auth_source_type`, `auth_target`, `auth_target_type`, `auth_time`,
+ `auth_details`, `auth_user`, `update_time`, `copy_from`, `copy_id`)
VALUES ('fbb065cc-a5c7-47d7-bffb-4eda35928f34', '1100', 'menu', '1', 'role', 1672306662727, NULL, 'admin', NULL, NULL,
NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('69e22055-875c-11ed-bd88-0242ac130004', '0a08d6de-a7de-40d9-86c4-fffd4bf54e3a', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1672306650000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('69e22488-875c-11ed-bd88-0242ac130004', '0a08d6de-a7de-40d9-86c4-fffd4bf54e3a', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1672306650000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('69fdd519-875c-11ed-bd88-0242ac130004', 'd234696d-bf9e-4a58-9670-b2ff91884bbe', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1672306650000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('69fddc55-875c-11ed-bd88-0242ac130004', 'd234696d-bf9e-4a58-9670-b2ff91884bbe', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1672306650000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('6a19b826-875c-11ed-bd88-0242ac130004', '2cada094-9543-4636-9b6f-b25c655399f0', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1672306650000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('6a19bb9b-875c-11ed-bd88-0242ac130004', '2cada094-9543-4636-9b6f-b25c655399f0', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1672306650000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('6bc259de-875c-11ed-bd88-0242ac130004', 'daf90066-0299-4feb-b369-3fbb4a0e0821', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1672306653000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('6bc25c58-875c-11ed-bd88-0242ac130004', 'daf90066-0299-4feb-b369-3fbb4a0e0821', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1672306653000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('6bdd7239-875c-11ed-bd88-0242ac130004', 'a2ece474-34d1-4d48-b7ff-4fcc6196d32b', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1672306653000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('6bdd758b-875c-11ed-bd88-0242ac130004', 'a2ece474-34d1-4d48-b7ff-4fcc6196d32b', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1672306653000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('6bfc3df2-875c-11ed-bd88-0242ac130004', 'e9f0837f-e717-49cd-9167-4bf503997a4a', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1672306653000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('6bfc43ec-875c-11ed-bd88-0242ac130004', 'e9f0837f-e717-49cd-9167-4bf503997a4a', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1672306653000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('6c16b8f8-875c-11ed-bd88-0242ac130004', 'ee9c43c9-f599-4d4e-bccc-c46f62119ed2', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1672306653000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('6c16bd6d-875c-11ed-bd88-0242ac130004', 'ee9c43c9-f599-4d4e-bccc-c46f62119ed2', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1672306653000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('6c3217b4-875c-11ed-bd88-0242ac130004', '9037724f-b34c-45ca-9e73-59c4e7e72703', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1672306654000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('6c321bdc-875c-11ed-bd88-0242ac130004', '9037724f-b34c-45ca-9e73-59c4e7e72703', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1672306654000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('6d8d3c6f-875c-11ed-bd88-0242ac130004', 'e4d09516-79ef-41d1-8358-584224e07b73', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1672306656000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('6d8d4031-875c-11ed-bd88-0242ac130004', 'e4d09516-79ef-41d1-8358-584224e07b73', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1672306656000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('6daa85f3-875c-11ed-bd88-0242ac130004', '060b5084-e937-4212-8e7d-5b27d28d3813', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1672306656000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('6daa899a-875c-11ed-bd88-0242ac130004', '060b5084-e937-4212-8e7d-5b27d28d3813', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1672306656000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('7199b798-875c-11ed-bd88-0242ac130004', 'fbb065cc-a5c7-47d7-bffb-4eda35928f34', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1672306663000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('7199bc41-875c-11ed-bd88-0242ac130004', 'fbb065cc-a5c7-47d7-bffb-4eda35928f34', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1672306663000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('72c4a847-875c-11ed-bd88-0242ac130004', '831449e3-cb7c-46a5-9ba2-4ef18af21985', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1672306665000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('72c4adde-875c-11ed-bd88-0242ac130004', '831449e3-cb7c-46a5-9ba2-4ef18af21985', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1672306665000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('73e2fd98-875c-11ed-bd88-0242ac130004', '7669702f-1261-44a4-a1a6-4adc05c7edcd', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1672306666000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('73e301e6-875c-11ed-bd88-0242ac130004', '7669702f-1261-44a4-a1a6-4adc05c7edcd', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1672306666000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('7d68534e-875c-11ed-bd88-0242ac130004', 'd956b3af-588d-477b-b404-20ded826593d', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1672306682000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('7d6856d4-875c-11ed-bd88-0242ac130004', 'd956b3af-588d-477b-b404-20ded826593d', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1672306682000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('b4fe2e52-55a4-11ed-bf84-0242ac130005', '6e22ad53-d737-447f-9686-5041e122b4dc', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1666840141000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('b4fe3215-55a4-11ed-bf84-0242ac130005', '6e22ad53-d737-447f-9686-5041e122b4dc', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1666840141000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('b51affbf-55a4-11ed-bf84-0242ac130005', 'da17fcfe-7875-4aaf-983b-d750d71f36d2', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1666840141000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('b51b0473-55a4-11ed-bf84-0242ac130005', 'da17fcfe-7875-4aaf-983b-d750d71f36d2', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1666840141000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('b53a1ad7-55a4-11ed-bf84-0242ac130005', '46e4e2cb-1349-40c3-a72d-7b0b30ab5d14', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1666840142000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('b53a1dfd-55a4-11ed-bf84-0242ac130005', '46e4e2cb-1349-40c3-a72d-7b0b30ab5d14', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1666840142000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('bfddec25-408d-11ed-8009-0242ac130005', '0c045d89-85ea-4676-8b5e-4b3dae5a734d', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1664521307000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('bfddf2e8-408d-11ed-8009-0242ac130005', '0c045d89-85ea-4676-8b5e-4b3dae5a734d', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1664521307000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('bfffbd09-408d-11ed-8009-0242ac130005', 'd2368c49-33b0-46b2-894d-b182d1c03bd4', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1664521307000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('bfffbf74-408d-11ed-8009-0242ac130005', 'd2368c49-33b0-46b2-894d-b182d1c03bd4', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1664521307000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('c01e6d09-408d-11ed-8009-0242ac130005', '37457802-97a6-4303-be89-cf82b4059db1', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1664521307000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('c01e6fb3-408d-11ed-8009-0242ac130005', '37457802-97a6-4303-be89-cf82b4059db1', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1664521307000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('c03c0af2-408d-11ed-8009-0242ac130005', '9019e9e4-8ea6-47ea-9279-98d10be107fc', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1664521307000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('c03c0dc3-408d-11ed-8009-0242ac130005', '9019e9e4-8ea6-47ea-9279-98d10be107fc', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1664521307000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('cf3c570c-0af8-11ec-a2b0-0242ac130003', '06ba0edb-143d-4b51-a864-8cfcf2b5d71e', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482428000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('cf3c59d1-0af8-11ec-a2b0-0242ac130003', '06ba0edb-143d-4b51-a864-8cfcf2b5d71e', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482428000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('cf573296-0af8-11ec-a2b0-0242ac130003', 'bdd3bed8-35d4-4aa8-84c2-85e2412d6cbb', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482428000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('cf57354a-0af8-11ec-a2b0-0242ac130003', 'bdd3bed8-35d4-4aa8-84c2-85e2412d6cbb', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482428000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('cf705f77-0af8-11ec-a2b0-0242ac130003', '998e402b-6f15-48dc-ae4d-2cd04460a3f3', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482429000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('cf7061d1-0af8-11ec-a2b0-0242ac130003', '998e402b-6f15-48dc-ae4d-2cd04460a3f3', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482429000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('cf8b490d-0af8-11ec-a2b0-0242ac130003', 'd8d18115-c7b9-4e99-96a8-fd1bbfddf543', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482429000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('cf8b4b35-0af8-11ec-a2b0-0242ac130003', 'd8d18115-c7b9-4e99-96a8-fd1bbfddf543', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482429000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('cfa66a8d-0af8-11ec-a2b0-0242ac130003', '9f01c7ef-753b-4dea-97d4-c199f84c2c74', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482429000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('cfa66ca4-0af8-11ec-a2b0-0242ac130003', '9f01c7ef-753b-4dea-97d4-c199f84c2c74', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482429000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('cfbf0608-0af8-11ec-a2b0-0242ac130003', 'c18b47e9-aa22-4f17-b12c-a3459ca4dd90', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482429000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('cfbf0839-0af8-11ec-a2b0-0242ac130003', 'c18b47e9-aa22-4f17-b12c-a3459ca4dd90', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482429000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('cfd814bc-0af8-11ec-a2b0-0242ac130003', '7823499e-dbb6-42a9-a28f-22377de18a39', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482429000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('cfd816d7-0af8-11ec-a2b0-0242ac130003', '7823499e-dbb6-42a9-a28f-22377de18a39', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482429000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('cff28219-0af8-11ec-a2b0-0242ac130003', 'b319dc39-c499-423b-8e99-22e9a0caba6f', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482429000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('cff28507-0af8-11ec-a2b0-0242ac130003', 'b319dc39-c499-423b-8e99-22e9a0caba6f', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482429000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('dd9ba5c6-0af8-11ec-a2b0-0242ac130003', '1bf39d8d-7fe9-4832-8df3-f74b21a69288', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482452000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('dd9ba7e8-0af8-11ec-a2b0-0242ac130003', '1bf39d8d-7fe9-4832-8df3-f74b21a69288', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482452000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('ddb3094b-0af8-11ec-a2b0-0242ac130003', '5960fd93-013c-4636-8f6b-2e6b49b7e869', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482452000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('ddb30bd2-0af8-11ec-a2b0-0242ac130003', '5960fd93-013c-4636-8f6b-2e6b49b7e869', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482452000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('ddec6eab-0af8-11ec-a2b0-0242ac130003', '1a18aa12-8daa-4f47-b5eb-999e473273df', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482453000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('ddeccfa8-0af8-11ec-a2b0-0242ac130003', '1a18aa12-8daa-4f47-b5eb-999e473273df', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482453000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('de0719cb-0af8-11ec-a2b0-0242ac130003', '5ec5c9a7-04c0-4655-9b63-9ca5a439e2f3', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482453000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('de071bd9-0af8-11ec-a2b0-0242ac130003', '5ec5c9a7-04c0-4655-9b63-9ca5a439e2f3', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482453000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('de202758-0af8-11ec-a2b0-0242ac130003', '74ff225f-2a79-4221-9b32-c6eb9bcadd61', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482453000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('de202961-0af8-11ec-a2b0-0242ac130003', '74ff225f-2a79-4221-9b32-c6eb9bcadd61', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482453000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('de42f5ec-0af8-11ec-a2b0-0242ac130003', 'f17dc7f3-c97a-41b4-a2f4-1a04a857ae8a', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482453000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('de42f8b4-0af8-11ec-a2b0-0242ac130003', 'f17dc7f3-c97a-41b4-a2f4-1a04a857ae8a', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482453000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('de65f6d9-0af8-11ec-a2b0-0242ac130003', 'd400c00f-9c18-4eb6-a70f-9c8caf8dddfe', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482454000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('de65fa72-0af8-11ec-a2b0-0242ac130003', 'd400c00f-9c18-4eb6-a70f-9c8caf8dddfe', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482454000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('de80ddc9-0af8-11ec-a2b0-0242ac130003', 'd3d558e5-b0b1-4475-bb69-f20fa5c47f4f', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482454000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('de80e001-0af8-11ec-a2b0-0242ac130003', 'd3d558e5-b0b1-4475-bb69-f20fa5c47f4f', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482454000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('de9f30cd-0af8-11ec-a2b0-0242ac130003', '5e0a9ad5-81ed-4f83-91f6-a74be724bda7', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482454000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('de9f32d3-0af8-11ec-a2b0-0242ac130003', '5e0a9ad5-81ed-4f83-91f6-a74be724bda7', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482454000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('dec15e1b-0af8-11ec-a2b0-0242ac130003', '88c778e6-ede3-4397-af4c-375e1feac8ef', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482454000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('dec16031-0af8-11ec-a2b0-0242ac130003', '88c778e6-ede3-4397-af4c-375e1feac8ef', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482454000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('e2b029b9-0af8-11ec-a2b0-0242ac130003', 'a6837d68-80a6-4a26-a7c0-e84001dfc817', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482461000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('e2b02bcb-0af8-11ec-a2b0-0242ac130003', 'a6837d68-80a6-4a26-a7c0-e84001dfc817', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482461000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('e2c9aba7-0af8-11ec-a2b0-0242ac130003', '359771bb-95b8-40ad-a6c5-b5c39c93cb10', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482461000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('e2c9adc8-0af8-11ec-a2b0-0242ac130003', '359771bb-95b8-40ad-a6c5-b5c39c93cb10', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482461000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('e39cb3fe-0af8-11ec-a2b0-0242ac130003', '60b3644b-2493-4805-8204-90880cfac9c6', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482462000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('e39cb619-0af8-11ec-a2b0-0242ac130003', '60b3644b-2493-4805-8204-90880cfac9c6', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482462000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('e49bef48-0af8-11ec-a2b0-0242ac130003', '00590a7c-8e7b-45f4-8428-55532be07602', 'i18n_auth_grant', 15, 0,
'grant', '基础权限-授权', 'admin', 1630482464000, NULL, NULL, NULL);
INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
- `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`,
- `copy_from`, `copy_id`)
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
VALUES ('e49bf17e-0af8-11ec-a2b0-0242ac130003', '00590a7c-8e7b-45f4-8428-55532be07602', 'i18n_auth_use', 1, 1, 'use',
'基础权限-使用', 'admin', 1630482464000, NULL, NULL, NULL);
+INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
+VALUES ('ff6c996a-8be8-11ed-bd88-0242ac130004', '0d89fc57-8ecf-444f-aec2-868a6fec7e73', 'i18n_auth_grant', 15, 0,
+ 'grant', '基础权限-授权', 'admin', 1672806835000, NULL, NULL, NULL);
+INSERT INTO `sys_auth_detail` (`id`, `auth_id`, `privilege_name`, `privilege_type`, `privilege_value`,
+ `privilege_extend`, `remark`, `create_user`, `create_time`, `update_time`, `copy_from`,
+ `copy_id`)
+VALUES ('ff6c9ec3-8be8-11ed-bd88-0242ac130004', '0d89fc57-8ecf-444f-aec2-868a6fec7e73', 'i18n_auth_use', 1, 1, 'use',
+ '基础权限-使用', 'admin', 1672806835000, NULL, NULL, NULL);
UPDATE `sys_menu`
SET `permission` = 'app-template:read'
-WHERE `menu_id` = 41;
+WHERE `menu_id` = 45;
UPDATE `sys_menu`
SET `permission` = 'app-template-market:read'
WHERE `menu_id` = 203;
From 2922f7ce6cfed57e8d71009b9d317bd36d20dbd0 Mon Sep 17 00:00:00 2001
From: wangjiahao <1522128093@qq.com>
Date: Wed, 4 Jan 2023 14:27:28 +0800
Subject: [PATCH 8/8] =?UTF-8?q?fix(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20?=
=?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=A4=96=E9=83=A8=E8=BF=87=E6=BB=A4=E5=90=8E?=
=?UTF-8?q?=E5=88=87=E6=8D=A2Tab=E5=8F=AF=E8=83=BD=E5=AF=BC=E8=87=B4Tab?=
=?UTF-8?q?=E5=86=85=E8=A1=A8=E6=A0=BC=E4=B8=8D=E6=98=BE=E7=A4=BA=E6=95=B0?=
=?UTF-8?q?=E6=8D=AE=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
frontend/src/components/canvas/customComponent/UserView.vue | 6 ++++++
frontend/src/components/widget/deWidget/DeTabs.vue | 1 +
2 files changed, 7 insertions(+)
diff --git a/frontend/src/components/canvas/customComponent/UserView.vue b/frontend/src/components/canvas/customComponent/UserView.vue
index d1e4c9bf22..0bf9ca6ce9 100644
--- a/frontend/src/components/canvas/customComponent/UserView.vue
+++ b/frontend/src/components/canvas/customComponent/UserView.vue
@@ -545,6 +545,7 @@ export default {
}
},
mounted() {
+ bus.$on('tab-canvas-change', this.tabSwitch)
this.bindPluginEvent()
},
@@ -569,6 +570,11 @@ export default {
}
},
methods: {
+ tabSwitch(tabCanvasId) {
+ if (this.charViewS2ShowFlag && tabCanvasId === this.canvasId && this.$refs[this.element.propValue.id]) {
+ this.$refs[this.element.propValue.id].chartResize()
+ }
+ },
//编辑状态下 不启动刷新
buildInnerRefreshTimer(refreshViewEnable = false, refreshUnit = 'minute', refreshTime = 5) {
if (this.editMode === 'preview' && !this.innerRefreshTimer && refreshViewEnable) {
diff --git a/frontend/src/components/widget/deWidget/DeTabs.vue b/frontend/src/components/widget/deWidget/DeTabs.vue
index 23c51cb41c..3703d146b2 100644
--- a/frontend/src/components/widget/deWidget/DeTabs.vue
+++ b/frontend/src/components/widget/deWidget/DeTabs.vue
@@ -415,6 +415,7 @@ export default {
// ignore
}
})
+ bus.$emit('tab-canvas-change', this.activeCanvasId)
}
},
active: {