From 6880fc0c1987744011f6ea8f54044ebe5c52bcdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=9B=9B=E5=8F=B6=E8=8D=89?= <362692680@qq.com> Date: Thu, 24 Mar 2022 09:45:27 +0000 Subject: [PATCH 001/111] =?UTF-8?q?update=20yudao-ui-admin/src/views/bpm/m?= =?UTF-8?q?odel/modelEditor.vue.=20=E9=BB=98=E8=AE=A4=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E5=BC=95=E6=93=8Eflowable?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- yudao-ui-admin/src/views/bpm/model/modelEditor.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yudao-ui-admin/src/views/bpm/model/modelEditor.vue b/yudao-ui-admin/src/views/bpm/model/modelEditor.vue index f6b8183ff..19413d040 100644 --- a/yudao-ui-admin/src/views/bpm/model/modelEditor.vue +++ b/yudao-ui-admin/src/views/bpm/model/modelEditor.vue @@ -39,7 +39,7 @@ export default { simulation: true, labelEditing: false, labelVisible: false, - prefix: "activiti", + prefix: "flowable", headerButtonSize: "mini", additionalModel: [CustomContentPadProvider, CustomPaletteProvider] }, From 3cd135850ec0f6d5d43027870de03a2b191388e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E8=B4=9E?= Date: Wed, 30 Mar 2022 17:21:24 +0800 Subject: [PATCH 002/111] =?UTF-8?q?=E6=96=B0=E5=BB=BA=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E5=85=B3=E8=81=94=E8=A1=A8=E7=BB=B4=E6=8A=A4=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E5=B2=97=E4=BD=8D=E5=85=B3=E7=B3=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/ruoyi-vue-pro.sql | 19 ++++++ .../dal/dataobject/dept/UserPostDO.java | 35 +++++++++++ .../system/dal/mysql/dept/UserPostMapper.java | 10 ++++ .../dal/mysql/user/AdminUserMapper.java | 3 + .../system/service/dept/UserPostService.java | 16 +++++ .../service/dept/UserPostServiceImpl.java | 19 ++++++ .../service/user/AdminUserServiceImpl.java | 58 +++++++++++++++++-- 7 files changed, 154 insertions(+), 6 deletions(-) create mode 100644 yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/dept/UserPostDO.java create mode 100644 yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/dept/UserPostMapper.java create mode 100644 yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/dept/UserPostService.java create mode 100644 yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/dept/UserPostServiceImpl.java diff --git a/sql/ruoyi-vue-pro.sql b/sql/ruoyi-vue-pro.sql index 96183a703..cee359d62 100644 --- a/sql/ruoyi-vue-pro.sql +++ b/sql/ruoyi-vue-pro.sql @@ -2414,6 +2414,25 @@ CREATE TABLE `pay_refund` ( BEGIN; COMMIT; + +-- ---------------------------- +-- Table structure for system_user_post +-- ---------------------------- +DROP TABLE IF EXISTS `system_user_post`; +CREATE TABLE `system_user_post` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT 'id', + `user_id` bigint NOT NULL DEFAULT '0' COMMENT '用户ID', + `post_id` bigint NOT NULL DEFAULT '0' COMMENT '岗位ID', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', + `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + PRIMARY KEY (`id`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=112 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='部门表'; + + -- ---------------------------- -- Table structure for system_dept -- ---------------------------- diff --git a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/dept/UserPostDO.java b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/dept/UserPostDO.java new file mode 100644 index 000000000..02401977e --- /dev/null +++ b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/dept/UserPostDO.java @@ -0,0 +1,35 @@ +package cn.iocoder.yudao.module.system.dal.dataobject.dept; + +import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO; +import com.baomidou.mybatisplus.annotation.DbType; +import com.baomidou.mybatisplus.annotation.KeySequence; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; +import lombok.EqualsAndHashCode; + +/** + * 用户和岗位关联 + * + * @author ruoyi + */ +@TableName("system_user_post") +@Data +@EqualsAndHashCode(callSuper = true) +public class UserPostDO extends BaseDO { + + /** + * 自增主键 + */ + @TableId + private Long id; + /** + * 用户 ID + */ + private Long userId; + /** + * 角色 ID + */ + private Long postId; + +} diff --git a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/dept/UserPostMapper.java b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/dept/UserPostMapper.java new file mode 100644 index 000000000..0e9345a86 --- /dev/null +++ b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/dept/UserPostMapper.java @@ -0,0 +1,10 @@ +package cn.iocoder.yudao.module.system.dal.mysql.dept; + +import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX; +import cn.iocoder.yudao.module.system.dal.dataobject.dept.UserPostDO; +import org.apache.ibatis.annotations.Mapper; + +@Mapper +public interface UserPostMapper extends BaseMapperX { + +} diff --git a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/user/AdminUserMapper.java b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/user/AdminUserMapper.java index be4b5ea21..68acb7dcd 100644 --- a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/user/AdminUserMapper.java +++ b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/user/AdminUserMapper.java @@ -61,5 +61,8 @@ public interface AdminUserMapper extends BaseMapperX { return selectList(AdminUserDO::getDeptId, deptIds); } + default List selectListByIds(List userIdList) { + return selectList(new LambdaQueryWrapperX().in(AdminUserDO::getId, userIdList)); + } } diff --git a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/dept/UserPostService.java b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/dept/UserPostService.java new file mode 100644 index 000000000..4299c5cbe --- /dev/null +++ b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/dept/UserPostService.java @@ -0,0 +1,16 @@ +package cn.iocoder.yudao.module.system.service.dept; + +import cn.iocoder.yudao.module.system.dal.dataobject.dept.UserPostDO; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 工作流的表单定义 Mapper 接口 + *

+ * + * @author anzhen + * @since 2022-03-03 + */ +public interface UserPostService extends IService { + +} diff --git a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/dept/UserPostServiceImpl.java b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/dept/UserPostServiceImpl.java new file mode 100644 index 000000000..5be2e17d0 --- /dev/null +++ b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/dept/UserPostServiceImpl.java @@ -0,0 +1,19 @@ +package cn.iocoder.yudao.module.system.service.dept; + +import cn.iocoder.yudao.module.system.dal.dataobject.dept.UserPostDO; +import cn.iocoder.yudao.module.system.dal.mysql.dept.UserPostMapper; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 工作流的表单定义 Mapper 接口 + *

+ * + * @author anzhen + * @since 2022-03-03 + */ +@Service +public class UserPostServiceImpl extends ServiceImpl implements UserPostService { + +} diff --git a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java index 32f0a8e8c..6457e84e8 100644 --- a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java +++ b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java @@ -13,12 +13,15 @@ import cn.iocoder.yudao.module.system.controller.admin.user.vo.profile.UserProfi import cn.iocoder.yudao.module.system.controller.admin.user.vo.user.*; import cn.iocoder.yudao.module.system.convert.user.UserConvert; import cn.iocoder.yudao.module.system.dal.dataobject.dept.DeptDO; +import cn.iocoder.yudao.module.system.dal.dataobject.dept.UserPostDO; import cn.iocoder.yudao.module.system.dal.dataobject.user.AdminUserDO; import cn.iocoder.yudao.module.system.dal.mysql.user.AdminUserMapper; import cn.iocoder.yudao.module.system.service.dept.DeptService; import cn.iocoder.yudao.module.system.service.dept.PostService; +import cn.iocoder.yudao.module.system.service.dept.UserPostService; import cn.iocoder.yudao.module.system.service.permission.PermissionService; import cn.iocoder.yudao.module.system.service.tenant.TenantService; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; import com.google.common.annotations.VisibleForTesting; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Value; @@ -29,6 +32,7 @@ import org.springframework.transaction.annotation.Transactional; import javax.annotation.Resource; import java.io.InputStream; import java.util.*; +import java.util.stream.Collectors; import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception; import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.*; @@ -59,11 +63,14 @@ public class AdminUserServiceImpl implements AdminUserService { @Resource private TenantService tenantService; + @Resource + private UserPostService userPostService; + @Resource private FileApi fileApi; @Override - + @Transactional(rollbackFor = Exception.class) public Long createUser(UserCreateReqVO reqVO) { // 校验账户配合 tenantService.handleTenantInfo(tenant -> { @@ -80,10 +87,22 @@ public class AdminUserServiceImpl implements AdminUserService { user.setStatus(CommonStatusEnum.ENABLE.getStatus()); // 默认开启 user.setPassword(passwordEncoder.encode(reqVO.getPassword())); // 加密密码 userMapper.insert(user); + Set postIds = user.getPostIds(); + if (!org.springframework.util.CollectionUtils.isEmpty(postIds)) { + ArrayList userPostList = new ArrayList<>(); + for (Long postId : postIds) { + UserPostDO entity = new UserPostDO(); + entity.setUserId(entity.getUserId()); + entity.setPostId(postId); + userPostList.add(entity); + } + userPostService.saveBatch(userPostList); + } return user.getId(); } @Override + @Transactional(rollbackFor = Exception.class) public void updateUser(UserUpdateReqVO reqVO) { // 校验正确性 this.checkCreateOrUpdate(reqVO.getId(), reqVO.getUsername(), reqVO.getMobile(), reqVO.getEmail(), @@ -91,6 +110,19 @@ public class AdminUserServiceImpl implements AdminUserService { // 更新用户 AdminUserDO updateObj = UserConvert.INSTANCE.convert(reqVO); userMapper.updateById(updateObj); + Set postIds = updateObj.getPostIds(); + if (!org.springframework.util.CollectionUtils.isEmpty(postIds)) { + for (Long postId : postIds) { + UserPostDO entity = new UserPostDO(); + entity.setUserId(reqVO.getId()); + entity.setPostId(postId); + userPostService.saveOrUpdate(entity, + Wrappers.lambdaUpdate(UserPostDO.class) + .eq(UserPostDO::getUserId, entity.getUserId()) + .eq(UserPostDO::getPostId, entity.getPostId()) + ); + } + } } @Override @@ -154,6 +186,7 @@ public class AdminUserServiceImpl implements AdminUserService { } @Override + @Transactional(rollbackFor = Exception.class) public void deleteUser(Long id) { // 校验用户存在 this.checkUserExists(id); @@ -161,6 +194,8 @@ public class AdminUserServiceImpl implements AdminUserService { userMapper.deleteById(id); // 删除用户关联数据 permissionService.processUserDeleted(id); + + userPostService.remove(Wrappers.lambdaUpdate(UserPostDO.class).eq(UserPostDO::getUserId, id)); } @Override @@ -191,11 +226,22 @@ public class AdminUserServiceImpl implements AdminUserService { if (CollUtil.isEmpty(postIds)) { return Collections.emptyList(); } - // 过滤不符合条件的 - // TODO 芋艿:暂时只能内存过滤。解决方案:1、新建一个关联表;2、基于 where + 函数;3、json 字段,适合 mysql 8+ 版本 - List users = userMapper.selectList(); - users.removeIf(user -> !CollUtil.containsAny(user.getPostIds(), postIds)); - return users; + List userIdList = userPostService + .lambdaQuery() + .in(UserPostDO::getPostId, postIds) + .list() + .stream() + .map(UserPostDO::getUserId) + .distinct() + .collect(Collectors.toList()); + if (userIdList.isEmpty()) { + return Collections.emptyList(); + } + return userMapper + .selectListByIds(userIdList) + .stream() + .peek(user -> user.setPassword(null)) + .collect(Collectors.toList()); } @Override From 5fc1101900cf929d1dde909254ac469610126db7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E8=B4=9E?= Date: Thu, 31 Mar 2022 09:11:02 +0800 Subject: [PATCH 003/111] =?UTF-8?q?1=E3=80=81=E5=85=B3=E8=81=94=E8=A1=A8?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E9=A2=9D=E5=A4=96=E7=9A=84service=E3=80=82?= =?UTF-8?q?=202=E3=80=81service=E4=B8=AD=E5=88=A0=E9=99=A4mybatis=20plus?= =?UTF-8?q?=20=E7=9A=84=E6=93=8D=E4=BD=9C=EF=BC=8C=E6=8A=80=E6=9C=AF?= =?UTF-8?q?=E5=92=8C=E4=B8=9A=E5=8A=A1=E8=A7=A3=E8=80=A6=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/dal/mysql/dept/UserPostMapper.java | 43 ++++++++++ .../system/service/dept/UserPostService.java | 16 ---- .../service/dept/UserPostServiceImpl.java | 19 ---- .../service/user/AdminUserServiceImpl.java | 86 +++++++++++-------- .../src/test/resources/sql/clean.sql | 1 + .../src/test/resources/sql/create_tables.sql | 14 +++ 6 files changed, 107 insertions(+), 72 deletions(-) delete mode 100644 yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/dept/UserPostService.java delete mode 100644 yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/dept/UserPostServiceImpl.java diff --git a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/dept/UserPostMapper.java b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/dept/UserPostMapper.java index 0e9345a86..a5f1fce84 100644 --- a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/dept/UserPostMapper.java +++ b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/dept/UserPostMapper.java @@ -1,10 +1,53 @@ package cn.iocoder.yudao.module.system.dal.mysql.dept; import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX; +import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX; import cn.iocoder.yudao.module.system.dal.dataobject.dept.UserPostDO; import org.apache.ibatis.annotations.Mapper; +import java.util.Collection; +import java.util.List; +import java.util.stream.Collectors; + @Mapper public interface UserPostMapper extends BaseMapperX { + default List selectIdList(Long id) { + return selectList(new LambdaQueryWrapperX() + .eq(UserPostDO::getUserId, id) + .select(UserPostDO::getPostId) + ) + .stream() + .map(UserPostDO::getPostId) + .collect(Collectors.toList()); + + } + + default void insertList(Long userId, Collection createPostIds) { + List list = createPostIds + .stream() + .map(postId -> { + UserPostDO entity = new UserPostDO(); + entity.setUserId(userId); + entity.setPostId(postId); + return entity; + }) + .collect(Collectors.toList()); + insertBatch(list); + } + + default void deleteByUserAndPost(Long userId, Collection deletePostIds) { + delete(new LambdaQueryWrapperX() + .eq(UserPostDO::getUserId, userId) + .in(UserPostDO::getPostId, deletePostIds)); + } + + default List getUserIdByPostIds(Collection postIds) { + return selectList(new LambdaQueryWrapperX() + .in(UserPostDO::getPostId, postIds)) + .stream() + .map(UserPostDO::getUserId) + .distinct() + .collect(Collectors.toList()); + } } diff --git a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/dept/UserPostService.java b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/dept/UserPostService.java deleted file mode 100644 index 4299c5cbe..000000000 --- a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/dept/UserPostService.java +++ /dev/null @@ -1,16 +0,0 @@ -package cn.iocoder.yudao.module.system.service.dept; - -import cn.iocoder.yudao.module.system.dal.dataobject.dept.UserPostDO; -import com.baomidou.mybatisplus.extension.service.IService; - -/** - *

- * 工作流的表单定义 Mapper 接口 - *

- * - * @author anzhen - * @since 2022-03-03 - */ -public interface UserPostService extends IService { - -} diff --git a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/dept/UserPostServiceImpl.java b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/dept/UserPostServiceImpl.java deleted file mode 100644 index 5be2e17d0..000000000 --- a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/dept/UserPostServiceImpl.java +++ /dev/null @@ -1,19 +0,0 @@ -package cn.iocoder.yudao.module.system.service.dept; - -import cn.iocoder.yudao.module.system.dal.dataobject.dept.UserPostDO; -import cn.iocoder.yudao.module.system.dal.mysql.dept.UserPostMapper; -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import org.springframework.stereotype.Service; - -/** - *

- * 工作流的表单定义 Mapper 接口 - *

- * - * @author anzhen - * @since 2022-03-03 - */ -@Service -public class UserPostServiceImpl extends ServiceImpl implements UserPostService { - -} diff --git a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java index 6457e84e8..29b842676 100644 --- a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java +++ b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java @@ -1,6 +1,7 @@ package cn.iocoder.yudao.module.system.service.user; import cn.hutool.core.collection.CollUtil; +import cn.hutool.core.collection.CollectionUtil; import cn.hutool.core.io.IoUtil; import cn.hutool.core.util.StrUtil; import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum; @@ -10,15 +11,20 @@ import cn.iocoder.yudao.framework.common.util.collection.CollectionUtils; import cn.iocoder.yudao.module.infra.api.file.FileApi; import cn.iocoder.yudao.module.system.controller.admin.user.vo.profile.UserProfileUpdatePasswordReqVO; import cn.iocoder.yudao.module.system.controller.admin.user.vo.profile.UserProfileUpdateReqVO; -import cn.iocoder.yudao.module.system.controller.admin.user.vo.user.*; +import cn.iocoder.yudao.module.system.controller.admin.user.vo.user.UserCreateReqVO; +import cn.iocoder.yudao.module.system.controller.admin.user.vo.user.UserExportReqVO; +import cn.iocoder.yudao.module.system.controller.admin.user.vo.user.UserImportExcelVO; +import cn.iocoder.yudao.module.system.controller.admin.user.vo.user.UserImportRespVO; +import cn.iocoder.yudao.module.system.controller.admin.user.vo.user.UserPageReqVO; +import cn.iocoder.yudao.module.system.controller.admin.user.vo.user.UserUpdateReqVO; import cn.iocoder.yudao.module.system.convert.user.UserConvert; import cn.iocoder.yudao.module.system.dal.dataobject.dept.DeptDO; import cn.iocoder.yudao.module.system.dal.dataobject.dept.UserPostDO; import cn.iocoder.yudao.module.system.dal.dataobject.user.AdminUserDO; +import cn.iocoder.yudao.module.system.dal.mysql.dept.UserPostMapper; import cn.iocoder.yudao.module.system.dal.mysql.user.AdminUserMapper; import cn.iocoder.yudao.module.system.service.dept.DeptService; import cn.iocoder.yudao.module.system.service.dept.PostService; -import cn.iocoder.yudao.module.system.service.dept.UserPostService; import cn.iocoder.yudao.module.system.service.permission.PermissionService; import cn.iocoder.yudao.module.system.service.tenant.TenantService; import com.baomidou.mybatisplus.core.toolkit.Wrappers; @@ -31,15 +37,28 @@ import org.springframework.transaction.annotation.Transactional; import javax.annotation.Resource; import java.io.InputStream; -import java.util.*; +import java.util.ArrayList; +import java.util.Collection; +import java.util.Collections; +import java.util.Date; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; +import java.util.Set; import java.util.stream.Collectors; import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception; -import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.*; +import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.USER_COUNT_MAX; +import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.USER_EMAIL_EXISTS; +import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.USER_IMPORT_LIST_IS_EMPTY; +import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.USER_IS_DISABLE; +import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.USER_MOBILE_EXISTS; +import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.USER_NOT_EXISTS; +import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.USER_PASSWORD_FAILED; +import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.USER_USERNAME_EXISTS; /** * 后台用户 Service 实现类 - * * @author 芋道源码 */ @Service("adminUserService") @@ -64,7 +83,7 @@ public class AdminUserServiceImpl implements AdminUserService { private TenantService tenantService; @Resource - private UserPostService userPostService; + private UserPostMapper userPostMapper; @Resource private FileApi fileApi; @@ -81,7 +100,7 @@ public class AdminUserServiceImpl implements AdminUserService { }); // 校验正确性 this.checkCreateOrUpdate(null, reqVO.getUsername(), reqVO.getMobile(), reqVO.getEmail(), - reqVO.getDeptId(), reqVO.getPostIds()); + reqVO.getDeptId(), reqVO.getPostIds()); // 插入用户 AdminUserDO user = UserConvert.INSTANCE.convert(reqVO); user.setStatus(CommonStatusEnum.ENABLE.getStatus()); // 默认开启 @@ -89,14 +108,14 @@ public class AdminUserServiceImpl implements AdminUserService { userMapper.insert(user); Set postIds = user.getPostIds(); if (!org.springframework.util.CollectionUtils.isEmpty(postIds)) { - ArrayList userPostList = new ArrayList<>(); + List userPostList = new ArrayList<>(); for (Long postId : postIds) { UserPostDO entity = new UserPostDO(); entity.setUserId(entity.getUserId()); entity.setPostId(postId); userPostList.add(entity); } - userPostService.saveBatch(userPostList); + userPostMapper.insertBatch(userPostList); } return user.getId(); } @@ -106,23 +125,25 @@ public class AdminUserServiceImpl implements AdminUserService { public void updateUser(UserUpdateReqVO reqVO) { // 校验正确性 this.checkCreateOrUpdate(reqVO.getId(), reqVO.getUsername(), reqVO.getMobile(), reqVO.getEmail(), - reqVO.getDeptId(), reqVO.getPostIds()); + reqVO.getDeptId(), reqVO.getPostIds()); // 更新用户 AdminUserDO updateObj = UserConvert.INSTANCE.convert(reqVO); userMapper.updateById(updateObj); + // 更新岗位 Set postIds = updateObj.getPostIds(); - if (!org.springframework.util.CollectionUtils.isEmpty(postIds)) { - for (Long postId : postIds) { - UserPostDO entity = new UserPostDO(); - entity.setUserId(reqVO.getId()); - entity.setPostId(postId); - userPostService.saveOrUpdate(entity, - Wrappers.lambdaUpdate(UserPostDO.class) - .eq(UserPostDO::getUserId, entity.getUserId()) - .eq(UserPostDO::getPostId, entity.getPostId()) - ); - } + Long userId = reqVO.getId(); + List dbPostIds = userPostMapper.selectIdList(userId); + // 计算新增和删除的岗位编号 + Collection createPostIds = CollUtil.subtract(postIds, dbPostIds); + Collection deletePostIds = CollUtil.subtract(dbPostIds, postIds); + // 执行新增和删除。对于已经授权的菜单,不用做任何处理 + if (!CollectionUtil.isEmpty(createPostIds)) { + userPostMapper.insertList(userId, createPostIds); } + if (!CollectionUtil.isEmpty(deletePostIds)) { + userPostMapper.deleteByUserAndPost(userId, deletePostIds); + } + } @Override @@ -194,8 +215,8 @@ public class AdminUserServiceImpl implements AdminUserService { userMapper.deleteById(id); // 删除用户关联数据 permissionService.processUserDeleted(id); - - userPostService.remove(Wrappers.lambdaUpdate(UserPostDO.class).eq(UserPostDO::getUserId, id)); + // 删除用户岗位 + userPostMapper.delete(Wrappers.lambdaUpdate(UserPostDO.class).eq(UserPostDO::getUserId, id)); } @Override @@ -226,14 +247,7 @@ public class AdminUserServiceImpl implements AdminUserService { if (CollUtil.isEmpty(postIds)) { return Collections.emptyList(); } - List userIdList = userPostService - .lambdaQuery() - .in(UserPostDO::getPostId, postIds) - .list() - .stream() - .map(UserPostDO::getUserId) - .distinct() - .collect(Collectors.toList()); + List userIdList = userPostMapper.getUserIdByPostIds(postIds); if (userIdList.isEmpty()) { return Collections.emptyList(); } @@ -289,7 +303,6 @@ public class AdminUserServiceImpl implements AdminUserService { /** * 获得部门条件:查询指定部门的子部门编号们,包括自身 - * * @param deptId 部门编号 * @return 部门编号集合 */ @@ -298,7 +311,7 @@ public class AdminUserServiceImpl implements AdminUserService { return Collections.emptySet(); } Set deptIds = CollectionUtils.convertSet(deptService.getDeptsByParentIdFromCache( - deptId, true), DeptDO::getId); + deptId, true), DeptDO::getId); deptIds.add(deptId); // 包括自身 return deptIds; } @@ -386,7 +399,6 @@ public class AdminUserServiceImpl implements AdminUserService { /** * 校验旧密码 - * * @param id 用户 id * @param oldPassword 旧密码 */ @@ -408,12 +420,12 @@ public class AdminUserServiceImpl implements AdminUserService { throw exception(USER_IMPORT_LIST_IS_EMPTY); } UserImportRespVO respVO = UserImportRespVO.builder().createUsernames(new ArrayList<>()) - .updateUsernames(new ArrayList<>()).failureUsernames(new LinkedHashMap<>()).build(); + .updateUsernames(new ArrayList<>()).failureUsernames(new LinkedHashMap<>()).build(); importUsers.forEach(importUser -> { // 校验,判断是否有不符合的原因 try { checkCreateOrUpdate(null, null, importUser.getMobile(), importUser.getEmail(), - importUser.getDeptId(), null); + importUser.getDeptId(), null); } catch (ServiceException ex) { respVO.getFailureUsernames().put(importUser.getUsername(), ex.getMessage()); return; @@ -422,7 +434,7 @@ public class AdminUserServiceImpl implements AdminUserService { AdminUserDO existUser = userMapper.selectByUsername(importUser.getUsername()); if (existUser == null) { userMapper.insert(UserConvert.INSTANCE.convert(importUser) - .setPassword(passwordEncoder.encode(userInitPassword))); // 设置默认密码 + .setPassword(passwordEncoder.encode(userInitPassword))); // 设置默认密码 respVO.getCreateUsernames().add(importUser.getUsername()); return; } diff --git a/yudao-module-system/yudao-module-system-impl/src/test/resources/sql/clean.sql b/yudao-module-system/yudao-module-system-impl/src/test/resources/sql/clean.sql index c709513b1..23e8cda25 100644 --- a/yudao-module-system/yudao-module-system-impl/src/test/resources/sql/clean.sql +++ b/yudao-module-system/yudao-module-system-impl/src/test/resources/sql/clean.sql @@ -4,6 +4,7 @@ DELETE FROM "system_role"; DELETE FROM "system_role_menu"; DELETE FROM "system_menu"; DELETE FROM "system_user_role"; +DELETE FROM "system_user_post"; DELETE FROM "system_dict_type"; DELETE FROM "system_user_session"; DELETE FROM "system_post"; diff --git a/yudao-module-system/yudao-module-system-impl/src/test/resources/sql/create_tables.sql b/yudao-module-system/yudao-module-system-impl/src/test/resources/sql/create_tables.sql index 5db3692e5..cef6b1424 100644 --- a/yudao-module-system/yudao-module-system-impl/src/test/resources/sql/create_tables.sql +++ b/yudao-module-system/yudao-module-system-impl/src/test/resources/sql/create_tables.sql @@ -145,6 +145,20 @@ CREATE TABLE IF NOT EXISTS "system_post" ( PRIMARY KEY ("id") ) COMMENT '岗位信息表'; +CREATE TABLE IF NOT EXISTS `system_user_post`( + "id" bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY, + "user_id" bigint DEFAULT NULL, + "post_id" bigint DEFAULT NULL, + "creator" varchar(64) DEFAULT '', + "create_time" timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + "updater" varchar(64) DEFAULT '', + "update_time" timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + "deleted" bit NOT NULL DEFAULT FALSE, + "tenant_id" bigint not null default '0', + PRIMARY KEY (`id`) +) COMMENT ='部门表'; + + CREATE TABLE IF NOT EXISTS "system_notice" ( "id" bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY, "title" varchar(50) NOT NULL COMMENT '公告标题', From 78c132e68dd823bf059ae0fbe817eedeb22f619d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E8=B4=9E?= Date: Thu, 31 Mar 2022 13:18:37 +0800 Subject: [PATCH 004/111] fix user id is null --- .../yudao/module/system/service/user/AdminUserServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java index 29b842676..e651b1513 100644 --- a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java +++ b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java @@ -111,7 +111,7 @@ public class AdminUserServiceImpl implements AdminUserService { List userPostList = new ArrayList<>(); for (Long postId : postIds) { UserPostDO entity = new UserPostDO(); - entity.setUserId(entity.getUserId()); + entity.setUserId(user.getId()); entity.setPostId(postId); userPostList.add(entity); } From 47447ded6b771894ab0e9e8c2ad4e4be248b0547 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E8=B4=9E?= Date: Wed, 6 Apr 2022 13:58:08 +0800 Subject: [PATCH 005/111] =?UTF-8?q?code=20review=20=E7=BC=96=E7=A0=81?= =?UTF-8?q?=E8=A7=84=E8=8C=83=E7=BB=9F=E4=B8=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/dal/mysql/dept/UserPostMapper.java | 37 ++++---------- .../dal/mysql/user/AdminUserMapper.java | 3 -- .../service/user/AdminUserServiceImpl.java | 51 +++++++++++++------ 3 files changed, 45 insertions(+), 46 deletions(-) diff --git a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/dept/UserPostMapper.java b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/dept/UserPostMapper.java index a5f1fce84..f91ce2ef6 100644 --- a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/dept/UserPostMapper.java +++ b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/dept/UserPostMapper.java @@ -3,51 +3,34 @@ package cn.iocoder.yudao.module.system.dal.mysql.dept; import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX; import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX; import cn.iocoder.yudao.module.system.dal.dataobject.dept.UserPostDO; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; import org.apache.ibatis.annotations.Mapper; import java.util.Collection; import java.util.List; -import java.util.stream.Collectors; @Mapper public interface UserPostMapper extends BaseMapperX { - default List selectIdList(Long id) { + default List selectIdList(Long id) { return selectList(new LambdaQueryWrapperX() .eq(UserPostDO::getUserId, id) - .select(UserPostDO::getPostId) - ) - .stream() - .map(UserPostDO::getPostId) - .collect(Collectors.toList()); + .select(UserPostDO::getPostId)); } - default void insertList(Long userId, Collection createPostIds) { - List list = createPostIds - .stream() - .map(postId -> { - UserPostDO entity = new UserPostDO(); - entity.setUserId(userId); - entity.setPostId(postId); - return entity; - }) - .collect(Collectors.toList()); - insertBatch(list); - } - - default void deleteByUserAndPost(Long userId, Collection deletePostIds) { + default void deleteByUserIdAndPostId(Long userId, Collection deletePostIds) { delete(new LambdaQueryWrapperX() .eq(UserPostDO::getUserId, userId) .in(UserPostDO::getPostId, deletePostIds)); } - default List getUserIdByPostIds(Collection postIds) { + default List selectUserIdByPostIds(Collection postIds) { return selectList(new LambdaQueryWrapperX() - .in(UserPostDO::getPostId, postIds)) - .stream() - .map(UserPostDO::getUserId) - .distinct() - .collect(Collectors.toList()); + .in(UserPostDO::getPostId, postIds)); + } + + default void deleteByUserId(Long userId){ + delete(Wrappers.lambdaUpdate(UserPostDO.class).eq(UserPostDO::getUserId, userId)); } } diff --git a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/user/AdminUserMapper.java b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/user/AdminUserMapper.java index 68acb7dcd..be4b5ea21 100644 --- a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/user/AdminUserMapper.java +++ b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/user/AdminUserMapper.java @@ -61,8 +61,5 @@ public interface AdminUserMapper extends BaseMapperX { return selectList(AdminUserDO::getDeptId, deptIds); } - default List selectListByIds(List userIdList) { - return selectList(new LambdaQueryWrapperX().in(AdminUserDO::getId, userIdList)); - } } diff --git a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java index e651b1513..5be5ff16f 100644 --- a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java +++ b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java @@ -107,15 +107,14 @@ public class AdminUserServiceImpl implements AdminUserService { user.setPassword(passwordEncoder.encode(reqVO.getPassword())); // 加密密码 userMapper.insert(user); Set postIds = user.getPostIds(); - if (!org.springframework.util.CollectionUtils.isEmpty(postIds)) { - List userPostList = new ArrayList<>(); - for (Long postId : postIds) { + if (CollectionUtil.isNotEmpty(postIds)) { + List insertUserPostList = CollectionUtils.convertList(postIds, postId -> { UserPostDO entity = new UserPostDO(); entity.setUserId(user.getId()); entity.setPostId(postId); - userPostList.add(entity); - } - userPostMapper.insertBatch(userPostList); + return entity; + }); + userPostMapper.insertBatch(insertUserPostList); } return user.getId(); } @@ -130,20 +129,40 @@ public class AdminUserServiceImpl implements AdminUserService { AdminUserDO updateObj = UserConvert.INSTANCE.convert(reqVO); userMapper.updateById(updateObj); // 更新岗位 + updateUserPost(reqVO, updateObj); + + } + + private void updateUserPost(UserUpdateReqVO reqVO, AdminUserDO updateObj) { Set postIds = updateObj.getPostIds(); Long userId = reqVO.getId(); - List dbPostIds = userPostMapper.selectIdList(userId); + List dbPostIds = userPostMapper.selectIdList(userId) + .stream() + .map(UserPostDO::getPostId) + .collect(Collectors.toList()); // 计算新增和删除的岗位编号 Collection createPostIds = CollUtil.subtract(postIds, dbPostIds); Collection deletePostIds = CollUtil.subtract(dbPostIds, postIds); // 执行新增和删除。对于已经授权的菜单,不用做任何处理 if (!CollectionUtil.isEmpty(createPostIds)) { - userPostMapper.insertList(userId, createPostIds); + List list = createUserPost(userId, createPostIds); + userPostMapper.insertBatch(list); } if (!CollectionUtil.isEmpty(deletePostIds)) { - userPostMapper.deleteByUserAndPost(userId, deletePostIds); + userPostMapper.deleteByUserIdAndPostId(userId, deletePostIds); } + } + private List createUserPost(Long userId, Collection createPostIds) { + return createPostIds + .stream() + .map(postId -> { + UserPostDO entity = new UserPostDO(); + entity.setUserId(userId); + entity.setPostId(postId); + return entity; + }) + .collect(Collectors.toList()); } @Override @@ -216,7 +235,7 @@ public class AdminUserServiceImpl implements AdminUserService { // 删除用户关联数据 permissionService.processUserDeleted(id); // 删除用户岗位 - userPostMapper.delete(Wrappers.lambdaUpdate(UserPostDO.class).eq(UserPostDO::getUserId, id)); + userPostMapper.deleteByUserId(id); } @Override @@ -247,15 +266,15 @@ public class AdminUserServiceImpl implements AdminUserService { if (CollUtil.isEmpty(postIds)) { return Collections.emptyList(); } - List userIdList = userPostMapper.getUserIdByPostIds(postIds); + List userIdList = userPostMapper.selectUserIdByPostIds(postIds) + .stream() + .map(UserPostDO::getUserId) + .distinct() + .collect(Collectors.toList());; if (userIdList.isEmpty()) { return Collections.emptyList(); } - return userMapper - .selectListByIds(userIdList) - .stream() - .peek(user -> user.setPassword(null)) - .collect(Collectors.toList()); + return userMapper.selectBatchIds(userIdList); } @Override From 17167c24d17647c0facb070b3cc741a34629ab43 Mon Sep 17 00:00:00 2001 From: anzhen Date: Fri, 15 Apr 2022 15:56:47 +0800 Subject: [PATCH 006/111] =?UTF-8?q?code=20review=20=E7=BC=96=E7=A0=81?= =?UTF-8?q?=E8=A7=84=E8=8C=83=E7=BB=9F=E4=B8=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/ruoyi-vue-pro.sql | 6 ++++-- .../module/system/dal/mysql/dept/UserPostMapper.java | 10 ++++------ .../system/service/user/AdminUserServiceImpl.java | 3 +-- .../src/test/resources/sql/create_tables.sql | 2 +- 4 files changed, 10 insertions(+), 11 deletions(-) diff --git a/sql/ruoyi-vue-pro.sql b/sql/ruoyi-vue-pro.sql index cee359d62..1276115db 100644 --- a/sql/ruoyi-vue-pro.sql +++ b/sql/ruoyi-vue-pro.sql @@ -2430,8 +2430,10 @@ CREATE TABLE `system_user_post` ( `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=112 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='部门表'; - +) ENGINE=InnoDB AUTO_INCREMENT=112 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='用户岗位表'; +insert into system_user_post (user_id, post_id, creator, create_time, updater, update_time, deleted, tenant_id) value (1,1,'admin',current_timestamp,'admin',current_timestamp,false,1); +insert into system_user_post (user_id, post_id, creator, create_time, updater, update_time, deleted, tenant_id) value (100,1,'admin',current_timestamp,'admin',current_timestamp,false,1); +insert into system_user_post (user_id, post_id, creator, create_time, updater, update_time, deleted, tenant_id) value (114,3,'admin',current_timestamp,'admin',current_timestamp,false,1); -- ---------------------------- -- Table structure for system_dept diff --git a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/dept/UserPostMapper.java b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/dept/UserPostMapper.java index f91ce2ef6..cf8112485 100644 --- a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/dept/UserPostMapper.java +++ b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/dept/UserPostMapper.java @@ -14,18 +14,16 @@ public interface UserPostMapper extends BaseMapperX { default List selectIdList(Long id) { return selectList(new LambdaQueryWrapperX() - .eq(UserPostDO::getUserId, id) - .select(UserPostDO::getPostId)); - + .eq(UserPostDO::getUserId, id)); } - default void deleteByUserIdAndPostId(Long userId, Collection deletePostIds) { + default void deleteByUserIdAndPostId(Long userId, Collection postIds) { delete(new LambdaQueryWrapperX() .eq(UserPostDO::getUserId, userId) - .in(UserPostDO::getPostId, deletePostIds)); + .in(UserPostDO::getPostId, postIds)); } - default List selectUserIdByPostIds(Collection postIds) { + default List selectListByPostIds(Collection postIds) { return selectList(new LambdaQueryWrapperX() .in(UserPostDO::getPostId, postIds)); } diff --git a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java index 5be5ff16f..b90d5cf73 100644 --- a/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java +++ b/yudao-module-system/yudao-module-system-impl/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java @@ -27,7 +27,6 @@ import cn.iocoder.yudao.module.system.service.dept.DeptService; import cn.iocoder.yudao.module.system.service.dept.PostService; import cn.iocoder.yudao.module.system.service.permission.PermissionService; import cn.iocoder.yudao.module.system.service.tenant.TenantService; -import com.baomidou.mybatisplus.core.toolkit.Wrappers; import com.google.common.annotations.VisibleForTesting; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Value; @@ -266,7 +265,7 @@ public class AdminUserServiceImpl implements AdminUserService { if (CollUtil.isEmpty(postIds)) { return Collections.emptyList(); } - List userIdList = userPostMapper.selectUserIdByPostIds(postIds) + List userIdList = userPostMapper.selectListByPostIds(postIds) .stream() .map(UserPostDO::getUserId) .distinct() diff --git a/yudao-module-system/yudao-module-system-impl/src/test/resources/sql/create_tables.sql b/yudao-module-system/yudao-module-system-impl/src/test/resources/sql/create_tables.sql index cef6b1424..a3097b3ec 100644 --- a/yudao-module-system/yudao-module-system-impl/src/test/resources/sql/create_tables.sql +++ b/yudao-module-system/yudao-module-system-impl/src/test/resources/sql/create_tables.sql @@ -156,7 +156,7 @@ CREATE TABLE IF NOT EXISTS `system_user_post`( "deleted" bit NOT NULL DEFAULT FALSE, "tenant_id" bigint not null default '0', PRIMARY KEY (`id`) -) COMMENT ='部门表'; +) COMMENT ='用户岗位表'; CREATE TABLE IF NOT EXISTS "system_notice" ( From c51bbb81b529de587f1722ccc83cf7c7e025e927 Mon Sep 17 00:00:00 2001 From: dearliuliu0522 Date: Sat, 23 Apr 2022 18:15:37 +0800 Subject: [PATCH 007/111] =?UTF-8?q?=E3=80=90=E4=BF=AE=E5=A4=8D=E3=80=91?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=E7=94=9F=E6=88=90=E5=AF=B9=E8=AF=9D=E6=A1=86?= =?UTF-8?q?=E7=9A=84=E6=97=A5=E6=9C=9F=E9=80=89=E6=8B=A9=E5=99=A8=EF=BC=8C?= =?UTF-8?q?=E5=9C=A8=E7=BC=96=E8=BE=91=E6=83=85=E5=86=B5=E4=B8=8B=E4=B8=8D?= =?UTF-8?q?=E8=83=BD=E5=9B=9E=E6=98=BE=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/codegen/vue/views/index.vue.vm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/vue/views/index.vue.vm b/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/vue/views/index.vue.vm index aac0c27b6..2caafd950 100644 --- a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/vue/views/index.vue.vm +++ b/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/vue/views/index.vue.vm @@ -160,7 +160,7 @@ #elseif($column.htmlType == "datetime")## 时间框 - + #elseif($column.htmlType == "textarea")## 文本框 From 5139117b138791d2850381822205d0b76462e394 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=85=B1=E5=8C=85?= Date: Wed, 27 Apr 2022 11:31:18 +0800 Subject: [PATCH 008/111] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=99=BB=E5=BD=95?= =?UTF-8?q?=E6=A8=A1=E6=9D=BF=20=E6=94=AF=E6=8C=81=E7=9F=AD=E4=BF=A1?= =?UTF-8?q?=E9=AA=8C=E8=AF=81=E7=A0=81=E7=99=BB=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/ruoyi-vue-pro.sql | 1 + .../module/system/enums/sms/SmsSceneEnum.java | 4 +- .../controller/admin/auth/AuthController.java | 20 + .../admin/auth/vo/auth/AuthSmsLoginReqVO.java | 38 ++ .../admin/auth/vo/auth/AuthSmsSendReqVO.java | 46 +++ .../system/convert/auth/AuthConvert.java | 3 +- .../config/SecurityConfiguration.java | 4 + .../system/service/auth/AdminAuthService.java | 17 + .../service/auth/AdminAuthServiceImpl.java | 92 ++++- .../system/service/user/AdminUserService.java | 9 + .../service/user/AdminUserServiceImpl.java | 10 + yudao-ui-admin/.env.dev | 2 +- yudao-ui-admin/src/api/login.js | 27 ++ .../src/assets/images/bg-mobile.png | Bin 0 -> 12392 bytes yudao-ui-admin/src/assets/images/bg.png | Bin 0 -> 69400 bytes yudao-ui-admin/src/assets/images/icon.png | Bin 0 -> 308 bytes yudao-ui-admin/src/assets/images/pic.png | Bin 0 -> 30842 bytes yudao-ui-admin/src/assets/styles/login.scss | 387 ++++++++++++++++++ yudao-ui-admin/src/store/modules/user.js | 18 +- yudao-ui-admin/src/views/login.vue | 301 ++++++++------ 20 files changed, 838 insertions(+), 141 deletions(-) create mode 100644 yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/auth/AuthSmsLoginReqVO.java create mode 100644 yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/auth/AuthSmsSendReqVO.java create mode 100644 yudao-ui-admin/src/assets/images/bg-mobile.png create mode 100644 yudao-ui-admin/src/assets/images/bg.png create mode 100644 yudao-ui-admin/src/assets/images/icon.png create mode 100644 yudao-ui-admin/src/assets/images/pic.png create mode 100644 yudao-ui-admin/src/assets/styles/login.scss diff --git a/sql/ruoyi-vue-pro.sql b/sql/ruoyi-vue-pro.sql index 9f3f75a0f..4d3da824d 100644 --- a/sql/ruoyi-vue-pro.sql +++ b/sql/ruoyi-vue-pro.sql @@ -11857,6 +11857,7 @@ INSERT INTO `system_sms_template` VALUES (9, 2, 0, 'bpm_task_assigned', '【工 INSERT INTO `system_sms_template` VALUES (10, 2, 0, 'bpm_process_instance_reject', '【工作流】流程被不通过', '您的流程被审批不通过:{processInstanceName},原因:{comment},查看链接:{detailUrl}', '[\"processInstanceName\",\"comment\",\"detailUrl\"]', NULL, 'suibian', 4, 'DEBUG_DING_TALK', '1', '2022-01-22 00:03:31', '1', '2022-01-22 00:24:31', b'0'); INSERT INTO `system_sms_template` VALUES (11, 2, 0, 'bpm_process_instance_approve', '【工作流】流程被通过', '您的流程被审批通过:{processInstanceName},查看链接:{detailUrl}', '[\"processInstanceName\",\"detailUrl\"]', NULL, 'suibian', 4, 'DEBUG_DING_TALK', '1', '2022-01-22 00:04:31', '1', '2022-03-27 20:32:21', b'0'); INSERT INTO `system_sms_template` VALUES (12, 2, 0, 'demo', '演示模板', '我就是测试一下下', '[]', NULL, 'biubiubiu', 6, 'DEBUG_DING_TALK', '1', '2022-04-10 23:22:49', '1', '2022-04-10 23:22:49', b'0'); +INSERT INTO `system_sms_template` VALUES ('13', '1', '0', 'admin-sms-login', '后台用户短信登录', '您的验证码是{code}', '[\"code\"]', '', '4372216', '1', 'YUN_PIAN', '1', '2021-10-11 08:10:00', '1', '2021-10-11 08:10:00', '\0'); COMMIT; -- ---------------------------- diff --git a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/sms/SmsSceneEnum.java b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/sms/SmsSceneEnum.java index f8f267301..cb921ce1e 100644 --- a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/sms/SmsSceneEnum.java +++ b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/sms/SmsSceneEnum.java @@ -18,8 +18,8 @@ public enum SmsSceneEnum implements IntArrayValuable { MEMBER_LOGIN(1, "user-sms-login", "会员用户 - 手机号登陆"), MEMBER_UPDATE_MOBILE(2, "user-sms-reset-password", "会员用户 - 修改手机"), - MEMBER_FORGET_PASSWORD(3, "user-sms-update-mobile", "会员用户 - 忘记密码"); - + MEMBER_FORGET_PASSWORD(3, "user-sms-update-mobile", "会员用户 - 忘记密码"), + ADMIN_MEMBER_LOGIN(21, "admin-sms-login", "后台用户 - 手机号登录"); // 如果未来希望管理后台支持手机验证码登陆,可以通过添加 ADMIN_MEMBER_LOGIN 枚举 public static final int[] ARRAYS = Arrays.stream(values()).mapToInt(SmsSceneEnum::getScene).toArray(); diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/AuthController.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/AuthController.java index fe31c20b4..5fc45d01a 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/AuthController.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/AuthController.java @@ -61,6 +61,26 @@ public class AuthController { return success(AuthLoginRespVO.builder().token(token).build()); } + @PostMapping("/sms-login") + @ApiOperation("使用短信验证码登录") + @OperateLog(enable = false) // 避免 Post 请求被记录操作日志 + public CommonResult smsLogin(@RequestBody @Valid AuthSmsLoginReqVO reqVO) { + + + + String token = authService.smsLogin(reqVO, getClientIP(), getUserAgent()); + // 返回结果 + return success(AuthLoginRespVO.builder().token(token).build()); + } + + @PostMapping("/send-login-sms-code") + @ApiOperation(value = "发送手机验证码") + @OperateLog(enable = false) // 避免 Post 请求被记录操作日志 + public CommonResult sendLoginSmsCode(@RequestBody @Valid AuthSmsSendReqVO reqVO) { + authService.sendSmsCode(getLoginUserId(), reqVO); + return success(true); + } + @GetMapping("/get-permission-info") @ApiOperation("获取登录用户的权限信息") public CommonResult getPermissionInfo() { diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/auth/AuthSmsLoginReqVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/auth/AuthSmsLoginReqVO.java new file mode 100644 index 000000000..4360b9841 --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/auth/AuthSmsLoginReqVO.java @@ -0,0 +1,38 @@ +package cn.iocoder.yudao.module.system.controller.admin.auth.vo.auth; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; +import org.hibernate.validator.constraints.Length; + +import javax.validation.constraints.NotEmpty; +import javax.validation.constraints.Pattern; + +@ApiModel("管理后台 - 短信验证码的呢老姑 Request VO") +@Data +@NoArgsConstructor +@AllArgsConstructor +@Builder +public class AuthSmsLoginReqVO { + + @ApiModelProperty(value = "手机号", required = true, example = "yudaoyuanma") + @NotEmpty(message = "手机号不能为空") + @Length(min = 11, max = 11, message = "手机号格式错误,仅支持大陆手机号") + @Pattern(regexp = "^[1](([3][0-9])|([4][5-9])|([5][0-3,5-9])|([6][5,6])|([7][0-8])|([8][0-9])|([9][1,8,9]))[0-9]{8}$", message = "账号格式为数字以及字母") + private String mobile; + + + + @ApiModelProperty(value = "短信验证码", required = true, example = "1024", notes = "验证码开启时,需要传递") + @NotEmpty(message = "验证码不能为空", groups = CodeEnableGroup.class) + private String code; + + /** + * 开启验证码的 Group + */ + public interface CodeEnableGroup {} + +} diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/auth/AuthSmsSendReqVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/auth/AuthSmsSendReqVO.java new file mode 100644 index 000000000..a0900e02d --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/auth/AuthSmsSendReqVO.java @@ -0,0 +1,46 @@ +package cn.iocoder.yudao.module.system.controller.admin.auth.vo.auth; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; +import org.hibernate.validator.constraints.Length; + +import javax.validation.constraints.NotEmpty; +import javax.validation.constraints.Pattern; + +@ApiModel("管理后台 - 短信验证码的呢老姑 Request VO") +@Data +@NoArgsConstructor +@AllArgsConstructor +@Builder +public class AuthSmsSendReqVO { + + @ApiModelProperty(value = "手机号", required = true, example = "yudaoyuanma") + @NotEmpty(message = "手机号不能为空") + @Length(min = 11, max = 11, message = "手机号格式错误,仅支持大陆手机号") + @Pattern(regexp = "^[1](([3][0-9])|([4][5-9])|([5][0-3,5-9])|([6][5,6])|([7][0-8])|([8][0-9])|([9][1,8,9]))[0-9]{8}$", message = "账号格式为数字以及字母") + private String mobile; + + + + @ApiModelProperty(value = "短信验证码", required = true, example = "1024", notes = "验证码开启时,需要传递") + @NotEmpty(message = "验证码不能为空", groups = CodeEnableGroup.class) + private String code; + + @ApiModelProperty(value = "短信场景", required = true, example = "1") + @NotEmpty(message = "短信场景", groups = CodeEnableGroup.class) + private Integer scene; + + @ApiModelProperty(value = "验证码的唯一标识", required = true, example = "9b2ffbc1-7425-4155-9894-9d5c08541d62", notes = "验证码开启时,需要传递") + @NotEmpty(message = "唯一标识不能为空", groups = AuthLoginReqVO.CodeEnableGroup.class) + private String uuid; + + /** + * 开启验证码的 Group + */ + public interface CodeEnableGroup {} + +} diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/convert/auth/AuthConvert.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/convert/auth/AuthConvert.java index c52328cc0..a9cff93d0 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/convert/auth/AuthConvert.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/convert/auth/AuthConvert.java @@ -3,6 +3,7 @@ package cn.iocoder.yudao.module.system.convert.auth; import cn.iocoder.yudao.framework.common.enums.UserTypeEnum; import cn.iocoder.yudao.framework.common.util.collection.CollectionUtils; import cn.iocoder.yudao.framework.security.core.LoginUser; +import cn.iocoder.yudao.module.system.api.sms.dto.code.SmsCodeSendReqDTO; import cn.iocoder.yudao.module.system.api.social.dto.SocialUserBindReqDTO; import cn.iocoder.yudao.module.system.api.social.dto.SocialUserUnbindReqDTO; import cn.iocoder.yudao.module.system.controller.admin.auth.vo.auth.*; @@ -76,5 +77,5 @@ public interface AuthConvert { SocialUserBindReqDTO convert(Long userId, Integer userType, AuthSocialLogin2ReqVO reqVO); SocialUserBindReqDTO convert(Long userId, Integer userType, AuthSocialLoginReqVO reqVO); SocialUserUnbindReqDTO convert(Long userId, Integer userType, AuthSocialUnbindReqVO reqVO); - + SmsCodeSendReqDTO convert(AuthSmsSendReqVO reqVO); } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/framework/security/config/SecurityConfiguration.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/framework/security/config/SecurityConfiguration.java index 53b99ce8c..f7c030be5 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/framework/security/config/SecurityConfiguration.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/framework/security/config/SecurityConfiguration.java @@ -20,6 +20,10 @@ public class SecurityConfiguration { public void customize(ExpressionUrlAuthorizationConfigurer.ExpressionInterceptUrlRegistry registry) { // 登录的接口,可匿名访问 registry.antMatchers(buildAdminApi("/system/login")).anonymous(); + //手机短信验证码登录 + registry.antMatchers(buildAdminApi("/system/sms-login")).anonymous(); + //短信登录验证码接口 + registry.antMatchers(buildAdminApi("/system/send-login-sms-code")).anonymous(); // 验证码的接口 registry.antMatchers(buildAdminApi("/system/captcha/**")).anonymous(); // 获得租户编号的接口 diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthService.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthService.java index 36ef97972..ffc5315f5 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthService.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthService.java @@ -24,6 +24,23 @@ public interface AdminAuthService extends SecurityAuthFrameworkService { */ String login(@Valid AuthLoginReqVO reqVO, String userIp, String userAgent); + /** + * 短信验证码发送 + * @param userId + * @param reqVO + */ + public void sendSmsCode(Long userId, AuthSmsSendReqVO reqVO); + + /** + * 短信登录 + * + * @param reqVO 登录信息 + * @param userIp 用户 IP + * @param userAgent 用户 UA + * @return 身份令牌,使用 JWT 方式 + */ + String smsLogin(AuthSmsLoginReqVO reqVO, String userIp, String userAgent) ; + /** * 社交登录,使用 code 授权码 * diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthServiceImpl.java index efe3d578d..734a501e5 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthServiceImpl.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthServiceImpl.java @@ -8,14 +8,14 @@ import cn.iocoder.yudao.framework.common.util.validation.ValidationUtils; import cn.iocoder.yudao.framework.security.core.LoginUser; import cn.iocoder.yudao.framework.security.core.authentication.MultiUsernamePasswordAuthenticationToken; import cn.iocoder.yudao.module.system.api.logger.dto.LoginLogCreateReqDTO; -import cn.iocoder.yudao.module.system.controller.admin.auth.vo.auth.AuthLoginReqVO; -import cn.iocoder.yudao.module.system.controller.admin.auth.vo.auth.AuthSocialBindReqVO; -import cn.iocoder.yudao.module.system.controller.admin.auth.vo.auth.AuthSocialLogin2ReqVO; -import cn.iocoder.yudao.module.system.controller.admin.auth.vo.auth.AuthSocialLoginReqVO; +import cn.iocoder.yudao.module.system.api.sms.SmsCodeApi; +import cn.iocoder.yudao.module.system.api.sms.dto.code.SmsCodeUseReqDTO; +import cn.iocoder.yudao.module.system.controller.admin.auth.vo.auth.*; import cn.iocoder.yudao.module.system.convert.auth.AuthConvert; import cn.iocoder.yudao.module.system.dal.dataobject.user.AdminUserDO; import cn.iocoder.yudao.module.system.enums.logger.LoginLogTypeEnum; import cn.iocoder.yudao.module.system.enums.logger.LoginResultEnum; +import cn.iocoder.yudao.module.system.enums.sms.SmsSceneEnum; import cn.iocoder.yudao.module.system.service.common.CaptchaService; import cn.iocoder.yudao.module.system.service.logger.LoginLogService; import cn.iocoder.yudao.module.system.service.permission.PermissionService; @@ -41,6 +41,7 @@ import java.util.Objects; import java.util.Set; import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception; +import static cn.iocoder.yudao.framework.common.util.servlet.ServletUtils.getClientIP; import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.*; import static java.util.Collections.singleton; @@ -74,6 +75,10 @@ public class AdminAuthServiceImpl implements AdminAuthService { @Resource private Validator validator; + @Resource + private SmsCodeApi smsCodeApi; + + @Override public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException { // 获取 username 对应的 AdminUserDO @@ -110,6 +115,58 @@ public class AdminAuthServiceImpl implements AdminAuthService { return createUserSessionAfterLoginSuccess(loginUser, LoginLogTypeEnum.LOGIN_USERNAME, userIp, userAgent); } + @Override + public void sendSmsCode(Long userId, AuthSmsSendReqVO reqVO) { + + this.verifyCaptchaSmsSend(reqVO); + //登录场景,验证是否存在 + if(reqVO.getScene().compareTo(SmsSceneEnum.ADMIN_MEMBER_LOGIN.getScene())==0) { + if (userService.getUserByMobile(reqVO.getMobile()) == null) { + throw exception(USER_NOT_EXISTS); + } + } + // TODO 要根据不同的场景,校验是否有用户 + smsCodeApi.sendSmsCode(AuthConvert.INSTANCE.convert(reqVO).setCreateIp(getClientIP())); + } + + + /** + * 短信登录 + */ + @Override + public String smsLogin(AuthSmsLoginReqVO reqVO, String userIp, String userAgent) { + + /* 从 Member的AuhtConvert中拷贝出来的,没单独写类 */ + if ( reqVO == null) { + return null; + } + + SmsCodeUseReqDTO smsCodeUseReqDTO = new SmsCodeUseReqDTO(); + smsCodeUseReqDTO.setMobile( reqVO.getMobile() ); + smsCodeUseReqDTO.setCode( reqVO.getCode() ); + smsCodeUseReqDTO.setScene( SmsSceneEnum.ADMIN_MEMBER_LOGIN.getScene() ); + smsCodeUseReqDTO.setUsedIp(userIp); + smsCodeApi.useSmsCode(smsCodeUseReqDTO); + + // 获得用户信息 + AdminUserDO user = userService.getUserByMobile(reqVO.getMobile()); + + + if(user==null) + { + throw exception(USER_NOT_EXISTS); + } + + cn.hutool.core.lang.Assert.notNull(user, "获取用户失败,结果为空"); + + // 执行登陆 + this.createLoginLog(user.getMobile(),LoginLogTypeEnum.LOGIN_MOBILE, LoginResultEnum.SUCCESS); + LoginUser loginUser = buildLoginUser(user); + + // 缓存登陆用户到 Redis 中,返回 sessionId 编号 + return createUserSessionAfterLoginSuccess(loginUser, LoginLogTypeEnum.LOGIN_MOBILE, userIp, userAgent); + } + private void verifyCaptcha(AuthLoginReqVO reqVO) { // 如果验证码关闭,则不进行校验 if (!captchaService.isCaptchaEnable()) { @@ -159,6 +216,33 @@ public class AdminAuthServiceImpl implements AdminAuthService { return (LoginUser) authentication.getPrincipal(); } + /** + * 验证验证码并发送短信 + * @param reqVO + */ + private void verifyCaptchaSmsSend(AuthSmsSendReqVO reqVO) { + // 如果验证码关闭,则不进行校验 + if (!captchaService.isCaptchaEnable()) { + return; + } + // 校验验证码 + ValidationUtils.validate(validator, reqVO, AuthLoginReqVO.CodeEnableGroup.class); + // 验证码不存在 + final LoginLogTypeEnum logTypeEnum = LoginLogTypeEnum.LOGIN_USERNAME; + String code = captchaService.getCaptchaCode(reqVO.getUuid()); + if (code == null) { + throw exception(AUTH_LOGIN_CAPTCHA_NOT_FOUND); + } + // 验证码不正确 + if (!code.equals(reqVO.getCode())) { + // 创建登录失败日志(验证码不正确) + throw exception(AUTH_LOGIN_CAPTCHA_CODE_ERROR); + } + // 正确,所以要删除下验证码 + captchaService.deleteCaptchaCode(reqVO.getUuid()); + } + + private void createLoginLog(String username, LoginLogTypeEnum logTypeEnum, LoginResultEnum loginResult) { // 获得用户 AdminUserDO user = userService.getUserByUsername(username); diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserService.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserService.java index 78d6a88a9..d6a836f01 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserService.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserService.java @@ -97,6 +97,15 @@ public interface AdminUserService { */ AdminUserDO getUserByUsername(String username); + /** + * 通过手机号获取用户 + * + * @param mobile 手机号 + * @return 用户对象信息 + */ + AdminUserDO getUserByMobile(String mobile); + + /** * 获得用户分页列表 * diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java index 32f0a8e8c..576cec4a8 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/user/AdminUserServiceImpl.java @@ -168,6 +168,16 @@ public class AdminUserServiceImpl implements AdminUserService { return userMapper.selectByUsername(username); } + /** + * 通过手机号获取用户 + * @param mobile + * @return + */ + @Override + public AdminUserDO getUserByMobile(String mobile) { + return userMapper.selectByMobile(mobile); + } + @Override public PageResult getUserPage(UserPageReqVO reqVO) { return userMapper.selectPage(reqVO, this.getDeptCondition(reqVO.getDeptId())); diff --git a/yudao-ui-admin/.env.dev b/yudao-ui-admin/.env.dev index ac8b8b096..db9e33854 100644 --- a/yudao-ui-admin/.env.dev +++ b/yudao-ui-admin/.env.dev @@ -5,7 +5,7 @@ ENV = 'development' VUE_APP_TITLE = 芋道管理系统 # 芋道管理系统/开发环境 -VUE_APP_BASE_API = 'http://192.168.225.2' +VUE_APP_BASE_API = 'http://localhost:48080' # 路由懒加载 VUE_CLI_BABEL_TRANSPILE_MODULES = true diff --git a/yudao-ui-admin/src/api/login.js b/yudao-ui-admin/src/api/login.js index 740f49795..92cbbeba9 100644 --- a/yudao-ui-admin/src/api/login.js +++ b/yudao-ui-admin/src/api/login.js @@ -100,3 +100,30 @@ export function socialUnbind(type, unionId) { } }) } + +// 获取登录验证码 +export function sendLoginSmsCode(mobile,scene,uuid,code) { + var datas = { + mobile + ,scene + ,uuid, + code + }; + return request({ + url: '/system/send-login-sms-code', + method: 'post', + data: datas + }) +} + +// 短信验证码登录 +export function smsLogin(mobile, code) { + return request({ + url: '/system/sms-login', + method: 'post', + data: { + mobile, + code + } + }) +} \ No newline at end of file diff --git a/yudao-ui-admin/src/assets/images/bg-mobile.png b/yudao-ui-admin/src/assets/images/bg-mobile.png new file mode 100644 index 0000000000000000000000000000000000000000..92f31781e12f69a4ff1ee10b5ea7b95d43985c12 GIT binary patch literal 12392 zcmbVyby(AH*sn+`DTs83QjQb_N2h>v#}Mh38r?{DH%OPHGy>8fJ$iHx7&&@y=I>nZ zxvux$vw!y7_1yR8u5H)8;VPeH@t;#ZfAZuBzPy~2+LI?};3rSeIdRZYoU}pWNfhx! zMNvaq)=}~Ce_k@aTkz9s6m@)cdwPnH@!!0?xjWc}|Bw7p%6skqo+UlDq$h^+_tRVV@_xfmWNPD1-tYZ_E?7+UW?<<$>Ks(E@}m*%_=BLDZkci~!E$I)hDkY_$LzU8Q7;N+^eE4Tajw66T9 zrue+2?x4EhxVH4Nv-Ri5>3&MY)vubLBPT9di-)yE*L~eLe|{h4r);N3!mEq+@{`~t zIoGX?`^6cs(yZ&=uEUb-o7TpQ)`r{8_MQAh)1-alMCjL)6_ey;P{NXV`kGc1ZI)3?pA(in!0M8y=j%T;aIr)C285Ic;EiVj(g>iYuSNv z;G|{dx@FdeZQizC^t?wETr(76le48BGHsK)^(6^v6u+n&HD{f(X`8pDA2Y8SG^z1@ zS|@T=JAB3{e#xO=*Di0{^C#RaeN8QR%B%WVCt}vS=ENd%T{m*hDtp5;bww{~PCH`O zr}o6R{?t5UO)GpxKYHHb$IfT}@x$mqgO~-auo=xT$U&t48rXb4%zMT4t3$z#W5KRr z?83Lgy|a|qqnO~m?;d^)XS+eJdm&)^{GFXZ7g)G2JTBBIZgI=cQOR%IG;LKsW?|jK za>L8osd(=^Eq=jHXW0p~=%5FRUve#jDf*5ku-0kb&?Qq zk{G$+ZM*4Xrxr3bXQi$c202ZNw#Zmpax~Zua570=xys2fNm=p#b&kkPzW$M|;4^xe zoobu_)r+1Bt%bSftr|u_zQ)a3r9mCDmhICPOcNJ<%Xi!gH!YLq*FxP^{A>ZC6V9lS zaCA}otp4PiivtLY91X)92iNuum<^Ab)zFC3g!r=+$bgVuOGQpshVPvxDI?1V1)!hCO!$gX#cs>rU zW_cJr6A8;Ftxe$sB-3y~US(yTBvI50B4QPO-a3&=W5)CTP_o49KT;$scmQt)#dmEE zZuFBcSQkW8EWPYUK3wHEAAbm49a$I~-I3hAfF5@oVLpcJYFj>Fj@Ad?c-YXgjv<3v zT7aT`Q9kMpV3-{8*j&7&PY0MuVXHb zwCC$I#SWW%tyy@ntgB8(Yh*}M-1+wyEOa&f-ach4awEq7XX~xCgTryMvr?$lu`RWx z`SXD)$4ocZ)T#&W>{}&iSjQyA?^QjEVvb|3x^2~KFQF0ex7S567g_`Av4f&*jtOTb ziB;#iVRVpf$D$jMpQa`aCQuc~kLixBj|ZNG-1QXv;RO|+#~Y0) z&fKXi3qXICXc3OXkh54Mn(j97qjI;se~+b|EEGHZEVOR5e^yNz?by)xG2E9_ozXYf zSFEi1aq%`x2h8anF?x#Cb9o7ZFJ~mDy?%~97>oqv_WXTL?llb6dQ!q zUwn`fHS!6uf_kWSx}Rz>h8^|K+z zThs}a0Lv0tMX#Ha1vTdwTk5MHE{~SF@ykQz)iko@PYPyg+S+7Jan*qzZMa@e2kfWC zK$ABJ@_qES@+Ew{S-q1iUAy|tD--pYQ3cCMr%$bX39MW_2W8pbrP2;#<^85 zl3>o?VCqc{%f+f;qqN%!N@KNB;CKiVpKLx+W_Gga>dD7m04L%Eukl^n+um2(OGCk2 z_<|HzhRDk!{iZ=O6C3;5KTORo=JMdTkaa@!X9!_1{65H?VXT2o2`ia}7#=lH?E-6J zK%D%If7`nfMOidgqc{Z5G9`CGoap-|Ix?&rYo~=QFNDJ-%0n%JY=s7$-?R~_Y0(^y zfr!L32uHc6k7kOlr4Dc#{Bai2%971nmtv>Sv{_)5jqT$yt~EPTZXo zSh_%dCMM_J=ihQ9hsX|`hrv(}tSP6q6Z`FvlHST#i6obQ74 z7!auLilIfBd#G;>b)#3gm(V)iznM~`PtfHZ-pZ+eh1R`6mf&gmjtZxJedL1o(bHU% z=&f&l>6Q2Ogal*UHrcS@4}Zr~j_)~IKE}q;y&VGSPQuYIxC=zei*LI&N2i%rPPXk^ z9*g5nZ3Gb$7Y#337R#GB9Lacldh>f==&^LzVFpiYmlU0rucB^4-y;TcGlmQ|! zbq~j?;ox<$UPnPkbeiy+iy>Dse%~UE<2{|%*RGxpWtu5%rKcRfJY@&i5(sO`D&yAQ zI^GA)6ztK^93e0k0(j89oSEJ3KjqWvnGgDAFNOO!1k9fvkhFJ6ndim75w6i50h96g z%2$A0;#y!Yz#Iu8%EfJ^6f&QDEK4zoa?U>K!o3uHEQ78IyL7)bB?MZenIiH};+Fr~ zF6*fT9{iqzgns|5dOg!oXV5+uNz+*f8IWBZtVdV>u3Fp{cB&xZ(d~0^z&8(< z=m)SNPF;mMEe@R0PM0yGLBz1lO)mej=A&l#pMHQ2kQ|zaNNe#)c872D1D+w)Hd#L% z(v#Tazxd$W4HIYg8q}e#-)xH{?=(gjpXk#FxTzTVAG|e3K@RFRk08{z5K`2E|1l?* z12%hLsbmF_ueQC=^ZBR>oPUuwM8MAdIU8e)dkEIO7S5!xTyMKqy(|fPENBXaTJ!r> zocC^kVsHCEIZzcf70#hR_Q%_qpzC2 za;3$CSS8nhsTGA5SL+yWcG?14WXnPL83iiF&x>Azdk{vz2_p(zNB#LhEPD;QHWrLS zItoYR!4zH%Z!WgeU9#in-Mr!cwa{a)} z7i?@5zc&(Hc<5!Tnr4I)6bft`emY)aJ|-Kzs=uJ|<5|Ixpl@`=`Y;mEfyP(ttgM!zYi&HvCaLHukOw57G@p0QYt?Kl0 zRCE3dc3+mVPQo&9tRR}^z>b7xy2?L*a4ojKYbj6TH?%c;7>zpgM}elM5rp}zxFjgN zaQh6wF!|Tl)coLp4Q*(smF?_!>0g4giRaN`{~6fdczhvuSt^jv__$K8Fjzk|Z z{D=^ASn+mv3R5nlSTIDblZq=uSx0D8)Jo*uTNzYw?|#3t>>|k0m4gTNq7qqMJy{sy zB{CJBNRR5U4hLl6tHUnsz#S3xV$an(Po;TrY0}|}-Y`&&Cnz_9?25R!kZAP3dpqwR z3f>*&VX?i$d4Y;I6(F!6Df1M6YK|=grF}c%P$FQ0?N)d^5=qqg2j=q(MhC)D)N4s4 zU2k!w>P(ms^}T;zwTN#*+!W=(4fTjY*)(W*4W5{`#4oq}qb~lDVRz!F1-MC8DT3_y zEbL}nDdV&YL?w4xp&SJ50q=^S&I*f13`_@6B-@%$i?pif&6wLMmnW7mc)#PWp^vA& zkJaJf3#H}rkAv`gRPXp4`Xm+~hV3eO51a%0}MGZ#yJfNMQyd~Vja^;bFb@t z#2xpt8r|Kz<-~kPJNZKPG%A;|$cLk-{=>ZTr<2)B*U8OY!85s>m<{IGA#!utAN~cM z_?q&Vp+`ME`iwmW74?JZ4|!*|HSt>k$s9h#EKhRe&{p9r3T2*8kR~%i-p-y#fwBSH z9+eSe#L$pT;^pCYHUGUav-<>3B7 zXkk7-FZrE=dvToP2`%5>7|)kJ<_}&pOowa6wBLnyVdv+gSTgfUMOdcbG1TabJPuH3 zt-wp^D*W3}0gaDi=zPIu`49%!;zCvIJQB|U8mWW^OVo6a1jXG>mnbOxtw9IEf>_`G zo2%&?lF;-o;2X3QVF0Sx{ce-8fy`s|4iqsUIaqytG?p85k}j)H`(Iq0*`}d1d7^J( zD*pKy!zMQogrUB#i=J|z0e^@Hk4(@K`#W7=2b{e`pevBbL`8R-leKI5paOq#<@b+HR{**4hjO$W~IQ@ug^lyip zc>@&=>6d~|O^i0?2s{;iJT9wc)13y~hn*qWLH|kssQ(p;kus&o34V*p$M27KLCI`a z8H`!l&cvM?5T?D6T+v653^up5hOaHo|0W0|f}OS~`4rGEuWs2KhT4z0lCaME+z#g@ zc~gbW>mPD6B4`=M-(QhUT08pJTm z0ap2^taUf=j@<1P{^cNz*1eOO13!DD@w|Zaak%i$>+QUiZr}RwcTffCS#+@JKlRD^ zsqUHqB%t#>js87MqT^dzZlzy$;hALP+<-BNQVC-$x0kQFgJNuD#ML8=Ex%VODv!6#HlmP(t-K^rC_0VgaH^aOL!%Y`}C30 zA8#{nrQIlm3J%=wj172$O0i(3C06Zcg0hRmS;l|&kG3&2uhWiRobPvThJ%zLnYrkI zP`pJS`GQV^{BV$Asi5+Dgcq%LUiJ9-XvbBj#J?yI;3dbN4wbzts#jMWe(1!VS&)NK zlID$^V)xs}gl)v;>X%*sHo_B0`LlW8s3^dD6h4bh^e;Z6P`Y&w>IP!K{n;+&V(IH1-#pZm=J(h*@nlvx+LnZ0M@N9Naz&Wfd$b&0=$k7UNYTs4!WOHk zP3TLNfdaT9!54(%SC zP%k=Z6$gRF+V5Ug5@)#NcPO_dE7k!Ny*pet1Ubowibs5Jn_DX$q*Mo{Inng1KWCu8 z^XRIjd^Lw(wRk494n!Nk_p2Y9DYy}@_p+ONc*BaGb63|jgFJwouqyTxZgo6{{)z}TJKPG%k9YxGIJ95x5F>Jz z=~%|%4Woe5Q{}H^V$XG`IiPRHd0IwCYjMJJvk+4MiIWp-A%TEY2d{kJ8-f9Pt*n^^ zoPPN1Xg$NDBrLm&C+r5g^TuS?z_6;_ive+oA0=)ZtVXfR-|3@wEQ7qKf&@6pO$+eV z&3`ynJO_&^BhQG7n@g5F-VJvzOpYPO)v)z65?{Q7eW}!<6qQES8Oq4hPpQ6eP5n~6 z#Bop}DvmsJ!e(*Jt^3GG%O`m8+BV7Iclw`?YMsGWM|_(Rk?v8g^u{4Ts0Y#qmiqcl zYg8#7Zz6H+@3-(=NT(#y3D>M)fRu-V8H{_jRav>}n|O;5iU9R*W|N)g<#DlRcBT@v zs#PC%*{b(h#WgBJL4AaxiH~^5y4v~(^?4Gl&r0rn_JuLSujiB@}N;1+E z#cJw*G&6gS&c=rJkM@T?dmt=NeJ7>E+qtaqEF+?TjJvRnVMa-bhZ;zDqHkjL{CnCG z1L^rwNaZTu4)Ugij_9&-3YvDc={v;ow)OzY+9zsAZWQoL#?%h)K2}BYso%}%siU7_ zjR_+z&F1<8If=XoEqsHC3xd#>iwzf*>L*TDicO?AU4n#uu=@z5V=Tcr`jJFKcom9+ z11(;Wt$T0oD|(MXH#hy#6)&4d{bDju#~gKt-BV9^)+ACqb`fW3$lbtS{8opiIhF!I z_tm1P(D*s@EV`_IsC2KzZG~3dLR#NNrex!n9WmXx(fVC~%NBW?a@77+MMt2hB5j+o z>J9^A;#O_sD>FD#o0t*N$nakN%MtZ~w^Mbe{Pitm4(W=judb>a6^&r}tg&1@neR_* zCSp~6`+szF`;JI2kx_+N#E*7)R^enXay(oga9 zbc{+KsscrZ>t#1et@FT?h79!W>~bNFBl@{^C2&c(Y*Bc?cM0u>Z8i@MDl=ShHkPB3 z9LGtZDZTuSPud#JoW`83hopV9eQXm)W1wPcG(s zk*9GeuGIUvrDE6ePUS~^6m7EpG&78Ttt<&bJ(l-jTUd+~)>t2`7XH=$dX4CjP zZI`5U7~JcaDh7WtIcFND{%Kb5{1RJfn@p#6PMi2+58){q|)~-da_z*??c8c%Cbws+laE*w>}?HXkn~z5!;)v z7h1nYi_su|Yf}6XNGUzYSSmocIiwq0|9JDJ_N(FxfW*M^69FIN(GZmu!P4Y3Uf-~) zPZ4QkPF9qR;d$>`#uX*++tJ_ZC3+bPg`H5+nk0J7#!galOCP+)|Ndq=9V%JK3XT;( zJEiUA1p|`;$<2FN!L+zvlH9_S;3TiU@97mLx0Ik|@m|F{#<#|>5vmO`&)R>rqU;GA zv_ibXR>c;orzs0$4-;}+-40f(->#(Vb);f7Yks$E6-B06MbB`El6C2XPf3@1@?+I0 zr`NIRG9bdf<)VHGwJvvX63dD_H(4hTnEs0|FhFR6B%g*?e$K^Mzz z-+Z18pGCcE+C<>F<%!^CO{r$!jipZvk>_ugy=P=*;E5`GAJTzQG#e~Wo+@0_N}E}y zYOcXdkuk9~rXDP0SNfi2YWB@?Y~Zw7Mgn_Jit!;jWl>C=Zki+w?I**O7W`=~=9J=~ z?9uM`8ghnj%DTfk(LUX2EKA5U;FA^MvdkGr4Dfs+`-Ei-C*f4ffVu)cZO9xnuJI4Y z1C!MNS7V$(PHvSdjKPK>>1IxECCFTBBrv4u=#wQ_p>NC-)wB=G?6VI1-z?|qiBXth zm5tOobJzdHU?Ej=Ex_Z=GTV7P%vMmQ(tR~B;J z6kP3nKZsmGok9GN2$tb_8<>oICWXSEj~eRW?z@`5JklS3xj5LhzlcVcvcYL18Ex?S zs3kcAdh2f%(XFRm=0%h7*RHhad(F9Ju?A9Lrc5TYrlGK<^Lq_8cFlX;K?4P*8FS9I zhZ{Y;{V~_J8cvC5LCDner~H~=FC`^jL_xY3+_sY8@Bt0*3S3>rpsv2Vx=@McRIoox zq=h46)X9+C(lX&<*3k?FUf=aT8g;ZX&m`wBm>470zJc%NPaHgUFyndFy6SCkquXK$ zAN|S)v#77!_(y^qnfY$~jrz05!H-WeI`Y5KMfm%As9poANB+>MK{HPk%P87lt>hDt z%?giz2a>p&S9N(G$R_M~-e!|Nz3rQsnUPL^>j2CN?k3MkMv4T;>09IJD%h41Z+E1KHWph{W-GEK?En)jLF%@UJppTtrqSCs!qGO@Q{t zmIL-4^qNAn#6Uw8S$C41WK7jy;qOFt^wx~PYPdJ@8_daO+hyBGf8#LMy<-KKJ`joJ z73WwjB*NqR&C|2h>Gp~Dhua=5`RchAuBtG%I=mNE(z2{ZRn&C3Da_(VylZ<$aCZWQ z%~9qiaFo(^85y%!b(j(4pki)WlGUk*!uR^@+NgxS`gIpgVq2oYQ+prh>!YQnuSB=9 zr!sSw7xYfxw$S;cROIIHTzl8v$ihK}n6cB9Cs{51xlGr?OC(#@fvYQ6aaT58|D~|^ z_4ddd?^*eTc14@;pTho8=Ts2JP(ihn(YPsAVjH+u4)bdDH&hJEE+&v5Gk z6Wn|s)BF1pFE(*N^4i|)a-NWK_7zda1?94y&NXwWk-UAG{)0d4-DO<*MC9vN7-h26 zeBhNp>v#|0vh%wgvQG*0)h|1YkmNtPq=L0}PnooF&C~*o%2Q{`qm z?agn*X~T?4++h;i@Swt!6XsX1a8Y`!O^`C2kOSiBS872s>wO6gd2`Wit5F9gj%o@e z*WrD<0TZHdGelX~y3o-dI#z+6E7ruJy&$7h6P)r0@}XKOb|yJA&lad!?5tFLwi!g$ zwr$9fRXx3Z1H~#0wPY!$=c~PJe@Ge{%-2rQhfR%~w&Opuk;1CSBdaf4G&B~Bh2RO3(YKC#b+>ZWB)qUx@GB=}x<#kXH0Vftb&;XKw`Xtmx~=Vdt}X~P zgVr%?906}^%L_fc6a7h6NCAY={i1Xw5piUV*9BGk8(Gn5S)q|<50CK z-!Toaq)ylrUJ(|%-AcUqCBSngcCjc#5qwoA`kLm3b#``ms6wi`>MZnxd5YUg+r6W? zv6!Z#n3aE~pa+hh*vQRWua$sxk?|0N?&bou6rBM z^YiC>qczuMsfwTqKA)fdl~I`gOe z997C$RbcVNkH27%IGp9iWV-*`-~V0aLQ|7z?Y(I7e)SbqVBye6fwrCSRu8#3thB+} z({+>Q#@X1uY|)Ky_`s{p%9dkGmQ@g5h=(L8(YB*DOIyd<$IIU(BzX5SKQ&6Q+;4&> zYQE)7G7qNcH8gK8n9tCcYcLA&y);&?U zEN<*(PxCcSI`T@kNOx1%j~bae1Y6?O!uefKkZl;AX3stg%$T2fe%?>z6||SO#f?dCc0n0#)(i}f1SHtcPd=5lx&nsbK$T;b|gEa=xSk9 zsc$b=sH1$vyDR)I8&9{qu#xuV?;HwY7^8CVSpoKP1VS_b(@9vtt%ASniMU zfe;XF-?NtSabHXzs0ey9dElZ4^c2u#Zp{Aky%#+8A^k0m|L>1Y8eeKyVp4>aV}-|k zA-fE=uWsVn`m~( zMK7ma%Kn+)95gyzc=WDe6#yvF%+nsozIspOT+(VM`mHWY+fx_cvxbLi<7DjHtBi`W ze!dauvJ({NIh8JdX#ngjVe2eAZ*P6QgO(56O7i76WuyqlhpiiJiPwwA+2M!h=e~>4 z2g$RMh)GGM8^g3(=TZBNSsB)=bJUL%gxV>Vo*x~a*a1R=l)TW|-mSAV!UzyStLI0E zCxK$lEXq$)<}R+HK7G0l@)6)vI=$+Wax#}W!Wg6D!^5zG)P1u61i0jx0g6q~nu;Ox z8jR6BiH`4DAgp|t4^7&|T7f5FND($n)AfyZ#K7$ZMQYpY3!VcfRP=EK!HZUKC}L%0 zMg8pT8G#FAt7|lSr`JvVa%*J;{fu}om-#(6pAocxHO3z8cixp(Q$nmD;XHaa!9so87psWkoWsr4fY+BzFM}X`9 zUj4{r8<7>Bab<48eflF5vWl!7UXAoCu6%ODQF7C?)I=-}NY@W6$FOWtPPsx>HE^+x zHFCtI4stPId3sT-eFnyF?fh&SDdb)e!)s`!Sc8}NnquaD6cP&jf$ggM0;~C4BNc;8 z0aG?mY)_mmBO48_@fpWAN!~m*CU1{Hl9&v4eqWpUgU#8V(ep`kBL|zWfo*8GDe6nI z#9J)R3UZVSV;EONNSj&NpUy1>OmWlbD-U%+&)^LujgbNw1_a+}d5I6r1BES4ryB=_ z6I*_~EWmE>nC!>8dWZg<;;Uc_H4d;hmfF_wn2xv0(i)H&l!pzO#y0((daY<^&tzY{ zxq7@)I2f6)ZKMotW%mOh(p%eUnJR^71FP3AmfG&-@NoluPXSwGw!t>3}E<}+dQ<*UeMW+qZEZ!!9^n%YvNn}xd4uz zmAO1B{{!?pM=82|{__f*MM&FdjYNV#JoFVqu5jDu-vhSAX}F{}9% z5>Ia~jx#u&{&gI1EYY6qb2TM1?&*SU_r#rK+RcwVl?-qS&G3=hNqO@4on}gxfg#IJ44%Xe`52bvMR+7Z{C6xMSVc&HVoN zi^DLo$49!^hO%;6ntjM*8AMkh-GcU{mUmwI686@5c*?s1@_2i<)Pa#sEsw`*^-KIhdb_E~_b>2`(d zzu$09-Nb??&*7ti#keTA$WuCt3E0xaPw_B8}s1mA;&Gr~f1 zf83;_n~-M8q;R~m!!HUC%?NG_7SSNy)8brnP(c^p%n9+*U=nBv4G(DxR>|m3=3k4I z%P?=BbZjD-SkIrDa7;zBYV|Kzy0X7}TJo7s`y;fddkCEgu(6(V^PY6JCt+}19i7i7 zjZ6x5Rma{@6?Q8QxNEMQWxRtc}wrI;NtNU3Gmay&fEC?jocw@B%QAfps%5B)u?A*P8I9 zxN$l?QH@q2L=j^d;4^lyVt?3C~_dla7MPc_=UcsLR@kisDtXSM2e z!|^y6i62`pct#I+W}t{IB1t5GjE-r;dy+`wrgs_uLWer^JH=hoy%RXC2kb2-MkWEx2DLswYyH#ZcYe72+YF5^6VqB6%;_bk@yqYJpf#Fx_8anZ9WXP~F z1f~{UHCMPs7-AhuXxR1qp^)-kuG~thT%ONe7x=S+wpWTkfop?ywJxJay%i zl?+Pn3DWc_$lDSu2Zv81rZ%F5Sb&j`G3(JWs^;#{m7rnzTs3XH-=z2vGG_2r2sG)Q z-KpCw1=%L=5@TWIa!Yb_$inO%c(w?HAA67`~nMO$7l; g-rgbAL1;KNN3psc966}RrJu-4f0p_wVI25>0M68N+yDRo literal 0 HcmV?d00001 diff --git a/yudao-ui-admin/src/assets/images/bg.png b/yudao-ui-admin/src/assets/images/bg.png new file mode 100644 index 0000000000000000000000000000000000000000..385c266e8d03820c8c08c405b0a590b2e6a29b36 GIT binary patch literal 69400 zcmc$`g;&&F^e=p71_nd~QBgt!LFw)WgOYBMRsrcQK^RoJ1*BWL6r^hmx}-al?vk$e z_}umW?!AA(b-A43%s%_<`0O})z7nXSBy)v;f&c(;MNamy8UV!bEgl9R1z#T5sC@bDU!}cgr7?4-r)Ov9|7-c*zo)1F#}EH4pP&C< zEB`}%`hRZw-wghrz03Z#4A1@_Ve3YYG8>lQN@aO(&X0}M+U3f=y>#qaSeGFMQN8WzO)!gjvFG=e*UY!9y=&r)@G8EK+72vX{-1{uoD3 zTBXfv`VZ(wjG4quyBBZRWiA>-j=xI!W0v?^!>@nI*G=VJ?;lUAg||*>@B3DRF%$L% zo}agL!$#Lb-|fals{8hDMh0w0hdAY~OuM|CePjLmwfT&jsdf7N--M|3u=j3->n3qC zbKZ8!KEIay+*bnMxE8D#M2>Al_>J4?9;75J`+Lm$IA{e7t^|1gc7L^(_;Kq)pjYYk zVOr8!h|j`1=P?@{@2@+Pjz*(a+KxHPwiyd=zHHBV*)G0!aminE%vqUoez6@B`nGaU z3DYxdu5KJXq3GS?Q~r0#>G@7CrJosVH2 zC7Zt0``a;L>tXMnf1H|hdj6?-dm}O+sb&$HJ?!(`eogt`F9mD)sSZgKAL@6Ge>A?! z{k@zXz3?&MPq2r_rWu^-FsQjF3 z=sT&1q&VW}jL1>~WjDesKTk?;Ip@HzcaPL>DoDSy=G1a9W@5d|AYdqZU)a7y)+XK6)ek7J_7{TwW`6f1ZRUszUuQ`-EyKNh6Lw3yVhc;8d!!?aGyVsEB$g4Y+_(14e3E|y5J2Lg>ZRV4;~ zBbe%yGwL%?k`)TJ#mWs$+S3N|2-osbK?MeHfueW)DP-6;xmTDY4LS+7KPU0hPUbCx z2(FUmqJZwLs(ZMeTIQSfv-?Av&AZnPUt>JDD@l62vwpne@t6uc4flptr z3Eer=<;k4inft4&GoEw{RaL1zL@dW@y|P6^rIqQxgp%Cvw4Iz9tRYvFN2I#^^?b1- zb8US)iirzzvRg`#tk0n*s&UzjL|@_#hV^x+ZW!Zc3M0ase{Z8sTdmrLT;gc#guRC+zQDKQ}r)Omh%nu{pSfdWAXRD_0M5>WB#QFB%SY zTPG35SUo#RCygww=b6Iu;-Q!lKdjpxx6>!|Z zAog49ag8YFE|M?P zbMj@Y=K7$k@XKGG5+B$EHV~!juLMG$*4W*p02|-TSw4I@2rtd6h0*`|nm zH_r2MfT!X3S->7C758e3#n*`jyw;krDTiylw-w|OU|P{!A~Y+KNM}eltb2r34%1nC zheIm5M?V^k*_@N3`_p;*cj36g?7}lNrt?JbY5|YuLOwn4^r$ZjXueKWYMVtKBft&j zuq{4M_tg=M#- zAsl{J`aBiTLZPq%+$Z9pLwQ6(rIP{eDTLr?%brH7!@>w0-XvO$)MHzUU@5cgb=U1j z&`|$lSL6Q#U?uuR0$wF8MTlhb`ZZ^Rxn?NCKV}jR6G3zJ2SE-;nt2qO>gr%8vvN8p zH$?2x6<}!Y#g`$L^GKRMP=SR%a-W>`X)BiWUfBecuU?hUOyLbgWL z8$T{=xQ+x3znmqWPi|!Di4>0b<3#W{nwdX78Q8M~hsg3K2Mtl0L{}cl{kw>{4et}F z`xy!;h{>HrezAkA$$M% zq$n$>ipn(o=|lBJ>Wf;apKCqBVewPqW3xT&yI^LsGb}1Mfm(;AelPcSJBSb&5APtM zTrfsp4LzQPcgK7q_f-=PeyNVeoa&6^OAoku7NW2WiiXY^+Zz5EKcKtwNE(W1R?<}jxj)&%+IN(Gmv(%b9)rkK_ z%n*m^M%uU&Rpj2($~;v=V>}Zs(r$m6dMMX)F zfL=O=k=R1`#+W_Dqz*aQd5zGKcA!Pec$?BBwu>G1R-g|w#Fg#*ZU?C z^RR&Jtg2(AtD}f;6laKkd+hv(fX{eC-|(a)Y*cUbU2`i z7h1F<(tp~Ux|o(6itr-qfmp`bLwrE6luMpGd|7zQFgV$*1Swe@j?HW%sdBg4y9;o6 zM3gelHSo@tbSUudL-DLuN=bUFoN&--vR+n?7r)dCoVK;8{rz{=3BKn<(rq6BDjx)6 zP~ZCcG=uP#ckya()kg%)qQO_X6}p~Npn~t%6)TZndlPDg+)%~>}OUfBuz_p z#oGD2qqJOzCTMN!OQZN=&xiwr%Fon)CNMR6HX8^H)!jm?fU@A2fb>yfFsEwG5ZcZ| zby%3GMHniFVtnfx?BFzHa0wwfrB@=u+OvwKveJGrnfM3za(bso?~L8T0XrrdVeMIj z6I}{)33oo?F}7Zumfh?7vYGt`w?kg7511zu)&vin zG=9{qDe!w-#Bc8QC4RB`eK>1Z(k#!SK*~)6`qk|5-OA(}qbi8BhxDm@YIWR~h%sD$ zby?>9D5;K!lsl60fXe-|N-1=BojBk$y_2-Zy?NvM^kOBqNcS(4M*H7q+?6FLFgqtD z(saT^b*OZ*xAqKy(&$iLf4Te+4>UKuTc@Q`*Q-XiXko#iN4T4o@{yMsK4|`4s}%Ie z`@(^Zh{AnMmlG3YzOmmY+>5~U3OGOew5xxJ<+K3(H^uGilrw%6UP5UUS zs)p178hN4{K%=X3RVyf2=Pn>KE)S)())sIm(yGxZN1}6++WNUerC|3jt>wrzYHyA^ zyjEv|OQ<51C@;6DO$EplWA_Np@1uq<&;#ASs$XLWUW>;T7B2zplFo>tU&G*UdfsuJ z3dkvKEb~E7JuW&TrKJbn;Wd4M?}O{FZSHW3+cDElc$0BM13;6;HDpmbd^mIbm$W zq&g2(X>1aqe}F-13@)^Ed?tchHWXadY@U9w(`~GjcF_R2g_$-%j|6CucG@>PoUEE0 zJcuZS)DdZ=$F?5k-cZt7P7#I87~Q}s#myBVO+;Fafzt>5>ye=9jV*floEcSlx}a{V zii=rEc&%l+^$ZW#49_X;{32ql+;ER)BL&QBoMqQ}7Pn>xvZKDAmNabZk)K(lgM$zC`M1q5b2#pmhB$q?$6 z@vhgX(^lwvJ_u1a0Xw>|_D+vhPKuig++UZ8RorcBm?~d_nK8u%1tJq8jn0ZvUOJTI z;9l&9bdS5B%CvvoNum|IBuG7{fD4o;%=Ov<)_IJ%Y;B)Ky8VF|B{TSSo4yuJi?Fjk zE@0xnEnxCc}W23^-A@N2WW6!9K07T!_C=#yk4h)z=Yqt zLod(2fjIQ=vUqu}hn60HLKn;owrY#GlS#?Jp$l>M2W@%+&Yk_>sh)r9@3dB8xxrSE z)$ zZ}v5o1)inTPi8|2foIV>mzoo9PJY5i$eEyXPBF?O;F;CL{X>VGEJvH_M+7*0xzIw} zF=YY{6S96<1YIE~9+!&zPBd7PPbvJxCk#{3KA^&{~`{(EhKKbSEZq5 z7ySpcHNZ@`YeK())`>9K8a5qP6aV1z#pz>3JtYu#ACp~`gvQu;z$I(;4Bf15EmXh* z)$(6>-Od1CbF%kekGexf`P1#`1VGQda#ZP#MV%X)Ebw%gcrxCmy7A6Sqy!3{AOB-+JDLcb4r@hfqBN?hwN`{w5tyFa zF*>_}gn(L+J`$e^Uhql_Q@^TbSI;7mfH%f-Sa zl%7h8NbcC(=47KjP1}F3C`Kl@AhL!dhKX-F#1)=al;!m)6*n{y0SI&WcjEX0Y&@Ma+1N%M}VT zB57pW2Xm8Ju}&=ef1qbQH#r0Gc43p#WKMBbL8wq$tz-qYJ~&s%w2ZwfDc&g&IG5Rb z%V9>HMMwpK*{qKXP4Py9xo;+7rm5|c?4BX{^H%^Wno`v;8ez1e-zjaYgx)bW=DP#A z0Nt2egLc3NHN@RTW(I?jPijs(sX?}eMt zxK4fiW5^6RWsNzm{V)doueKjKt?k?m=YKKuZ4nTD{d~Qxnh>ZjzM)GHN4Dm~Jk^K# z__$=2rz5e^T<7v(Y?^-}A>)ePAbnDhE%)t^qk5lKZmIxajmCdpCNoO-THEW+juP7E z%IAUSjKKRFq-%O`KOvSo!pxU=8wP~mNa%?Ka$d^(4|$3t>cXqnq|i z0bW?4+GzQkM< zS>MFKYk;RJ{*_(a2q;?lczqHy&Z4{ic?*p85Y-h!4G|{j7>!Zr(DRzcg`l$HK@LwZs>?Q!sz*_*{Q2GnyfIX!s;!WW>ry@ zfQ1Po*SjIJ{18pHpsHaV0cd_m^$A1c(bg47uNM(=YNX#XV+Ik%LTU%iD22C+Sx*xq z5!`i(x;+|@)_`|G1CV(n2I?vqN1G(3AzC%or27kyMxCTnk6*K*LO%ZrrXvNdzlxg^ z2*3+#b3Tf&O5fggIW?#h;p+X`70^7U#kSI{IU{ph%Ju;+;P!m-y+IhWy=TRLNAR4$ ztJRb5qb8u~aQWmiga|3MT_$W6y4=_v!B8b#cwX$&l6*>gJKX6)C;O1FbbE?o;vs5!^XuG$UsBd-Jie5^pChnX)Pac-c+La zvU12$m4CK$q)CmjQr0cH1<&)Dhu}-srQ0rROQBEAYmYa#HIHdZ^ z`n1O@4)-$zu|&e)AI_w-eGH7=uQOWb0Xw`g>I}7yh~hSQ6pUdKtqk*1!kK+*&CF^> zlwM-;QXs(M%MXrdBW5a+ot`^OqpO74z`BHZJMPA zlGyQ%&d=))VyDF#$95;4DnE0XMNIg;Qz{&DLJ53Q32tGQOqskm_HmuwEfDJoA68|7 zBG0n-xh+v^*u5ZnF@!rFVP@F4xpB5|G?=p3;>qWt398J;W$0aaO&h`O#T3AEtS7;oYGTSjJa7`)T~DY~LGw!=B38pkK;Li%BjT679g% zl5Hvo%+E)#_#4d+>I6abPW)b6>wl%x0bH$Eyb8<@Dz|Yk(>i?Y&oS zJl8j-ietw>t1%Ce6sV$W>3ZsVMl$hEiH{w|cZVj$g(_l3X)Wi=LXA+>E#-{grCh+_ zv@tGG4KYKscF#T=IT7Bju$BuXKYo#htz6ngx1Kl7!4hvmLmwVZKL^_)J@T*q{I5M3 zyONuKk|9vXLPKF&aBR^FmwF7OoDFb6slw3dD|A|8F$HwrNyTl6U>GM1T(i+?81V!b zC{AO{Jsk*V)|hy=45Z}rnzp_-4r z*6L^@;Jmu|`~eQ&UY9A)L`q7W-fS}?HKL(U{Jn1tO0AoV@j<0P?c%W^SrQeV2QuP^ z{U>c`I;|`!`4(<$TF4;P+9gRM%P$N_ESsWu=mH+OkzH}-0s%MRwyqW?o~aPNta>1P zg>c~Y?EolE$18|e%J9`MGmjsT6~58Mg1KLLeyK%>iSPdLZYyfeWW4{@w%Pfmz|!cp z+E*%x%P6zUWEfF;OZ!hq$#8M47q(hxGSPojU#KW)!QTbPYi7(?&Z^J2gpx!r9JdW{ zF$SWx510g5xO)JEswo}e+ zJI_Cndj`WDmJBIDU@Mu~QuRa*O?IaOlWw)Ud3Y-H8g)){F%vJE+TIEkLS{gz6sci?9X{UMY3(Bp(1ar<4A@fY+Mu+eN zZu{1lN1tC;-rRf)S{F6>ro!65qt=_8(UwS;u1L#>*Uq=gg9w1TUJfksWJ(nnMC%Kl zlt2*i!@O@y3*k3V4z+iv3aEzo; zCS}7lFvh0PhPUYp+Fp=?n)u1!6-#oX+)*T&CS1%g4(XKYO`Pe%iXs&H=Z~$Z7oR~5 zxn)b=S3=IUbE|p7H;fTLG3sR#;PZS4T+uZYAoO?yN?RNEE-s# zXvSYAbQXXuMfF53SGf502@h;)BtKSeKg7Y<#-H-7G|;^#vA?=X3nJ#7I|ISim0-%= zrB;x+b1TvBatCPD2oI+Pr&4BjZ+13v3ZMVhyAJW&l7J7qPx&vtx4Kg++Se zzkhmP#!#mA9V+6IY3`cCHcirX$_HI#ANlh-sgcuqQ#!tim4t%m?Nqmy^~25$PlL^9 zfv8*5q2T*SeyX+@0+ppB*VAB`ArIZfRk~EiG{hZILAhsPk1@R!6dY0*+QcgIEqVy* z?$A75XM0hV*CItjfdrgm;!@74xQw3@k8DoU_ojx9EO_>%K)d*b^o}$xne%0@R${c# zDtd-hdEyum?R9P)@0||1Uu0(>Z^UXR)gvcw_4i&yFdjT|EZEb*C3_PS58I2Nj=S1K z-&Vp+JA*;A`?=x=N76KWgP(8lRpu^@@W~WESn;p?J*S>Fuxs0Kdb#OyTr&$PSX$v7 zqXk)eLfdRKH=0du2LVa#WG!ng+_bvgO&-!T#xOeP>({`fwVOUZV}ZbeA!D?&z+FVd zZ`N}rq{`6I@DJ`AZSK(KX$6^wvG|g5i_^E5B_kCE|3nc0Cv~|GOr)5dYS}t~k}6xZ zQU=_GEs^+=M+?*cyzo{h@KYudOs>7gyULgv4w+}<*wes;BsX1r#@SPkJmih-Jk#dA zFyQ1!sz`!yaF1zDAyAQw$*R&qU~E4Ad4iMna(6Rbk(TijHLPTy#=IpEU$Sjsnu|Ow zqT(6b^eXCC*JXxpz+^`_wBqPikOg1&V~`e{d6--;Vi`m``a^K7uj_Ij=1Qm)f1(vZ z2qU*+nB7m(%D{N8=M5KTLd?Ph{De+!>N-7+iLQ3A7`|I#b|>1>h?yE*UT^oivm#ZZj$H3`K;1@b3xfex$l#?sP8$2} zW(|~vf2>uW6bO!gRR4^5J#r#=0n?3%Zs#KsxJIYFfN+lY*6wOlsaZ5X@+ZQM((~L! zsx)Lpo_ak(Gfo~ph8+xc^x1Z-TH5K6t9WBiJD4B0|3(KE-4n$~FyBKfc&yKTh2yN| zvZ08}G$*vcWYwi_xgC^${&0&H*kvczT}LpEtvQWla!ZQUDfb_ot0WaX8bu$Ox zZ;EvUL1Q*+@ywg5WvAKE5gw=sQ&lVHPEaFE59$f@SQEc z!h_20OQ_Ine97u&+nl4P=-hA{x_wVcTV$z2aPF8G%?Rcd*0)#-2AUYiN8~YcZqRGuQVMw(D9U|mRVBuw!{3@!qjEs zg~y=%D~YmTZtA<+fxuT0TP);orLTu4)}Izgy`F4MCr}aDM zoL{8nl-H3U7~4b3zn+;BTUd!HKL#@)(*Y8X!4vMfh@<=DY0doHcacDhZJ``r@&Wp0 z|5y}a#i}sgP!puZ#(2UgZ#jIDP|GbjIc;MA%R2|2J2O%xER%Pm0Pr1%(xKppZCBqO zVv0<;?{g8Zg{={@Hx!z9eDnr_u_^iGBU~eqN*JI17cZ4?(ypHHjH)84cIf|gK!?58 zZG$D53G+bD_McU+PiW7SY4h;> zo6F$o+O(sBKJ%vf8k1vQTyEG#rupX_N#Ud&89e}NHFb*Nv%c2 zgjnse(6u~(HBanTz|FT^)1s$00S!8xA`tG@4Bml2V*=|i)?JHesEpKw@EkMV2!d;> z&tPjlooM~j5rOHiD1&Lo+R=PM8zE>uDfCMv;D6&a%B#%}UouN9ahnF^WyfGiD@n4u zIb$|l1QE%^azukvF|kb$(m)6niA1TArh!K-sHup(^C2M+%krwQ$)Y^+$J{l41}=O=6>F{U) zDQ{iG{wG3gbwwF193a(oTqnU0Jd^8STfjDsC^|mH1?Sr|%8=or97VVWIBz=C@Phoj z3r)3g(j4|@e~8Z@4d!5_KFv&4CBfvo4{RNw?MM##9iE8-!)i2HZd%qyM{7)Q{qk1_ zLpY3Tkjkb*s&GZEvkDHOt0MkIEcRAU8O)DtFZ!1|+kswdYCN?z0`nr#9cDQuR7bpn z8^Z3vk1j#(I~a}%9tOB5W4@6G^ah?(NP(G==dkb6Xw#$U(FE*P60j>2>2g+Q{F#O$sR>^$q?)Mdv@YW zY2qXjUtx_~l~m6wCJ2YF3^0*sa-H&DkKzWgywoy_h^;mUgJ7W1^hDYqALtD|IA=ft z>T+%tqzZ|n`FTFl&iq1A1_u=DRWIWqaziGi_n~klBG+qWK$U|D3pD)Tmc>tc=`@J~ z7@o{)E5FLWrLPX1=r1O|n;=2tzW<`DLluEoYKeju3(^#CJc(MH`bOu5{x(?so;+2k zEkOQ?ZDD_SEaBnWH}SLD&$x=n{OFr(>3!uL9Jh*iyxEx%!f%gcX=2_ppI_JtITHo1 zSzk%5DX|={^|{eDhy(WB7lNyGP)o_c~QpTMzy;|?SR6&;BrqjL{*-)J3Z13?1KrnoFiH!CvLGYoa5WQXdLrEsCTk-8~EJ$ z=s$&r%>H()Mnr|dotQW)*DC=1?f;q*iVrR#iWcT6?yA#0OU@BNu5w(@C^mE|_Sy7e+Gy3L6F)*r%+P?}QUz*IAu* zV+lYg|8#p2f#mOvgR(Ljl%2ds_XoUJRlD#Kbi>9}LOyI2WwYMe#sJyH!@a&9A2(tM zutjVwwD&O5mX)3)AWNht;ft6NnHJkar<&u~yq?qjqLUQQ4fLSM4@^6@VF^MpP7u(#> z&b&W-rbT_O)yq$pIAYyy=kUSl!gak*mUx^hDTagq^`gJ{`J$jCU18i86oJ!VI~^&; zUZ_2LYQ!NZq_Y@z5k&$OuDTMLaSwaI3HRjLh zhn1(eMxL+p>aO9bc<`LTvJ<^v-?9A{>*l;Gjf1Hf@A@Et@#*`jU1kd%Snw$4Epp(3 z-Z8=!o>JZU&V&^6MYt;)AMjO1l9FKh>bl0Xp=QU?a9X!DkMid*`0#cyp(7l4yo93#Gt^5WB^S+qY68h z+%G-Lhq1Vfoem5ont*=BvW6B63?I`dYXAbrxIvgrnZdwNSs{Bah@LlpW+Um- z_OvY$A2>UgYVB!&c8AF}KLYH_x{fR;E??R6P9nyx?_T@$2}p(3;=Kq^ULJW~M<8jQ zs*r3+in(+o7Q=%NR?LfI;PljF)aG9Rs+s1W79u6ts7#e{(ms3i42o(X;*um-TS0D) ztrkEv9Yu5}5n$&;J6K47#j7_ne2>z288o}0$V;N~P~=}G=T6}lXc7iFWRIb)s-1s z-@h*c*E;oBZ2zei{|(0VrIRE$a@ylAv&H39N!V<2CB?|;DnX>?#t@SWnxPpxj%hZb zC?%;qaBG`Rxl18Z<)gMvk~Si)E*Z|I)1-$^j&k8zWuBKdf)ShdfD88Qoj%vod`eke z&$#iTfB&aNOTSanI=HdGS>P3q3i>5Kzl)#7U!i;S32x2&T5-`amAoeHo`oQr(m0CR zTH6s7!QfqExSAk|y4y9woBZ*^#0T-vF;S z=%J~G&*ZMlZbX@jN^5|=-fO)XNbG%1(jWTFAny$~-%snk1YH9Nxr65^sR#7K6G6BLdBOu*L@=t z|C1@R-x;8gRmzFoMa&hwpshJEIV{!8pFbMrj)*3=#h}%kx;!2sc3e0T%rp-B@MfMA zJu|4H#kmw8Kth7~I}vh;1aR*UGfrrI1E*d%>^%({Z{Le2)Fl$j_S*K+Atf6&PGaur zqU^FtHyAnFmNo+unZczRlHX@IVAO&$6kt+-p*?x6u6;OSA zKcQJ;CJN!U%eciNcUXwlLlE9uwfGwZBC={#4|53Cs4xOy$j0?+zCC8yWKql@u!c&i zr3E-RW_ z-IhGGO?FUYxKD^JNW9Rh3`6#a5Ogm7n!etc3qD!$!aHk3^0!y6ol#<_trZ64^3$Q< zfGW3sRSQjo>~K99R8>G-)k@t*89g&NDKZn9qm}Z8iRe~g5r;u8xM#&JECpISqZ%4& znYZl0)am5zivRj%*xt?rrF)eu)$EiK__XeF1I``gb=4;{eDqOU-N>p^GxU@o!Ra#^ z_U_@{wb%p6z8cz;JP;9;zEAca&5HQ=^!lYLH8u{t$bidzeK)3|v_(w+a2Uxl+q+7| z<0%X_%g!c~yr(6~ch#k0K{SL`ldg5l~#%e-EFf2>(Z;RK5_S| z1S~Rxdqs^Rug|`GfLG{DhUxk6o}Hbs<|1rK)@(?~&oq2Ve&Jbo>teF3zmv>9GWQu# z)j;m{DC?QQR;Fh6&q>CLT<~(X!0jGV@;e1X#$=^Dk;dZw!MkV9`^m493?7-C%Hz^d z_rq}k#>ttmc`J_acJ4Vup|gyS5X!J+iISVy>bEO}ux6y~UUrX&3YNB3QIvxIABaA%X6ot#{u1TX0`=9veQhaV{-=xA_7#TZ0 z9)tG&t2uE4L6ddlDmtcLBnLCYa%JOq&!1=Ibu)SlEu7bgrGUd<-UgV0ijEHa2nYB; zYSX@}2lBj3EBQ?hi;Vm2CU#QHZN;Yd_@Iq!CG^8ltT1|}Z2a8j$Po(SoyF>JVHGaJ z40K*!O{N8(G73bVuyL!j08hX1X=_St+WIqnT_UclVnvX|frL}?;jXP&^l4#)@a-2n z`oa!7XM!i}=hb@}`DK@{tT;rZ({rfeI`CcpU3*iKcGs3k_zk^!c-hpsjWYH^zfg1W zJR%mQAX9=bnJs+$rE6M*p2_N&?KbVwLk{s@Npq(^9z%+aP%EZt8)0QGr$zmf~L zk%^Z--%C)bbwC;x?7B;HR_M~KdVya@axWIUb>5V)AxSAAcpJf(+ zP$a@mRWx21pU*nI{-;^nP|+g#DtND}AaNC*xUfQ=T>XUbl?&jXI=>@^x@9Ob$`=-5 zEdB1yCqOfyRs$crzB=N~(EsGhRaC;?%Jof=gZ0gCe?6+0mG*H1D{HBpqae45xDEJd zJXh1M1b)@MCuNpVRWTUn0uhf+q1e~dAQAd zvzlOHLoI;;2N(;a6GAI-di&t<$rIRptK6^rG9@@_;#Fp@dwJ!~U8t8p4i2OM$J7>E z!d%!ZKh`&gZjDXXBnL%#C~a9YXKljAqn8w!pvW_g#avRh*HL=g0Og%IMerlqysYjoYOy0)@TRJ^D zO+Ap$Ysa~x#bIhitSNNwjZ^<9efl$(U0JTFLOi2)Jjd}@0oHJF_Q~I?sEM7%GwZ^j zDBZgk`ycw)9s;9xs>$%d_N_rDg>a#V1dgb!-u2B22Iw}@4*7zf5g-1C2tw@5sG0{* z?wr*=PA2Rxu;y{1TlvMXyLhh@&-xvb48yi?WJ?AP^Je`HPdPfTV7>d#H#~lw56R5@ z@lIabw0fAB2GB;K!4%MxTU{#By&^vW-CGN9R~HxJVIpmxap@=5-vcbse?U7l;Y#NX z-~16VGdA5!Sf^>wE@4c!b|7osU5onsGX#AihXAMc0!2S*xv&xaZ+2U)PCP#66O|xc zzmQgB!gInA=9n9B^yiwTBTB-BjCc)^o&pUn9VdQVav&@ zo*J|}rgR!WW`zz~j*u!vSF~V+mkawTYT|US>a3_3WCsI=fk38(Y|?*GAtS)0z6Qv0TAM z2htJrg<9Ra8{jE@wjs=db)2^b-H5rcEc6X-FZ0hPEx$H;l$Wc!>?n_9{E}CJw%=AB zzYVSGu1}n`StW+I`PKAfJkIB!V|1F4_)!>yZ>aQ99VKu}Gt*P`GI}2y@@BhrvOqhv zyfLf3OU=37-l1nSOGSQ3_%8U|eZLFlk~kNEqC-M1th{)6qhTB-+|s*%XY1Pyy?ns} z<piz2k`kkg`J%K1z$yf8CHgv!n8}kroyxb{c z^N$NS;#aV2z2|qhP_{N7hlVRVMolW1lWscsT?J2*9iM)* znz%|@jP%#=V@N|hU1n&46okjsx`DetfgyUvXl(lXrLk!VhM9*=I&Yd?e3epbMC1?{ z-woy`P%wpIv1K(5A*_c%c_Ssm`9g2(*z{hr@MrbzVlH{#F4to`sBN!ipzAY$jb0fJ z7v#q`{QC5y)?MRd{AmdlJhxMpw^Wt@SPk5_S0e_5@nPG0bcap-`>sDUPIPxy20a)m zzo+=NzW2L?z$Dl3DZ)b^UYrH6+vTIhxyH{oUJsoQS$$+yN-4mm_eKufU;>}jAG$)1 z5|XtsIs}u=#D09`E#IQlkm{zX-{jy@6#VA0zfcx5TNe8&1$3wfkA0Sq8tMWEGE2@l zJLAM{baCJqsZwz(#Dm#H?Z>~&ZMUwc5$h3vIN#1YJA1jq#y5V>uLTX#K2+X7exGR- zF|v|w1It?#ufv0PWmI#3`X4J#^weJcSy9RNi=@-*{3V0>eQ#i{EI6TnxzcWN+CIyh z27Sofy6;*Rzh9YstT|)i#cE-Vie&6LLVO;QI+KMl(_S6GPJ9)0>g;)<%R7C(5&z1Y zQhm#V;UMYE(xmJ*F^~-1rMEBrB0k)_}ARA^UqoR@+dK~a- zN{!Oic%g*gmYfWNa=*cx_ZIXuoldWiXO8(#qR0~VB< z7co&cVRlX6j?r)kBD;#8IyNmvJT|S(VOZ~ZvSYo+yv4&`I@(CGuK)c(_}8ki=gJ43YBjbAJ)MwV0=SK>S>E|(GH1rpXYXO>^7`+6$dm4o zYI!%zahgNbJzf^xmCCQYiM3pIp|mAdc^rS$LI8fPeJDhT;IH1y3X)@Hw@!Q53|<=f zv43D^y}5A9>!o_Vt1!hf4KDc2-(hVFW`4#*3%3Ly40a)uGEUAEPCTl-#(%3DQIly2 z+y(g6y28r%K&ANDQt$jS^%ZRM`1Ezt8E5VB>9rH`!vnozFDlB_B5|1FFcFr+0QNKS z3(rXBcMK0-fc=^?XRi&%Jc#*M_iJMfJzKk9=c!)toI=p7`3*uKs-$paSft!TL)zko zvp2sJ_bVA|tM}RAF|aBz%E*NCQZnEjzJ1qr5Kb`V;bn3>G_73O z*o3b7{L!UP!tqCi*@u74-FF)WE{JXJQ?aaW^5+=ks-g2@kG}JUR7`LxvaEjUl?DUU zs-8&-W)1OzbLm91;2A-~?>~9k8x@VCAJ#V)+I=QZ|9FoWaS(2!dBNpQxjG9RklH^` zxO9~ZEAgbf(HkfIj7wB#gTBVcJR9)g6A_&;4*K03rUo3TnSv zlD_Xc|LR1S%==(ijs5KM^!V^IQ3^3d0`Raz>Ca+b4$#&N&A4JN75FT2JH4V^M`uHw+z8U=h{^{XfmwloY0R$5=rScS0u4=2yh@0V348XiWj7yEiC`67(` z|AS^y+J@=lHhKpP$5F#sm)7L@9cE90iSK^3#gDko$MLWPWyc9u!Aw=PmsIig*!la4x=)*TaJpJsA@#iyVyN$Bdbz5VC zsZ>mv$g=-hojm%l7%ZGW-e*AjZ90d@qx5Q!jVzn>i(_9KN1u#OD~v*VYq9CEj%l-1 zebrl`KVeO#YKVdeo+6jeGmayh@sJ)fbgVqD89Bcb?=!uSVkZz!nLPjlm$moaHirZd zw0o_wQuBytOM)0)oo!)P5z{61yXWSuua@s&ukh!?PdN^t;xr$U@#rUpM)2s&jJl$c zr5VyO2}XJR#IZ7{w0U0i7xt0=>-Pe{hDQFYZ0IKda+I3P#{d4f?;uH2HFo}S$*aKH zn@6*vv1!kf4nFOAV*4ya7ze}GE$8@;xS0M1RUsW7jwN6pJx}38mDG-%n@(DJOCU0na!hP;YrbqJ?)s-Cm{N`lf}w^_m%GN_|Gpytw`u)*nUJ@#%NuZfplE${5wz8i@MB-ZXDWT1&bzeNOKn zi4nB*R-8Q6bvdd1BYjfaxc~oA_1Ip0(FOuO0kV8q*# zi)2oSc**nFf~vfJv~^V&UKmdd)0QJtf8xFyy0bqo>NqJ^aur~VbK=8gz<-_3c4P^( z@Ge?{|9Cbr>|M*9J%-8r^<&ihoph`SY9`p3&=*^uD%t{#azF>b;R_>+}KDOFrv=){3`@kVTCr^yhFm^uqP#_T_Zaqa>+ zE?;Aw(m}jRS|8vYDmQdn;J}6+;8omAY8(dvNnPAB(}p8N7|2KU!7N z105G_ul41YbJxpcKs%AS_a;Dam6EPBpzHL?c)UhM=2YzNdT&|i{L7^9;U-!*IljZ!Gs$4qS2w~G(Hxq$8*)d z^NF`7_2h(Y!TI zNJ8AN<FCGPLnOB(`t#k zQ}xAzDqF?(PL)}6vP!^fdfH9`y3qXfW)(a074~`|{}?8Mp=mtxnFTWU-4*#n{YIJ1 z$3jqV-?963PA=)n&!8MW7N$S{Lx}jd#IRlilKqWV-R-kh-i|9^fez@CWicR>;rOLw zRKth~8JGBfA;QmUh$55jho)zf;}o{u$UEkO3WY)>(2K3>5*KLK!4hr)Ze;@cXzMLl z?MU%a@42nBR^|5FV40F;7TOXJvaw5`bp52dkbxH9npsbDVjr%TX&S%SqrG5TVqsx+ zJTmyC;Tt%zzWzMpGl$c(4~;Vk8%I;E>95qPl;VHX|5{Gun=kJag_L3|% z_{kE)XG&^izfEfOtR{!@A11at7wLHcS3!nfq>U3P)FeZB@$w-1CuWZkNAc6r*d52y zHDVu~!AB+$!^G43qYfXmJG)tB0aD9w8ia$mm}yjY+UHO7KQUZPIK5`<#>aU|bQUI& z3&R*le-a8^d-#bN`fRmc&ta69jBxqdRf&BygYT?sz|t22nV(iaV2=1;n#};Pz@f~b zg_{j^?p>H*LhyjLi$npz|Ec2UGa&9&y6=#aL+3q#SJ5K}A)XX=!;(5q1fjHSffM~^ zilQM!N{hoVhW6glhw@GJi;ytXtQDhJVM=Qvi~aZvK1^W7$y>1|kEj~EcmJ)>hxO^FtpcyF)53Pen_>evy`1&m$q1!W~b2 zi^B%tfu1pnOe`>Tepe_!*{d&33qwOiSuieC+hMs;vaH%6T`k8)Vp!uW!Cxi2TL6rC zCzbFJLg67TV5==Y_*9+m4n4mDF!(LGKX-=m{!XGA^>m;1Dgd47(XRkKpTwCzc5)D> z{fvg1#wiCmkv6?RWej?t=R*I{Mtu0Hd=J=>4XZDK@ga0(_EWWAZ~?s%18&I|ovuGg zdC#_KNaL*d=>~!Um3QVI_@>MEk?%H!QtM6ditIEcS{t!()Z-|(rET~cKBNZW!C8D${U$ct z`Q7HqM>J{OcPq+%il}PSK%VQ5towp(>nkXH%mR6&B!2;`Tw8NIUAW4sj*5d5sw=tg zb~}NYo5|7&2+bDiZmVJ?V7~hfN0MPeTSb=1cgKyHu87VOHjHhj@uqHsAA>&Biqb(( zS)gCMm@nXT3&x1gl+2S5r__%af9bv*qIBraQI<`-(fqBn{*!bUH3|UomW+Ib7=(t) zs;o^y?b-EEDLu_tUXB@jP9AZ>A)I?UXl&;WS}Q#6WC--3Of;x~Zx8 zp^uFl81HNUdVvYXay2pQbYNb@mHaSBXJs4@0b~^8GD$izwGYQ(EkmU?ul>=38IfVn%{w$5r}2%AgtvK<$k?iGOK?_~1rc(XOYZ}8 zg>xf6!P*fu8^kdA4C3x*hBoJ8PVq<2H6A@naQ3+22nhQKv8fE!qFuj}e79!|d!^?Z zaJe#xs!kT9Z1uO~(DCo4w7egN&Qp+7`B%~#SmBtGcN(}c>`ib8!^n+H~L7G z7*jfPgBp%{4Wn^}u3Dd&7+S0cine zPsCM2Oq%)bK5JGg@JizJN!ik+;1f6rRtSg9%l>}!3`6(D}ic{J$>%fjR_vU?H|{q+YImBX=^9o5;nmUAG<$Fe3NlRp=Ukg{Gx(G43#nTGP^e5{KIaoQ zWf-9Z#3l&XKY5naaLHd<9n}g4TIe}(!uGMEZXJD}*u$eU@S);dsRhX3!uje;;ox83 z;OYMlP`Hm$G`x=(vvF`%1t{OVI?@mcy}?D1)YU_hgfQs4-e^wgMy&XXV=uwK=_knW zM3X$8JHdH%%aVZy!9%-10&9fNHs{TVcf$f+&I822f_Ta9w?8(Do6~=ZVbQ)38#Y7? zb)^NsmVfW0kHBlMRi_4K2665&P1y3+erN|lv>W~8kZ>*lk33oi9Ppm}v?Rvb$P9df z7%5;Z?RlVsb*AwnP87-B{0zv`Csi=5p9|`A)MGx3>|rz3gw-F-|5))*v+ucp5rE|cgj_KS zfvlz9O|cm1a!3XFTf&At(7l~*q}KJ<0G?;uChkT79{S=>T35^Zv2U*+2K;+eo*y?@sqol{_^{dqCY;2)IKDa67ae?I z20tf4*dRUyR8s%MerbF*Ne3`}Ak+cGRlhX!dcgsmI^^_smLjw7jaL2LguURl5Whm4 z;ErK#fp=%Iu8IHx+(;7!Os}6_rE0Wzkya0Kk^+ckQABKBcsD3Mn+hH|y+mn$bWqKQ0Cu7epoVL9&R=^b?bQqzD%pM>$_~{hew2(h_s| zjhNdL8M8n!9Vqp10bA)YfT({+b*Pheq5ce>4!~scG(J9&xLd!oL{`* zzA5yJ*gW(zyBb7LJKEZIodnt(%zr9?or#MLf}M3n&79lXl2M0VJ!~QO(|n`6SKR!P zclS@4Sucpf3>7=RVu54m$_ebHXagpU;g`WErkel3$oRCAJK=Zx@;m!Gh6l$dZWaV` zURG9fl?A7!FIH2+p#dg?=0jOrzl{*?cO?z&f! z=NK$Wtv5=@4vtPvnfpm!{AL_Hk7+cDw0RDd2vzC8jXC@FZK9{~H`M=|%7R4~n|wUN zsu$S#S0wn&-yI;&=Hk1<6u%Nxd4bJ&ll66U4^SpeOT%LzbWVcawCh`K4xg&k?5gx6pJV!bmhijb`Uro`ItYdGi=I&^5_83%G748e{U0(^sNbN-$|%e zg`ux6;uuS9q`}tA(i>28&~KwTBguOY1RYRfE?{FlO;}pjY5bfVh*XFV(w)A=GYX*m z#)#-&b^$12dDuc#_7#-+7f3tz)x1Dp~cK8 zb%>pAo>FD+g*KTd{azn0UnDkPIs4l^FL1u-b_yknWWB@?z|$>mdTSyeNL_GdEw!b`iBAabsv>Y zO96K2`~JfT2O$U>Zu!J8F#}RI^Ef4Z@Vg*i<5j#z2H4DU(HbzhBodl6#^k!bU{Rmp zSQx(vkY^)OtIbz_*+BDRTgBt(-VMdV<7mLewae`%oA>uPpWIkV*>G!Y#y*<8oW_1B zR=VWT@pOiTU^?*6L1|t;76ZFBjkj(kY`C*+&VM=j@kM8jgib z&CT>Um~PSkgJ7`>*Mqt;0PlkDJ{ks0j;M!s$Hrv=efgaGII8eu*y{19ya^LVuiB|Y zeu`2x?S~F_YQnx^Hi^`~sn<*a1{mLV{TYD8AdiN*CkgbwKsY-#0N(fx+|}!(b!|ggwOdjbLlOWPin7C;AcHrnZ$`JwgCL*1 ztQjYNiuS@a#vk=#1=G}SnyhKC-I!*^$@6Ccp=0-a zWnw~(qJmww1RJ~BMAkkFY5;hA(9O+Zb=csKO%3HqfT_ej(S$&$@1}%Zi@ISoXYUi6 z`xx3zT9Veya22S!U$k?;SoAYm=LMvi*KZ!xaXin0F;khwC-3Tz-tS1>Caq8P>-@k} za*s9x!H{M=KH!_74(5{gn$v`!R)AdoaWiZZ$yDwmjAeUX&RrX>Rbz~ApvFJ%oO*T9Aca09{JIy#&WacsEt^C+df<MKofitVbw*)s_5|4^wvI z)e*GYsH6iu$ARq zVx?lK9^TdA^+#_5zR=bsY)nt9NWJ*YJ9f;z$?ASs+6DVLgZ7gXb|>IZ>~X-n1BO`m zdUYQ6U0(v3?XpU&)BTj=um3mzC$u+w=wQd=CxR4;{yu|GmGnhxgB-n@?RwF1V(o@P z(M>Sx7oW$+NRuB<<9v&-5d^SM{26iL6J3GYxd2`Us5yS^q%d^Wzr)^3utXS{Z%pG1 z;+DtEU=y-Yp9qk(8w^zv*LXL^f-(8y^@0U@ITEb-`sbY8eW=V0(y1oT)yz>ifO0QB zv+$`n$D7YC1i+!%&$43!d3!8D<*fX%vL4%<`yYsaouhNLzL>PRoQ%7v4T#8OJL;laWhNnu7QL2DK4SVB(o_IFnw4omU;dNJmHR1T{=Xn4dxgXr! z9jm+sNHAzKMtL=hNhK^^`7tc@k(Tmle(twHYUNG7uq&M@NNVfO$JEqsow@toCBE2RO{J;MM9FP^&eTi4R5@dZAo@cn7fZ=qbrlWQgTdSd9@>{a@ z64T+pZ}4?NyxcdM_f^MC_q-$;0F#qJE8qqqWS;mEDE zK&B%eGIb9i*=qn8oa){BaN!o?stORb&NrimbP$C@@Wn|{qx+C)m_CU#@Qb*cp}9F= zzdUt)n+Je(RZFQKNV40m+%~BFrg9(ZvuP!Uy{!T)?=*`ZP~-Kn0+oUoDK~b2(X<1) zepi1oq1oUM_1Qu60U~T%1NA(S(J5g4f0AT?-C{Fq34lv2tZKD~x-=|a2otbJn)gPL z?8^$sI|DN2LdvsV?a%nCFx*C82tE(yUR@CD@P7ywv21}yk{lPVczaa<$ASDUY=5Amt0OjgECWSxK` zlNLaL%oQYuc0kICv@x%6M3BejD*$F?)%``Q59N%jvRa3{ek_E!Qff?U<;W+`mAL>e z$hGMkhVbj|;2fUlNwdHgYMQ=fh@|9F!5*5nPvhTKQx4uCI1dR}$>m)qIb*hSrRhMh zU9JN!C?}QA=n^9EKBT|WknNA0#=BItq>@vwW(ifv98V{lzy@C^BS}aon=qj+$>M-r zovPS~%?<^aTu;(WQPQ_O{jqrx;`{a*plOT5ylkU;GWhP*7sN1W6sa}TV za)Nx;+q^hlD#J+*wB#1pWZ`6Uwzm$s)uPz2u;>9_Z~b^8ox7*41T zy9@8uGFbx_921w@srl>+j1C=@&v<0Q*dQjA0Wd=h z;I32m;N1qF-XA9`IY)q5PCT%A9Fht~JUVQ^@+Nqppo^Fr2B_=Yu2Y(N3exPfB{N*F;2`*yGW~aseWPWd z;I(ERAz?&^Nw`jCn5+a3qyFFo>jt^CHn>y*9G8a)KiqPV@pW$UI32 zzXNDkRWxn*3HToeerv-XkN!|gF)Eyg=4gB{%vCH6S z|6lHWegk9fgI47op)6naKx?;R6*Yp*&H{7soN6h6eV=cNU)J1l-0uG9W+p;ZRRjR? zfvutEAN>A4j)5vB$|dxn-$OaiOC!RQgdkPmy5ng*(Dcea=-#EBT&Ikj4+ok-8t58^8j^MIpK6cjG7+Aq%lkBs174#YXWVUn+tkY-u-c0 z#-|eThW;V+aQv;zF$7~$I;NwSuw-d#fR|FhM6KV=d7ZgYHx2Bbeg$JzIE#g9wK0L4 z@&plJRS4qu(S!~0&fg}n9B|G~LuJS(ZCp+mdad-I$^opaRxVHQm*@N^n|}{3!54n) z1#x8mFku#YdGN>Jl!J2~!vg5ogndUh?KJ2{ zOT_ui!-8NgiPg6T`N-&cWPE-2Wu#8@Kn~(or^T}u@C89O(cy*D^e13BsZIy25tx3)Fy+TR|&I~?17r@%mv{MA#VXWwj!`r6WKqpu=vx`yTIQ6F*EG%cJU<{^GY+1fMty{Rm)2BGhXCS$;WDX>3^Zi#w z361kH@P(9)y)P#MvGH%hn-0UhFEOYwKNt;me-C>vgLE2EBKZ4dg&O3MA*2wO{k7)j~c-2_dO2> z@cf$QAE@Zrpkv(q+CyNW!t}mR&SIvL*&zJ}fvS($QLn^za-*Ywf!z0U93*0IM8%-Sh`ZGTARwauRP;rphskkOM_==Vgc&%rtJy{p-R@RU)jH!^6WI{# zC2pVr+cbip=|gu+fQY!V|LrobUl{LNkwDqLJsv4t`7Vwn?HySVBbK4^Po z+UQ_hN`a2@*~<$E=QsBVC*cbcy9b5snm}&at{jfQl%+utea1eAWD~Yf|NBq#i+#mG zS-{+<$r{!Wh6I9Eibju~@Ih8VHV6m74p3efH5N;pcy;uO@)@%~cAnz|TyB_4a04b# zr!B&G`3@@;##kh+@!+p_v0~y4Z}fH}nAc+U1z=&R*K)M1klYn)NfuPiMV_{}+YXq- z>XeDs>WFH86SjKR2R-;7JGmQ41905__r#D9=8xKFT%N5N*SA5Y3hVlF( zWr{?7@l7=OmI)Xk;Ews~Hz~G-3C8{y2QRejAcmkGK>5iny6pYq7@SPE+Ye5_e${-g zI^}qKLkb#;FWTAM+LeB_-&99#tlrgCbfKt}QUg@XvIoJ0p{sNFSXbZLJ_b}MeOAX- z`+u@Li|%={Kl2=9eK4LJ>Oc8@m0Y=Vg(p)835`{ros3wDEuO{?FA`P`T(-XQtRMFd6z$lC5{w5*}<<2>YJ;uqt<;V8*@oLI;d~B`U@EN@rF#{E8C`Mnk#Q7U!_&y*Kd>TgFvlTC)`ko zTiEa_9H(>>NGyt!FhI+m;|{P+xmQv^QWfTB53JC4f;z z+)Z2c=sjrEPo^SO)~~6F+}~V6Zfu`EN)=Yr3zM4!<)`rnp^}d-!91#~y7g8sJ`{pR zh2PRT%~uoyX$AA16KG#To<2W2BnqgM>IHI?4>;HssUm}Yp*-X-)jN3*)i8q+Ie6ZM~C9=V; zR2yCBt&+F{s#5wAn`vP3i1ehOwM0?)t`IAKe0YcpUfSH(He{WE#Gh=~x_I=6uhx7@J*e^0oSmMro z(HHS2CnUj?hE_*Fg+$dp4wMMa6M~fThvB~l8Ee9(!E_|e^KQvv*XZGLt7i9%*?@!O zrzpXwb%qv7$e_P=9g1>25wb+wZAkz)P2RxdGR4{$`}KcUw>BZ8G8Ry7_qJm_WKt=0iVVIj zThtd`RoP$tk6n~x%3D6YvM{TNxbqsY*6dM|yy8I1I8Z_IM{j{?y^w79KXy^NDO2M5 zIK6$0BEZkC4%`jJ;}C4@rL_~nAQn+C-Z|ky1_S0JF}Va&-= zp&xWO7SCg^ikeN-LZg?L2I>!Vgrdfw)=^5@8Yl}%M1^-{WS)I%2H5nWPGBAH!u`)x zg$rFQfJT>7sfPr4oD&a#%3qbgm=AdsJYy>6*o;0raOr5HCdma&Np+bc^K~I{wMy zK6e5uoH961{@sw|8pvmuRi<%L#hF)5#hG%%$oLQ|EX=q{rJ-FZm;3e2)dGW?FcD@s zlA~*iYZ~&Y!z&DRc^fs4|2900^U}FV)6BDqMj9Wim+Y-?;5Uk!9!ZmBggbPa2V#sf z$L=JFYuPiSV(jlkzwVM2D93JiS)-W|*U;E4w>Zz*gtf3tVE86Dn=K<@S3Km!hyT*6 zLsx_pB}W?nyi*@@+AY&^|Hd;WxisiNyr$S|pwp^O1ISC&u(|M{Z@ltLo-|3py$?u@-BEgXAgHSut1EsG?3Y)YcOlN z6n*=F5LB|b1iCU>E<81)E5nLAIf@H5Io5e3_?U74EGN>5@J&#yt(X>ExX8^4L-Cu_ z=4WU5UD|1$hQ+a7O7N{4H}wKNev%tl;8&Wz*e3nH6$H#%x4xOlOw<_OSrh+O&<5>L z-063%^0luqy|w_%W8?WxB&=kl{c6%bDnWXvL`i~hLUwm9eyutp)v4Zt@lT!tsEG_w z6+=9PMqS_96u2h4pMcIPd)Q;|y_auW+eq47t6qT=$(n3JQu}sxBG$jK-j3EN#b5dHv-PZ$KtvAJ&ze9*JoTeHUaum ze|~GHiPtE{%3KuUcG15GgnXRiGzjqc=PIU6ZUYNlh~be==4N!*(Aq|X^_UYFRxs0) zc|eQuE>|!{V(>>t6TY>}cf%pnC7Ro~FLTPocAWuj+H%UP+#LQiry8%W!=Pc%1!nw= zdN+LUWyTsCw=vKjFSK6h=+<}ssG_{LUx-6o>(9Xt0QHhzZ>V67#0ZAXTnLK$2??F6 zG|JowM)v^@ccDtwoA$|GK|{ZMP#|8h>37q#AS!iy5c)VGtJv`;vH8G$4yFk2KHVNI zaD^7bD=rRxAlsBwK0Ry*H0#Z*)$nU0o9GH4l>G@-3iwSZq1EuQxjT@U~ms`{B3m^TSgI}sh|k#S5n@S@FODG!XvZk0)UX^%6V@&AcR9>^s6_( zVBGAdK6DIkzWZ0@{@TV=^O%#(l6tROmTfl(^g8r^9;>H)dtm3f*c;3z7)lr6&r!TEVvwAK4< z?NSHe&E~#zs`Xp8P4WZ_DP^)fO|@WHWv9zr01)|<0(nO}{omSPPxjez>=^&%lFqtY zKI3Z8B^c(_xhXJ|Ht&KbnL)@{JK3*lojPZtGmcp=tV0|uj&_U=yezkSJEj%-^sQTB6jt2W@3a{wF;9aiGSh;+v%=x!I})e$@+ zeU0+$&4Im!rWDp~j$w?~*;yHyg|)yJAZj#Ha0N+VnqiAu@*qG^dHG^Un9B<+}XLh;O~v~0vindj65Bz z?hp^B$uF$X0>qFC(=-Tbh^Aqw6y~zEU#=nGR7X;8V1I^X2O z0^fYJRO_|A!T^>rTJtYdGD@%57aX{7+nRrA2+_|w`;p?r$+sBTuM+EXl)JDaRW%ei z?7+jnwXWB8yfp^q$6Y-DU$`bdQsgd1!hU(^fe^~x@3Nh3tz$AsCo#SicP&~KBrPSr z2D(JUnSGyW&O=)PM5`JUU;le5it_F^PdQ#|+&vIF`}cF~@=~>28MbgZaG#pqz2S22 zGVd*D+BV(rA!H?1^xmM$5)dK0-i0~#-|*#`^~Fxjr7`>(>=%M#AmBV5Z#n{HaIpZC z*G|-fZCwb0SRUv*W$>OT4!EMDd(EEQt^t{~QjJvhoCQ@;{TYY)NYuy{TN07>zaiW(ljf1(L<+(jG`D6Iuz1O?kGmYZ^Lanrf5Ztw4{8%WJS^U15r`M+#F-ASq6|`5hvOAQ8I7AN-SF0`Q75hz zb|l;rjpF@Ef0|<|q{PberHW#v-=XeGq;9W|OBBq>2_Hces-QLxSn^Ue&F|5kT=>dn@t(ka@$5*M5rw;)WJAx6>|Rl-i~V~Xwl!#4}I96 zm>5mj+s*osxEb?I23*g;J+gKZ79-JEX!rQrAk^h=wEuCEvR$xu;Po#ZUq{*hGL!AU z_xk(!sK(>L=lR)SdYL!kUPgR?2|x_jpDT|Ce@!v;7xatK{kyu+`mKB-kqiCksH5iM z)fjNyQSI07zDVO`g=--?AQ?t;d!6U`zS!w*v|kLGu)5)7h$rKQxev`1H9!+p8>!@I#ZEg)a0?U&V~J4wmnP?CvJcB94Cip%BONxXJN}*(LE|(z;OOd&^D(l+YcH zf*#C935@G%#@Mr@^kl7`w)S^Cb9gf06D@Ybu-V4RL2;iB>vLYw0NffDYW)-=loQI^ zV;&q%3rU^fh@VqD4GyI3Jx{`)jSV~&ixr%kr+g=ttNOp&@2t*_7b)_F0?t4Fu!HQ-?#7}V_c{VMnQZMJ&zvvpC(Ujp+49=lIDAT&Fv3Q`h2*z8d$PJ_nX;uT&g$W6yP z8r2tf0lxlLd-4YHNj7oD@$igzSxqMr!)CX}0_)(lDxh9&hH7q?^|2}5z5S*rR1yl% zOKq0g^D7rGYz={&jZNsaT1-C%=~8TgaRS4s@tW!en&@ez;|8T^0=L-p7J2ldLd##E?r=P!pq)A=O?1Xc$P-*8z97ZW@q= zw>8c_DFzq%G>BHR!YF68p1#}&ZaD+BUQ2Z=ft;ijXy`G4=A+{9$iEv?Hs!~!O+H;b z$-YoYpKAM%8mDww@4jkXqW5qgD0}5n$+US)w>e>8D-Nz$vpsj_>PKc$>1c#8EtDok z?{yWXvtAAe9Gfd~1|C^6mNJ|UPHd)DG9Gz&&L$NZfR8jO3(bh4#C(^Y_6v)iWZf@Yy5()C6+>iQB^mlou7XNuxsKvWOIyKJ>)aWAUa-ewB?^V#|j;pcoB{INzTg$@lfe|m1 z^Mc?RONabudrB3sKoNUaAkMlo;qjEsjhiqv7fXpxYphSw4ge2~NE$YNFk>6+v50uZ z0(0qqM^9;|&YsC;iV_XYvkoZ7N`4cC`X@&cV|P0Qqpn3*(ujh4jR zoL~VoycpIrPwA5|OgDYq=h)LNMe6Y{HC>48(Bq0a7?)n=Gu~oA`Jv}M1{nJ~a@(6m zBT!)Rl^VR35nKsg(?f8S;H23eJZt#6atXR@J0Ks3h>?)^@`e_oaqzlCrS{X)!MJ%9 z!bwbNfR}QpyELX(zb8&4raB^%Ms^vEYv z3t8#UxM?3Q-1c5<(1(^!CuN9H8Ojul+`I7jumc`2;8~Gwg}UolVnPLt_emL2solhi zNWc6ATH9y74CF;x2tV7K=D{ep+6lq=0)|qC2f-sf#WmMb3`=OJDHYW9ukj*PM%Z|& z7ymIat{U#c*;xwsm*T*ddtVnlg?@mma62O`A3_U1rBMZ;l0sJo)lZzjC~N1kz>36j zvqrUnDi&9kntlt{Z>)X^Qjp!AnaG;o1(G{V;9FPY!UrgfR8kW45F8^--D!ZiS*TvB zkPpse$NCn7%zX;I2OIdU(5dV)RmPZB;>&eKEp|+O(;JUCI^?9)tXd%)Ixi5cuin?= z_wy7Zh#)OgxS2&s3VEE*1@D!H6^e@Biu5jc4UT}jBa_voEnqh_eLqL0GU8sSx1WZe z)A(hys=^Po{Jzevb08Yxo2CcV6cn9gbsn^}DGTKSJ%T*f6FeT%At@Uu<=A_Woaoyp z5eylMjoec6y?{+e2Da9&z%F%qGC_TJd;b2E6JPBs`vz(zFf(=5%cgK$+wWglp*!bF zFHlVeB^x`{c(7o$$6s=kLRyl`oj0AKipfy{R%av6%Vod861Qo30uLoN7c77>aQ=*) zY~3w7GprQ<=_n-FCW#7pA}H-G-)(1B13kX0f3?PcZ;`Qm<35Ce@xHaM!mDm06FaQY z>_*wqc`FY6-mERUZcNWY?htw)%2Do1&;;~weWv{^xJG1_xxI}ghUBtUle;*aDvU#3 z|D)kTef0OVp$N3AFZH)BfwUN^YU?xtxXPIT2k|~z_ zn52LV+b^~YVNz3UuomWlI%)Xs2U7p-JD=81IxA^OKLgj$Y|Iy^g3i;-Z9N^xQUAjR z(|ZjXe3BCYXAGh;VUPspsJymS$1W$6YSE{FX-~^>LLXflc!ScaI zbI(cLIraB(zgkQOKML+Wcyy=83R<&qyGZ4=Gz@r$)FJ>k1Kaod6_pK=sY zAPNt)+k1Cu-_-)?98!_`&H_gH8Fh6!o@w;YErF+~D7(1aKHWe%7?&8mHc9L|Z`#%c zs(ioJcc)^ewKl|^%tN4yJ>fd7!;F-PK#j|hu+Vy{tOHYR<8XHk=&h?f|BBs$eN!E1 zb6!uY&JknR$9Kweqv;`ZvA6zBKs!8gB>P{^b7*Z$a`6?7*Zwd5CdY|kl@;|u8RuYx{9 z_61T}Z$&9ITEd34vMgN9^{ZR6q>W#$k5UDf-8k*5%U*!i6jLmyB>(wH-CKxeaaJ<( zckkqv-Aq68%tfC%Uj^Ok&RWt(>i_vYw)niWfkVN1km_DcKWGR)>LxE}kS~H|JW4Z+ zMaNv-3GCP_fFI(Fre9HGrnNwKf2)t1vT}>_jrDKgheLPnfKMr;-(oGf|J}*?bHZ+L zKKyWUrtdu+Yf1O@B+%AO=Mxt9)xIa^ad^vf^~YkE_ojv7@bm6_oLo_HtJi($C$==m zp6nRA9CvG~*uG8KA!zW~$CtD>%*(SAC80*Oeoj`dt@E$J?Em`v?A8$zO&Oqjv0cTA zF;(np^LM;0nE#1))Ic&_fI|wQ?Fy{qyed%%#zx8V5iZ=m*O8CNI}+CgU`V;nMiL%XZQBob2m}> z5?$Bod|@23J?sC->#(xMEGbs5{8B@sBO889*QEKNwM>BKEp6sEsLt@eWzRoks-GRU zRT@Mn0U>iL2(ah92d*h7{Ci47?rde}pd&1ysAyb#HCNle!90>{2|le`jDMV8r+{|MWBUv6AR3qb zx=RrgU~A`!S9wSn&3(ghK;><9^9u_DT|^BD#{ncvsWf#t7VkUzRc%~e1<#RB8%P`L9a(9)dLJ;4S}I_qABjU*10Tj(w? zB^Q!7!XCpL?E(5YzhgoLH#XH(!5PM{>w?bQv4nTk0e)_WZ%prfUlYymb}aG-o0~RY zovC1An0al&@Gfa$?)GXe6DoyJ_=8T3tL2*NAb8D3!d)c5SKKLucDxAIf9J-jKbQx? zlf7x+Uxb}SL!T<|<)uiC2o5W#pV*P&!0wDZqq%>9+PNfcgf(W}lh9;&!;XhZiOfpY zyJn4ft=9JpiM!I?--Nu;`z5-rt_U#{Ql6P@1&eigodUXd-qh$TMc(+-N+<{`L>#8H zN6dMNnB~j;PAvP~D8$Ex{LTOuK{A4ji0HJ4K>kGh{84{jh`D)UlgR1QEXm-u@res% zed*JW=-oLCtuZp{fl7#wbjEX4w|?cDh7Kmt;-C5riFjinHmkyl&;_i7$sjdV_u+Y$43oyWbx_ z`o8kgukZB?lY%UKNSbZxWK3^Pzc?HA7q|lWlfs}i#xGkk`-dbncM}oUn~?ibLigSd zD=sf=DIupEnrr@nau9I`YE?6*h@mJSk;jM9yS_ zjui7&ZP^!8a@@?Q@}+#7|2oubUI2IJt|1m=gSo+l+cds3Vfox2i>6MTx-@=L#x3V8I< zXYSsq*`hhVI4ETPDdV{g6)hXHdvd2iaf)POo%}h(tbid7WdmOE9$f2Qv*(98f?mWr zP_Z4Oiwxq>WlXHgU;Imb!Z@8>szvRG^o4*Ud>G>Z*l;x7XV6ZmA ziWODM+;)m6Y} zI~qYJ^-1-@F63Wn!UO27wc}~Pc1~eQUy1hE?kcP!YVg(b)#PLBhG$Odibt_1Ql-A z57!HBZ~gN%h{*ub_)5c(N=Q1TSr29#{P-}>`QzOFi(xi96zvp_=dO8i$__gqh4)=; z6C&*UpNi#2NYsjwk27P_x5nFx?);EUZQlF5uQ+~tc(>#a|tj@elYL#2kSn{r2woKEbPa8 z%E8r;Q!M;L^5rTuG-I1anQK383PUo=_JbXC0TW%>OC@wDckmr6&c@sGV;~qUX=1yp zEj-)4e@wn7-;@lvzM}W`3zlnDFoM(F4|fywnFD}q^c;VvL;)Q8q7`D{v5FeNTf?S2Sk+$5xo3G+m{)R+F9oI%8aI^(FL24xf9W^P&_T3(9KW<| zg%PMt3lo9(hn|Q_()9lPlypkA>mjsPI~6`|g>n4bbe0c>P<2Om5AhA0Hj&bRZoIC0 znOJl(KkT==4b?&ypkLb5h)BW&c+w3i{o??vCmz}J4*B3#ebVAm1rub0cILsv3Iyle zV#Q?F#VDh$ji)4>=ZC7?AfE66+pBHXuohw7>j;1wUl&u1Kr;9E!H^&E0_3;cM>C$k zr zq+!DfU$A5Ne|Y-pxTw14;kzujNGu@TjnYUr2qFziHwY5a(#dZZ7Mq1X1f-~wJF(OlMBm~ocFF)mz>IUE}@gO%(_oI~w z`oaS?%csRMIg}sOH%HunW)|q^Xq%^irK=G}u0Jg=r%WJafRXCObb&oEWeL(X9Sfpo zp|R2p?(oo3Pq_!-0zn3f`&aX@r2m{AJr9-?Jg!sNiGc%C_l*3B6-onyUXC&hY3E zePcULtSowSQwaw+DIJzWu$)bCg#0Wp8g?1B7>?unjnd;EgPb|qvkWBiqP`sP2y}Wu z4H{FS1eZOFDs`)~^1zPXaP*0Evpid)eL2wJ*K)@p(@7@wg!jM%hVbxHve3e4RyVQ! zn&>ATMdHdLlXHGED_FC0_Q)|=23a!D0J&NHtEaaxp@h4@jguLY#x6MMw zMOG+`6p?bB;7xG(b*nq+alixg(d_!}?K0qOSY`D&U~s_uL2ezYS<%-6I+Yo|W2e(y zH`aJ|;9HH9+L5-RP$WNpU4eambM6yH(Iv+pg(@1!SDh*7>`{D6LBFW4P*;Du+Ihcx z99r|`F)J|C*1N%2;4~1W3%VH=Z`sP4g#dd=He2jRPatBnmQsWe)N;ZP=bolHuk)s% z$s%Ci@o|4r88E$W!gc2hQE@c&W|-a`Ol$(D!+SO58=x~P8R>)9EKM6zb9gi zm!O$dBeU$-fVBM^MJ@sk!E&B!Y+y`(u;K^TC1OZvh6N4Lmt_}&IZ1(cr*pCV5ExTv zNX|)J!kJ&8u<$Og^ZUkx1y1z=faV5kT4o3nuf!?VSCyGD8W3k;IW@y{ z#G)yH`AmM-%<;BXw(rlfQ!KfgCC(8gpz>WCiK!!c2<{{hWjkbi>a;=CN(q4@In?#m zhG6Y14J9o}V6VmX^qw$75ACe#z=LOM<+TQn_||5ABCr6HrYb@Pz4h>kP5?j1-sjfw zeZ)zmO3sF9nm~yyDB3Nx?{-Q4{kWll5IS^aPHn=Yvk|UiYVAqF>zk*V8nLluz=F2q znA|oW&8;OKA&@qsqtN$|2u!$X9w@qXo?Al|o5b~gY~=Ds|55Z!m6VP@UjI|9@%)f<4Xi4?<) zFeAJtg+ofY;G(1GI68<^vdr9yNc^KF1T`>Y^yHHZZSQMveZG#K9DC1Ej!zX{OLk%m zM&|paoIw)~)w=cVa|6MJ3l%RyLasm*yBui*eGQ^ozM31K?gSeTHsG^U5Q}Z}<}$!WlA z4$x6S<*l{6mcOP_Ou3;r#Q)3@Kv4BqKX{65-n%HWC2s)0V(){^SBsQ=`H$CP^Z4|f zjG`zHZAmAH*Bt3d1pXbYaZFp_ zcR2tW$!PQ)w{k|Ii|+2n)0lm!}n zTA#xJOx3B02gKPzCRkL?Y&`a#D=7#7@v>4%hVL`y`vu^LJZUei4kazGpXXW&*OJs` zm7f@6FCOd{Qk2mBxPOAe@B%6w{z!WzUH2&CpbS;SE{f8T6^H;9ShHK7hgU=4QebP0 z6XKf6+pR~L#3KHu50ORv*#Sjp2wF~dIvIOr-wNA9BpM)dq6ojjQagR{lMicB}wlC`+&uCJx$KaLlum}$6 zG&YrE1I}+bmAOVBwQj5L&Iy3v>T3Qy7bh(;(L+IUrT6Z`D+lw`D9;xLj50W!g2LBe z_ZnyVBSPZ2PlgHC*rF&wPJendgp;vtD&_%SZ|`ddK_HlGqkxTW5<5GUxIC>AVZh^ zM5X&CQJo@(k>Y|V7I%xZW?-QfTOb0TFAQmoe#$G<_%SK)>tFlzu|qJoA& zk4SipT+Z)UfJO>O*!-zh*0$F2P8X}-Y1G#LC z!tw+^n;=|Ap8yZ2ZC4F|hyuvh8Yva>J@cpid*B6xBZ&6b&EgqUti?kS-F z@FpAOgY~9ek`{mB0Qq0h7Hr1t5(1yWz8h=$GXP|N#zYCsb4TMSRED64QV>5c%)9K1 z3heuz+Cc%31!l%w{ii&=y|WBZ;CUzp>Zkrjq2=fLVChfEX~&pm9L%YhwAJfRdL%Od z{Et$g42rtN=7m;p2PVy zHcqYd556e!auRIPjgeBhTyDi!{-dDew+$%W6+YX<^ms!dEepg+Pi%tQu;7M-yj zl5C+P*EhDn!;@;6+*P<_@)e*_w@iSNfe~Z2n7*KHj0HhM&gHE{WobPl0(k` z6e?u6qIT9sy*NABQ|X~#ej)iwVu-MP6fY*FpkUGCw=SSzlA19abQp9j?_Bl6)6c^& z$;$_g$re6kpJH}37v!UTrh%Y>AG6h-*4a1Fx4x!V(!rjg$3STlKP{PSPOm=XdI}&Q zV;P>$u_h&`M{%)V)fJ#IwgU1yY|5CSl{5+x9q!-@l7md*WQfEIC`lNYj3?8G0HKc+ zvY1xJDJxFk?GdutQG`aPO)e!#{&EqTWHh3}^MOjfz!q5A5RQQXRw^q;qfdD=u4ra! z@QEFU9zvWo6h|I*82;e|OWnfK52&8)&&ZS{X z0c3|V%y4P>fiX7l1-OrG!K4Fctveqyx@xbN6`F$e591^adNn8YnjlDLG-GiYN zv4=y+`40tpLHg2uO$OoTKjy<(4-LT-)&cumoV`S|-w&EkR1ICp<^f_K z)Gt-V{3*aWhKrq26h#q_wvYxb1}J%tCf4X^fHWhsKI>k^q{@$^Aaq+*@+=(&ic`** zAPBOdxsjwu1(+RXHWiW<;yYAWfCN;P$Aa>~Vn$ilYk&Va)rFkES)#?OTu>t}1vFv+p4@>Os5tB{x9UR7ofk z9wrOEINSJxi!_Q=j+#Jbx}&VDhgBTl*)q^qQeHB5D4`PoiDOrrc#Mvs-s*oO(+j4W zUW0HT)IqC37VF?(6xS|?6I*W-=QxrGu--0xhPgPy$$G^JD$i@zFD$`&`lep}lOjAA zN1<#_OQFs`f;Z;ruLLU|X+D9V8Y(iTm_yR?C`q<^i5ldv5bSLIgfeNH*`IYmd&W^t zb$@|%AS=Y7_f#{aO#nqengoQgjU^6G_dfuZHrc8YWN;+hzHNfa8LIvJDb%P|{-JZ4 z3-rQG8vu?nI&NjK4vs+r)r2_61d=<|un>eSN#eol!q53ktABSr0I<2lKb*dQH@Tw_;;IyGw$Hcb{g)7`c3rE9MwM|~#&4Yl z1*U7t{AI$M-fFYaCP1UpE5M_g(9?0oU}tcJhCv0e7uNE4Ph{@sppzs>Zi!*x>4-E* zK#TK}P(sKiaF=(J!GM~2H?|5jtb^1t>lMy*6?EAjY$b{ih4#p41Ke(Q(+OpB0AT;D zwJa$}ka3kA1X@B6K?TN6JX)Nau{I_>&Qb=2Q8fe=o1Aj1g7vWWPaK=?wlyl)Ra-{^ zqR`B#iuwA2mv93ETn^?QA63l013$XtvZ3II+V@u-zMcqg5(HV9-bRDsNXV*Y)Hr`1 z5dAHxol9{?+=)a+C|P|-B+gmi82@XXaY|Cr4KbiMw&XTOn|SpH@6L-dN;iYNQ7d!V zYXJXqEF2S}&>+r?8t|OZh;YCFYE~5_*^A~IFGq3$eXh2y+Ww@q&&61n-af6b#ILJb zTLIauBgkA<_S~tMXLA^UT$pxbGX1XVUZP{*G;^x!MMR(hGCvw|QFpV4N;9Qwx>)sRm2UNh1y4O z2`K01SJpsHb)E>lU&HBM{(NR3CqlEV1X`w4ZxVbWArnIv_tKpj|7*hEra&4(P+2FE zM_y&YoaX$WTz>IBzc@B^xtD^wqV1Y@2|2W0ax>@Wadok# zY_~vmS4Y{?alM2qd9L@_Dt8Z5$6WSg%-14{IyQGW0Kw?b+JVm7O;g&)04J$xKdEb9 zKdeg@5p~4gikf)i3%3PS-Gp|2A4Obm=MDxv2NV=F-J`4k;Cl7;@6lCTX7z=wfb(GB z-t}iKzaL?=1Ietm&#|Nr?KRNavtrQI2?fFDv8EdNgaQwC+pb(kJexZGjJ9tNy=Jf0 zS@%n97nttF^{tNooD^(*Ha0#J`Yx->wi?|auc(N#hixq}ztrowQ0YNZC5vw$GWC1# zvU|B<^h~?36&u14Kw?CUeusqhxe(`;8?%nZoWU8d-sOpPurBwu66v% zhZLV89_}e<2O)06be(rsR5ZA-j1ATR)!qK8&6v~a=-T1d(TBUuJ=m!n^e@53NQI3f zafnUPJC;qzt!oq~igVQa*}oxnfTyc4`}1$pzuGg$nL}W2yTje4)|1L!q`Hrp6j8pf zD908-qQp;`50*nOF;LdUjYQ?f55rvKb!-RR3<{k4&Dt|dL~ zTRZTR&RbEVfi?`L{dj`5z(@MMt8pk}L!0{^3^UQdF|+f;eX*uM=BRD9=IW*lyJ`;4 z=zK(ow$DPtJgM)CO|mOQq8JNN?N*D?{8r+d(&1NPfNU}4>rVV#w-nKw@7!IhahycQ z-!+t^0osyA^qApKHX(jB0&q%rm1N{-Rt0^`{%2w!?X?E>?HyyF{bl8L0Obm*N6~qf zYFhoon;`Lr(*aK|^X0d8j)&(1LAx5k#T@z+%jb*$k1QoRsz|l-_s;dAc9#y^=<&l- zZBT?+$_f^PTr$eh<*D30h#VE$2nPO>YV$}|bHFT`AQ1K+jNkj+rU1B~_@h=U_;$UL zJ6G77S<6IH13I!XKpPxuE*AH1XV&WPOWO=K070L9Aq>#4Ib05<+UFQGiZ1?Ob#{ku zxA}C_>SJ-b9lgwb%kJR)S$M%Pb$WU}dcjhk>JA%hdKD)Xn8aa!d9!A=Cx7H?a0VWT zzjG6H_J$j&ApP|kkKVHK_DI|CI|Mh~0JJUnB}83~yNVcGuO0wA-8mGeum9~+_Tw$fcS9+IcGZ?nMJ!K2oU{rv8~caO7LcKJ)lW_ z1X*9Qg3`b1Kr=or=fTeyvE|>$|3w7ZSH>>EuYS;SQlt9??+KWoEhTiKE&M8;9}(+0 zTuF^loBpX~)5#TC^)pxlC-{ZyKYED*EQHkGRT$@#&!f#KO^~>r@IY{*^LA`cjXZUB z&m#uE*@eq(as<~|UVd#L4($l%sSF>apf5WX&)MN-OY%cu)Gu*MSN*I6Lw%4pn)jv`>h&0F$67#;h7FYUp2k0;DZx zS$g|fCW5=1Ffh*1szFIxWX zj5HLec3zp{UCox?HobypIkCaGd|@+p*vnQb6dQ}rkYZ6-PcJd{kqwTT=xaf#mb3TF zCGEy}dY-fgG@W+v9N02ywwF)$B9By8Q4TfFTdl&9Td(7+F{*GLQ9=T2mSxPJR9*mM5TX zZ;>Py{`qvA{J*mRn6bF3PyAwd0fc@KL8VtUExW_zY_CJo6{m=E=BLC0Se zA`cTWB{4x9xiJ1M&4>0SxR8UY-QpfScmDOKBVD&^Dpl<_mEe?%tw6(MXw#6=Mho4^ zoOK*C)fV0shBhF+8{w5Wb+Be7<3A`3081)1!?K=+poaDlx6UtB=wKOLIjrk|{7wO$ zZX7J+n7Bd@h_E#+%4+tlFISsx1K_Co_Za8bJE0s@52917I#uEbmx zJPbI0W`4m54t4EHvnoSdcpK>DX432ACQ!&v83v%l-_wW`97)M%1~hqgQk#UibPpKA zw-?;ZC`FuoD@h;7e2ZZYiFgL68&2@cIWLbOxa#b{>(_i17=u!ibmx~tmtAvfMzv=W z8-XLDu({6yxD~T0D(~p{!(OA}35GP$Q3K{aDg;@2bqz|y07|;T=glSOi}@<*ZA&SC zvG&-*d8Z!MnjI?PF?+aCHKF7t@{iL`9(;<}lfqBr<$%|eY=|P?$L6;iG+^=x#l_GF z4P@U5Ji1-5+a1fB{i;2AGuew23b2IxWuY}$3MHm6fUH72`4tF&y^Jw3IcJUPqz9$o z1S^|oZ|j}*XRp3oPfnKnbMMuGx4&Bzac(&^5{V)NVF(WpRhk&6`XA!%=HH!!%EzC8 z2npSpk5l{3&R+XFSy$BENo-L~Ul@+=w0fCz7slI(Kd*VKuNVndIfQ}6(S@2Bns!GVW1&nzw?%E9J?ovunj;;&kB-1a>{>(je?z;FYyq5tq|Lm?zC25Q;ZBM%9DV9-`oh-28N^h={ zgH}?t)JbYkK0hO~U!wa;5gWZsJBS0!K4BOO9uHehcHaHH6CFlw9d}lWQlB%ytmxgZ z??cloSk|eTVHpj${G-HQ3Nb%l&c94MAmgR2eW*-st#`~zbkzFPwSh#y&md-7+56B~RAhDF{NHQ6c8Zg(WaE9Ei4D}y z8tPOHX2qO*+gWLV#R+O@%wTy_6dPdTYWOzNY{`NLoS1wIpv+`bEZ>++HGX!gxO2#Y z?%lRhr4_ktcjYFfF|tVeccp;}xgg-luS}o@1`Nfy_h>+(s@-Vsl}}UCMdvrWBYDzo zCfKc3GIUS07s*%UVwUnN0$hvfNAA+b+(iGd85RV-ZRTN?q(|7~=YTG%kAe4aIRg)t z6Wcmp2cLcc_xp7>(~lG~NQc%Z^>cO?u2CVwTVFIN5dcmbKY8SY8xT)C`>XwK<0jqYLzAc)D^cRLl_$TS_}iqrAhPcfLv=p8;bPX>r})iAW!Z&2 z1oiOavLZr+LX%{Qa%$f$@tEfh4dG+#VXHV_h6SlPIyMx84POl-saH+Unq39K3!$}3K@M&a=Xba6$FpGSa{>!s;?%PC@d`AgNOj~n7`|J-A zI)t=yf)(c(ZD!PW`;4p6zjW5zwkiio&nlRnpdEoFrK;}9bNAhxD<>iBqrKP)s_A!P zH9b^bVhF0VSeHugUkSy&F+^zcye=OZfKAmt#>kgL<_0g)0wE~;Bi>K@TI{AmLPGN- zCMPZnSyxoTdt$KLZAn;hfw;|3xEs!XIz&E)hBG}63*jN_62+k93)_k#;Nk_pnZ7AB zTr8XW6p#}bC9)s8M>V}DvW{n+03Cakt%4WDlu`!eGEOcbg1oE}vOE}v|3~Y966-bj zYSfpZ&X2uFU1&e@=)`rQa#Lh~EklHdbLFRt%p0!^(S02v;*N)qq&7}QqP$Lv~ zLWo87UbL|UkJJmrw70q=RyO0u>D$Ir4Sn^Sv(53c6WCb*!1Gi||OSjGUV(<C^Op9F`;17Ir z9>S1hCz%oG?eh>&`ITMA-|qWceg`6K5)_hZzYvE z&@t_jaRKWn|E5%#U=1cNT@aQ?Ij&zITERZzKGWXq%k6gsn=xp_oq)C|g}WpEaB2=t zB@I{6{b+Di$gHZ#NyHGH!rY%qi%{cu#x^DRWFr9lx)K^OAVrLaDmrr7q4Mgngl{)f zPg}s-jTvFZ6=HvthR)vada}%V#cBWX>|A_o9 zsf5=g|MQ88i1)n4&G?rT?wCt$35^QGK#X3H)@u6nm=*+3;d`7YiZ|JQwz7;48q(as zN2r)M?50Z-u40H$;Lzbr?*=OBM~oH~0w4qgvy$fEs)PYYOwTulCwdnRo_%C(_JFrj zyo6^}=Rlp3S5XbxX2zq`#CCbr=o{}(GhxSCzE34al?uU(t2CF9jhctiXscZ5kfE;3t>R~pQ?#b*Qv%WBHW4!+nbq(~!B`W! zDlm&wm%SQ9`j2$=i15S^H#}C1U)0~kXHZ{xAO|FokNG&PUTmok(D`11y^IEUKb_hK z?xqfQ7O~c3UQBs&Cqz-5-@J7-qhNQ&C8TCZ55OXz;4_cW#E?#vOri5{B1*&|B?dEX zl4V-kkyCRg3k!#D^cYoX?}gqEBRwUSQ7fAJFmM|CsMiQd`m)UWC|MFsBvAT``Rk)X zi=B5HOIBC_kA|Va?z+V6;_wVOV$u$NefoF>`-@1NJ32>%?@(9q|66>)&2UeNJU zCZf>o5KPt6Hew5jb9PToe+VI$QQd~Me#@ww_IogLeGVhc*`cZ3MQ785>#y+9U}lB+ z1{}rwR8X=?#s7H1%7%@N>H>PjB{u;D@flYk0 zf`nCiS!ui!I%>Q1_*l7nqp&4ulRG#tIIUwQbbbjs@PYp#M-)}sq^Pn3-aiI^KB9mB zwvw(uqj=A(&_hyKmJIG*%2<}`HjgU(Or%x?VZ#rSp=)57>B82Pr_%j1!|Yo{+&ZSU zubIS|ftJ#^pxz8dNT`BZrbkZx(!b-5ifC=Vz7Of?w}yg`JPTAtzOAgEytnvdWd*KQ z8uCI+#G{y$?hlW++@rdkoB@;(fuWn}(!QV5&C*Z1SzUM*X!z9+lAw3eP9MLlDk^6b z8$9_QBIwx1p$)j1J^U5#U7Jz{?&h}g+}NZR=TVIDVBZU~Y6zO~$q%A?T? zf(TXqm*G+NYB!lg_!Jz^THQ8^i>~`b0BMI0XQw{w4M!%0clDl9Vh(Tgsd~PY9>$~K zpCLWhCEo%u73p{s5%?4etzxqo=?b$IDRsU1q_2{mMH(;;Rp`CfYv7NvH;}O+PSUQA zrZvl^i_!-u(Z7D0XKHNMC^sEqYCtjtXQt_T$yzMjH+bb)x4VUaX<+4tkNl zjgXs0uHXGfhh)+sUMWZu@t|+SGfn-50l5Yh>_6{Vk7!}udz)u|810(Y@N2{Ou4W#( zs7YVB%M#%XE2bCpkXL3m_=OMOT|7YpR#pocFG+uYxnnUEzQJaL-Toy8N4D+j6A$i! z6F0*Zt{7$&Rrm*M}Ap5HFD zAoXoB`>HxjLOr5sC1R}XpV07m2g2xX`jTk`A%IQEBJqOW_R8zq=Wnr$_DkPae1sbr z!u@Xf8v>b)1gXl_)Ntdn`&9DA3RWI+w0RYqSO(oOgYTl!N zxrMhwzPg>+uJN10$a&p#sIMx_$~UB7M@J^BD2yZcHLt$+ARCZZ=ZmRf-DVV3{}7NC zBd!K|%nxpaF3fLL3S1T{U#y@4*7AOvyxz$4=>E84L9cSvU{3T1pQ|E_u5pE_=P3~| z>ZCuZWwbUHNGhd`lANsx>P5~^r9kVyeB~4Q%iQ;{qdd*>rIj8!-E$qhXZ<_?88FC0 zcLqWXeESExFdqZ4P`E7Ew#k4H{8DrYG;0kRij&lBS9`$gtC>}Lg)tleEUT}3VVu9W zzABk;auC`7(=XyYv6jmn53TR~+L%Gu7w}D#>;&Ujj0A%DVMsPElnlTDtkM!cC9vOk zSDZ(f!ngUTh1;ppZiwp!mD+lH(Xe0RfXkex^v4&|VuIiS07Vcqw4+f)Nl37j1xUCo z2*vawD?SDKyDngtG< zSFQKYMPy%XN2F%$?RvS3*{LqN+q`?Xe!;s4dQjLXHh{j?6Z6-bPL6|XumW#u0*UPo znBlGnkl36z0JmIiGFKyVhyBRkX7SD|p^OohF0y=s5n_Fy^4EA^YM6#a|I`3a3|{c2 zYr9rbc9NbA-?B}1b%;0@H6aH!7o;}(Kv05s3ZfR#@qU@KTwNc1bULC*_%quZwYuwY zEFg6B2+Nt{^m_d(`TD>bO3Zx~)u|0`&bt_vPD>Sf2q(J$JmWk05wFS|N2%EY)fXaFhY+08ZrVtaMDI!Vv#lj%OXhg{|bRXK=R`AS+M z<-4x9Kfv=mGg}v7QJZq}HCz6~&=cN1RzuayfngOUr?@q$9sjJOyL8G$yQ&^bdY|{k zeC6>v^}CL>4Jd*&KnhlL<{YNH*ug&CKHqmsP9$BIrFt`S9#0}4@{6*&WMb6qTUY;jo~ymV8Q8NbFKF9 zL3mX5iAnq|D}_vjAos9n1%S@UPLhot`$3^9#u^V;RR}MS$hZnoKLMwMInxJIoo`d| zi*ZDfym&rC`nI6(cLGiwrZkF$`Ss$HzgNEkL+)YpQiIF4{C(QJS-w+wRfJNdagwM8 z_C+qQ>cPH<8ZTZzAejlTuN-~kvM^{Q0J1l)erOr*&Et7;Pj>p=YR234A?HEnDkNdX z3DEj(2DShRP8ZH@nNk7z-@+h)wkjl*ZEG0vI$noh`?06KBEC7ul%Uj_vep)$!g1yB7+y z6zwDk&E-@F+-%L8GlG951cYy>}rGw5@Q1jO?_Fw6jq8yYRv$J`-aa2HVzK;BO zBg+5Xg7(dWMCjglHnhIaP1pfbwVKfKANA?UGUO{S>%)pmdg~ude|}iNfHA*{{gCX> zH(z#U6FYre%|0|Cv1#0$8^@6TE@p!18G9ZeTaSAQ-CI~61~dXeKN15t+w?}>MNbj)ZYIYKrB_7YH`msLLnn`wACn4o&ya(9HQT_;jtI)nhDO8Uv0@d zxLz3eHikYe1*>uub(Rp>pX|N|>a&dv9qs=lX3Pp&nsn2Wo1t49t8TH^I$)NY_2kaLWJ`>?Ifbfu^!y$|$tnwk;K6!``6EAC->u32?Eu^lir_S$mbZ8xmV^C=R!ad{ z5C_dMOJyAsj4z~bD6cMymO(>%YOguaavmQ23+x}K;$~P!!F{#y?(K=8F}!{4BXrGf zM2>4F^bj`y!OzRc7-V&;*qRQ5FfSQs}?+w30XZF=LX$&_(R4wnI=_gtmqT_V!j)%>Wi?~O;-p}v%W}8&mR=V2hr)rFssZBPrkLMM_dtW=d2mc0 zMHIlVEKcu{6mkUT1_OE@3v=b^Ob$)wZDDy6@(cT-XbDs|8CpLQJt`QVR7LKBTsQEf z3djR8Rz?yU|4Fv}nK*p`0kkZ%57;HRKMYTFRu7CkyVCCL7(?2D+oXv#)Ha{&v1;4D zxg9I|eA^f>vm8?yFlOI%jUz=sQ1%ioraO&NV&`jHt`t+mmx0@}L+XaQ6g}@$H@8d) z?W1F!lGUhsDI=s65bgYh%OU(lmBlgR#n}Au#lIRfw3vTB*FRB@h_k}A3Te$$_*573 zowwq*C-Jnj&RATrDvGSrXvsI{=%(g)RdPgR>Tl0T%i8&0m{oTAQ_(c-_OP&m+*=uf zF^4*U|3zEzUoVdS`cW95k~u2v#T{?}_H^+q+O8T+K0)TB?n0$1JMh5SmLr34;{hSK zdG9aRGh!1katUUVJQt((jucJ}AAq+H3`gC(xNql%`+x14N?)R2S@3I9EHgt#>%uD5 zL;UAdA?W=5;a1e)ys6_<7P!FY?s0;-sK9pjmp5CQwC8ff{tGT8P`;69ZGGzmjX=r> z%zxE{_dq}5c7^d*SUGDV(E)oqZI17{cS{w?MMXu)MW{1my3HgLi$$c0TU_`8t25D~ zQOuT4sWr4K;fH>;V1J>&sh4TocR#mmx8||bU{%F<*9~=&JcL6F-xh|#+gk{k7;I)3 z;=SvD^If;_k?7KCqI+%dx5&UeTA80W@v$x%v|axJia}=*W|gncKhN$Cuc3Dv{p+^) zlv>#33k4soMU|#0&o992PXFn+*bnjFY`S-o6EMlrTmM(ev}qAmV zQ@(-h>yIa1d_!trn1GoojOgo4>GX~5hHT6(v{Tqk;<&o#5~adlv0GSFElH1u{Q61( zaW`B(;1`{^xr|{3)NofD=5^eL-H9~Z;>z5=US~khWRsei;2A|?15{Z6$>=e0yCJO^ zkGb{-g76pdUW6}nooc)*b0clOuF{Lygr<5?p6iODirq)NBcol9)euHnSqH%N1nZWa zv8dkd4MPf(oV&$XlbDPXk!+LzpqlD#KPHyUn5oT(BQUffpTC8Q5r|NIwn_c||&Q1PR6 z5(I_&P)?@v-Of_wzstSAZfQ`lZFkc)QbpfN3YtD!VuI}V;NoV+I?23+*FgdKhBArc zr+#PUdUdy)le%|0&Z5r5{zXaVd;dENU{;)=TpU(3hIMihwWjonS9hPHG4CCaxIr6REAmUFf|REw+0r^@zClXKzyJ7Zp|S%f*2DGb;p z8z+Y*|M>Uo>cole3VawgOW{{fNfP!`P(A2gbC@j8qjSC0OUTUu=bpG>itvAnTPG9q zcm2o6t!d(c97!I{A;la&=Aup(JXKeHZ=ZeXS*!84Ld`a$Z5RMTGePt%T_o&JMW8k+ z#sGHnsp=l!)zsK8{I)2;Av9}Ww390tAx>E8$kXrOP@$Ah99e#6-&QxPA}>(^pjNg% z;?l<8o67pq^W(5Td+DZ*CH>W#Bo1)eIB%`qr-l*6(DzVaTgcX2Uz5MJxvmNAv;wbP z=QZs)Y7BW-ib%KHoteemdc^)N(?aJ96Qp#6vwP6dD$ZsKoe>A%N}sHW5Z>MSbi2}f zg-UM69W-*i+<3=Rajl0PVG{%&Ib4-M#jpPqsju}fUViw33@~yTdf~}*>E)|_^CwMm z-(bk!49l!%sQowY7K67=Vb%-`lEMR+Si8kc$ zXm+;d)}Nzciq>E%$vTAbWf-Kb2mOTg+W;##6i?FlGePgo$BC8syP!WHmJ7|hfcC8d z=YTnX6VJU{qPZ=+3a+7dTR`KMP+R1`==Q{DZm<=Rf@wxL%*)5|73(;LIC4b;dJ zgulzR1JXnMQx5Ib)NI@Q-6IgV1pCmS#S>xR?n_Y6Hr@0i`cn`T(4yyLH)wR!{pWIf$zt*5I(7Du@TVzSjrSDGa}Zm1xsvD?lhtV7 zuz}%-0R?NOll_asHmvD+_fhuSV`RD=5h~E{cHqo&k7VWv;={{|$De7Twi6XkGm*wA zLL>WV2s;gZ{ol8Xx5I~GmY1ll+w52^IohYLjj~N)c;Z9Q@N^Dh3~J{$2b&$a-k|^ zl5ZIi;l#qgLLq@NJAx!tP;hP>)wK=f`~6a;=lSykn$y=JXa({1l=?vVWSKh73*w>u zL^42lv%To--|m;&g4@|A`gbXkq-9V27ampQrrSR$tE4NcP7M1&sf%O+CNf@?bl1Ef zvOd5Cn%~MmJ%YU3zZ|Fmpl1=J0?!#yTxN;$8+aOBj{;g-l(YO~6QwvRH$7$hhIWo&YfGb$+L6Qm8?q64a|BBcxG7kfg$K5cL z{V8tn=iFgQ0=Wq?;av0ATYXOGvBGm%xv@=pY-w#rR+2{2iMQPbr`l}yQ5C@?J}}eBjz|c9(V9o*bOX^QuWi=V;;MQYN&*-qrxwvZ z%d!7*J^#b0EimjD$v#JH_hrtw_V&|zPy$Z2di^SiVK3Oy{4xn_axsh>NXK(SHE}or zVYcMtqCm8HPDlIpGKA@FS-=M?>SLt~NuGM#u-RDM1dVycM?Zxf;(NvQ0k+fupVPT4 zDfSLb0JRwC5SbpicDFq{qON%Xrl~K~uNLLmi42sK<4qYmpGM{nBYH8Uh5ew+N;)+&~uXf*pEg-c&$y6p}0d*7F9e0x@hk+3h=JEX|GU&g3b7COHcmxnRHM5B7Rgc2swKoV8>M~B6krD zb`WxxgBJhuZmg~Axa!}9R<~?Ibpv%dtSF7%ZlvUU_Q@vWRDAsS187Q!O>7_;YkdCC z_XP=HJLO>Ucu}C_?u+JKRi$nbp3$PH4G7apncQmFE33`lSe65xtyTRk#?{1Ho{0mJ zRzo{(!JfPJhh1zE%rVq&-ORw}1D|c-473n35=`vtEi&l?e-(dUb*;L&bi!|Q*vzG7IS^@2+m9H%bVps>CxdJc$gbFxvKSR#@?mz?eVMF%s&$#UfAsAK^iou-$S};XG>8fHTMvlKKR_6yXVEYHx zn3v=y_eOHj4UKb|tHuL2FaAYs&Wr0sm=8-1=NzUr;3?Z}H2z3ph)H_w+4QF8!Wy^%qfuwVH3AD`= zWaOwv2-kX(a(Hs`WL6$2%Qs}&J#YO@0K@#Rvh=&AXotk#<5s(6+yKIp)!&-4@Qsf@ zYbGdnV$W{#&tOQL+!Hahn8KsQklg7U8J3^t7b1LV)K--dS(0c?3jpr!{yuNGio54O zlm%d)AdSJ=ek4{kM1iI?=)rB)crRX&51@J84wd8&3?H(nKXdOkQmGci(&>CW2IH!MXZ(HvF-s?PrsGsKihqro9h}Oomk}c zfWIdf4cOew=RJSFezapgu~&A2On2xg{i#|5Z@9hrJyvpe9-~^rMjAaMhC#jms#7E7 zYq~~r)H4iVd_s=joV!%WPtPmOs{FgEZez{0IQ1NfWwB6fQ?rjJq#URcf%)rh7XzUG*(oXFPnFmlDh; zLxNbsEgN~sj}3YMe>Ht|Kvm82_ufl4N=OO{NJ^JWB zX`}_|?w0rPe1Gr#ch2n0d}elb&z`+Ay1sDG_f-2v_GIQl2#Y{ZKtb{u&CAuJoD&{KQy?lQ#c++S}etlK$Y*t0o*L;Xm(Z7rl&Jrm(~#cfWX z;@eG5stP(XS%Y5poI3Wq+-_Iny*=FQ*k9zDUuveB$;@Q*}>I;q3s5y=|YkBq|L@0^Godoe`4T#8@37Ml3cW~A6$9jg5T!G z0SzX&U@`v+6bq7%wiltzHiRwf0-AZ#XC}TwXNkk#8V^-6tuecQz~8@#{!H|%Rna)^ z0SX{tLu?cK4V!ZIfBN9Fl#hAUVO??6ajDKehBLwOf*NOz25(jNT`Db*PSJtQ=Y~fx zfF*etMHT7vcKLuf%FP6{#j`7loBSQ}aEzO?pL3c2xhd=ikF_Pr$vNi1COW7z0PWL1 zC=PT`EYv%hA76Fkml_t3mlPbn68k*#?4im>43~IhYR%}Y!7fK}0&E7*;SHm}E|{u; zQg{yDfU_jg;JM7m?B8$Ardm@FNKTq0Imv7>-=;oFMD_X^V38Y!3h{K0Vs5}(p`yK}@=T^&l}l;mH&;`VC~u3fc53m`eOMnt zEED6TNnEkC5A;Q!=aA81i4jXOXMbTHc;NsLEQ6RNkvqwe16I$X&qXRr$NcA^d16;o zH!UT7_$2D((MD|NjSVpM;d%eiTmwgX;wJ(Qs*zW2b(Y7oeK#Q{CK7vxwCqQz`C&=X{VF%ji;0IC6M7OxoXenA--2J|V-qcq)OrH*KuUn!CntDF2 z8e)7>++FT);231;dYs&?WKgmw;j?76c-#ox>;{75mQLWN5!zS@6Sv zw3PFZmF3{(s;Gu$^d?-hg*mBTe+S)uy!V+$ZmzZth>}p2ka1JVx26K-3+5zcAqL zfcTDH^4Rm%@#*@N?X}OH`zQBrA$@6pcBZp8#eUo8|8ZAs1}@k5wzcaCH+|nl85gdr zhBt)|LUmPoA9a{(%AjW1P-xzH3Q|rFLumhR{)zy^e9?RE8lZb~(i=5l?6VYc_kYRx`+xk`r`orq70oRRGgL`jnJ3$~IB9BB z=Z~y1KM7}>z+Q8v1B5qa(p`Z2t>4++-@5ikNQNft(e^6BWl~9(?%b+Ovbu z|3wEGr7WRSKZs*T*Is)pzRC3dcB_N6NrG#3>%;RQdiS=Jq|tbn%e&XEQoFtj>{=B{ zvNX#n>k81P{ja{cUN23<4a$7|EGRFsc&7YC-}vKgcMQ}uW&fOz&6JjIS{*1D8bL0N zGc0}O{@t)XTgiL}F~soQ5)R}Vi?&gv&pF$V^SR0)6}P^^*HUxig_H&bwjPH%;;7QO z5#k+u{APuB@*{+wRd5JD7iyZ4-@9SGe7k*Z@Wppq1x-Xn6WXQ@jsN{7vLSV(EE~KR zi>x)6K>3R_k^?G*!0ET0nMSc-Ze(#i-`-OM33*?a6X5Uyi}9h#LZJ6+Qy4MU6}Pm zq?R30YxMCpTKxB8>8W$MGQawg34gz06Uqxed)MRs-?bF+I5>YquCtj*c~&33SwjBs zgv(XTU<};LqbYW%K^j=Cud5eT_wU~gUU00zt*B+56!dBiT0N~z7B?p&du2SXa!&2R z5T8+5@B?nclmGR>_Jy6E89NN>b7%Q&2jrGE3z|)~*Jh$t)Z(@nu&~&dwOI+STV#Iz zOmPyhXa59`j*e(0GN_!h$+(9v&9&ztP#$`|LN0~OdsZJkUWNPCmgr`2`CHriAdxu< znTm6s?vUk&mkIbb>TKGG{F=oG%3mWI^G1-s)q$ek6MUzB-Cm9MSwWX}%8O$n=&Y6E zN-9_WxigbvxKP5u+dn`Xk@z^Z3hB!Ksm%%i2|PyPy~*uFb)s%L0+rkIzr3VyZ#xNy z1@ru0939m9&eLL4#yt_t9wRenfoytR^8JD&P18-j+;`gm?cea9&x`p^gEtouJ?m7s z{cc}Az4SgEL;UA!PE)j#z)tT980aHcExi zZ<6ZgcL$%o7-X%D&!p`k2BTc}An41@uc2)k%uJWsK5~w9SqhMZ-sN71-e&&cAlM!4 z5c0TCjn9>;2G?^FJV-eWbDJwUPCzWb_Omx{U}N>6d2@omxIZ4NppJo0BER(RBmEm> znU8;)J3pPWMe6<{hh1!qbwJpeq?$o?C0>|zSKFH9cCu~|O!+SoyB(94rpYVNxNE8< z6Q)t)WyuG2553p2=n0|xWgErSr3D8}p{0Xi{Ogn9v#aSvxHnge`*^o&(`VRUyhfSk z&4!oOKN78Uf3zK#hWV)JVbejMVN+Nx%bgjUbv;gXz$^$Ve%G9s4qf0t}PF+u#-cJY|*arvu&ZY>m_s&T%&PzNN zNmb<+BQ_+0VwT<|_A@egL zzn`^c1A&ykzJ-{R$N@1kz0_*@=|r3Sr|%PQf3;J*bxqLg=ddu$>yjvZs`mHKkDUMf zc^Le98YWysB8dTtjKyirZhX$s^jE{}G}?Q&J9Muh&C))xvrpNwqWn|H;-rNUHyl$EA3up>9<^Lei^67Jr5w!5T(I@`e{#**7CXg?d|*hw6kGZ#|n}VX>Vz1%hdDw zsk!jcwZT{Lj&fM(^m15r=i_O7xk0qYieZolL6fut+C$Kh5i-LP_0K1RFUCseXX`+@ z@~IhY;23Y1>ecv*v`X*l=Y3N>%xGBL*8;7g6ZDq;DByjeWIXMk@2Vt`(a-x9H#`i- zRc;zrYs%$KS{y4oC<$ha7V=Sup^+c!(P13mroQp1S&yew9d4PZvHjtoN;FDP08`*I?!*(`{n`Ns4GH6~774re5?6L0ML zclSD5$FQ=2KDhzcl8FT-OLpUqQBYJg=+Lrw=%X+eK?`Y1s`nHF^ff(*-z%_*{MYt$ zJkhYu$i+hh^!8mM*e4pPP~pR93iJOI*Q2W zdn&BL(2b4wwzhiwk2RRvf(U>LlvT)8Okudegk(`Vq+ZeHp8)$bk(m&cB-Zmv0C+Zt zS8;$k_o>V#F*!~94!>lC=)lD1;LK>Fq^x3yE@K@>3yRh>-VU{92l+>n{(6eeV4-L< zY;ZcUqlR@K2IcZv?`;jU-a4iyMkQ3(4OkA!(Ihee;k6u1PvoXdknr4bwx-;n@MGoHEQulQ6nX2OFx0?sAuJ4NgDM3 z9@tRSgC00z9v&m|M4yw{PLKPZY=JgQ?aG}U0}!N6VBqS`C0&hO+dsJDQ6KFKls`Rn0hd3W#gM=n=PKTtl&XKn zsJ0oW-DP)!K_??tLdbiYT!qwg(@wvH=SEnAkikGyB*Lh7_`0Unt&Gk5cE7Aga)~*J zZb;nykCCsVn%6y~&0e)K@CKN+RvB{R`5P>GJl z6o*VA9)84GCwBKfUCn*jTftEf9hV>Dk7VyRzeUM=?T;~#c+U|Ju#0s%pJ@4cdZ5qw z9r)Z(77xjyQ>8Y!;v-T10*J;pUu7Q}uHvTHh9%jM=iR-3tD)8JC2}M8xdIw&S*zls z_BF>Z7!F8L(rk}K2C+O%s>3ev2NtIcTtY>~)*>ID5GVlPl)4c}3qrn0z1oag*S(3z zEas%x*zWYk7M@p?fxO7-0?nqb&*O2aJ4q$YcS2u2IpETh`~(uSz~fx{B*-CPhxG(0%en86_x+)pk@SeUFH;is6JuNt9ay--6_!@4;ZLuACDZyr%TS z2YW_8huQ${XoQhgTN&G0K*~ml9P~gvjcYs_e*NG0HxAPU?s<}7Sk1ng-+b|f^;Bg+ z$4x5kni0?vIX4TEbW^dFK^rGF7v9u7=AbQAzhVa<))z+_5`RPH@~-mF^Ae?|&tEH< z5=R0qsrSYU;{XEPiu(lSPFYWC_HTE$PK1CRL9C%yWGouOn7aXSQ*fb@buj<7l;e{% z;K(RaG%`vE$8pBG5~G8G2i$}Z?q6sOu+$G~pQzTAF=JxI$BEaPiiAk#6C^wY_)<}^ ztU!OTp~!G~%d=K;7CVCM-O?Xq8x>g~M*Dmoik2^Qf{9m||IFnHofWi=RMfoA0*b6< zpuuCkohljO2s+pH+>`QLcROM1hn<)+MIX-=e+(CPlL!DY?nll9Fn9HQz2dfA`pg{P z+@eYg1HEhUbY^LYe?;iW1iqB$BC$F&|MIx(shYc?lFIoR1ZpS*>eId==p4VLCN|LkmUg}1|XqJ5{dG_FQ}erqTtv!J#4x$i#x?Ml&r@nHdlIRMl^_NDk6 zIzU}wjc3A92|sVQ7HzTc;n?P|+>t93F*k~={cgfAeWZtirlN2fsR{=r-}eOTn2sRP-3T@paK& zMpM}-R%C>5dp+?4L(B6kgP^6quS4=kRKU+;a-)kM+8Ba5tiGFt5m`u}%c!gFh#m1n zeJ$AVcC)H*>+|h7>yUGoHU<}&_|oTh?ZeC+0KxCAl11CmLCHQ#_yD#99 zJWS!&T3H~GWG%(ZSj-e{I0)H%L?=!RT0TX;$p2D~=FmACQn^wpWYc*Yd$$b(heek0 zw7^|3GRZlimQu2=j3Y4+2Tjh)-B|!Cng<8V@AHJ?z|wOU2_n97g9yAL8k>|0ceC4s zQX(KGl=1;(sXP)3)7D_1!0}3q(nvzQ-3vWerkxB*CuuWK`d^rI)!Rz73us#ndO3Zd z(%2Hbj~z4)1#k4%I%tc+XWohDxxMi*Kk7hOsK4zR$$@ePe)9fTBA8Z4 zGOuNGGlq|Hlyrxdr{2WduBzOJ-N>MehCC0FEam<#ppEx>6KzXbf~C<^%f(^EJ)7d5 zp5HkM2gJ@U`pHpciUDn^FQhQ4=FZZ&J@iTxIbguSV>E;oXhj%hLw6Fhe5Pcb7%9m4 zJ=AX%t_cYs;llGV$N+~tAvQ$j!J?+(i~xwg>4s&Yi{@A(Yv^lN}Z+?7$N`pM4IsH!@KXMkGd zIlX8M)MvXg_o%TO&$q<>%|71Q-Y#Q_NjMUFsF&7LF8FtLY{v)oh_@)+{MMQ>f)7Th}(HIcFH#GP0rf zTFKB?CJ^a468WulGV)5T&;%=`EVJ8~QB;jdR1J_6mh(fUthK4oMr;>-knLB>H)OWh z7ZN#Q*AGj%VI+n9(`v}sM)i}%t1Y(ILiK_fN;x$7zwLICIN~$-iRrgDCy0M2llr---{9?il~ zoz_>W?>?G-5aQ-veA0p;V+%`U|hW#)Z z+2`ZDt`cd!tXUrv%DP}XS8>+=x^dh{cJ3qlb4~WedAw+7@)5G(0IrGpgGz8F6xvuD zB6?MR={>~SYrUu%ryXIRudvGR`WK@kCF6y`OY=w;9 zzW8=x>f-M zbBXmV7AhG3L)*p#j~UoCa@IW@Zv4lt9}+HP-Sa_U9e3qT4v1I`cF#i>x zuZD4YPK53XUIu$Skksw?%O0}W_i4Zzn-)`ya%kn{14N*{eb1B;I(5L=lI>j^l;FI6P?1Rju7zg9y?218{VtRh2 znT+t52^IQ1dV5WgFs>IPl@py&PN&9tMPPh|Rv&_La`TnV>OaPtC#YkNIobjIOz#Ao zMq(KOj|Z`&6gZmEi|C%i@&9528>?i4@>*tUYP3Jp6zHcjn@BM{W@?lnX`Ku27cu*5 zFWqUQiri^pCg7qyW({O^CtaP@3^d;7XHi6^?snU$5O`Acs-k4G3RV@PiGE zh;wsp{|zq?mseNU8p{sQB4P%$9_x7zViv*`%LWT5GoBlgz0o09DlRrLU;tJpbi_ok zAA9fE_7;8$G}u?MGe0HcWZI*iGWRBC2B*J6yu!pJLzCRP=c*Io&o3FJMIbv>1JNhi#%? z0mj#LzI$+{URH^v9kzU0C!KE$TiDJsX|~2nF;{rx9%22$4vQFZHCIxiTOuYPI%&b@ zcLqJjIB5HdeseZz*my+h7xy128zR0!#S;`PvBACf^wCtqW70#Cf9vmR~~87 z_{&$uK`CiS;5!~%B7bKJ6<6e|EbquImer1^6L7`R= z{dOf?S{3Jn0_Cr^I)yp?GDyxP2_`W@2WPqQX^cHe+3Q$dnL87d^rN<7JdTrvrv!XV zm1cWm4a{1=%0*uv4<%d6tExK7iO%r}#j~=GXB}#4?Y#x2u%d}~EKKlU#Mcit z80p0-=0)Oj!)H5Av006`7gArr_;xMVFR`@r@-C|;@l!MhTC!)wkWfEQ{Nx;zZ1aAH z5_GX}jSlsee!e1iTGD4lU64k8^C!O4y1>d6-+%~a85_>DczQY(aKTFY%;L+ycAREw z5{lSv=9U27*Z%cD=B12jV(j=DA~w17$$0+c=YVIME!jPmR`~*xe>UwyP59v(c7?vy zjn~QiU)(Sj?Ljtw@*$K9G+u0V8C5^oorRk_Dq{L*o(Vn1dW2~58EZqbOxyRXKwKBU z;%+W06^Q3-RoS>rq{rBIN6Y5Fjht3T$=1tsUFM&{Z1|-c`eQ>9yDxoOJa#Yx{8)QL zAB8w8M>PM`=&0%EU?YCEY*b91pL{6R1jhFm>Ih+$X;bs=DO-=TC$!=*<16*m<;{k6 z*w4DL#C8jshs2O}ovzj~`N!PXcs17YJCTJL&Khph+}ZTOvqQArd;+oSmc74CnCA`^ zC@;FNcq*_memkUxK0;jiL@`4?SoflzAVPI&mD6?EswZ##Em3&(%=ItUO>nE1o)vk2 zClC-d-Dj$7BxV1Y;zj-TJDsUawm*1+GnQyqa`bPQQ}`GeXIfx#M2C%f_ZA~2aOgL? z_ey!nFO+OgUqTv}c5lL7PNR*X71pWI$7L|oY{K3(T#$J3B#bK8i8p+=GYS)XcEGuf zrf`2Q3MgYPiXjoz5=0t6M8EFOG9=Z}jkvIXQ+I1%HXa$l$vx}v1xt))KZV>tdd>7I z@*@fz_HXkZywG);+7c>6#C&(+Gmz*^x;ygQbIb7SS^hIglgPKh;BNQlJUUptprCvW zn2H<8#ulYlO`nCmGN8pC^DSG~ol|)$Pl8Z&Uao=Ix!WFQ#CmKAMbL+`E9|exw{`D! zg$BYHy4Bkxi4b#<&$~L8L(=>0Mluu7C0ja=DB(BtbWoixhMzuP)0)5=H9y{k=swAB z1-3S%1>0qdn)dGGcw*X*SAw4bA|4LPQktWO_Do5=D4mr93cXVi{j+>B*obPIu7YPk z-KAZKv;F&|iR5E!`5{Tfohv~vCu%muZBA7YbO|q`_LbS;(mUre1|zMgsvpO2iNAmf4hK)bCZX z$M{QkcL!xyq=>kPde21{SW!i|{=NsTqUl1x2kf63LKb?9g<20df!T`zFQW%Bt&t3` zj05J_s_3vk8a+Q3?kV&Zfr)weUe+MJnH6VIis*R9EqEwPg8j`tw|Zi>QsJd$A4o7W z7Z`Ge6;-aevM5A#c`>c2pOIU_3%tf;QlGNQv3Rns?v^Su&JLrL9=#yzd#$K5JtOmpzY z5S?hKZ)plX3KGv)siG{0E4D*AT- zYRsdX3f{bJ=YkuA4e^lqsIbeVRVDbvDjm{7RIV`|Op>CO+DUXF#<^~TI77sh6i2dO zqL%}`6_9gYWy4eUsh5iNrq7tq5oW|dEqq*4YiF!B4iYSLrW|`wO%KX`$%%a2$mov1 z9<{kCg4zmKJ+}gVUmxE)xut(2Pyd4#aYg|(Ny3*A+sPaSuUMd5Vt=SlfaoJ%4BH)# z#$rZoV&}(m&jedBMVc=Q01y`8{i5^8-FH5#gEHBobI5my-LJ0#_TWBy;r z*;fT*#b{~613i9!I}E);5vbY-B!cM7WNOjakG-if;4;}=cK|%c^bQyP6 zo!%AO0ArYNZ+=W}3x20<_b84MXxR`=a&dye)r;0=`F35OTVM=R;^~&~m;j~Lr@MSV z=v=AXy(|IpJ|28g8ES!>CVvBfSG_JCv6tXy;9j*hdB>UZ7UE_0u--5$44B;|^q z8pFI=VvjR(6Hgw^cPYmb0K=FtV#VIjVIe1AiUO6_`W2{Gb9)$%QKOnA+!eYMW-23=mH z2gD|k`WZd4#OUv9T`BwMdeE0b@C za21krQ?X@QAhPK(epQU4#qWOphp;av6n^7n%feX-Af{8!`xi3xqvrC4*RJntCOleC zr@v@-XDzGjfP`UMT55W7j*LATONde)s&7(ePIsP5=LY(w(xcS$fFs8-3H?vpe}#Nu zEu-phCo9%AEA0gUMoJ*^U(<4if;eFxw;k(#YqpH5)(HJ*Kl#Uqqfd}7t3q|=s+3-A z3s94l3(}fX=Bus>2SDpU0=dQ1q&nWNsZXo)f)%E3$K|@Ec@haV!;~>*nu%`$rYo9X zpQ%z_)8Zm`gijpnmer&@5(bQrK+{$J`QRUm;gc!Ay|`7Y+-PD&%E*ocFnZV6GseXG z3eK}H4Qf3EY&=w=TUuu}=|3MMkW8(4rH-V$ zPJ(NDDAW_4M_&}&wG8N`PgU>bUc9~ld6mG;;=f+R-e;TW#NWjD%HcMHnJVJO!3_qKVu%eGT%}UlP z-c_BxyrA<1anlhr5UV3u z!OXCz8zr90^V?^Wt9W8$v-i2~)m8st`r424*1Dj`8Iy8WqBGHGrU?Cm+Q<-4)FQ_6VixD?hAtV%k zFvtJlgJ5rp``wfyMHB(&*Pp+&k0y@iIxyK@^Gz5`G@k{5gukyQ9VhBJp7~ty5NyBx z_s2&YSuE~0g%GYB7gVzMSK)DZ{c@pbjr#l&5BAt$mpnjFl#fg&K;-K~PK$$#lw^_H zcV{zY!fx^)#+3z$Sh9e4ZeGuJ(4rCnJ%mYC}o|@(tRaB~(z?XjJ#!VxlcXl=&4?v7*U4@-I zjNzxok1i(rk$zdKZ;9T4+J|-W0<$by z$2JWC`%yzl(8qwtVWFdBZ$0$wgI>B?;oI?_8lZ;Lqh(hV@V?Qlp6i5fcU^5KjUkw2 zN_(ceOh|}!5!<~Dfoc#|O>9yg(KyV)ziP}>DMA|UDvt^BK1J|60d(&oS6jZ|40ZEt zI>CsvvQAkf;MB1+hS}Wv@e5O~CXyHFN+^?$bcvt9VtzhgS6;ZDsfnlxuCQ-_#IP;s z1R{$SxJ4oSJB6Yq5*m+r`yE7xwC+qEJOqtU_qia_^bkH$C%#<4r#?eI9z`8j#tV0p zz!d6smas;0Jsv)Ba}(WGub~@a;#?yAvcL^2G6RGSUTf zq*4;k;YQ;cG^~_W30YW$FZrAi#B91KV9UT5emDvZl9Zx`tMTU22aY{6Q9}oLI-y8U z0E!2BE~Aszq5j2<;j_u0_cN{2_;65smLtrJl1)M5R29#mi9;-^;_s3aWZ8^HhIq?W zcLbCA9TFc=g;Wb^0->f5fB5!(ydtK%8W@TPWxVX81*^)7S16Oe3rtkd!C!$evnODc zq>N_Ox-}T0>`6sn{K2k~<=F)XgYJ}Gs-UlmVvNyg!tiijVYKuB^TuO=01g^6d&2M$ zjyv?N#pR{nmYIpP)_+HgJba)}Xx;2?9hqyS&?qVUff?Rs! zY>M!z1kQ6=AtI5iFGmo>+hWJ);5TaXp#r8D#~v-wph(0ELB-3LD3g~0>O9OSz_DCP z(~VI%;&(CA`elD6WuZ3&GCaJB6&X0zdWw|ze<d=HOGU5_gmI95 zQCn+ME`d1u=c3Lk34shR0l5T_bHMj29I$=eMZS6c(uJm@+pa4WAIP{imk>ktE{m6~ zVK2xv9j)PwLM{olsCtSFswul$@DUQ&8tOyBNmIr@G#U%k{9Qi%`8*AQ@l(LXI|i;C zvNAnH+G0iYehgA%PJ;ythOj{!xj)JJ*zCY&anRKKE>#g_a?$7V8^co*qmnbJ2VgVG1WH<@O|j!P zcMQ++7fqQeuQ;<#W8lEMo?yb35lCqb&2Z18hFCA#S0rJUwb}FrwmE~*`DoH75G^_~ z@28va{IuzQ4t=0+*%l>?+MsYqhXQ_ZSDWlgSxrFj{E}}nXS?ZNOSDQUJ&>^=dZ--o zO`y6Y#Pd+`-)k3sbv&8RROKqnHLxFibCH6oK(6v3Tii1xuhhK8y5)TQs~W;m2|zvX zJ8-#2#;_vy_uc4Uhf)N&wYv<8PCF|7co6IWjXw%X3n=c7`D$Jb_cq<6ZEBaHe>Onl zV1u%&b`Wxck)2FXtS{i4w>E^WnUYTZ|Pub+s(GO zkGUqoI@~e@9?QWRuA)r1tWWx<G!nIbIn+SxIHF)T zv#rFg=PTr&dteY~9G`fv*=PD<$krvDg~d<2cyqV$P!QgND(!Lb_uVeW4E7feLg(a` zsjCfifs0>L&+|lp_c^T{Cahuk)mF-DauLdYUnCqZ{fU}8vwg+nnICcNh_h%W&dxaK zu0+*7yUn2SoH<7UM_tuC2iMDiYtjCfq7ngleM}k0aF>;SgpRX)0pY*T{TnY(u*E(! zyVL9Ef$=#BAcPd8eZh=iG-^@2Lc zZ>PladY%HYHMpnFFM@1Htym%y=V9}7DCLriIPd^--2n>z61NF9-h41VqvBnQmX ztueJ+1-M?BoROW&qJQyPu)Xh~ioV=76dxU} zs}DUf&r@6}#Mj^FZ6Z(w*`8A)Bb_KkUlK3WS68V_RB(E}t7&LdL?j9tiE zzsfd$%(+uI7iN-ZS(aaY;A0YFe!g4?$u_KgBn`=4|7>PnL1o^<^18g%d%-_mMzd(JUQN!~uz zdxAZ!%Jw)9h{2C3hu@2}rswl3S|-~#+456zyVqB(z2yO<6wP$7)1w#v5)FysRZ{a7 z6pp1X6)}+h78JMMA+5B`jq)5ZDgHBO;_fLGxhB1&fOPKF zwKDXf=_a0EISm<=?L;*O0f zP(V?DJ?zk`l>}EtIzQy~abp^)UQ5v4LsB`J?Vg zLd3Xlk5A47N#Ho`x{guA50|g)a!|mFymFJn6f+leNVDXzXhP-dwNj~&GvXdv=`DjY zp}zG{4MohXgsIh(1-@#)TyF;cE7Ny9Uv@zryIzkQBM425Ez!*qmx&zN3Q|F*ar(_B zA_I*YmBYn|LS0_CQJ^!d$HFYfHP?gpBx14Z3Oq9C$fwNlRn^`~4PQ^o+&MQjML}mH*S>!U31cQ+)ip{s z9|o6jf72_u)LAjCIY|=)jBj7MK|3c!YmO{yaR{LAR@wvdMql-zzOHaEVg0-(j1ZBK zIT}gn$%|h6V8~b+J=gUi*E2Sxm<}UBXp)&ar|l!@(eqB^pFJ~QR>h=I@)4e-?}FAy z+#DYU6zb1Pmj$@xU3E?43-T zARM-y57Lrz!w>2;R20l~$DB_H3-$_fx#)tJD5N*hVF1IM;c7o0P=Bq&2+-6c$iTE^w&2{8>l(fdBvxLytTX8 z=K2iYYLe5QAWF?YW#J2(@|F1ZIOgmudfr_OQ&j+Dxg0n&7crNK6%9#%H z4Lqu1_(W7txACzI3>excZU+*Ai_tgV4OFiCHWe%rC3dc=oMKOg zWFhK)_$VqPI55rs+*>X1*uMYpu31$U{o_@i!9DN30$s2%{J^v(XKXa-#N@4I}NjU zBC5G)W;bqL6pOoq65rkO0I1|u@?3;$ z`YgBSnQTi(q${>s;YP9B+W85*DUT+N{ea4=ixQGf>1C+}$M+dQNu z!a*$>iT9SG$3jQg;2^i*^$8k;%28g$K3unNQHq4ezx+ArgfU6)_9eRFJl#)v$dOtG zh&HRP?~Z`j&iQX^S6k+$8bc}VYH@{b|6{if2-EVYJt*z_7e}=w^G^ke1UZ(YJh^Zw z`5Ow2-6QhMSPd63sC!!7bWUb1+gaHlv(?By-C0ABKQM_3v;;M-pbe|d3`^(Ha_E{f zQ;gbO|CZl-pZrG7crg9Km59z=OxslN7KG{YLZ z6Ke!h@=U(E!@$I!#ewEeoJko_wd`615jd%vP9Xw#T}z|vk6mQYVK!7u z_V`GkW3p91HxC$^d=&4Q5ZZ_}ml}Bx?I>Ba^R7V&3hr6I+}I`;V^H~oFSU!|B>Zec z1HYevifJ5o+(R0os|9?>HvznB41M2_n0Yoe@b#W!Jn5r6c+(vQ#eM;+T1E^U5!s;r z*lbX?faw;~pHwDxT-wSJ4I5Ot6#o4Hq19R88?Cw(yLQ6-BRGsy#{Z4M#NV9<5F(!( z>;8gigj=gKe*UCIL05OB+_HDkL19LyT!98uv0S}?$t?udG2=7ol%mrszQ%KVV6KBN z!4Oa(m#Gba!fpbYIz&&c9i<&|jBkwE&;k=IKMbGWT;sau@a{vv6)da@iKA7zM#ti2 zd|}Epfkp5<4YVwgwyHkG1cp|bMM{`pvLv(gLD5`6!%MvEajHQ4{rV-b3{(yPSe_@Q zL#Vq5jBu+qdNt)(>}8Z1qA7{h>a7}tLiz7qL76zjUO4)uXx%1SVG3gju`17Do5gs2 zpB9pm3)G0xWnqRsd*it3`;o5iQr*~E6P}=ow`z8hVF5&bM%}Y};92$N154Zt=w2W1 ziTr|;9}I}2V*~)Z{A0`B{Y16uVQPpgc{S@zo;O1uRN2$|7;72^lI+xO6(Q-lrDN}j z7Dss(ud0UBzb~>7unIzMvFqZ;0NaOj3-4OP-`DSmrpkS$R}I-=8ad{L4BL6jyc&dt za0xkwUr_nXkMT{36#tx8vuV$tF)M_Dj-j*6kIcs4V66fkWi31v($mO0itz;boMQ}z z_8ty)#+#W+p~^^+>N5hkn$GesGLFkWM~Idkum%elCqQMjhbEQBFgbv`ZZ8wkziLxs zfhG&AR{Fq;Gb|UhE@+-OrCCA1Exaj5_vl6&LKtEY2#g`Qlh9CYPifa~W literal 0 HcmV?d00001 diff --git a/yudao-ui-admin/src/assets/images/icon.png b/yudao-ui-admin/src/assets/images/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..204ae4ee92fe38d4b8dc1a831c46c5802cc34c05 GIT binary patch literal 308 zcmV-40n7f0P)FN3T`Stbnq@<*lmX_Sy+|SR?e0+Sjx3~QK{L9PBe}8|w zySw!C^zH5KhK7b;UtfZPf{>7qk&%(>>+A3D@1LKab#--MU|{O%>V<`cl$4a+-QE5D z{qpkiwzjsFm6gK6!uR+07MLH600009a7bBm000XU000XU0RWnu7ytkOUP(kjR0!8y z&dCmdAPfZ1QBYCbP{e)r|G&|Tp^bBU>10v>2tomhjN*hORGI}|IxotKjQ>0000RM4yP@*X) zuH3spMIKq4>jY3xP*GTz+USwHS7_L1=ml8;dJGDo3VPkj2L09B7ax9}Rc@ZwZJbms z{L_Km`+xB1>n?JV_2ob(ahT*!y$hWnzQVay`+)7p_#LxnY|{LwWN``_Aq_HJ7dWzV^uSKRWohH zE0v&`x}uh{;qel$`SQDK;=D`ZyhY-oM&hz&(s%WQp$G9e_4p;{7vG%Y=7i(sHR2Z4 zUVH~UC&)aXb&Q=eiCxf$U9f*PYacVG8S`D^8A0vYvU)VZHVUg7wa6d!&E_fADiW(6 ziC2kSRF9muh?tR&=n{#TRSU-(hA&t?o|bw%Wg7NXE$o|G7*0K8PAzEeUeKgr;FMb6 ztVH05PQb7lY}VX=Tn#!S??0gi#VY%bsri0Y^O;tEIHKzH)zGWcz;j&Fb5zT7Sk$vm z)niJ{V?x(`P}Ox@)pf$~!Jz7cag_(-dd^ci&K;`GV?vNF2}rjJWK7+$P1SKs)nW9m z14he!Sk-Ps)oxhTc38mni>l4As?Ct7O~0!35WjVks@34XupCse9K3B=!*AK9Vlk*> zQLkXpCuh;6Vm|o4VTMrw52%1KcTKy6O*`03%UMj{{0~Z1Ob1j<22_mu{|^+5P>M!< zDn|V(hW{7J|7rjC`rmOSgI)#wZh8G4aosP%+O7AsJ7l!-Wi&s_s{adNHS|5THZo-Y z2cjw{N#zVtr6Lifa&g5pQH5qP&`S~dOd+`nVYx=3d-Z)^@_}R>xc%$m~jQT^QT zuJvvEJPL|C6h^vQHc#+79Z{yU_H&mSlYGm2Z)N$#%O4w0_u!$UIi4z87V!HmXHMP; zq+o9-WfWe};-MQ<&E{#(i_`+^UmG@RZV&(5TM}@(#Vo`sLmg?OU5*&$(7u0=6>hdu5eHV{4BLUb_lN_L|YNiL9!Bz{P{h-#&1R#n$R)Wv(2ffkx_r?T>4S7D< z(hUAjJ0k#(p&?v4!!JZkwf??p7QEp(X;8z=6FxQ3<=$niOqK9F;D1^K33{C_& zD>AyDlSt-t8eltIsYhnZ3$5-v>@*Z1@Aa3=XFkF`YJb2FmN!|R`%W0j`R{C>`nIQ) z`UtQm99C&(hVp4CCpW$H?VEtBo^H4j+UY~5_sB#8>`{RfTMNhKx+r>S^@-P9?vfvj zUm;L|`*j-5;pK@v{)vqMIMk3tpqh?jnoh*`>S(ePqGdOKn$Hw7bT`&W2 z)*fsooL0%sESnLastcA>?>zayhbx&*LFgG{1$f_J*el;Ix8~}ll|;fGTx~(5fHI_S z&AoFSo_J06izQKW)}B(;i_Im>-LiSXSJ#os1xoaI4TKz;^V}A z{sBoN?C4`ZWu%eM$8qf{@vnx$D^`>kCBA_T;%fB8%`Rg3iG7pJ)Wukj2-?TjG7Zx5 z(>^2POzYb0le4eMN=wf#)gGhW^cZxkJ-0)lDfk8sxJ7P(jo^LFzz1z%??_{OS2DBQ zVlCamY9$@N7V33DVQOZw>c$^rMayGzE{R;yzOnAe5MAl%&%R$90Nls%QlP(A>D+{> zM1Yk^6|%T~(pZ(#{=R)OSg}K5JL+ziq+_b&p;jB-_2M8Yp+0M-v^c==Pc23y%?SvZ zm;5cqw1M)u5`j`!%5J0~77wEIi1shRNAYz-AE@^WoPB z<|y&6Er>WrucDpf0kXV0)xY9ysM#CzYab>(^3^5E&_exat`$gKZJEdJ`JX3xsN@F@ zRNqATnzY153eD%Sg<3|fWhmsGGo$p0!yG&vAX0@7NerTbd+(6eGj%czjXlYuf zIq7}@0c!<3&IFKcdcNrhJ%K@p7jrDBHDzbH%(yVNvatN4m)_W1X4cmcic7lwO%rB> zxbAq9Z+OBVNs*CDa4_@Q{CE7f*iFl|6u`v^u>9PtezZ#w1}?q=MCT@U>V;-dp11V> zT%Pd{7m?JowB{3%Zyeaa|G||L{qag*v@REZPrzd%2)mZlx%qXOiq%j!O|#h%#hB|1 zv)g^OE<+Dju`CA}SPnb2B$GOxRGB}>JA3p>cl^UguPwLcvGuYCF_t*Slu8VZrp<-w zq!^ddLv-$6QH?cECv9iv*K_5v*C8<7ei>d!o=yVkNkZnhIOrGWcQr?MW|ZPR245&_ zKZm*N3G9Jhw57F!*V9Se6sOR$FOkWB$HKrl599>4*E?nU^mf-x*phC{bb}Nx_c&^` zxbAAj%Ou?ZUQS_X$cUz|tRS>Y2=>xSUM~Y3sefFxWn9=*N%FoD$39T(kg@8P=b*1a za=^;mg5=o=r=bQJ3~rA6;FeLKGsG^nOceKN_F<)vUGbr@uW8{n!>J|5IL|D-O9ABH zLSNzYI>bB9jI3`7F`JstN#4D;y|N^yvm7c`gKXXMBph=nh#aZoa1UebYI<(W7g5RE zL@r%v281kfLgI}e$FQvx9icQOCLJep&oGt9Wry{K6c}~oAbJXp-}ebXgF25tbvYJv zg2HmJ$&HOTk9S9kCgq?*j-uR_%@93la$PS`O-O;)}6M=#6eJj6V6^F|P@m~N%zv}?0iemq9PH}(`hJs)GhhLXn8+{tB= zPi%D0x8~(`#R^ELO}!@>V9hLv#Tp4sYJ%E*xJn0~JPW<10V{oMcCDo}-HXsv&l%sz zJF|`VD!qXlGuDdBT^rspDJ5=)4lv97=7A8B-T#CG#nq0}vW10E8 z#pf(Ji<+QX&B$d?(Ihr95E}iOZ9q%>oGYN@1#aQY*bWF!RV`6;FOa&1hXjc?I&MfM z*eN|{A7@1wn#F|rj<_HCp?tjWRvJvx6Xfb`rujt3F3$$Hu6jR}IIerJ>M3OZs~UjL zM){2N&6ZYFxI>{ZcJWvzU|y)?7J_|X)chwxX`t~jn^pv_RjnE48xfIFBY)nL3P>W6 z2okWj(NZ>f?-&Dt23YUI%1xU-5$EDhm~FczUU}H$k@YaGKK34v4I~*@t%s42@fyRj z%Zt>$_Q1WBtk6RHDC-DAV`W+7>50U5AyR0EjFtFed?h>E7+V9)fQU2I%x5)0+a`L0 z{yyhnD{BaVgM(uLuKwKe{_3L~A;ak>l}D8zRO8=UgJB=Xu1}Xb0yD{$vu0K+s@X?e()OZ;#Ira_*iL;+WIwib%S5tnpj-& zJEericdrRoshD9&WeGRtd9EJug(BlkUn54p-wEOL!dgz=Pv-pG-BD6ezMC1zBc0Y)qC}B^V z$}f`*Wd7^38&X9|*AkXos1$isfd9%qY73IKoJob}u|Uk@#Gt=OrZ%@8M`0S(@@}Jz z3nP7>ORGDXk=C$fe&`%Tjf8XFO?VRGc(K%PxWv~|5S`x3UZdy-zl9nya$Qh<%MZOk z`#hx^{G?X30Ua&;ii>&A*)e-dX1rBN94Y@UZR$nPBz0Hy^5ucxbwIqd8Gk@%)TV4$ zC5Q|8cPkk%Q!0yJaV=84Aac=^z?Z0gNvo<}c_m~dIHe>+m`=mUbX=PVrRL_=_CB#6E_uyEAqB-%0>9lT zVL|Pe4c}iOYikmbYrL;p=oiJGw`o&2jhw0L?=Hmj0iS%>GX{xVmlfiTTNAfmeGCQz z(H`o+)-3s+ZFd#R()zH`Y`Q z%dgdVxsp%JqAZXyYilfylpZ3yz4iNx8tdnyqn_*ZpnBS(n%0z=Q_R7oR zvJvCORn95H%<}IorzdN@z?FG`4X85=Lp5~P*WLe!g7zM8WAmPHj{$4O$AnVa8Dg)3 zjuaGt6FBFPe@B%m2nu?A1B`qpGp%8{ElEE^kn8z3_J8&#=L&qku5ixX?TRvm1GZ7` z8fszePkG2IbLgmPGN1zEaTq~Se7U`rP%r-=fqlU2kAd#j24_8`^xTVJ+omOYTVa!{ z89nSuGY;6Xe(+waTbNNL39(da+qdC;Vbdh?_G~B);|AaQQCDb}=&#ziuP3bx5-4f2 z_frgW`<(mty%95?#))B~G`@k->kX~_5t7Gv9W!Y7yTvdTFDIX;gI$uBf#TGUbupmP zOGoLLM9Br*=cCGMQ@!+{$!^m*8&-Mx42-wS7kazA1TJ_4ufo=#pn6Ws7d5KMSEeGC z5N}36HOYvD7$7H4iYZZ{PiI0ulJ>p$n8CLDk2Ys?9IFn%GSfN%RWp0>06(izWSAF=}VH6SrN>a_={O4_bV^ zVUO+*i$hpYpZe~Qh0Ukz9imasWIv>^t*;xVcl}N@&Ukh8Cdhd^s|@VYdh(_$Xc8-8 zZW@L0iau)(iC*`ZDN*`eMRijhW|z+JD8O54-X6fS{f!_eO(}eyXM}CV0aso*fLSg~ zr@8rLmhQD+@`RiJ+||;t+)nf{Eq(KPX2qMV9{5`^*Si<$*fmO%7$Bu=jVn)+8)xQO zF4Lfs(d9p&WtLc9SPp+%E3-cAr#~Be1ZJEaqzrjSO8+`W*^n!r;>~yws7&V3|C=?= z`*^nW>&M_kI*7T4KyMNOxR30WyZTk+pKepM@!Uc8n&1m`X)ikuE}(yZn*t~->{Nf4 zoX!kuUK>OCoFI(ngx)YJFfkzN&21l100%~+6D46dtL*k18IU@_x^I%@avCqkw?+2; zNsYoyJQNyCRA1L{l)hlSUHxk<9#!6uwaOKD`L$0zPYUXcl+S&&v2$rSmLG=W#A1G5 zLV~RDu%VH$kQtxf8#TGRcc&8&kJ&Q!N-jS2@$#{er9d#A%%>9L572txG|$LIF}P&SJW9VSmu>pUkU%ie5rm!{C67<^vE!gD`}Pa& zeRF%wgT+CUzrCA!A6Z%Br?c(Ixm_!6%%=5^GR443-`w(#m<5<{t*Wa3NhERm6ZWX^ z8YiEIY=FUEsv2SWtdUCql+4ApkzLy)`H`tGl;X%_w)4#L!67dhx4<<{H8)FS(;wge$c5AwT%!p|3G4M)dqP^XnOnuQ=sC+hLFH z4)L?w=M>$)&8Hn8fTxy%*v?91vG3$7MS4XM0Oa_L0u){nUmfHJjZ(mpKRxNV1%eO#3Ze8LN?l>$M$b;jeIIjk#&|J(sfb zn^4sSNm@g9TnGq&JSyi<5IFxV$!rF@81uS%lkcjgcG9sA#$^T>p(94tG`aY$R(I!5 zHzYwC5{?&tv0~68h3sX~GpdFzZy3K3nHeDH5WXhQNR=b5cFvky58~3I8zsoyQpjPK z)p2h4&X@fz(HQFmI}{2!46{o+|J$mg_3T@G|6B=Mr~JA0$E+GI);tR&8aR{((8=g! zXJ#7<=vP|0^F~+<)|$&!t)w|1~R=Gf|!>&I#-M zjq*{%irFZ4yHqFBknrt2X=F1wxVblwarE(mrhm?hZmlFH6`q~sd&Chc$}2JNqFIPm z6`Hzg^C_4V_PNO&rsun!`uC+W*f;gIR`Xpq+Uysxh{~w+zQ)!g48dR5 z>NoI$pr>$W?D9dem;LVBqtBFg{7>4juQ>gFLY$*k>d8uLQH9hyR(O8)Bqa8d+T(ES zn`0npHEOSe_XP>{0`TU<-#W^SgAVdnXRvtJfhd zmA&BEi?o)2@;{W*0vF9_A29{UMBj9XwsA`%`PfN*tm%qfZA5u(Nh?HAmDishtueVU z1u~7nZD@`sLx*2Y7?|FHAOaeW7{G7!-QhKtw~cLDb;o02pNYla>{)z=mKeOfZH4mb6<`x3;tP8W;<1ck);ay-`Srys$HefASJ}Q6QI19dE82%&lGRRknq{I_ z`GBVXiVzp`1<5oU_dUDk^43_r=-ndrV5pG4tiv+HJnAo{;-&%(skP z)@W-S-WcpUSgX1Mz>tc%zIY+Ocm%gw9I1pTI~U>UoUkp_>DykF=e+aQGSME_$T2wd zHeRmBBP#P9>4!Ok9=JcL_szzzXjwYyrwa|+h1u;b1%rT!!Una&vF7URa~HIa%e~~R zf&yCDnQ>ulS8T4kwap2GE|^@x(8HESucqLD43>0k@||T|SMs{0XIN3j!f4;!@(}w= zp+1s<-K3_nwan<_w*4U<9UTxCk1$&%7svW@AeUq^==Ti+|tA-0}-r^dL@p zsX11{?UXgXKHES#la8TL7F#%i6$-=_M53Cn8V1Z>mb^oQ=}L4N+?!``n{EH>m0iKP z38i5Q-&JEWvZ&!6oXQ`-AU|Zs$UyaPc{AVFpPog< z-4xoAKfeu2!m^iCk)n8@gPF76coY-Tt4T6(cr*`YDx0|6kVO8yjyp^MfA<*+6qZO> zbA+vPE&>8Sh?;1)eIQgO+`2BS8UW@J5(B(DK->qiiMBGmg;F`J& zI`FqRm)yOY$Bs+TzE~Idm z(6Y5$7K0LejYb%>rAO}xn+|vihW@%8y3+Nxrse^Wo03rE8q+3ulN>YtYCkzS5fKKt zM`m%sLc%3azVfr@JcNxF%Hoz*JXk@qHM_IahT}KLUQRe;yoraDX zaHTCl%bknHY&m)`EJ03DJkq{fL^LlSz27kV(>hA4GW_JZpD!n&=oaX*Vpak8h(yX1 zRm{V!6B04FDK75TVLdNO?sK=P`{Ko36BI(CE7gL(R+CHcmjKJ!70Xloa{b0*aVTyU za1Xr{BILsh4{n>%&3*(EwL7D}4*&i3N{E6;vDd(OGTvGQQ5+)Qom6rDZ2sfH`ugH5 zTFSZ-qsfX)Sr=gf?HePw0$5ue=PRf;i$zxhC14HWjUlX;KI4{hG(>n%=UFIQCHht* zH%V@CHBg z3V{n2{8sz4OQ(QeBwAKsVVJXH9zwdJhRdc&%y+xl0oHzNt7_0&LjA>?ou4~4add(T zmyI3AoA4kyj(3GJ&qh^2Z1U=8;Ja4wHyIrgP+joy?3@E_!4i6T`OLC%F1nKyw$ObX z4{nV++crw=md!t*prpx_M{-N&oK8g0^k9#j0*pI}^Ra z4v#Y#d0T@+Ci_ILJY1dMFMDlD?zO;cICca={3AB|_B8Cm0X5*^=sMs5 z8E|90Egjh0>efsCnfVt#(#`A5Dp2S4B5o}@OmPljGTGj8ul5`>u4{TB#*<+^c=_)tE z_ic!>3A#O3UwaE@nu4d%!j^EsRA16vSD3*m62!$|!_hFB(H0lWi*|>VRnMs6_zXpY zTv8`V=KKu#K|-NA`-OgEeJ)aVO0|t#93-@5W-`vL^p1=Rff!pp72Pdpk>2LvMIT9Z zTpy+C$I!h!@BN>%0BtwkRohiX*o-zs_gYZFYK36N=FP=%NsVtbCaE~?2F7?qrFF1C zS<5>PKLQ|iU?uMG=;8)yHUfXs%uWZ7TqJ99<`SQ{LnK z1b^U^V@Z7UxK)XPv+G-~4(68`f_l7l;J&bt9Sg#}gwpyz3g zEOjfQbys;GtSDlUR07w)*-Rm}evAH<$o^%&$%ebB7yzU5gXMo3 z#{NQ;GebA#3}VuDn76%)@pJWfoP%%M-=vR8b&0{&%FeB=#oH8bLn^+?ozsJ!S@t!6 zSpseD8o5X5Q4yLar;djtc;zz@0hyQezF9&)LJ{JP;wlx6D9n`E8$UnG=X5d(&A310 zZBmash6a_orG!*nOYMmKQTXF?1pkBm&-R*OUDmhXc+3m=~UOYRv5c_V_JDwD0XF_RclyZyjOE`<9%srcb8x5jp=n5r4d9FwAjlL;5Z{mKBB`1=?z5rFI z0Q%LdB3&pw=p$m@L#og#?dtg}NMGU{{^=%t8RUH~LD6H>SS}c~0fl~^QqMz5bBMM& zz+~WXPQ3UZmfzdfS@Vvv}6)t*#zZ z&dRs4MMmIY(L51F5-@J~VN(MwWyvB&I z8;ijjf{|*YJ>e~uRo-JvIoieo^OZ7PXRCAoZqcpDhjKZzX&EEBH(CyVn9FmA!Z~3T zsaa(-3&BuGX!q=+7R^s-D4_wua17qMSWQaMmE%gkE$u(^QB+Y#dsV?5Y z{DKTEj!U7ZwDTIDm1Fcba+7eG#<+Z9v6s4hXrSjHb}BcF2vjH6Q!n@ zNC4J57%`s6=K|4o&#QQ&*&TZIPN%aH8*<%h3Qzdx?59yP2+k=;=RikXNhC3I;7|Sv z6}|nHYx9g;VJ#M+gaxJfJ19+k_z>f-tUob;^YGZbwCxwssjcx-|GMBTHZZtZcTEc$ z9R|^ba!k6kUBL+juB`-KxYJ2&aa7bN8jNUo(mL-=uVM;6-MX$oLx4!Y?gMSL50bsp zUrTzVr8rvD+(ZGGjxE_y);>^bOOw0#t7~kOaNbWA?PQCleFsWSrpdqHu@QiKvEA}f zAP{N$)mwfW7A6jprFqy=TQFPm6q>9XD94PVrAx`82J~QlV8T9y^s?I==TK$1RsG5x z&7WN_ViSGt^KT-8p18LK3v-0ggqP)~Jo(jHa4~1?(}+M}fK^Ah@D17w@Ic01Ab)ah zHS%iNpN4mcde`;~*5iKZ-B4Oi2%Aa0aXen?0gRoKcdUkgYW?lXW47tdSU%Z7!XUmBl7q(8iUJclulM0)_ST!fd?}sxj zTG!TF*fps-U?-ez){Sz*(4JR7j0*TgZEoT79(Jrz!1+^+#*XSN*R3<=iz<=`Q6JYU}5kRbhZ# zeZArR9(H3(LaSx3{^vmLEcouCFV6xeEXoh|=f`Aia*q}>=AZP<)LoZ-WKaSv&{uzmL$&p?K_^fch( z+s|`KHHkyb5s6$A?bc+?gU=A z5k6FtHi~5FQ4Y_bvQYPCR_MHvk}%jKI$y%EXl2i??iEt&s9^Mc;>T8WJ6H<+U5_Y< zpNsWo;f5PsxNvZDRlR` zP*GQ8eSPD{k9K2)mIs#ZCh@NA3lGeb{$O|Y4UDcqCKWyCT(F=I74E@h!C@?sPtxv+ zaJyC2Jlh}OV9$IXk~j{a!_}oZx>Lc1z8%;%;2PcgTt*ff(GQU2T}n|`nC^48atj7l zC{e!Z-{b&#+7qM*h2z^g31CWMnhbkK%hW4C!jPk;w0PX`d0fe2anYW{g67W7Lp#Ez zi(mT_ht}snXRpp_8L5|1*5G5iuU>JRW}Ok90iP06rR%hZBY8yqBkJ{oCDEukQ$ z*~#{c!IVnKlLu&Lo4&85u<(0DPlb7KwCdF zPXY5M8Fx4ALO8BqmM zp!>;6fgyc30(D#i<{MVK`?{HI`dc?Ur8Ls;-u^`GkNyQt!fIGJNAsAGp_Udtx-Nk?qzodGqC!E;#90)>y0nPiqD;z}n5);?y9W zo?&O8Z6TUk1(I7(QE1(Ih5IEw>7ci__x@z3wp75WYNDfKqKbIL;pWCy94)PJCW0|= zEm``}6v$sk2fZQ44*ybm=6DqyAcdC6Cy^E=9Zv_Z$fMpSI0U1G^l_o~zLo?F%Nurf zcBMN?4#f|R^ru3br(D&j;gbbL@7L`tzSdztX4jwJODRcpdblysP`J+&2*3f!@^mbD z=m_PDIaNOzB90X}GsZVU6~Gi|dH%=pRKCA?_ckBm7H#5( z@1r^NV9~y1vFeu(c~MOE9s9ry*qp|W}jfe~yu%Z99-ADC$nFK~EoxOBBd;-1qDTj~G*>Ga2ck_Jr(48~pI2<+jjy34$lokL7IDJ?F5!D-eu^ zL}78MS$`Na)Nb!;Plqo-Y<7s8uCO?C!#SHgiEU$ChMY>Yu@GJwvm&J9if8SDpjJ{J z?+|Y7=NMne0=eMhxrs~x0;ts6ub*#5G0x4+e#+WWzW82P1QveKxdg9bGHB?f?6!AK zs5|Ob^x*z+WT;kkmU9=RbZ(E;RnLla%)={qd86JvVYe`Gskl#xPpy->1}PNg63*Q~ zdr?ASl$D4|w}nrcKP8bCWQ9To^4lXJ4U3VA;jALk@CCgW73E5IBPc?@nQ{WX+Gkpj zM(@#+wjldNFm29ic}PHL>0%+;kcyD%49|EBq8kyUv((mZx)g|d`kxnP!km|kc{$Iw z22Tg+sA0*Izx!V5SP-Be#B%FeafJJwxL$s!6L#Ictusb1qz~LLQfP>sQa=m67%kzq zx(&Q5xugDBfGBK-qlQw9W0c`n%>p+1=SNKBtY)sll1uuw9v$CAe@+wh)KF`EDLnD` zMjHOOurN$|Nq{4xz7_XPB?i|UWi|8S8u~(s7lgb$OcvIclWOm^0?L3qrB~OkMmZWZ z--IQCic6l4zpyr1hZ!!8yspude((r%oxUs|>op5}{gYQO=b-RYHzABlmjR&A>7n>p z7ME(ml+KF2IWTCfu`2kt9N&~E0n=tHrX%(-xyCpN>W)OYx%5_L`Y0d}^+Qeb`4ffN zwy)@yu1yr?m5g}kU|)y(gg3pfsHlj1vh$vg@9cf-6WAY-omI6}%tMx|=+)KK>iupI zW2Id^4a5A$ma9^rnn_GNnR*$_?>EHs@6e*VeTcOJ$$$WRJm_Aph^8lUJ~u>|YXVkl zZEbY}#Lur)=x(rE81TvdPOM5uh}+KluSjHt-1~{wegad9WcoYmS1=&iN=)aAe`ZG~ zM`~G0eUg|JHwJ}eFTY!=NG+GPnKt$?8HmH$hKGltFbA?DOz?^_HXiXv2agHzgzp4C zmzEg}TkTKTBz;A$gx$Nc{y0U?NFJS=JFO`^A%t$UZ~C)ZwQ$F=GdqhoYFpcBF{|t0 zvXL;hyY4XUtRn!TFyAIUm>FOp)jQ1UDlHvbVZ2 z2`Mc41K-p=FBNt77CD=NC_nm{-Jm24(R!dFy?AJ@%Q{mnHU6Qu^_c zn1-j-aVmfyF?^wQRo`jh?My@+Dbc3K5;t^AoObgH!|Vz}<#q z0#5(Q1P?Vm!8J*>4Y!f{^Jfd|4nobJoyG<(9#qq%yiJ!T5K81#l|%P+7l-rI?c>^M zN+0W74}6pwHiNqXjIiD#mc@2bVJDu9E?j@wmm08I(c?h404fPP4m1mE?&`@F-Kv>& z^#~ll3F{T^`wLI5XKs$=<`HP#Ng1ju)E3J=YwkGJ_;mM{B%%#|@{-QLojdynMd?+E z-=HdM$l!0CN2%==y~>cSic&aJEN^>CXZwTB`}Z!*LddzSWpo`QP<@1ZIijQ7gaJ0I z;lX~7KNPgC@o)gJ#wv@LX-}IBmSv}aM11)hs&l(DPmQC z$|X^i6)U=LR9q28xhr$ERbp04r-hi!?Jw%2!#@5$9YmGycL#6_fs@7A9_{=dbRX2# zCXE8Rn1PK!^ay^qITn00FR?+~u98WqB+X(n?xVqQI<|>Ix2w<;*%YInuZb`4u^R)s zltLjS`WMpN5{^|=$N5KPSVHvf!tuwIml{=u zDG-HS!44g!6a?ytiHV7xPhZY~rmJD&gZ9W%P!IbqDZTgz;cyhQ>J_H;^0jHeFrDn- zyRPM^#I*W)38kV0<`P1oyZ|~~H?G9CJSh`D&--UMe2(eSW$<1h!Ephr092l4tawh} z>V1zjLQnlwK!@_lp}EFVmxa~NcAFAO&g`^3`rSJzbZRQCx%G`kN?>}xL2}8jfW)LA zG}JQw-tlX@^SMT8Haj}O{&;xnF)qJ$mmso|y!nfO|@0+rf`JpkwNMbFinsNHLS z*ycVTHbutg3SW1d+Z7=j+c)3za}Zk5sup%5JxSdt>J)|n0|114kaFa#>1HzE2T?n9 zfn{zJ^QD4WAg80{qWR&^c(%Lt!GdKzVeag4Ni_pPA|k>xkEQ#it6=tjCl;??*N-`J z=hS6*mQi{JQxz|+=+;kysHj9)z|OW9jZab#T7GFS>nnS|u~MV`uK+0_zo)`CAZu&& zZ2ULnC*t$QUw%43NJn~JL}%QL+!%3$3)8hb@pBLgXKPXfK;hN0LAQvTjj?C;g? zp*ss-8V=ja3+sNPztBhNtE>A*LE1k*{V3pDbq89%H0{9*&(AT$NvI~V{KKtg$%q#kDBFMe0wZUe0kZx<}qHXKPQ8y^>7xe`c3CgR3G*b!a{kEM$E3-hM-M(Ej>q4hd3oVkwN~}K zUKNptzstdbQp#bz1&SqqGo{rxqc%<(DyAD4<+oP=^36c=bW9f({M~=Qon1fPlpN{B zp246_DETlGud$@D+xS-0;kP?v!tf^Qh2Wdg9?G-FdxNe-av;ex6kN+{-Rv{UWiMfwZGPIy&s>@0X{857)g5bF)&s!yz2e?_cQj+>5}~4_9$BE zTu{x&${(|Go9t^R*Y=N`#@wy@4X!~niCpH&saao{neU@-3ZL%~nG z4UkD9)l4tmsTjkzc&`DXjG@}O&9~K^*WUHeLi}WJomz`M3{!Z_K>vtCTia?SfonL` z>CbE_=kuI;x~u))4k!SM5I>X4H!sI^f*-C?VDr*Um{!)^cYc(`eu?NI7rFl7FTd0i zO(>=6<%y?K!{DAw>B8btN?5hvtXhs=%tL< zre?O3->)wxzgL36KK2~N#v*FmM=n*?w+(Oe2x?&suf7`=gjkoUgUq7ykylyxBG@b| zF$3(%mewD)e&FZp%dD>93J1L`aiKFDGMGU>+^W;(hbBz}b83nQYv(~cS6TgOH8W(v9<=KSnLR>NE%S5q zciaX5nuz01|F`O8BW#}|$lvbyddRuP0GaBWA*@c^RABl%**#;e=}u0_hZ_?fr=Nod zS4`p!TfT(%OV92GC@(KAwsKq6-VIR{gH6C9q)(ju%cWB@86(96#eavp@I6xur+o%i z5B1mCh2`Z)XDi;am%NFlb(QQr`VBgnW#mgOtUIsOp(8w&_N51D;N={!WbK^7Y(^Y^ z)s2P)&Abpv0c;2Q=Ut73tR?KYU<$pEZ`WZ-S#yf_j?UvD16##Q6Pcu4(xOUjZSCl7 zMs{x9k)#rQ-j5`LL2Pv6U;$IW%u7!lo_Zdh>-qJ>)m#=9@gR>B6~;=DKcAzRY!C?k zm$lm~?lY-bQva%{(!Q9wI-mmGn2L7<`x@AiPgnT|$d(7Sty_qA=uENPnRR90`}jHJ zCKLm|dVd+3wqaJHuY#a{(_ z^)KQBRGO}_q5TzJ2Ew~H4b1Bkj81a0^z@o=z07=%b?XDRM+%&9b9c#myfxyt&;vA_ z044jP9s|Nlq21Gpo*v9%du>GIfxGg3+c<_dD4xh&d|qkNCY;C=`&o_@{O4EOA&-yo zadWua(Y;_|m*HxHi$WY`5Z$p!pGN$A7sw3fs}!+q(oKumK^6l+T~DDR6_0-=uZ^vr{wRkrpDyh)phgT+RT^R~EP+53V& zG{Y8aa~rRIEv3=Kemsj>94YvW>-=o1J>m7+&N%h8p)oGCB$!?MB!T0uSM!1{lUUdQy%>{#l)0}Fou$6p*B5cOJIe)g( z@W$XkPJ&2&fTFcmfVD*!@2~bYbIjcN+PNAdEnHK&FRo@IN=+fKG#_mkUJ+KT+Vn0x z=i$9>J+Sa{oaaKg^h19wpM4}nD9}&X64vykRi+ziK+`uqMB_|0773(hZW* zxzVU}2+}n`X&j@wq@}yNVRT6eNP|ejz%fR*I9gKS+4p&VzkknlcFwhXyFces@7G!U z+P1yjo>9l$R6p|Oob1O*Qq@JXt$%j@U&`PFmte{fg+z=A27 z6`BU2i-M^*+|GvW>Qv6^4X;N`qh+njSbMiu&9qs})mQN>;MPSLD<=OdI-`~^N(o7* z?fgsm@9Z677IZzqF7J47^Sb~1>ffjsdR;%biHIRf4MN=rX~%b^Y#K%td{MQef(Cs! zAR6>8F7FS(2?{De3AK1l)O!QP8*K2o+C(fbqbPb3Ynw{+Rv1$q?_#DP0m}T~w-Li| zd03&O3k%r(XK$Y_DZN~^Z9}N3`{JR-civb^m@eULhqr6-^PunGcO+(ZytQk+F6*1e z&*8V>NzPY9xU?CQ(*hv|RMw9&KEL!8(&&GsD1EzNoMIG0^1S8H!&jqC?~O<^#pZsv zm)Z&Y`Q$SlS=&l^|8GH{wGOYIVN3bV4g75-kBPKJM&0#*STkj6nyI=vNdt$te0k4C zd9!3-kocUM6W3jKhJbqx|H9#NRNW^Gr5^zS2Qnh0SE30C7MEg0U~g)?dSFLmLu)G` z&kNGyAkfapR6gz}G3Ox*&CWEA+zxb(?;>EF1ej zn%q*J!}lB$O|oSi;1j~p{r1s9)@3UhHO!RrG2HdaIQV>TuQ(1)x6cqR{}jbB3+u$# z1|4qmu;d}yoR_UmO;JwC8GVMonBs;?EG{lCNWTS-vH}F1XOIJ20K2O(Hp(8RXtIu8 ze8q&sq)(O$lx^leuHL4L$SKdn8-5^cgw_X=(k9V=zDnVb6qaUMl}~Zs8ITn$F_c#% zmUD;f2Gi-^YhC{z(EsV7SiO?j2OICy$OX@d@Jg*I|En|3!Ay$fV}dxOgPe{nj| zKLgNg{F2@Jc>pH42w1GRzmr( zINyjHm}ACxR8;OUz9{`XnWjME!U~XR%@|lFSNhS+%*-(3Z5IwrATd*X9}q5$Wnnx% z{&~EJ!M(ozsi5OmHLLd@xu3V?g+ZIcz2}qJ1$;|d6&%--g^Xw!fTAec3Mf9sN5~ta z7EdLV>^KaW46Wd*bmgN?Vt*E+PznqwE_v5&?e$evb2Kw2hnUdEG0!q&XRUC_(MMTD zQ2zNcC^^f1to4yrQgU$j{YMjWw-Q5P4#=4+4(e3rKE#uzlh>k>fCzMJr|FP!h*YP7 z|9*-1WA_98m!gg8Q4uAJ(1*)4ak*Dll$TQvvWzE=hNhsqCl|UmFESAe3kK7l9oZY` zZnl5QiQFyJZ_dp*N0Zy|cgZF#Bh*EL1siDBl?2$!BV@m|hzJ1ZXGY1Qgld(hNFhvN znys>Byx^^O9Kl5P0ee5@GENSyS_k+@nL$6c-V!zZn(yzg;CXg&K6&ZM4tv#v@_CH=<36jQ}wu(yup+E_!(JPQi+p7mQ=Sk z{KDnHH%G1=rF`v-?nZ#xUj zKty+dh3sZ=cAlD1)tdgUI{m$*xj8TQcnhD*39K0;t`MHU2F}SX1@fw&^q|%~JDE{A z*K4AKz|)N|1w#5#!+DQCr<^5r->g;sC6Qji+X{$zOhnq#lJj}| z(|f~eeZL`GDr28m^FWe64C6mt3>BShys?(lR2-8qxJtq`z1O}97WagEB1Cy+Qk68n zE7^EHbmku3bpGn?80dsQYphG>>u+y3yWIE}V8H|!D_P6KY@3o4x@|3MaeGFBg)L(r zPVnQPpIfnhx&Y-IG7}_5k6{|*sLRJl8d4p zX!YGkEu(cS?TvsE^ELJ2v;HUTNd0n$>MmDstyB=*t#;^-#U2_&qUMbu2n_arzVktP zd?!ia5W=DP&((llz8trpz4b!olzVzJC}PZ<0Q^#pU~OTSqb>LyHGaB{YHEqMqEuWI z9(~4TEkab3STW%*&RGXDp8ISz8`wp!aD|6tjP1*<(9VjNSZ;i{RE$E+a^W&g* z&FlH)S2cdR7xXKu=jV*>fo4vy!kBqi*)!%-Y+Z`E97*Hbs}%%%EqFcirHMM#u|t{a z?Z0qY5izbU*F&<`EBeRj0Zz+IJ1&cVuvpxjmlu<@65@$qY+wM#77@Of>d}Y&8O@%H zFq~9ig|oObZ(8TwLI);TzYe)GpA!79;z{T z*HS}6(}tgW+yak81yRc4cDz<=3`^dv)HT;leVsYTf;p+mN-;h8HvN(`DgMh){d;yW zUwe;C7AcOZE9mm!j5RBdh_39!Ey+l-5!)Up!p@Dvl9=@v%7^BRcvD-8E*H+pxlGW; z&&*u4aem12!_Y*of8^EM$567&Tw|8%{-`HNs@^e|nFtI}+xb;|qCLKn z&4b?x^;dN&V$Dc?-V_z$hU(phf1aySFR#}70>~AewktIq^W*$r$wRvVH9jY6Kco9s zyM;p(Q5yq@Trx223nk(;i1X(ssp#a=qbGGwRbx^#-Pkg6-e1hvco3}6s5{~8ft3%5i$G}+_))FCuHYGYpq{aI3Ow89HoAz_xE@| z6a@zVrhXzZQn*H_rBort2cXy^eBkJIa%LHIx7n53k-^%M?>$k*~yzcNn!vb)kxZ_g!dX92nUE*n`b~}8PVP|5}$2Q-_8<_pfUj$YK!f3 z?PtPD5c;hA*=I17#0&o3DLNZm-}j0LKEJ)S^|!|6Bazc{$cq}A-l-wZ8-$xUbFM1? zhymMs)>Zd`X5*FRc~Q}VZ{ht3@p_NANsu#Zc5RPa|DBFM4SMA4X7-MU7kSzEkZeTB zjh`D`Y2~JgsRD=q@`Qwr5Jk%fK4Db&SV{u$)UC~GazdPM_sUjFP4A()+-RConvsvi z>nP9D0%DyDbfoqx9hhtuh2<5Q*}7T&sC>};7SGE?<8*4mj!SbLXYF7qk(DF+|-dIyj0@ZKph5nn78DJ^WpF9(rXD#Q@#i z7ieGnwQN{>H|$MrnV+1)^bjYZ=U+Q0x_~x>74R}Hef=kIrQlM)ZpJIh2ZNTsV@u*u zKUnPZ8f>QG=R>HTACg>_k51cEm*`~FmGdEOR|rNPwhzg~_`s@*+Q)rB`)1!=A2&`5 z##T~6Mb`pzaIi$vCSOa@AW(0;HGZ2dncsl~JZl_BADa}LE9@M19NB(QNFiTePB}6*%I|t4 zE^ZKp6QfFE!N}I3G+y6c@`ew5FXJ~^|DFrd;_wVnIwC1~jujxwSimT^d+$&AW%vnz zlqsVpsQwin{FtX%>6bs+prB>yGP%Br?_r*)57!yQ+K7cFXfthJkYvb;C!GdESmw`& zZ8qehz~tMK>Nn+Py|+h=KCeL(?PUY??M!^&?rYSF!OnLZK}YFx86jEB#-M+`C%$hi zLa)2&S-=P63@>&17PNmIChx~z`|cRg55_pHF|;FGW(((@1K1tcLRLgi`WgqX3eBj- zP4m;s8=~MC$SMh43)fpbF-0d$t=LpLcZmSn$rtENW2n9@0<}qNZ+yt->8O3`MLTS|4-$-A*4%DcXAnT8O(V*fUP zFF5I)q;uX-nr*;Y3q19laxVYplFd`=Ta~X@M2`%ASq6+{rk2}sS9kJ% ztvi@$sDpCv=RpKT=bJA_65a=9 z;8gIxiOp4mxLu^HMGm&IYL1NEu!RbU4+W5XX|_FlJv4Q+>l;$u3}!^DyV7tIcoeAy zM&^Q6S8>rP_cep`@shpdS~hIC8yV`TM)@>UXYK3oT-Vu#e#h1Z^OF-&=Jsw=_}_Y) zYNe@}H`XE>&=?f2Pb^R*^>PCAe2K~Dm!5{t&mTTVD@pc_xcDe-X zEAY@&iJx~04t;YKmHkwQJ{*K`xuOTMLb>o7rvB|nZZoUS)J4AxQ(L#AhmJ!j7(wpc zyB{YMW`EC^AT6_{ds6e#?0QEbVOgL64ZZz8&5wz^?Gnd3c<*7p2dsLzm^~uF`fFGh z->5pgT#MTsiRiY~mp+0u7Cu5F%E8(mcm7d0^c>)OfyCq#eu1{Y>~Vj*q61`#$EoD8 z%&<#|t3o+-k~&Ew{ffC<`^#{3s$OG_7KtL~K-dag?Y*n6^+YOo)U|kzgpT>}NG?I- zd1p;Q8;;iUrTkNDvCZ;!QsG+90nWIfLC!c#XDQ4KzP}WADP(`C)VV$p?y8)1HCl1T z{T2l{Fz^9m5v%lPZZ!z1_b~W~Y1ot-E+6=}`tyqJT~<Dl)NM`KOt=XrJ-TiUGk;oo%<S$yy+ZcwW^kG;SU!I5XMxPuU+t7@cx>M?`4V8O`~W$}m@>&Ui30%#(Bo5?RqO`K9YtFkk7fsX6-8TE=@9)Jdv zR*x*}aH#b2wzV=rkp9H;l~S7*nBIUBpQhlanI#4d)8&F6C1QPsce(DWY4%>e+#NYvX}|9gjoo zjcN`BcVAx;?>~vdeWMmC!RdYt&Aw1oKWfGLukQQPQ<6WV%dGAWYC@&Uo^hYN(4p^y zBLib0E!uht%7ri%fb}cf1cew>J3#BipSbb75e>8>Z{rzhSHW&Glc|{5R~BF#WPGUu zbHAB9Xg}y@seAQV)1ek+3UdX0`Bt*Ib9z8S*0#5|_cgUg=E3&8dxwQtpO|-9UvPd? zHFULoR0WDy;n6AEvfe<^{>l9Wl(UOo_mYzc%-CC~M<*jtjt1uJy?EX)euLRH+J1-t z42|(JQK7Zw)VQBN_#Uo=$!NYG!fj9GZ28^W7u?gdx;R2r&kaULI}A`Lvnx%&A4`p2?Vkr%rJk_@1e{>%IV#9@?#8by8Ne-QrF8X%n zBW(q)HoF)^wWWKrML3;)%W=GDd-qp(seT4u1+)u`sx86s7XH%tW)v{-`txTku(+Vk zW8fl-r1nMJKMsB)TsjW$V)q#*Au(9XXQFMh+2eIR6|{iXKU#39)+dPt%+Z+&n1=hp zDByMm$U@2ACR1E4~I4rz$Br5vSiru9Q|YI1J9CJ%Zg@ zpAE-vJH+%%0BV^?bUmXO(AjFD1&$NO%_jmj{7MH3rjVEXFC{UbKYd?E{ngRpug#iv@MEWScWvZUO&{yp+kna`sQ~P| zi8|}p@*;op)Np=r*^Ks)IMLHk|AoT^wlLDJmpT*rmE5{M39xuQ(O%!Q<7vk8JL}sf zPK%33)R-$s-#8cI9}Css2!P{aeN&H-!YEBjJ~Y&>W~ueRe_EKfWs( zHgF!0yGa=7epZ&s*D)f=oTiSa_yd!xOICr$B>(Tc1>VSm`aIQ0hds_$pRxtIwufx> zI}aIG^UJ5pHk-#06~ff?bXw1J^t8!WN`ES!8RV|H8nsMXcmIcSn9?0l`6}z7yp75M z)<(w-e%{*V#K{X=q2s!puH@;jh)p32?dFL^*mqU`P4iOjYEqcWO49-LhnN^wBR>!0b*jXuGWIOI^nkGKIF*h&+P}OhX?$DN=+w;@gF1{+8K3h z{-_**&2n!(CVeMm%rJlgS(|2_XH!t7V^!m3B@e`Hl&%G;^{kDE--g}Kj94@Ghw`&F zMrq*w!Rw)wq|Nq&n9xwW9q<%(U2XMI@{RIn+se;7E}XnvI#Q6$Yg7)US_nVYKhJQ3 zXKnm>zGz8FfXIT0UYG}jGcBpp&a5~gezML#a&c_Kajf9)%}d55q*vSg(&Zx(kyfQr zAK@qBLiT|itu0ehRCZety`xWX0%`+x{3}|MtaKFChc%^;OAXyh?+^9EHLkA=CuZz| zFE)HD>9S-PEoNa+MM7+U9zfUEHosnb0REV#Q@Iv7MB(Ni?DU|8(!iEE)WImYQK&5vF=O+)ao2Vu@31nO{hqAV=jW@95|B!RqW zO-%IBU=+KJg(qg3PY2 zzm&7bwPw>fl7_)=nOn3#MS#?(r5&Rg;CLG6XEQBfoipmNMEyxh#E zRszh8gMUxVj2$7rd(F8RJefCOKVit1fgjHbr$+HlH>G+J*(W{)&1Xzti;^K;!@fP3 zl7dP^7ebi@|I)b}BFpx0Y&SHr=$i9(i^bgd*YYC8iKw6*0vY{kD6vm+W#0>(1;YfU zoIe7}G3iW#k%`5N8wqS2xW&Coahp zv}7#I;Wr6f@h4Jr8Y97{k6OuPaQ`(T7jaF?#%x85bBIo|hDpvNgt)Y4bN%$Q$G?p@&h+%nq>|huBlZ8ZDNN!TCp8== z%cFiCuV09KirL;KQLL8%{b2HtnXO3aVAd#I3h=P;+)!k+5EBr*KI_M&Y(My_2ricu z9hkj=H?@AW(t!2IvPFzgj#=58wL5*_G0Bh?0(zwnBMBJO;WitpF&&|7 z+`sE@BQW(m|0qsFm{=2cz7xD*aBpGVW7baA(W#ZGZ7zdP71!ILbEPt2cR3a|9pgd1 zc_#l`U(St`Xjmn(>-3xGCJ*tM##0nJBdVj0a|liEBXXW+9wzfas;$X9(NRGEK$1D= zQy#zJKSzk&t%3EH5w7+bl}G?eO_qz@P4UAK#Rc;Ic$JE%%c6Bqhfs9%ylt~&Hq}rj zG&?-DXu-uf8P~Pv@tvk2jaC5Z`yMGbLZch z=>GIJ|JRqgsXs;U?y5-I6+7TQyc<(CI-nmJKSMelWETeNwujPF&p|8= z7L5OHt4=J5z1GW%EBiV1$eRJnk?MwWCfa0+lSxUsZ{JEt4*?y+GeRKJX1!^HmF^wx z(RzW-iSo^sz<9+3_PoPf&c*oP{?gA6SsUnjBb}CFY|0R0#D1&g-iE7rL8pTZNR!w^ zO)u({=%S!DErKo%mH1=%b5ztkd4Y;nzLbIeSX;f~r+~d!&0)LVmH|8S-rV7_U%v`i zffd~^oOk`?4f}U9b9$9k$?4tJQXSv@6qatFJ#k>@)K@}?2HII&8M`IR5UhNn=`xK; zV`iyX$nC%a29T^C6!5{~n~6z@8J|Gx0}XvyM{0G(Q=6s`t`$z1jOzjsai64pc#xWV z?W^2LE2jf~r<)j!C2Pj{&L3_&UE9eYXa3fPJPMZEwS1sF+8jC!RK_wH{ow;B-g8C` zfIPWK0XQp+PLO2TyDe5$D#u<~Hp>;E?PinC)V3r(##!$ULRdd>639(Y)oGi^{hI+Hy3}x8hyeE&=C@i(#<23oQFb&e+Q~R_>ccD?oz;q&J$T9Ou@c{GKujb;$e!&Y z@<}L~2tQ++`OLC^YC*hvbrJST%oYFfXu@^sMo8Lz^7T;oC>sh7@sKJ*`hgrgDk289 z+v%n+BOP6_ zO+MGMkm-XrV>8g#EyE>R)~Rdk%h`uDLPU4HrpVRiuUL=CV=@Bh?BMLxQBz=x8)YW> zqa_6vX_w|}Ul9R3p|{rz1|13m+JQY$IxDL@r_VnEt|Uah9~gx2em0Vi#9efaT-G57 zPTG$@VK$1;!~Gpf>kyHAV0VZC{ zGC~!zzw_5ls219P&7tV}?(j^0wt7H=9StpAZvILJ9+l8l|Cn?t#S!K`J5>lXyKxGO zgVASTuT49$fMsRVp65oO5`pb6!Zf{XA4DeqP;@##?9a+r8GOh)Gj{RWz76^$s3OIy zaD$(5O!L2j8XoIYR2aIfv3GG%@n8W8o_PLa{n^Gq z5FHXDuS)g%g0b^*g;lwtoZ^puDat*FFqYEsa;VEp2zi#&jrbe2scf@~CpwN*ikejb>l5k72`RfRDBTzxP}uM*-UEA*hKS-8Ze%t61%$FJj=ZgieZLE;vw%X7D8~OahXYcyuG!qFx1d8 zXR#)=v{8Dqta?KpVM)+?Bcs}>gb&h0@5WTEmkC^tIXnH8rPgT}%40gNPT4plt2Zy* zF80*Zi;vkBJOa%xuKFjRXkT>7X#b`*L_2*Y18Pn;n?suo)f?atRAMl?P_To(7fSluvwUa^a8Fs4?^ zVFtap`dwV|JL-YTub;1;LupTRZC=7>`QiY%ixY z)LEV`gzkSxOC4XO6reV7(>LS~P{P-oTHz_kp17#cW6&b+cGJME;?q}pE*M;gJRDCe z+DUaBWp5yGgl=9DInOZEeNPir@$EkvuC_#H?TwvhzFe-q;c83d-bS-xj~%R}^FFj8 zTs2!ztaoL+uC=?Jc~vws7HO}hZt~)e!mpDw$c*HdLahsUO0}?d+=;4v)C7r zm;>VTrP;iz#cC96e7Nwb^v&q#S9;eK1D>A79kMUss>l#Nw=k$dxK>8Xe&=u9{0+jq zrl%x>%G(7Q6df=2OA@%P@D0|2(j{V9IC}tcB7931hJ|Cdo>$i zSv@Q?Y^86nX*pG!&hK`9oLmI$)i5Iax=W$Z=v_l?PIZPl`zTzTk)6^O*7qdVTW=aL z9|%uh#Fsuz)r32knVYBV>zgnM$fo9=bu0_`y3-o9Tyc*RCK-}$im%ng zM>8=VbBEC_{NXbBv!3EfH!?}Fd4V)Hg*|Seo;Ai^iR81k)Tr0mKJx8n;Wt-roAnmd zYf7%*aw6y9=mL4b2O7Iuxa*`G2Aigl%I0`aL-juT)j=fWDJXPIS#={R1<23yXJPZ7tr>iTY~CEn97NR;_+FUuZ%M+Z@f=8lwMNPuC^wz7wo=7yKN0 z*tJqGOC)Y<5tgWWzvDa|NjTyc$Oa<_~4= zE~zA2Fg*YX(B`1_q&sngxVEXStw_@AmwszQcMvK4x)>vg7TS;U_VniYz95!<*`WtN z^%CQEaCK*Hpe|Wl^g;KC7Ud8Ey%Se+1{+2PK6egOy$;4~Wc``eY<}$g<}fQh!K>r$ ztLY@M;FZTk7v&~7`T~srM6@G4-Nr`3mjUO$_uiX73CAX3}Ef~ zW&btr`9QJoCuCsF*IcIdhK2^Mbh`Jw{vHQ=IT~5hoAfITK0`<_kGiF~0sp6y-)m=9 zB;x4qlw_{&vP!nyJAM-4xTeBp_>`#+r84eld9o+Z(`Q=8HpwJLE!v5CJK;e>)Mxo; zg_yY}PaZ^u$EKVX%`p3Uc`ref%de)}KV3XIRu~xl>e#RHuAHVDS|htRqno>QtdXTXRjL6%0^SG>Tz; z^;rj<&&TTT^>C~%1_4poVvCVKf7WPd4oAxxnSKdrw-ENH_({+*^nip_|IRB&8y-5# z$VP3~h!@>W`Odsq{Ulxh*rQI#74A}Jt1}zyuva!XbK}w7wmj1NaKwTR?QoD_*&Sk^ z6ncKQ^;A{-hY&?g2%)yF-s?ES7ubDu^jjC5df zR~V-C>56-gFKuRS1Ss16b|VJip2vo*L_@RgajHnXv`=(|6l{Qe%!a?~ufH4%EwejB zio58>x?b>K$wTemp1IXp{z^&72t#Gru^yfX;)=-vozmmG=!aEWTB!1qB~D}SlVmTG zOeGBic{lh>&xuoX+4CN``^KA!4wgVw4FPeKWxbg!R6^t#Dy<76sH}46t~8|y1}L^$ z$52`SlG{;>p(jjJ^_EJ(c2OQ2mFIZ)eK@heyzgTV z-1fnwS8q)b=@b8z!oZ?Lw@DHD#4L1t-$uT zc}N`9z~jdPJ>zIQUK)Km_;%M0lAq+C(7zOrd_$=>V0mP9xrFBHD#^`Ni`G3$475Yb zs8nE27g>i8Sk&{8vzcsimDUR?<1fXjTYuFQf|hB`-XY5>cb3Y+OkdF&W092ICmofn z>b|LuYRAdwJ|Y8-4Nz$wWdbR=!P%65RphNp+n+X6j!}7Zd=ub3j2ZcCm{A zoO%FPs{Iqt897vz!mfiUwsbky&qW|!u|Ug9lnd(anXVcpw6%XWMJ^6`jgl^g#lB^L z?rr8`;X5^n&CWM*tkyGobO2?GA3B{zJ59FqRdaWZ^+)QX49u#ZiMC=zzhauBqd@bJ zEZ;EZKhkm+g@aDSCRsFxMHSvDwe}S=9RC_#Nzx!^E*i?z7moxr!Dr)LMa2&=>SfiZ z!Y>uCx(i_`T5milxR>j&33)XDeV(sl;%xFL-fk|zd)tQ`92TDRK2)-97Lae}?1rJg zqO#h^Dj5<{>ZVWJNt-A^nab(1O~{%46AlIMQ^B{-WKR@W3(=3k71uYLjR z4NfI98t92!8U;WAYTWQIQOos5xBJ2Je>g75P9UQmq^+R=dN=zQ>NpmPci;~G&bA!h;vg8CpG`YL~*sEU&Mpy%9qgo-j33g0@4`Siq5OVbifN|8o9&W;c&k9XzMoEo+?i&TiXV zP%R*I{q{s}2DQ2I#V(Q~pMXRgqq8jFdM1kA=&c!@;ftv{oUow`?7k8U`37b&pqF98 z_Vfu2w;C*y!4wA=WLUb7L$>c_gNZW40V7 zh|q8L{3-={FWRs&*(hdUf`kOizEAeLPSH>)Hq<(oO@G*^@rq|aP}U{P?I+Irn(f|y zVP9!>l|JKY&CB7cdz#rfn80+l*tcme+w0UCN zvaY|ZJ?lu*f5TQw?d4A`kicL~jS)z!uq5b%A&x0$dzLHVfLC~m)>ArlQi^T<$?bag zS!f{Fm_T05HN$($=XlrP>;XrPZhr5>@|O%B(f51E2@R!Xgk>i1$AQT5-)gy*UqrAK zgyf2LK5>vWGx?|@noeiOU{(DI@Jp6_hJKEx?B%38*j^HRVVL*h`F3p=T`GX&Z4-*&DpKrVCd%y=6lE#z%85e&HDaRo?OJ&061eTiPS}#8 z8@mY3y!~m^hf)=!4a2G3b0GY%;1)oV&$6#!R*)Je5GiABqRk_1nc0cIw%w(0b5v;n zGhIGpy1WnPR!90Zm7T>(B3R*6o0(5lcJQzzNI9taxpc^%{+`6?Sw%l&#%KghmL1;OlkiZ9qrwjOC4Uv{Ln)u=tvcQ6~XC9~JAITikvq1XX`tXjh#<61Xkr4V6o zn>-DiA5SGB%?1yz1b1S8PL4wwbLY@{IGnu(SpspDwx!WbnE{O0p##U^N;dln_(8%h!2aot%#wof(fv!_}qga zDHM5IkUXZKM_AtyAXhM>%!_h}vyQ{d_w1BFZyrr@==GOuS(S#r?$R!e$;?oE!md~2 z9pL$%jm!wn1w@XqL8^76S&2b_(TvFa>Dqt|5ZCq9ShM5}BvLv;BQNtLz&AJXCDfYC z9)_EI9UwmW8ymibWZe+kVLb>8EX|?GkQjn`3cQ-?5jI1%?8X5LjoexNN9Sq_u8p2C zkL?qol;BjjT+7v$f8qAI-@d0nr#Q!OaT!(SWcOu}mIu?1f&LOiYfU~gucr1FJnXKl zAjACl(_C4vsRs!sUG#HpymD1ZN$>uBr6epcWF!Rtj+p&UX#sz&&VbALPW{X*=!o}H~ z4;o9S+O?B9aZBqxWDt6fr(hG>iD3(vwzn8{+0l=jrAfOUz~c zcYhWbZ{KNY(?cg*(HJp>OU=PGr?fmm%Om*k(By=_px}{6JM(k2l7qTbV}QDOV58%f z*(c91ce!BVF#R?#2;%SV=6eV%)Em+uCH5)L3$~J5f11ah^*ZZ`_BX;snhZBJu-Drc zvQ%v@QT*cIymWqZM@F@%$n->!;vttHl}K=G?#rw8*IFQIR?YHFZCg)>z~lY0Rl z;#xICU_JQ3?y?5#TG5E~iKCMkeysQLhQm$d=a(za!kYITA{l*E4#Z1gd3gzvc)0nZhYX|A)E~w6{hB9Vc_WKC>%~hZ*6T2fy5^y zphy09h=%@uhyEM+zoGvop@;t8q;}?8>F;dqKmRfc{onjdq7^hn|2#Tj75#xAaY$pQ z`ve=%yCcwQTUkx6xw(6njNW5{3%Hm04l>DK1kVP^HUB%!y%?9VvUZgmxf-hd$-v_g kt(hD!WpRDd(T9Qg@w1$64}}~00#yt(B`w7U`43_L0~c{(egFUf literal 0 HcmV?d00001 diff --git a/yudao-ui-admin/src/assets/styles/login.scss b/yudao-ui-admin/src/assets/styles/login.scss new file mode 100644 index 000000000..74decc9be --- /dev/null +++ b/yudao-ui-admin/src/assets/styles/login.scss @@ -0,0 +1,387 @@ +/* ===== PC DESIGN ===== */ +$W: 1000; +$H: 1920; +$picW: 438; +$picH: 560; +$formW: 320; +$tabW: $formW / 2; +$rowH: 56; +$buttonH: 50; + +// container +$containerBgColor: #e6ebf2; +$containerBgImage: '../assets/images/bg.png'; +// container-logo +$logoWidth: 417px; +$logoHeight: 64px; +$logoImage: '../assets/logo/login-logo.png'; +// container-content +$contentWidth: round($W / $H * 100) * 1vw; +$contentHeight: round($picH / $W * 100) / 100 * $contentWidth; +$contentBgColor: #ffffff; +// container-content-pic +$picWidth: round($picW / $H * 100) * 1vw; +$picHeight: inherit; +$picImage: '../assets/images/pic.png'; +// container-content-field +$fieldWidth: $contentWidth - $picWidth; +$fieldHeight: inherit; +// container-content-field-form +$formWidth: $formW * 1px; +$tabWidth: $tabW * 1px; +$rowHeight: $rowH * 1px; +$buttonHeight: $buttonH * 1px; + +// - - - - - 页面基础设置 +.container { + .login-code { + width: 33%; + height: 38px; + float: right; + img { + cursor: pointer; + width:100%;max-width:100px; height:auto; + vertical-align: middle; + } + } + // 元素 + width: inherit; + height: inherit; + min-width: 1080px; + min-height: 620px; + background-color: $containerBgColor; + background-image: url($containerBgImage); + background-size: cover; + // 定位 + position: relative; + display: flex; + justify-content: center; + align-items: center; + // 文字 + font-size: 14px; + font-family: Microsoft YaHei; + font-weight: 400; + .logo { + // 元素 + width: $logoWidth; + height: $logoHeight; + background-image: url($logoImage); + background-size: contain; + // 定位 + position: absolute; + top: 50px; + left: 50%; + margin-left: -$logoWidth/2; + } + .content { + // 元素 + width: $contentWidth; + height: $contentHeight; + background-color: #ffffff; + box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.07); + border-radius: 20px; + // 定位 + position: relative; + .pic { + // 元素 + width: $picWidth; + height: $picHeight; + background-image: url($picImage); + background-repeat: no-repeat; + background-size: cover; + border-radius: 20px 0 0 20px; + // 定位 + position: absolute; + top: 0; + left: 0; + } + .field { + width: $fieldWidth; + height: $fieldHeight; + // 定位 + position: absolute; + top: 0; + left: $picWidth; + display:flex; + justify-content: center; + align-items: center; + .pc-title{ width: 100%; clear: both;} + .mobile-title, + .mobile-switch { + display: none; + } + .form { + box-sizing: border-box; + width: $formWidth; + // - - - tab + :deep(.el-tabs__content) { + padding: 20px 0 0; + } + :deep(.el-tabs__item) { + // 元素 + width: $tabWidth; + height: $rowHeight; + padding: 0; + // 文字 + line-height: $rowHeight; + color: #666666; + } + :deep(.el-tabs__item.is-active) { + font-weight: bold; + color: #2F53EB; + } + :deep(.el-tabs__active-bar) { + height: 3px; + border-radius: 2px; + } + // - - - input + :deep(.el-input__inner) { + // 元素 + width: 100%; + height: $rowHeight; + background: #f5f5f5; + border: 0; + border-radius: 28px; + // 文字 + text-align: center; + line-height: 19px; + color: #262626; + } + .code:deep(.el-input__inner) { + padding: 0 24px; + // 文字 + text-align: left; + } + :deep(.el-input__inner::-webkit-input-placeholder) { /* WebKit browsers */ + font-weight: 400; + color: #8C8C8C; + } + :deep(.el-input__inner:-moz-placeholder) { /* Mozilla Firefox 4 to 18 */ + font-weight: 400; + color: #8C8C8C; + } + :deep(.el-input__inner::-moz-placeholder) { /* Mozilla Firefox 19+ */ + font-weight: 400; + color: #8C8C8C; + opacity:1; + } + :deep(.el-input__inner:-ms-input-placeholder) { /* Internet Explorer 10+ */ + font-weight: 400; + color: #8C8C8C !important; + } + :deep(.el-form-item) { + position: relative; + .button-code { + // 元素 + height: $rowHeight; + box-sizing: border-box; + // 定位 + position: absolute; + top: 0; + right: 20px; + z-index: 1; + // 文字 + line-height: 20px; + font-size: 14px; + font-family: PingFang SC; + font-weight: 400; + color: #2F53EB; + span { + padding-left: 15px; + border-left: 2px solid #D9D9D9; + } + } + } + :deep(.el-form-item__error) { + padding-left: 24px; + } + .button { + width: 100%; + height: $buttonHeight; + background: rgba(24, 144, 255, 0.2); + border: 0; + border-radius: 24px; + margin-bottom: 20px; + // 文字 + line-height: 26px; + font-size: 20px; + color: #FFFFFF; + } + .button-active { + background: #2F53EB; + box-shadow: 0px 2px 8px rgba(0, 80, 184, 0.2); + } + } + } + } + .footer { + // 元素 + height: 16px; + line-height: 16px; + font-size: 12px; + color: #8c8c8c; + // 定位 + position: absolute; + bottom: 30px; + a, + a:hover, + a:active { + color: inherit; + text-decoration: none; + } + } +} + +// - - - - - PC 最小尺寸设置 +@media screen and (min-width: 599px) and (max-width: 1366px) { + .container { + .content { + width: 710px; + height: 397px; + .pic { + width: 314px; + } + .field { + width: calc(710px - 314px); + left: 314px; + .form { + width: 320px; + :deep(.el-input__inner) { + width: 320px; + height: 56px; + } + .button { + height: 50px; + } + } + } + } + } +} + + +/* ===== MOBILE DESIGN ===== */ +$mobileW: 375; +$mobileH: 812; +$mobileContentW: 327; +$mobileContentH: 376; +$mobileFormW: 280; +$mobileRowH: 48; +$mobileButtonH: 48; + +// container +$mobileContainerBgImage: '../assets/images/bg-mobile.png'; +// container-content +$mobileContentWidth: round($mobileContentW / $mobileW * 100) * 1vw; +$mobileContentHeight: round($mobileContentH / $mobileW * 100) / 100 * $mobileContentWidth; +// container-content-field-form +$mobileFormWidth: round($mobileFormW / $mobileW *100) * 1vw; +$mobileRowHeight: $mobileRowH * 1px; +$mobileButtonHeight: $mobileButtonH * 1px; +$iconBgImage: '../assets/images/icon.png'; + +// - - - - - 移动端设置 +@media screen and (max-width: 599px) { + .container { + // 元素 + background-image: url($mobileContainerBgImage); + min-width: 280px; + min-height: 568px; + // 文字 + font-size: 17px; + font-family: PingFang SC; + font-weight: bold; + .logo { + display: none; + } + + .content { + // 元素 + width: $mobileContentWidth; + height: $mobileContentHeight; + min-width: 250px; + min-height: 340px; + // 定位 + display: flex; + justify-content: center; + align-items: center; + .pic { + display: none; + } + .field { + // 元素 + width: inherit; + min-height: inherit; + // 定位 + left: 0; + display: flex; + flex-direction: column; + .mobile-title { + // 元素 + margin: 0 0 20px; + display: block; + } + .form { + width: $mobileFormWidth; + // - - - tab + :deep(.el-tabs__header) { + display: none; + } + :deep(.el-tabs__content) { + padding: 0; + } + // - - - input + :deep(.el-input__inner) { + height: $mobileRowHeight; + line-height: 24px; + // 文字 + text-align: center; + color: #262626; + } + :deep(.el-form-item) { + .button-code { + // 元素 + height: $mobileRowHeight; + } + } + .button { + height: $mobileButtonHeight; + line-height: 24px; + color: #FFFFFF; + } + } + .mobile-switch { + display: block; + line-height: 20px; + font-size: 14px; + font-weight: 400; + color: #595959; + margin: 0; + .icon { + width: 14px; + height: 14px; + display: inline-block; + background-image: url($iconBgImage); + background-size: cover; + } + } + .mobile-switch:hover { + cursor: pointer; + } + } + } + .footer { + // 元素 + font-size: 12px; + font-family: PingFang SC; + font-weight: 400; + line-height: 17px; + color: #333333; + opacity: 0.6; + // 定位 + position: absolute; + bottom: 20px; + } + } + +} diff --git a/yudao-ui-admin/src/store/modules/user.js b/yudao-ui-admin/src/store/modules/user.js index 78da4ece4..969f825ac 100644 --- a/yudao-ui-admin/src/store/modules/user.js +++ b/yudao-ui-admin/src/store/modules/user.js @@ -1,4 +1,4 @@ -import {login, logout, getInfo, socialLogin, socialLogin2} from '@/api/login' +import {login, logout, getInfo, socialLogin, socialLogin2,smsLogin} from '@/api/login' import { getToken, setToken, removeToken } from '@/utils/auth' const user = { @@ -86,7 +86,21 @@ const user = { }) }) }, - + // 登录 + SmsLogin({ commit }, userInfo) { + const mobile = userInfo.mobile.trim() + const mobileCode = userInfo.mobileCode + return new Promise((resolve, reject) => { + smsLogin(mobile,mobileCode).then(res => { + res = res.data; + setToken(res.token) + commit('SET_TOKEN', res.token) + resolve() + }).catch(error => { + reject(error) + }) + }) +}, // 获取用户信息 GetInfo({ commit, state }) { return new Promise((resolve, reject) => { diff --git a/yudao-ui-admin/src/views/login.vue b/yudao-ui-admin/src/views/login.vue index 95ddb9862..8f62d9eee 100644 --- a/yudao-ui-admin/src/views/login.vue +++ b/yudao-ui-admin/src/views/login.vue @@ -1,56 +1,117 @@ - - + @@ -76,8 +76,8 @@ - - + + @@ -88,8 +88,8 @@ - - + + @@ -143,8 +143,8 @@ export default { form: {}, // 表单校验 rules: { - group: [ - { required: true, message: "参数分组不能为空", trigger: "blur" } + category: [ + { required: true, message: "参数分类不能为空", trigger: "blur" } ], name: [ { required: true, message: "参数名称不能为空", trigger: "blur" } From 6f18adb54a259a9db0cfdaec33c4b07d0b3d40ef Mon Sep 17 00:00:00 2001 From: YunaiV Date: Sun, 1 May 2022 17:55:13 +0800 Subject: [PATCH 021/111] =?UTF-8?q?=E9=80=82=E9=85=8D=20Oracle=20=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=BA=93=201.=20=E4=BF=AE=E5=A4=8D=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E4=B8=AD=E5=BF=83=E7=9A=84=20DAO=20=E6=9F=A5=E8=AF=A2=E6=8A=A5?= =?UTF-8?q?=E9=94=99=202.=20=E9=80=82=E9=85=8D=20LIMIT=201=20=E7=9A=84?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../apollo/internals/ConfigFrameworkDAO.java | 4 ++-- .../apollo/internals/DBConfigRepository.java | 3 +-- .../IdTypeEnvironmentPostProcessor.java | 4 ++++ .../mybatis/core/enums/SqlConstants.java | 13 +++++++++-- .../mybatis/core/query/QueryWrapperX.java | 22 +++++++++++++++++++ .../infra/dal/mysql/config/ConfigDAOImpl.java | 14 +++++++----- .../app/auth/AppAuthController.http | 2 +- .../system/dal/mysql/sms/SmsCodeMapper.java | 15 ++++++------- 8 files changed, 56 insertions(+), 21 deletions(-) diff --git a/yudao-framework/yudao-spring-boot-starter-config/src/main/java/cn/iocoder/yudao/framework/apollo/internals/ConfigFrameworkDAO.java b/yudao-framework/yudao-spring-boot-starter-config/src/main/java/cn/iocoder/yudao/framework/apollo/internals/ConfigFrameworkDAO.java index c2fbd290b..95f44b36c 100644 --- a/yudao-framework/yudao-spring-boot-starter-config/src/main/java/cn/iocoder/yudao/framework/apollo/internals/ConfigFrameworkDAO.java +++ b/yudao-framework/yudao-spring-boot-starter-config/src/main/java/cn/iocoder/yudao/framework/apollo/internals/ConfigFrameworkDAO.java @@ -15,12 +15,12 @@ import java.util.List; public interface ConfigFrameworkDAO { /** - * 查询是否存在比 maxUpdateTime 更新记录更晚的配置 + * 查询是否存在比 maxUpdateTime 的更新记录数量 * * @param maxUpdateTime 最大更新时间 * @return 是否存在 */ - boolean selectExistsByUpdateTimeAfter(Date maxUpdateTime); + int selectCountByUpdateTimeGt(Date maxUpdateTime); /** * 查询配置列表 diff --git a/yudao-framework/yudao-spring-boot-starter-config/src/main/java/cn/iocoder/yudao/framework/apollo/internals/DBConfigRepository.java b/yudao-framework/yudao-spring-boot-starter-config/src/main/java/cn/iocoder/yudao/framework/apollo/internals/DBConfigRepository.java index 08573d33d..e41cb5780 100644 --- a/yudao-framework/yudao-spring-boot-starter-config/src/main/java/cn/iocoder/yudao/framework/apollo/internals/DBConfigRepository.java +++ b/yudao-framework/yudao-spring-boot-starter-config/src/main/java/cn/iocoder/yudao/framework/apollo/internals/DBConfigRepository.java @@ -24,7 +24,6 @@ import java.util.List; import java.util.Properties; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; -import java.util.function.Predicate; @Slf4j public class DBConfigRepository extends AbstractConfigRepository { @@ -172,7 +171,7 @@ public class DBConfigRepository extends AbstractConfigRepository { if (maxUpdateTime == null) { // 如果更新时间为空,说明 DB 一定有新数据 log.info("[loadConfigIfUpdate][首次加载全量配置]"); } else { // 判断数据库中是否有更新的配置 - if (!configFrameworkDAO.selectExistsByUpdateTimeAfter(maxUpdateTime)) { + if (configFrameworkDAO.selectCountByUpdateTimeGt(maxUpdateTime) == 0) { return null; } log.info("[loadConfigIfUpdate][增量加载全量配置]"); diff --git a/yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/config/IdTypeEnvironmentPostProcessor.java b/yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/config/IdTypeEnvironmentPostProcessor.java index 8bb10aea4..a370b45e9 100644 --- a/yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/config/IdTypeEnvironmentPostProcessor.java +++ b/yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/config/IdTypeEnvironmentPostProcessor.java @@ -2,6 +2,7 @@ package cn.iocoder.yudao.framework.mybatis.config; import cn.hutool.core.util.StrUtil; import cn.iocoder.yudao.framework.common.util.collection.SetUtils; +import cn.iocoder.yudao.framework.mybatis.core.enums.SqlConstants; import cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils; import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.annotation.IdType; @@ -41,6 +42,9 @@ public class IdTypeEnvironmentPostProcessor implements EnvironmentPostProcessor // TODO 芋艿:暂时没有找到特别合适的地方,先放在这里 setJobStoreDriverIfPresent(environment, dbType); + // 初始化 SQL 静态变量 + SqlConstants.init(dbType); + // 如果非 NONE,则不进行处理 IdType idType = getIdType(environment); if (idType != IdType.NONE) { diff --git a/yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/core/enums/SqlConstants.java b/yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/core/enums/SqlConstants.java index 7e2c233bb..d775f17c7 100644 --- a/yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/core/enums/SqlConstants.java +++ b/yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/core/enums/SqlConstants.java @@ -1,12 +1,21 @@ package cn.iocoder.yudao.framework.mybatis.core.enums; +import com.baomidou.mybatisplus.annotation.DbType; + /** * SQL相关常量类 * * @author 芋道源码 */ -public interface SqlConstants { +public class SqlConstants { - String LIMIT1 = "LIMIT 1"; + /** + * 数据库的类型 + */ + public static DbType DB_TYPE; + + public static void init(DbType dbType) { + DB_TYPE = dbType; + } } diff --git a/yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/core/query/QueryWrapperX.java b/yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/core/query/QueryWrapperX.java index 865755d34..f520821ee 100644 --- a/yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/core/query/QueryWrapperX.java +++ b/yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/core/query/QueryWrapperX.java @@ -1,5 +1,7 @@ package cn.iocoder.yudao.framework.mybatis.core.query; +import cn.hutool.core.lang.Assert; +import cn.iocoder.yudao.framework.mybatis.core.enums.SqlConstants; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.toolkit.ArrayUtils; import com.baomidou.mybatisplus.core.toolkit.CollectionUtils; @@ -124,4 +126,24 @@ public class QueryWrapperX extends QueryWrapper { return this; } + /** + * 设置只返回最后一条 + * + * TODO 芋艿:不是完美解,需要在思考下。如果使用多数据源,并且数据源是多种类型时,可能会存在问题:实现之返回一条的语法不同 + * + * @return this + */ + public QueryWrapperX limit1() { + Assert.notNull(SqlConstants.DB_TYPE, "获取不到数据库的类型"); + switch (SqlConstants.DB_TYPE) { + case ORACLE: + case ORACLE_12C: + super.eq("ROWNUM", 1); + break; + default: + super.last("LIMIT 1"); + } + return this; + } + } diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/dal/mysql/config/ConfigDAOImpl.java b/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/dal/mysql/config/ConfigDAOImpl.java index 12c78f4b6..5ac88dcc3 100644 --- a/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/dal/mysql/config/ConfigDAOImpl.java +++ b/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/dal/mysql/config/ConfigDAOImpl.java @@ -2,12 +2,10 @@ package cn.iocoder.yudao.module.infra.dal.mysql.config; import cn.iocoder.yudao.framework.apollo.internals.ConfigFrameworkDAO; import cn.iocoder.yudao.framework.apollo.internals.dto.ConfigRespDTO; -import org.springframework.jdbc.core.BeanPropertyRowMapper; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.jdbc.datasource.DriverManagerDataSource; import javax.sql.DataSource; -import java.sql.ResultSet; import java.util.Date; import java.util.List; @@ -26,14 +24,18 @@ public class ConfigDAOImpl implements ConfigFrameworkDAO { } @Override - public boolean selectExistsByUpdateTimeAfter(Date maxUpdateTime) { - return jdbcTemplate.query("SELECT id FROM infra_config WHERE update_time > ? LIMIT 1", - ResultSet::next, maxUpdateTime); + public int selectCountByUpdateTimeGt(Date maxUpdateTime) { + return jdbcTemplate.queryForObject("SELECT COUNT(*) FROM infra_config WHERE update_time > ?", + Integer.class, maxUpdateTime); } @Override public List selectList() { - return jdbcTemplate.query("SELECT `key`, `value`, update_time, deleted FROM infra_config", new BeanPropertyRowMapper<>(ConfigRespDTO.class)); + return jdbcTemplate.query("SELECT config_key, value, update_time, deleted FROM infra_config", + (rs, rowNum) -> new ConfigRespDTO().setKey(rs.getString("config_key")) + .setValue(rs.getString("value")) + .setUpdateTime(rs.getDate("update_time")) + .setDeleted(rs.getBoolean("deleted"))); } } diff --git a/yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/controller/app/auth/AppAuthController.http b/yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/controller/app/auth/AppAuthController.http index d609e8f0c..7a10c7754 100644 --- a/yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/controller/app/auth/AppAuthController.http +++ b/yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/controller/app/auth/AppAuthController.http @@ -9,7 +9,7 @@ tenant-id: {{appTenentId}} } ### 请求 /send-sms-code 接口 => 成功 -POST {{appApi}}/member/send-sms-code +POST {{appApi}}/member/auth/send-sms-code Content-Type: application/json tenant-id: {{appTenentId}} diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/sms/SmsCodeMapper.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/sms/SmsCodeMapper.java index 335c2d800..854eb7faa 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/sms/SmsCodeMapper.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/sms/SmsCodeMapper.java @@ -1,8 +1,7 @@ package cn.iocoder.yudao.module.system.dal.mysql.sms; -import cn.iocoder.yudao.framework.mybatis.core.enums.SqlConstants; import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX; -import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX; +import cn.iocoder.yudao.framework.mybatis.core.query.QueryWrapperX; import cn.iocoder.yudao.module.system.dal.dataobject.sms.SmsCodeDO; import org.apache.ibatis.annotations.Mapper; @@ -18,12 +17,12 @@ public interface SmsCodeMapper extends BaseMapperX { * @return 手机验证码 */ default SmsCodeDO selectLastByMobile(String mobile, String code, Integer scene) { - return selectOne(new LambdaQueryWrapperX() - .eq(SmsCodeDO::getCode, mobile) - .eqIfPresent(SmsCodeDO::getScene, scene) - .eqIfPresent(SmsCodeDO::getCode, code) - .orderByDesc(SmsCodeDO::getId) - .last(SqlConstants.LIMIT1)); + return selectOne(new QueryWrapperX() + .eq("mobile", mobile) + .eqIfPresent("scene", scene) + .eqIfPresent("code", code) + .orderByDesc("id") + .limit1()); } } From 2bd23134347b9e311f600316063413c10925b000 Mon Sep 17 00:00:00 2001 From: YunaiV Date: Sun, 1 May 2022 19:47:30 +0800 Subject: [PATCH 022/111] =?UTF-8?q?=E9=80=82=E9=85=8D=20Oracle=20=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=BA=93=201.=20=E9=80=82=E9=85=8D=E8=A1=A8=E5=90=8D?= =?UTF-8?q?=E6=98=AF=E5=A4=A7=E5=86=99=E7=9A=84=E6=83=85=E5=86=B5=202.=20?= =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81=E7=94=9F=E6=88=90=E5=99=A8?= =?UTF-8?q?=E7=9A=84=E6=A0=A1=E9=AA=8C=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../infra/enums/ErrorCodeConstants.java | 2 + .../service/codegen/CodegenServiceImpl.java | 44 +++++++++++++------ .../service/codegen/inner/CodegenBuilder.java | 20 +++++---- .../src/main/resources/codegen/java/dal/do.vm | 3 +- .../src/main/resources/codegen/sql/h2.vm | 6 +-- .../src/main/resources/codegen/sql/sql.vm | 12 ++--- 6 files changed, 54 insertions(+), 33 deletions(-) diff --git a/yudao-module-infra/yudao-module-infra-api/src/main/java/cn/iocoder/yudao/module/infra/enums/ErrorCodeConstants.java b/yudao-module-infra/yudao-module-infra-api/src/main/java/cn/iocoder/yudao/module/infra/enums/ErrorCodeConstants.java index d461da280..ba571c689 100644 --- a/yudao-module-infra/yudao-module-infra-api/src/main/java/cn/iocoder/yudao/module/infra/enums/ErrorCodeConstants.java +++ b/yudao-module-infra/yudao-module-infra-api/src/main/java/cn/iocoder/yudao/module/infra/enums/ErrorCodeConstants.java @@ -40,6 +40,8 @@ public interface ErrorCodeConstants { ErrorCode CODEGEN_COLUMN_NOT_EXISTS = new ErrorCode(1003001005, "字段义不存在"); ErrorCode CODEGEN_SYNC_COLUMNS_NULL = new ErrorCode(1003001006, "同步的字段不存在"); ErrorCode CODEGEN_SYNC_NONE_CHANGE = new ErrorCode(1003001007, "同步失败,不存在改变"); + ErrorCode CODEGEN_TABLE_INFO_TABLE_COMMENT_IS_NULL = new ErrorCode(1003001008, "数据库的表注释未填写"); + ErrorCode CODEGEN_TABLE_INFO_COLUMN_COMMENT_IS_NULL = new ErrorCode(1003001009, "数据库的表字段({})注释未填写"); // ========== 字典类型(测试)1001005000 ========== ErrorCode TEST_DEMO_NOT_EXISTS = new ErrorCode(1001005000, "测试示例不存在"); diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/service/codegen/CodegenServiceImpl.java b/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/service/codegen/CodegenServiceImpl.java index 1f3cac8f6..8b96db03d 100644 --- a/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/service/codegen/CodegenServiceImpl.java +++ b/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/service/codegen/CodegenServiceImpl.java @@ -1,6 +1,7 @@ package cn.iocoder.yudao.module.infra.service.codegen; import cn.hutool.core.collection.CollUtil; +import cn.hutool.core.util.StrUtil; import cn.iocoder.yudao.framework.common.pojo.PageResult; import cn.iocoder.yudao.framework.common.util.collection.CollectionUtils; import cn.iocoder.yudao.module.infra.controller.admin.codegen.vo.CodegenCreateListReqVO; @@ -74,12 +75,7 @@ public class CodegenServiceImpl implements CodegenService { private Long createCodegen0(Long userId, Long dataSourceConfigId, TableInfo tableInfo) { // 校验导入的表和字段非空 - if (tableInfo == null) { - throw exception(CODEGEN_IMPORT_TABLE_NULL); - } - if (CollUtil.isEmpty(tableInfo.getFields())) { - throw exception(CODEGEN_IMPORT_COLUMNS_NULL); - } + checkTableInfo(tableInfo); // 校验是否已经存在 if (codegenTableMapper.selectByTableNameAndDataSourceConfigId(tableInfo.getName(), dataSourceConfigId) != null) { @@ -92,12 +88,34 @@ public class CodegenServiceImpl implements CodegenService { table.setScene(CodegenSceneEnum.ADMIN.getScene()); // 默认配置下,使用管理后台的模板 table.setAuthor(userApi.getUser(userId).getNickname()); codegenTableMapper.insert(table); + // 构建 CodegenColumnDO 数组,插入到 DB 中 List columns = codegenBuilder.buildColumns(table.getId(), tableInfo.getFields()); + // 如果没有主键,则使用第一个字段作为主键 + if (!tableInfo.isHavePrimaryKey()) { + columns.get(0).setPrimaryKey(true); + } codegenColumnMapper.insertBatch(columns); return table.getId(); } + private void checkTableInfo(TableInfo tableInfo) { + if (tableInfo == null) { + throw exception(CODEGEN_IMPORT_TABLE_NULL); + } + if (StrUtil.isEmpty(tableInfo.getComment())) { + throw exception(CODEGEN_TABLE_INFO_TABLE_COMMENT_IS_NULL); + } + if (CollUtil.isEmpty(tableInfo.getFields())) { + throw exception(CODEGEN_IMPORT_COLUMNS_NULL); + } + tableInfo.getFields().forEach(field -> { + if (StrUtil.isEmpty(field.getComment())) { + throw exception(CODEGEN_TABLE_INFO_COLUMN_COMMENT_IS_NULL, field.getName()); + } + }); + } + @Override @Transactional(rollbackFor = Exception.class) public void updateCodegen(CodegenUpdateReqVO updateReqVO) { @@ -129,12 +147,9 @@ public class CodegenServiceImpl implements CodegenService { } private void syncCodegen0(Long tableId, TableInfo tableInfo) { - // 校验导入的字段不为空 + // 校验导入的表和字段非空 + checkTableInfo(tableInfo); List tableFields = tableInfo.getFields(); - if (CollUtil.isEmpty(tableFields)) { - throw exception(CODEGEN_SYNC_COLUMNS_NULL); - } - Set tableFieldNames = CollectionUtils.convertSet(tableFields, TableField::getName); // 构建 CodegenColumnDO 数组,只同步新增的字段 List codegenColumns = codegenColumnMapper.selectListByTableId(tableId); @@ -142,6 +157,7 @@ public class CodegenServiceImpl implements CodegenService { // 移除已经存在的字段 tableFields.removeIf(column -> codegenColumnNames.contains(column.getColumnName())); // 计算需要删除的字段 + Set tableFieldNames = CollectionUtils.convertSet(tableFields, TableField::getName); Set deleteColumnIds = codegenColumns.stream().filter(column -> !tableFieldNames.contains(column.getColumnName())) .map(CodegenColumnDO::getId).collect(Collectors.toSet()); if (CollUtil.isEmpty(tableFields) && CollUtil.isEmpty(deleteColumnIds)) { @@ -206,9 +222,9 @@ public class CodegenServiceImpl implements CodegenService { public List getDatabaseTableList(Long dataSourceConfigId, String name, String comment) { List tables = databaseTableService.getTableList(dataSourceConfigId, name, comment); // 移除置顶前缀的表名 // TODO 未来做成可配置 - tables.removeIf(table -> table.getName().startsWith("QRTZ_")); - tables.removeIf(table -> table.getName().startsWith("ACT_")); - tables.removeIf(table -> table.getName().startsWith("FLW_")); + tables.removeIf(table -> table.getName().toUpperCase().startsWith("QRTZ_")); + tables.removeIf(table -> table.getName().toUpperCase().startsWith("ACT_")); + tables.removeIf(table -> table.getName().toUpperCase().startsWith("FLW_")); // 移除已经生成的表 // 移除在 Codegen 中,已经存在的 Set existsTables = CollectionUtils.convertSet( diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/service/codegen/inner/CodegenBuilder.java b/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/service/codegen/inner/CodegenBuilder.java index 2544a9b5c..7523fab6d 100644 --- a/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/service/codegen/inner/CodegenBuilder.java +++ b/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/service/codegen/inner/CodegenBuilder.java @@ -105,15 +105,17 @@ public class CodegenBuilder { * @param table 表定义 */ private void initTableDefault(CodegenTableDO table) { - // 以 system_dept 举例子。moduleName 为 system、businessName 为 dept、className 为 SystemDept - // 如果不希望 System 前缀,则可以手动在【代码生成 - 修改生成配置 - 基本信息】,将实体类名称改为 Dept 即可 - table.setModuleName(subBefore(table.getTableName(), '_', false)); // 第一个 _ 前缀的前面,作为 module 名字 - table.setBusinessName(toCamelCase(subAfter(table.getTableName(), - '_', false))); // 第一步,第一个 _ 前缀的后面,作为 module 名字; 第二步,可能存在多个 _ 的情况,转换成驼峰 - table.setClassName(upperFirst(toCamelCase( // 驼峰 + 首字母大写 - subAfter(table.getTableName(), '_', false)))); // 第一个 _ 前缀的前面,作为 class 名字 - table.setClassComment(subBefore(table.getTableComment(), // 去除结尾的表,作为类描述 - '表', true)); + // 以 system_dept 举例子。moduleName 为 system、businessName 为 dept、className 为 Dept + // 如果希望以 System 前缀,则可以手动在【代码生成 - 修改生成配置 - 基本信息】,将实体类名称改为 SystemDept 即可 + String tableName = table.getTableName().toLowerCase(); + // 第一步,_ 前缀的前面,作为 module 名字;第二步,moduleName 必须小写; + table.setModuleName(subBefore(tableName, '_', false).toLowerCase()); + // 第一步,第一个 _ 前缀的后面,作为 module 名字; 第二步,可能存在多个 _ 的情况,转换成驼峰; 第三步,businessName 必须小写; + table.setBusinessName(toCamelCase(subAfter(tableName, '_', false)).toLowerCase()); + // 驼峰 + 首字母大写;第一步,第一个 _ 前缀的后面,作为 class 名字;第二步,驼峰命名 + table.setClassName(upperFirst(toCamelCase(subAfter(tableName, '_', false)))); + // 去除结尾的表,作为类描述 + table.setClassComment(StrUtil.removeSuffixIgnoreCase(table.getTableComment(), "表")); table.setTemplateType(CodegenTemplateTypeEnum.CRUD.getType()); } diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/java/dal/do.vm b/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/java/dal/do.vm index 687a09010..238e3140d 100644 --- a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/java/dal/do.vm +++ b/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/java/dal/do.vm @@ -10,7 +10,8 @@ import ${BaseDOClassName}; * * @author ${table.author} */ -@TableName("${table.tableName}") +@TableName("${table.tableName.toLowerCase()}") +@KeySequence("${table.tableName.toLowerCase()}_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。 @Data @EqualsAndHashCode(callSuper = true) @ToString(callSuper = true) diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/sql/h2.vm b/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/sql/h2.vm index 76179535d..20c33ad59 100644 --- a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/sql/h2.vm +++ b/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/sql/h2.vm @@ -1,5 +1,5 @@ -- 将该建表 SQL 语句,添加到 yudao-module-${table.moduleName}-biz 模块的 test/resources/sql/create_tables.sql 文件里 -CREATE TABLE IF NOT EXISTS "${table.tableName}" ( +CREATE TABLE IF NOT EXISTS "${table.tableName.toLowerCase()}" ( #foreach ($column in $columns) #if (${column.javaType} == 'Long') #set ($dataType='bigint') @@ -24,11 +24,11 @@ CREATE TABLE IF NOT EXISTS "${table.tableName}" ( #elseif (${column.columnName} == 'deleted') "deleted" bit NOT NULL DEFAULT FALSE, #else - "${column.columnName}" ${dataType}#if (${column.nullable} == false) NOT NULL#end, + "${column.columnName.toLowerCase()}" ${dataType}#if (${column.nullable} == false) NOT NULL#end, #end #end #end - PRIMARY KEY ("${primaryColumn.columnName}") + PRIMARY KEY ("${primaryColumn.columnName.toLowerCase()}") ) COMMENT '${table.tableComment}'; -- 将该删表 SQL 语句,添加到 yudao-module-${table.moduleName}-biz 模块的 test/resources/sql/clean.sql 文件里 diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/sql/sql.vm b/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/sql/sql.vm index 25d76ae1d..e00e465af 100644 --- a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/sql/sql.vm +++ b/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/sql/sql.vm @@ -1,7 +1,7 @@ -- 菜单 SQL -INSERT INTO `system_menu`( - `name`, `permission`, `menu_type`, `sort`, `parent_id`, - `path`, `icon`, `component`, `status` +INSERT INTO system_menu( + name, permission, type, sort, parent_id, + path, icon, component, status ) VALUES ( '${table.classComment}管理', '', 2, 0, ${table.parentMenuId}, @@ -16,9 +16,9 @@ SELECT @parentId := LAST_INSERT_ID(); #set ($functionOps = ['query', 'create', 'update', 'delete', 'export']) #foreach ($functionName in $functionNames) #set ($index = $foreach.count - 1) -INSERT INTO `system_menu`( - `name`, `permission`, `menu_type`, `sort`, `parent_id`, - `path`, `icon`, `component`, `status` +INSERT INTO system_menu( + name, permission, type, sort, parent_id, + path, icon, component, status ) VALUES ( '${table.classComment}${functionName}', '${permissionPrefix}:${functionOps.get($index)}', 3, $foreach.count, @parentId, From 0f21b55e6d19d74a79f236bfd796ae1425fc490b Mon Sep 17 00:00:00 2001 From: YunaiV Date: Sun, 1 May 2022 23:18:50 +0800 Subject: [PATCH 023/111] =?UTF-8?q?=E8=A7=A3=E5=86=B3=20Oracle=20=E5=85=B3?= =?UTF-8?q?=E9=94=AE=E5=AD=97=E5=86=B2=E7=AA=81=E7=9A=84=E9=97=AE=E9=A2=98?= =?UTF-8?q?=20=E5=AF=BC=E5=87=BA=E6=9C=80=E6=96=B0=E7=9A=84=20SQL=20?= =?UTF-8?q?=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/mysql/quartz.sql | 288 - sql/mysql/ruoyi-vue-pro.sql | 4558 +-- sql/oracle/ruoyi-vue-pro.sql | 4118 +++ sql/postgresql/quartz.sql | 453 - sql/postgresql/ruoyi-vue-pro.sql | 23142 ++-------------- .../task/vo/task/BpmTaskApproveReqVO.java | 6 +- .../vo/task/BpmTaskDonePageItemRespVO.java | 2 +- .../task/vo/task/BpmTaskRejectReqVO.java | 2 +- .../definition/BpmTaskAssignRuleDO.java | 3 +- .../bpm/dal/dataobject/task/BpmTaskExtDO.java | 3 +- .../message/BpmMessageServiceImpl.java | 2 +- ...geSendWhenProcessInstanceRejectReqDTO.java | 2 +- .../task/BpmProcessInstanceConvert.java | 4 +- .../task/BpmProcessInstanceService.java | 4 +- .../task/BpmProcessInstanceServiceImpl.java | 6 +- .../bpm/service/task/BpmTaskServiceImpl.java | 6 +- .../task/BpmProcessInstanceConvert.java | 6 +- .../task/BpmProcessInstanceService.java | 4 +- .../task/BpmProcessInstanceServiceImpl.java | 6 +- .../bpm/service/task/BpmTaskServiceImpl.java | 6 +- .../src/main/resources/application-local.yaml | 8 +- .../package/designer/ProcessViewer.vue | 4 +- .../src/views/bpm/processInstance/detail.vue | 14 +- yudao-ui-admin/src/views/bpm/task/done.vue | 2 +- 24 files changed, 7662 insertions(+), 24987 deletions(-) delete mode 100644 sql/mysql/quartz.sql create mode 100644 sql/oracle/ruoyi-vue-pro.sql delete mode 100644 sql/postgresql/quartz.sql diff --git a/sql/mysql/quartz.sql b/sql/mysql/quartz.sql deleted file mode 100644 index e2a530069..000000000 --- a/sql/mysql/quartz.sql +++ /dev/null @@ -1,288 +0,0 @@ -/* - Navicat Premium Data Transfer - - Source Server : 127.0.0.1 - Source Server Type : MySQL - Source Server Version : 80026 - Source Host : localhost:3306 - Source Schema : ruoyi-vue-pro - - Target Server Type : MySQL - Target Server Version : 80026 - File Encoding : 65001 - - Date: 05/02/2022 00:50:30 -*/ - -SET NAMES utf8mb4; -SET FOREIGN_KEY_CHECKS = 0; - --- ---------------------------- --- Table structure for QRTZ_BLOB_TRIGGERS --- ---------------------------- -DROP TABLE IF EXISTS `QRTZ_BLOB_TRIGGERS`; -CREATE TABLE `QRTZ_BLOB_TRIGGERS` ( - `SCHED_NAME` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, - `TRIGGER_NAME` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `TRIGGER_GROUP` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `BLOB_DATA` blob, - PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`), - KEY `SCHED_NAME` (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`), - CONSTRAINT `qrtz_blob_triggers_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- ---------------------------- --- Records of QRTZ_BLOB_TRIGGERS --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for QRTZ_CALENDARS --- ---------------------------- -DROP TABLE IF EXISTS `QRTZ_CALENDARS`; -CREATE TABLE `QRTZ_CALENDARS` ( - `SCHED_NAME` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, - `CALENDAR_NAME` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `CALENDAR` blob NOT NULL, - PRIMARY KEY (`SCHED_NAME`,`CALENDAR_NAME`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- ---------------------------- --- Records of QRTZ_CALENDARS --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for QRTZ_CRON_TRIGGERS --- ---------------------------- -DROP TABLE IF EXISTS `QRTZ_CRON_TRIGGERS`; -CREATE TABLE `QRTZ_CRON_TRIGGERS` ( - `SCHED_NAME` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, - `TRIGGER_NAME` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `TRIGGER_GROUP` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `CRON_EXPRESSION` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, - `TIME_ZONE_ID` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`), - CONSTRAINT `qrtz_cron_triggers_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- ---------------------------- --- Records of QRTZ_CRON_TRIGGERS --- ---------------------------- -BEGIN; -INSERT INTO `QRTZ_CRON_TRIGGERS` VALUES ('schedulerName', 'payNotifyJob', 'DEFAULT', '* * * * * ?', 'Asia/Shanghai'); -INSERT INTO `QRTZ_CRON_TRIGGERS` VALUES ('schedulerName', 'userSessionTimeoutJob', 'DEFAULT', '0 * * * * ? *', 'Asia/Shanghai'); -COMMIT; - --- ---------------------------- --- Table structure for QRTZ_FIRED_TRIGGERS --- ---------------------------- -DROP TABLE IF EXISTS `QRTZ_FIRED_TRIGGERS`; -CREATE TABLE `QRTZ_FIRED_TRIGGERS` ( - `SCHED_NAME` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, - `ENTRY_ID` varchar(95) COLLATE utf8mb4_unicode_ci NOT NULL, - `TRIGGER_NAME` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `TRIGGER_GROUP` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `INSTANCE_NAME` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `FIRED_TIME` bigint NOT NULL, - `SCHED_TIME` bigint NOT NULL, - `PRIORITY` int NOT NULL, - `STATE` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL, - `JOB_NAME` varchar(190) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `JOB_GROUP` varchar(190) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `IS_NONCONCURRENT` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `REQUESTS_RECOVERY` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`SCHED_NAME`,`ENTRY_ID`), - KEY `IDX_QRTZ_FT_TRIG_INST_NAME` (`SCHED_NAME`,`INSTANCE_NAME`), - KEY `IDX_QRTZ_FT_INST_JOB_REQ_RCVRY` (`SCHED_NAME`,`INSTANCE_NAME`,`REQUESTS_RECOVERY`), - KEY `IDX_QRTZ_FT_J_G` (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`), - KEY `IDX_QRTZ_FT_JG` (`SCHED_NAME`,`JOB_GROUP`), - KEY `IDX_QRTZ_FT_T_G` (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`), - KEY `IDX_QRTZ_FT_TG` (`SCHED_NAME`,`TRIGGER_GROUP`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- ---------------------------- --- Records of QRTZ_FIRED_TRIGGERS --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for QRTZ_JOB_DETAILS --- ---------------------------- -DROP TABLE IF EXISTS `QRTZ_JOB_DETAILS`; -CREATE TABLE `QRTZ_JOB_DETAILS` ( - `SCHED_NAME` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, - `JOB_NAME` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `JOB_GROUP` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `DESCRIPTION` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `JOB_CLASS_NAME` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, - `IS_DURABLE` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL, - `IS_NONCONCURRENT` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL, - `IS_UPDATE_DATA` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL, - `REQUESTS_RECOVERY` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL, - `JOB_DATA` blob, - PRIMARY KEY (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`), - KEY `IDX_QRTZ_J_REQ_RECOVERY` (`SCHED_NAME`,`REQUESTS_RECOVERY`), - KEY `IDX_QRTZ_J_GRP` (`SCHED_NAME`,`JOB_GROUP`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- ---------------------------- --- Records of QRTZ_JOB_DETAILS --- ---------------------------- -BEGIN; -INSERT INTO `QRTZ_JOB_DETAILS` VALUES ('schedulerName', 'payNotifyJob', 'DEFAULT', NULL, 'cn.iocoder.yudao.framework.quartz.core.handler.JobHandlerInvoker', '0', '1', '1', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C770800000010000000027400064A4F425F49447372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000000000000057400104A4F425F48414E444C45525F4E414D4574000C7061794E6F746966794A6F627800); -INSERT INTO `QRTZ_JOB_DETAILS` VALUES ('schedulerName', 'userSessionTimeoutJob', 'DEFAULT', NULL, 'cn.iocoder.yudao.framework.quartz.core.handler.JobHandlerInvoker', '0', '1', '1', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C770800000010000000027400064A4F425F49447372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000000000000000D7400104A4F425F48414E444C45525F4E414D457400157573657253657373696F6E54696D656F75744A6F627800); -COMMIT; - --- ---------------------------- --- Table structure for QRTZ_LOCKS --- ---------------------------- -DROP TABLE IF EXISTS `QRTZ_LOCKS`; -CREATE TABLE `QRTZ_LOCKS` ( - `SCHED_NAME` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, - `LOCK_NAME` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`SCHED_NAME`,`LOCK_NAME`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- ---------------------------- --- Records of QRTZ_LOCKS --- ---------------------------- -BEGIN; -INSERT INTO `QRTZ_LOCKS` VALUES ('schedulerName', 'STATE_ACCESS'); -INSERT INTO `QRTZ_LOCKS` VALUES ('schedulerName', 'TRIGGER_ACCESS'); -COMMIT; - --- ---------------------------- --- Table structure for QRTZ_PAUSED_TRIGGER_GRPS --- ---------------------------- -DROP TABLE IF EXISTS `QRTZ_PAUSED_TRIGGER_GRPS`; -CREATE TABLE `QRTZ_PAUSED_TRIGGER_GRPS` ( - `SCHED_NAME` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, - `TRIGGER_GROUP` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`SCHED_NAME`,`TRIGGER_GROUP`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- ---------------------------- --- Records of QRTZ_PAUSED_TRIGGER_GRPS --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for QRTZ_SCHEDULER_STATE --- ---------------------------- -DROP TABLE IF EXISTS `QRTZ_SCHEDULER_STATE`; -CREATE TABLE `QRTZ_SCHEDULER_STATE` ( - `SCHED_NAME` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, - `INSTANCE_NAME` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `LAST_CHECKIN_TIME` bigint NOT NULL, - `CHECKIN_INTERVAL` bigint NOT NULL, - PRIMARY KEY (`SCHED_NAME`,`INSTANCE_NAME`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- ---------------------------- --- Records of QRTZ_SCHEDULER_STATE --- ---------------------------- -BEGIN; -INSERT INTO `QRTZ_SCHEDULER_STATE` VALUES ('schedulerName', 'Yunai.local1635571630493', 1635572537879, 15000); -COMMIT; - --- ---------------------------- --- Table structure for QRTZ_SIMPLE_TRIGGERS --- ---------------------------- -DROP TABLE IF EXISTS `QRTZ_SIMPLE_TRIGGERS`; -CREATE TABLE `QRTZ_SIMPLE_TRIGGERS` ( - `SCHED_NAME` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, - `TRIGGER_NAME` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `TRIGGER_GROUP` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `REPEAT_COUNT` bigint NOT NULL, - `REPEAT_INTERVAL` bigint NOT NULL, - `TIMES_TRIGGERED` bigint NOT NULL, - PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`), - CONSTRAINT `qrtz_simple_triggers_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- ---------------------------- --- Records of QRTZ_SIMPLE_TRIGGERS --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for QRTZ_SIMPROP_TRIGGERS --- ---------------------------- -DROP TABLE IF EXISTS `QRTZ_SIMPROP_TRIGGERS`; -CREATE TABLE `QRTZ_SIMPROP_TRIGGERS` ( - `SCHED_NAME` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, - `TRIGGER_NAME` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `TRIGGER_GROUP` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `STR_PROP_1` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `STR_PROP_2` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `STR_PROP_3` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `INT_PROP_1` int DEFAULT NULL, - `INT_PROP_2` int DEFAULT NULL, - `LONG_PROP_1` bigint DEFAULT NULL, - `LONG_PROP_2` bigint DEFAULT NULL, - `DEC_PROP_1` decimal(13,4) DEFAULT NULL, - `DEC_PROP_2` decimal(13,4) DEFAULT NULL, - `BOOL_PROP_1` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `BOOL_PROP_2` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`), - CONSTRAINT `qrtz_simprop_triggers_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- ---------------------------- --- Records of QRTZ_SIMPROP_TRIGGERS --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for QRTZ_TRIGGERS --- ---------------------------- -DROP TABLE IF EXISTS `QRTZ_TRIGGERS`; -CREATE TABLE `QRTZ_TRIGGERS` ( - `SCHED_NAME` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, - `TRIGGER_NAME` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `TRIGGER_GROUP` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `JOB_NAME` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `JOB_GROUP` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL, - `DESCRIPTION` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `NEXT_FIRE_TIME` bigint DEFAULT NULL, - `PREV_FIRE_TIME` bigint DEFAULT NULL, - `PRIORITY` int DEFAULT NULL, - `TRIGGER_STATE` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL, - `TRIGGER_TYPE` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL, - `START_TIME` bigint NOT NULL, - `END_TIME` bigint DEFAULT NULL, - `CALENDAR_NAME` varchar(190) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `MISFIRE_INSTR` smallint DEFAULT NULL, - `JOB_DATA` blob, - PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`), - KEY `IDX_QRTZ_T_J` (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`), - KEY `IDX_QRTZ_T_JG` (`SCHED_NAME`,`JOB_GROUP`), - KEY `IDX_QRTZ_T_C` (`SCHED_NAME`,`CALENDAR_NAME`), - KEY `IDX_QRTZ_T_G` (`SCHED_NAME`,`TRIGGER_GROUP`), - KEY `IDX_QRTZ_T_STATE` (`SCHED_NAME`,`TRIGGER_STATE`), - KEY `IDX_QRTZ_T_N_STATE` (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`,`TRIGGER_STATE`), - KEY `IDX_QRTZ_T_N_G_STATE` (`SCHED_NAME`,`TRIGGER_GROUP`,`TRIGGER_STATE`), - KEY `IDX_QRTZ_T_NEXT_FIRE_TIME` (`SCHED_NAME`,`NEXT_FIRE_TIME`), - KEY `IDX_QRTZ_T_NFT_ST` (`SCHED_NAME`,`TRIGGER_STATE`,`NEXT_FIRE_TIME`), - KEY `IDX_QRTZ_T_NFT_MISFIRE` (`SCHED_NAME`,`MISFIRE_INSTR`,`NEXT_FIRE_TIME`), - KEY `IDX_QRTZ_T_NFT_ST_MISFIRE` (`SCHED_NAME`,`MISFIRE_INSTR`,`NEXT_FIRE_TIME`,`TRIGGER_STATE`), - KEY `IDX_QRTZ_T_NFT_ST_MISFIRE_GRP` (`SCHED_NAME`,`MISFIRE_INSTR`,`NEXT_FIRE_TIME`,`TRIGGER_GROUP`,`TRIGGER_STATE`), - CONSTRAINT `qrtz_triggers_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`) REFERENCES `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- ---------------------------- --- Records of QRTZ_TRIGGERS --- ---------------------------- -BEGIN; -INSERT INTO `QRTZ_TRIGGERS` VALUES ('schedulerName', 'payNotifyJob', 'DEFAULT', 'payNotifyJob', 'DEFAULT', NULL, 1635572540000, 1635572539000, 5, 'WAITING', 'CRON', 1635294882000, 0, NULL, 0, 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C770800000010000000037400114A4F425F48414E444C45525F504152414D707400124A4F425F52455452595F494E54455256414C737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000074000F4A4F425F52455452595F434F554E5471007E000B7800); -INSERT INTO `QRTZ_TRIGGERS` VALUES ('schedulerName', 'userSessionTimeoutJob', 'DEFAULT', 'userSessionTimeoutJob', 'DEFAULT', NULL, 1643993400000, -1, 5, 'WAITING', 'CRON', 1643993386000, 0, NULL, 0, 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C770800000010000000037400114A4F425F48414E444C45525F504152414D707400124A4F425F52455452595F494E54455256414C737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000007D074000F4A4F425F52455452595F434F554E547371007E0009000000037800); -COMMIT; - -SET FOREIGN_KEY_CHECKS = 1; diff --git a/sql/mysql/ruoyi-vue-pro.sql b/sql/mysql/ruoyi-vue-pro.sql index 96c8beb55..dfdc468bf 100644 --- a/sql/mysql/ruoyi-vue-pro.sql +++ b/sql/mysql/ruoyi-vue-pro.sql @@ -11,49 +11,311 @@ Target Server Version : 80026 File Encoding : 65001 - Date: 30/04/2022 23:10:28 + Date: 01/05/2022 23:17:59 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; +-- ---------------------------- +-- Table structure for QRTZ_BLOB_TRIGGERS +-- ---------------------------- +DROP TABLE IF EXISTS `QRTZ_BLOB_TRIGGERS`; +CREATE TABLE `QRTZ_BLOB_TRIGGERS` ( + `SCHED_NAME` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `TRIGGER_NAME` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `TRIGGER_GROUP` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `BLOB_DATA` blob NULL, + PRIMARY KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) USING BTREE, + INDEX `SCHED_NAME`(`SCHED_NAME` ASC, `TRIGGER_NAME` ASC, `TRIGGER_GROUP` ASC) USING BTREE, + CONSTRAINT `qrtz_blob_triggers_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) ON DELETE RESTRICT ON UPDATE RESTRICT +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci; + +-- ---------------------------- +-- Records of QRTZ_BLOB_TRIGGERS +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_CALENDARS +-- ---------------------------- +DROP TABLE IF EXISTS `QRTZ_CALENDARS`; +CREATE TABLE `QRTZ_CALENDARS` ( + `SCHED_NAME` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `CALENDAR_NAME` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `CALENDAR` blob NOT NULL, + PRIMARY KEY (`SCHED_NAME`, `CALENDAR_NAME`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci; + +-- ---------------------------- +-- Records of QRTZ_CALENDARS +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_CRON_TRIGGERS +-- ---------------------------- +DROP TABLE IF EXISTS `QRTZ_CRON_TRIGGERS`; +CREATE TABLE `QRTZ_CRON_TRIGGERS` ( + `SCHED_NAME` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `TRIGGER_NAME` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `TRIGGER_GROUP` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `CRON_EXPRESSION` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `TIME_ZONE_ID` varchar(80) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL, + PRIMARY KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) USING BTREE, + CONSTRAINT `qrtz_cron_triggers_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) ON DELETE RESTRICT ON UPDATE RESTRICT +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci; + +-- ---------------------------- +-- Records of QRTZ_CRON_TRIGGERS +-- ---------------------------- +BEGIN; +INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('schedulerName', 'payNotifyJob', 'DEFAULT', '* * * * * ?', 'Asia/Shanghai'); +INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('schedulerName', 'userSessionTimeoutJob', 'DEFAULT', '0 * * * * ? *', 'Asia/Shanghai'); +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_FIRED_TRIGGERS +-- ---------------------------- +DROP TABLE IF EXISTS `QRTZ_FIRED_TRIGGERS`; +CREATE TABLE `QRTZ_FIRED_TRIGGERS` ( + `SCHED_NAME` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `ENTRY_ID` varchar(95) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `TRIGGER_NAME` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `TRIGGER_GROUP` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `INSTANCE_NAME` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `FIRED_TIME` bigint NOT NULL, + `SCHED_TIME` bigint NOT NULL, + `PRIORITY` int NOT NULL, + `STATE` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `JOB_NAME` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL, + `JOB_GROUP` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL, + `IS_NONCONCURRENT` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL, + `REQUESTS_RECOVERY` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL, + PRIMARY KEY (`SCHED_NAME`, `ENTRY_ID`) USING BTREE, + INDEX `IDX_QRTZ_FT_TRIG_INST_NAME`(`SCHED_NAME` ASC, `INSTANCE_NAME` ASC) USING BTREE, + INDEX `IDX_QRTZ_FT_INST_JOB_REQ_RCVRY`(`SCHED_NAME` ASC, `INSTANCE_NAME` ASC, `REQUESTS_RECOVERY` ASC) USING BTREE, + INDEX `IDX_QRTZ_FT_J_G`(`SCHED_NAME` ASC, `JOB_NAME` ASC, `JOB_GROUP` ASC) USING BTREE, + INDEX `IDX_QRTZ_FT_JG`(`SCHED_NAME` ASC, `JOB_GROUP` ASC) USING BTREE, + INDEX `IDX_QRTZ_FT_T_G`(`SCHED_NAME` ASC, `TRIGGER_NAME` ASC, `TRIGGER_GROUP` ASC) USING BTREE, + INDEX `IDX_QRTZ_FT_TG`(`SCHED_NAME` ASC, `TRIGGER_GROUP` ASC) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci; + +-- ---------------------------- +-- Records of QRTZ_FIRED_TRIGGERS +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_JOB_DETAILS +-- ---------------------------- +DROP TABLE IF EXISTS `QRTZ_JOB_DETAILS`; +CREATE TABLE `QRTZ_JOB_DETAILS` ( + `SCHED_NAME` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `JOB_NAME` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `JOB_GROUP` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `DESCRIPTION` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL, + `JOB_CLASS_NAME` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `IS_DURABLE` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `IS_NONCONCURRENT` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `IS_UPDATE_DATA` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `REQUESTS_RECOVERY` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `JOB_DATA` blob NULL, + PRIMARY KEY (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`) USING BTREE, + INDEX `IDX_QRTZ_J_REQ_RECOVERY`(`SCHED_NAME` ASC, `REQUESTS_RECOVERY` ASC) USING BTREE, + INDEX `IDX_QRTZ_J_GRP`(`SCHED_NAME` ASC, `JOB_GROUP` ASC) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci; + +-- ---------------------------- +-- Records of QRTZ_JOB_DETAILS +-- ---------------------------- +BEGIN; +INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('schedulerName', 'payNotifyJob', 'DEFAULT', NULL, 'cn.iocoder.yudao.framework.quartz.core.handler.JobHandlerInvoker', '0', '1', '1', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C770800000010000000027400064A4F425F49447372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000000000000057400104A4F425F48414E444C45525F4E414D4574000C7061794E6F746966794A6F627800); +INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('schedulerName', 'userSessionTimeoutJob', 'DEFAULT', NULL, 'cn.iocoder.yudao.framework.quartz.core.handler.JobHandlerInvoker', '0', '1', '1', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C770800000010000000027400064A4F425F49447372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000000000000000D7400104A4F425F48414E444C45525F4E414D457400157573657253657373696F6E54696D656F75744A6F627800); +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_LOCKS +-- ---------------------------- +DROP TABLE IF EXISTS `QRTZ_LOCKS`; +CREATE TABLE `QRTZ_LOCKS` ( + `SCHED_NAME` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `LOCK_NAME` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`SCHED_NAME`, `LOCK_NAME`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci; + +-- ---------------------------- +-- Records of QRTZ_LOCKS +-- ---------------------------- +BEGIN; +INSERT INTO `QRTZ_LOCKS` (`SCHED_NAME`, `LOCK_NAME`) VALUES ('schedulerName', 'STATE_ACCESS'); +INSERT INTO `QRTZ_LOCKS` (`SCHED_NAME`, `LOCK_NAME`) VALUES ('schedulerName', 'TRIGGER_ACCESS'); +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_PAUSED_TRIGGER_GRPS +-- ---------------------------- +DROP TABLE IF EXISTS `QRTZ_PAUSED_TRIGGER_GRPS`; +CREATE TABLE `QRTZ_PAUSED_TRIGGER_GRPS` ( + `SCHED_NAME` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `TRIGGER_GROUP` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`SCHED_NAME`, `TRIGGER_GROUP`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci; + +-- ---------------------------- +-- Records of QRTZ_PAUSED_TRIGGER_GRPS +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_SCHEDULER_STATE +-- ---------------------------- +DROP TABLE IF EXISTS `QRTZ_SCHEDULER_STATE`; +CREATE TABLE `QRTZ_SCHEDULER_STATE` ( + `SCHED_NAME` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `INSTANCE_NAME` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `LAST_CHECKIN_TIME` bigint NOT NULL, + `CHECKIN_INTERVAL` bigint NOT NULL, + PRIMARY KEY (`SCHED_NAME`, `INSTANCE_NAME`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci; + +-- ---------------------------- +-- Records of QRTZ_SCHEDULER_STATE +-- ---------------------------- +BEGIN; +INSERT INTO `QRTZ_SCHEDULER_STATE` (`SCHED_NAME`, `INSTANCE_NAME`, `LAST_CHECKIN_TIME`, `CHECKIN_INTERVAL`) VALUES ('schedulerName', 'Yunai.local1635571630493', 1635572537879, 15000); +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_SIMPLE_TRIGGERS +-- ---------------------------- +DROP TABLE IF EXISTS `QRTZ_SIMPLE_TRIGGERS`; +CREATE TABLE `QRTZ_SIMPLE_TRIGGERS` ( + `SCHED_NAME` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `TRIGGER_NAME` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `TRIGGER_GROUP` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `REPEAT_COUNT` bigint NOT NULL, + `REPEAT_INTERVAL` bigint NOT NULL, + `TIMES_TRIGGERED` bigint NOT NULL, + PRIMARY KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) USING BTREE, + CONSTRAINT `qrtz_simple_triggers_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) ON DELETE RESTRICT ON UPDATE RESTRICT +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci; + +-- ---------------------------- +-- Records of QRTZ_SIMPLE_TRIGGERS +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_SIMPROP_TRIGGERS +-- ---------------------------- +DROP TABLE IF EXISTS `QRTZ_SIMPROP_TRIGGERS`; +CREATE TABLE `QRTZ_SIMPROP_TRIGGERS` ( + `SCHED_NAME` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `TRIGGER_NAME` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `TRIGGER_GROUP` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `STR_PROP_1` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL, + `STR_PROP_2` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL, + `STR_PROP_3` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL, + `INT_PROP_1` int NULL DEFAULT NULL, + `INT_PROP_2` int NULL DEFAULT NULL, + `LONG_PROP_1` bigint NULL DEFAULT NULL, + `LONG_PROP_2` bigint NULL DEFAULT NULL, + `DEC_PROP_1` decimal(13, 4) NULL DEFAULT NULL, + `DEC_PROP_2` decimal(13, 4) NULL DEFAULT NULL, + `BOOL_PROP_1` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL, + `BOOL_PROP_2` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL, + PRIMARY KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) USING BTREE, + CONSTRAINT `qrtz_simprop_triggers_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) ON DELETE RESTRICT ON UPDATE RESTRICT +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci; + +-- ---------------------------- +-- Records of QRTZ_SIMPROP_TRIGGERS +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_TRIGGERS +-- ---------------------------- +DROP TABLE IF EXISTS `QRTZ_TRIGGERS`; +CREATE TABLE `QRTZ_TRIGGERS` ( + `SCHED_NAME` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `TRIGGER_NAME` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `TRIGGER_GROUP` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `JOB_NAME` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `JOB_GROUP` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `DESCRIPTION` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL, + `NEXT_FIRE_TIME` bigint NULL DEFAULT NULL, + `PREV_FIRE_TIME` bigint NULL DEFAULT NULL, + `PRIORITY` int NULL DEFAULT NULL, + `TRIGGER_STATE` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `TRIGGER_TYPE` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `START_TIME` bigint NOT NULL, + `END_TIME` bigint NULL DEFAULT NULL, + `CALENDAR_NAME` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL, + `MISFIRE_INSTR` smallint NULL DEFAULT NULL, + `JOB_DATA` blob NULL, + PRIMARY KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) USING BTREE, + INDEX `IDX_QRTZ_T_J`(`SCHED_NAME` ASC, `JOB_NAME` ASC, `JOB_GROUP` ASC) USING BTREE, + INDEX `IDX_QRTZ_T_JG`(`SCHED_NAME` ASC, `JOB_GROUP` ASC) USING BTREE, + INDEX `IDX_QRTZ_T_C`(`SCHED_NAME` ASC, `CALENDAR_NAME` ASC) USING BTREE, + INDEX `IDX_QRTZ_T_G`(`SCHED_NAME` ASC, `TRIGGER_GROUP` ASC) USING BTREE, + INDEX `IDX_QRTZ_T_STATE`(`SCHED_NAME` ASC, `TRIGGER_STATE` ASC) USING BTREE, + INDEX `IDX_QRTZ_T_N_STATE`(`SCHED_NAME` ASC, `TRIGGER_NAME` ASC, `TRIGGER_GROUP` ASC, `TRIGGER_STATE` ASC) USING BTREE, + INDEX `IDX_QRTZ_T_N_G_STATE`(`SCHED_NAME` ASC, `TRIGGER_GROUP` ASC, `TRIGGER_STATE` ASC) USING BTREE, + INDEX `IDX_QRTZ_T_NEXT_FIRE_TIME`(`SCHED_NAME` ASC, `NEXT_FIRE_TIME` ASC) USING BTREE, + INDEX `IDX_QRTZ_T_NFT_ST`(`SCHED_NAME` ASC, `TRIGGER_STATE` ASC, `NEXT_FIRE_TIME` ASC) USING BTREE, + INDEX `IDX_QRTZ_T_NFT_MISFIRE`(`SCHED_NAME` ASC, `MISFIRE_INSTR` ASC, `NEXT_FIRE_TIME` ASC) USING BTREE, + INDEX `IDX_QRTZ_T_NFT_ST_MISFIRE`(`SCHED_NAME` ASC, `MISFIRE_INSTR` ASC, `NEXT_FIRE_TIME` ASC, `TRIGGER_STATE` ASC) USING BTREE, + INDEX `IDX_QRTZ_T_NFT_ST_MISFIRE_GRP`(`SCHED_NAME` ASC, `MISFIRE_INSTR` ASC, `NEXT_FIRE_TIME` ASC, `TRIGGER_GROUP` ASC, `TRIGGER_STATE` ASC) USING BTREE, + CONSTRAINT `qrtz_triggers_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`) REFERENCES `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`) ON DELETE RESTRICT ON UPDATE RESTRICT +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci; + +-- ---------------------------- +-- Records of QRTZ_TRIGGERS +-- ---------------------------- +BEGIN; +INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('schedulerName', 'payNotifyJob', 'DEFAULT', 'payNotifyJob', 'DEFAULT', NULL, 1635572540000, 1635572539000, 5, 'WAITING', 'CRON', 1635294882000, 0, NULL, 0, 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C770800000010000000037400114A4F425F48414E444C45525F504152414D707400124A4F425F52455452595F494E54455256414C737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000074000F4A4F425F52455452595F434F554E5471007E000B7800); +INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('schedulerName', 'userSessionTimeoutJob', 'DEFAULT', 'userSessionTimeoutJob', 'DEFAULT', NULL, 1643993400000, -1, 5, 'WAITING', 'CRON', 1643993386000, 0, NULL, 0, 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C770800000010000000037400114A4F425F48414E444C45525F504152414D707400124A4F425F52455452595F494E54455256414C737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000007D074000F4A4F425F52455452595F434F554E547371007E0009000000037800); +COMMIT; + -- ---------------------------- -- Table structure for bpm_form -- ---------------------------- DROP TABLE IF EXISTS `bpm_form`; -CREATE TABLE `bpm_form` ( +CREATE TABLE `bpm_form` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '表单名', `status` tinyint NOT NULL COMMENT '开启状态', `conf` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '表单的配置', `fields` varchar(5000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '表单项的数组', - `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='工作流的表单定义'; +) ENGINE = InnoDB AUTO_INCREMENT = 16 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '工作流的表单定义'; -- ---------------------------- -- Records of bpm_form -- ---------------------------- BEGIN; -INSERT INTO `bpm_form` (`id`, `name`, `status`, `conf`, `fields`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (7, '啊1', 1, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"label\\\":\\\"密码\\\",\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"password\\\",\\\"placeholder\\\":\\\"请输入密码\\\",\\\"span\\\":24,\\\"show-password\\\":true,\\\"labelWidth\\\":null,\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\",\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"formId\\\":102,\\\"renderKey\\\":1640930414772,\\\"layout\\\":\\\"colFormItem\\\",\\\"vModel\\\":\\\"field102\\\",\\\"defaultValue\\\":\\\"admin123\\\"}\",\"{\\\"label\\\":\\\"级联选择\\\",\\\"tag\\\":\\\"el-cascader\\\",\\\"tagIcon\\\":\\\"cascader\\\",\\\"placeholder\\\":\\\"请选择级联选择级联选择级联选择\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"labelWidth\\\":null,\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"props\\\":{\\\"props\\\":{\\\"multiple\\\":false}},\\\"show-all-levels\\\":true,\\\"disabled\\\":false,\\\"clearable\\\":true,\\\"filterable\\\":false,\\\"required\\\":true,\\\"options\\\":[{\\\"id\\\":1,\\\"value\\\":1,\\\"label\\\":\\\"选项1\\\",\\\"children\\\":[{\\\"id\\\":2,\\\"value\\\":2,\\\"label\\\":\\\"选项1-1\\\"}]}],\\\"dataType\\\":\\\"dynamic\\\",\\\"labelKey\\\":\\\"label\\\",\\\"valueKey\\\":\\\"value\\\",\\\"childrenKey\\\":\\\"children\\\",\\\"separator\\\":\\\"/\\\",\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/cascader\\\",\\\"formId\\\":101,\\\"renderKey\\\":1640960350991,\\\"layout\\\":\\\"colFormItem\\\",\\\"vModel\\\":\\\"field101\\\"}\",\"{\\\"label\\\":\\\"生活\\\",\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"placeholder\\\":\\\"请输入生活生活生活\\\",\\\"span\\\":24,\\\"labelWidth\\\":null,\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\",\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"formId\\\":101,\\\"renderKey\\\":1640930388977,\\\"layout\\\":\\\"colFormItem\\\",\\\"vModel\\\":\\\"field101\\\",\\\"defaultValue\\\":\\\"admin\\\"}\"]', '哈哈哈哈biu', '1', '2021-12-31 10:10:13', '1', '2022-02-19 17:27:56', b'1', 1); -INSERT INTO `bpm_form` (`id`, `name`, `status`, `conf`, `fields`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (8, '啊哈哈', 0, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[]', '哈哈哈哈', '1', '2021-12-31 10:17:26', '1', '2022-02-19 17:27:54', b'1', 1); -INSERT INTO `bpm_form` (`id`, `name`, `status`, `conf`, `fields`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (9, '新增', 0, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"label\\\":\\\"单行文本\\\",\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"span\\\":24,\\\"labelWidth\\\":null,\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\",\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"formId\\\":101,\\\"renderKey\\\":1640959561705,\\\"layout\\\":\\\"colFormItem\\\",\\\"vModel\\\":\\\"field101\\\"}\",\"{\\\"label\\\":\\\"单选框组\\\",\\\"tag\\\":\\\"el-radio-group\\\",\\\"tagIcon\\\":\\\"radio\\\",\\\"span\\\":24,\\\"labelWidth\\\":null,\\\"style\\\":{},\\\"optionType\\\":\\\"default\\\",\\\"border\\\":false,\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"required\\\":true,\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}],\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/radio\\\",\\\"formId\\\":102,\\\"renderKey\\\":1640959563240,\\\"layout\\\":\\\"colFormItem\\\",\\\"vModel\\\":\\\"field102\\\"}\"]', '哈哈哈', '1', '2021-12-31 22:06:11', '1', '2022-02-19 17:27:54', b'1', 1); -INSERT INTO `bpm_form` (`id`, `name`, `status`, `conf`, `fields`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (10, '11333', 1, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"left\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"label\\\":\\\"多行文本\\\",\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"textarea\\\",\\\"type\\\":\\\"textarea\\\",\\\"placeholder\\\":\\\"请输入多行文本多行文本多行文本\\\",\\\"span\\\":24,\\\"labelWidth\\\":null,\\\"autosize\\\":{\\\"minRows\\\":4,\\\"maxRows\\\":4},\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"formId\\\":101,\\\"renderKey\\\":1640959720587,\\\"layout\\\":\\\"colFormItem\\\",\\\"vModel\\\":\\\"field101\\\",\\\"defaultValue\\\":\\\"1111\\\"}\",\"{\\\"label\\\":\\\"滑块\\\",\\\"tag\\\":\\\"el-slider\\\",\\\"tagIcon\\\":\\\"slider\\\",\\\"defaultValue\\\":0,\\\"span\\\":24,\\\"labelWidth\\\":null,\\\"disabled\\\":false,\\\"required\\\":true,\\\"min\\\":0,\\\"max\\\":100,\\\"step\\\":1,\\\"show-stops\\\":false,\\\"range\\\":false,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/slider\\\",\\\"formId\\\":101,\\\"renderKey\\\":1640959732257,\\\"layout\\\":\\\"colFormItem\\\",\\\"vModel\\\":\\\"field101\\\"}\"]', '222211', '1', '2021-12-31 22:08:45', '1', '2022-02-19 17:27:52', b'1', 1); -INSERT INTO `bpm_form` (`id`, `name`, `status`, `conf`, `fields`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (11, 'biubiu', 0, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', '嘿嘿', '1', '2022-01-02 12:25:55', '1', '2022-02-19 17:27:57', b'0', 1); -INSERT INTO `bpm_form` (`id`, `name`, `status`, `conf`, `fields`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (15, 'leave-form', 0, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"开始时间\\\",\\\"tag\\\":\\\"el-date-picker\\\",\\\"tagIcon\\\":\\\"date\\\",\\\"defaultValue\\\":null,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"span\\\":24,\\\"layout\\\":\\\"colFormItem\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/date-picker\\\",\\\"formId\\\":101,\\\"renderKey\\\":\\\"1011647692195671\\\"},\\\"placeholder\\\":\\\"请选择开始时间\\\",\\\"type\\\":\\\"date\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"disabled\\\":false,\\\"clearable\\\":true,\\\"format\\\":\\\"yyyy-MM-dd\\\",\\\"value-format\\\":\\\"yyyy-MM-dd\\\",\\\"readonly\\\":false,\\\"__vModel__\\\":\\\"field101\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"结束时间\\\",\\\"tag\\\":\\\"el-date-picker\\\",\\\"tagIcon\\\":\\\"date\\\",\\\"defaultValue\\\":null,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"span\\\":24,\\\"layout\\\":\\\"colFormItem\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/date-picker\\\",\\\"formId\\\":102,\\\"renderKey\\\":\\\"1021647692207701\\\"},\\\"placeholder\\\":\\\"请选择结束时间\\\",\\\"type\\\":\\\"date\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"disabled\\\":false,\\\"clearable\\\":true,\\\"format\\\":\\\"yyyy-MM-dd\\\",\\\"value-format\\\":\\\"yyyy-MM-dd\\\",\\\"readonly\\\":false,\\\"__vModel__\\\":\\\"field102\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"请假类型\\\",\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"tag\\\":\\\"el-select\\\",\\\"tagIcon\\\":\\\"select\\\",\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/select\\\",\\\"formId\\\":103,\\\"renderKey\\\":\\\"1031647692231884\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"事假\\\",\\\"value\\\":1},{\\\"label\\\":\\\"年假\\\",\\\"value\\\":2}]},\\\"placeholder\\\":\\\"请选择请假类型\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"disabled\\\":false,\\\"filterable\\\":false,\\\"multiple\\\":false,\\\"__vModel__\\\":\\\"field103\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"原因\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"textarea\\\",\\\"required\\\":false,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"formId\\\":105,\\\"renderKey\\\":\\\"1051647692319768\\\"},\\\"type\\\":\\\"textarea\\\",\\\"placeholder\\\":\\\"请输入原因\\\",\\\"autosize\\\":{\\\"minRows\\\":4,\\\"maxRows\\\":4},\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field105\\\"}\"]', NULL, '1', '2022-03-19 20:20:56', '1', '2022-03-19 20:20:56', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for bpm_oa_leave -- ---------------------------- DROP TABLE IF EXISTS `bpm_oa_leave`; -CREATE TABLE `bpm_oa_leave` ( +CREATE TABLE `bpm_oa_leave` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '请假表单主键', `user_id` bigint NOT NULL COMMENT '申请人的用户编号', `type` tinyint NOT NULL COMMENT '请假类型', @@ -62,675 +324,171 @@ CREATE TABLE `bpm_oa_leave` ( `end_time` datetime NOT NULL COMMENT '结束时间', `day` tinyint NOT NULL COMMENT '请假天数', `result` tinyint NOT NULL COMMENT '请假结果', - `process_instance_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '流程实例的编号', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `process_instance_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '流程实例的编号', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='OA 请假申请表'; +) ENGINE = InnoDB AUTO_INCREMENT = 26 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = 'OA 请假申请表'; -- ---------------------------- -- Records of bpm_oa_leave -- ---------------------------- BEGIN; -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (3, 1, 1, '我要请假啦啦啦!', '2022-03-01 08:00:00', '2022-03-03 08:00:00', 2, 1, 'a6a007dd-7b6d-11ec-b781-acde48001122', '1', '2022-01-22 18:25:42', '1', '2022-02-19 17:28:04', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (4, 1, 1, '我要请假啦啦啦!', '2022-03-01 08:00:00', '2022-03-03 08:00:00', 2, 1, '28a5d744-7b75-11ec-a3c8-acde48001122', '1', '2022-01-22 19:19:26', '1', '2022-02-19 17:28:05', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (5, 1, 1, '我要请假啦啦啦!', '2022-03-01 08:00:00', '2022-03-05 08:00:00', 4, 1, '75d43fd1-7b7f-11ec-a3c8-acde48001122', '1', '2022-01-22 20:33:11', '1', '2022-02-19 17:28:06', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (6, 1, 1, '我要请假啦啦啦!', '2022-03-01 08:00:00', '2022-03-05 08:00:00', 4, 1, '9ac0eab4-7b7f-11ec-a3c8-acde48001122', '1', '2022-01-22 20:34:13', '1', '2022-02-19 17:28:07', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (7, 1, 1, 'EEE', '2022-01-11 00:00:00', '2022-01-27 00:00:00', 16, 1, '7250cfdf-7b88-11ec-8ef0-acde48001122', '1', '2022-01-22 21:37:31', '1', '2022-02-19 17:28:08', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (8, 1, 1, 'EEE', '2022-01-02 00:00:00', '2022-01-23 00:00:00', 21, 1, '0699ab3c-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 21:48:49', '1', '2022-02-19 17:28:08', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (9, 1, 1, 'EEE', '2022-01-01 00:00:00', '2022-01-29 00:00:00', 28, 1, 'ea957056-7b8d-11ec-b8e2-acde48001122', '1', '2022-01-22 22:16:40', '1', '2022-02-19 17:28:09', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (10, 1, 1, 'EEE', '2022-01-13 00:00:00', '2022-01-25 00:00:00', 12, 1, '7e093de8-7b8e-11ec-b8e2-acde48001122', '1', '2022-01-22 22:20:47', '1', '2022-02-19 17:28:10', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (11, 1, 1, 'AAA', '2022-01-03 00:00:00', '2022-01-21 00:00:00', 18, 1, '5354233a-7b91-11ec-8473-acde48001122', '1', '2022-01-22 22:41:04', '1', '2022-02-19 17:28:11', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (12, 1, 1, 'EEEEE', '2021-12-27 00:00:00', '2022-01-27 00:00:00', 31, 1, '68ce0834-7b91-11ec-8473-acde48001122', '1', '2022-01-22 22:41:40', '1', '2022-02-19 17:28:12', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (13, 1, 1, 'aaa', '2022-01-10 00:00:00', '2022-01-28 00:00:00', 18, 1, 'bb23c2b4-7b91-11ec-8473-acde48001122', '1', '2022-01-22 22:43:58', '1', '2022-02-19 17:28:14', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (14, 1, 1, 'eee', '2021-12-27 00:00:00', '2022-01-28 00:00:00', 32, 3, '8884f3e7-7b99-11ec-ba5c-acde48001122', '1', '2022-01-22 23:39:49', '1', '2022-02-19 17:28:13', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (15, 1, 1, 'EEE', '2022-01-20 00:00:00', '2022-01-19 00:00:00', 1, 1, 'a59a5391-7b99-11ec-ba5c-acde48001122', '1', '2022-01-22 23:40:38', '1', '2022-02-19 17:28:15', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (16, 1, 3, 'EEE', '2022-01-04 00:00:00', '2022-01-13 00:00:00', 9, 3, '03c6c157-7b9a-11ec-a290-acde48001122', '1', '2022-01-22 23:43:16', '1', '2022-02-19 17:28:15', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (17, 1, 2, 'EEE', '2022-01-22 00:00:00', '2022-01-22 00:00:00', 0, 1, '331bc281-7b9a-11ec-a290-acde48001122', '1', '2022-01-22 23:44:35', '1', '2022-02-19 17:28:20', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (18, 1, 2, 'EEE', '2022-01-11 00:00:00', '2022-01-11 00:00:00', 0, 1, '52ffd28e-7b9a-11ec-a290-acde48001122', '1', '2022-01-22 23:45:29', '1', '2022-02-19 17:28:16', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (19, 1, 2, 'eee', '2022-01-22 00:00:00', '2022-01-22 00:00:00', 0, 1, '67c2eaab-7b9a-11ec-a290-acde48001122', '1', '2022-01-22 23:46:04', '1', '2022-02-19 17:28:19', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (20, 1, 1, 'EEE', '2022-01-04 00:00:00', '2022-01-04 00:00:00', 0, 1, '819442e8-7b9a-11ec-a290-acde48001122', '1', '2022-01-22 23:46:47', '1', '2022-02-19 17:28:17', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (21, 1, 1, 'EEE', '2022-01-22 00:00:00', '2022-01-23 00:00:00', 1, 1, 'ec45f38f-7b9a-11ec-b03b-acde48001122', '1', '2022-01-22 23:49:46', '1', '2022-02-19 17:28:22', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (22, 1, 1, 'eee', '2022-01-22 00:00:00', '2022-01-22 00:00:00', 0, 2, '2152467e-7b9b-11ec-9a1b-acde48001122', '1', '2022-01-22 23:51:15', '1', '2022-02-19 17:28:23', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (23, 1, 2, 'eee', '2022-01-03 00:00:00', '2022-01-26 00:00:00', 23, 1, '7317cec6-7b9b-11ec-b5b7-acde48001122', '1', '2022-01-22 23:53:32', '1', '2022-02-19 17:28:24', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (24, 1, 2, 'eee', '2022-01-03 00:00:00', '2022-01-26 00:00:00', 23, 4, '7470a810-7b9b-11ec-b5b7-acde48001122', '1', '2022-01-22 23:53:35', '1', '2022-02-19 17:28:25', b'0', 1); -INSERT INTO `bpm_oa_leave` (`id`, `user_id`, `type`, `reason`, `start_time`, `end_time`, `day`, `result`, `process_instance_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25, 1, 1, 'EE', '2021-12-27 00:00:00', '2022-01-19 00:00:00', 23, 1, '3ad174fb-7b9d-11ec-8404-acde48001122', '1', '2022-01-23 00:06:17', '1', '2022-02-19 17:28:26', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for bpm_process_definition_ext -- ---------------------------- DROP TABLE IF EXISTS `bpm_process_definition_ext`; -CREATE TABLE `bpm_process_definition_ext` ( +CREATE TABLE `bpm_process_definition_ext` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `process_definition_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '流程定义的编号', `model_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '流程模型的编号', - `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '描述', + `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '描述', `form_type` tinyint NOT NULL COMMENT '表单类型', - `form_id` bigint DEFAULT NULL COMMENT '表单编号', - `form_conf` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '表单的配置', - `form_fields` varchar(5000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '表单项的数组', - `form_custom_create_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '自定义表单的提交路径', - `form_custom_view_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '自定义表单的查看路径', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `form_id` bigint NULL DEFAULT NULL COMMENT '表单编号', + `form_conf` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '表单的配置', + `form_fields` varchar(5000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '表单项的数组', + `form_custom_create_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '自定义表单的提交路径', + `form_custom_view_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '自定义表单的查看路径', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=96 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Bpm 流程定义的拓展表\n'; +) ENGINE = InnoDB AUTO_INCREMENT = 96 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = 'Bpm 流程定义的拓展表\n'; -- ---------------------------- -- Records of bpm_process_definition_ext -- ---------------------------- BEGIN; -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (12, 'process1641042089407:5:6d9a655c-6b0b-11ec-bfb7-cacd34981f8e', '', '', 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-01 22:02:17', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (13, 'Process_1641152976334:1:2db33c43-6c05-11ec-9fce-cacd34981f8e', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-03 03:50:04', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (14, 'Process_1641152976334:2:52a4a536-6c09-11ec-b333-cacd34981f8e', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-03 04:19:44', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (15, 'Process_1641152976334:3:54f1a279-6c09-11ec-b333-cacd34981f8e', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-03 04:19:48', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (16, 'Process_1641152976334:4:59fc120c-6c09-11ec-b333-cacd34981f8e', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-03 04:19:56', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (17, 'Process_1641152976334:5:67c5bbcf-6c09-11ec-b333-cacd34981f8e', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-03 04:20:19', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (18, 'Process_1641152976334:6:741521a2-6c09-11ec-b333-cacd34981f8e', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-03 04:20:40', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (19, 'Process_1641152976334:7:a80332e5-6c09-11ec-b333-cacd34981f8e', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-03 04:22:07', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (20, 'Process_1641152976334:8:7b70fa71-6c14-11ec-8928-cacd34981f8e', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-03 05:40:27', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (21, 'baba:1:506515c9-6c2e-11ec-9fc8-cacd34981f8e', '', NULL, 1, NULL, NULL, NULL, NULL, NULL, '1', '2022-01-03 08:44:46', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (22, 'Process_1641152976334:9:c4b8386c-6c30-11ec-9fc8-cacd34981f8e', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-03 09:02:06', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (23, 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-03 09:04:00', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (24, 'Process_1641152976334:11:1a212652-6c31-11ec-9fc8-cacd34981f8e', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-03 09:04:32', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25, 'baba:2:42165635-6c31-11ec-9fc8-cacd34981f8e', '', NULL, 1, NULL, NULL, NULL, NULL, NULL, '1', '2022-01-03 09:05:36', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26, 'baba:3:3b6ff69d-6c41-11ec-a218-cacd34981f8e', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-03 10:59:57', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (27, 'baba:4:76cf8c60-6c41-11ec-a218-cacd34981f8e', '', '我是描述丫丫啊', 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-03 11:01:36', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (28, 'baba:5:52d3b4c3-6c42-11ec-a218-cacd34981f8e', '', '我是描述丫丫啊', 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-03 11:07:46', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (29, 'baba:6:2f739ca9-6c4d-11ec-86db-cacd34981f8e', '', '我是描述丫丫啊', 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-03 12:25:31', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (30, 'tt:1:f1062230-6c7f-11ec-88b1-cacd34981f8e', '', NULL, 1, NULL, NULL, NULL, NULL, NULL, '1', '2022-01-03 18:28:50', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (31, 'qqw:1:897c7005-6c80-11ec-88b1-cacd34981f8e', '', '11', 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-03 18:33:06', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (32, 'leave:7:20ada39c-6c95-11ec-88b1-cacd34981f8e', '', NULL, 1, NULL, NULL, NULL, NULL, NULL, '1', '2022-01-03 21:00:30', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (33, 'gateway_test:1:bf30c38f-7019-11ec-bc41-a2380e71991a', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-08 08:27:23', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (34, 'gateway_test:2:00e52d8e-701b-11ec-aca9-a2380e71991a', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-08 08:36:22', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (35, 'gateway_test:3:43f8ca4f-709c-11ec-9ce9-a2380e71991a', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-09 00:01:40', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (36, 'gateway_test:4:2e50e9a4-7136-11ec-93f6-a2380e71991a', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-09 18:23:26', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (37, 'AA:1:e1e1a8d3-7208-11ec-8954-a2380e71991a', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-10 19:31:42', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (38, 'AA:2:0d01d9e6-7209-11ec-8954-a2380e71991a', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-10 19:32:54', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (39, 'AA:3:83a1ac25-720b-11ec-95cb-a2380e71991a', '', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-10 19:50:32', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (40, 'leave:8:462de361-7282-11ec-8908-a2380e71991a', '0c1ee1f8-6c95-11ec-88b1-cacd34981f8e', NULL, 1, NULL, NULL, NULL, NULL, NULL, '1', '2022-01-11 10:00:39', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (41, 'leave:9:59689ba0-7284-11ec-965c-a2380e71991a', '0c1ee1f8-6c95-11ec-88b1-cacd34981f8e', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-11 10:15:30', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (42, 'leave:10:d7fb3bb3-7473-11ec-a434-a2380e71991a', '0c1ee1f8-6c95-11ec-88b1-cacd34981f8e', NULL, 1, 11, NULL, NULL, NULL, NULL, '103', '2022-01-13 21:22:24', '103', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (43, 'leave:11:5ddc9eb0-7483-11ec-b390-a2380e71991a', '0c1ee1f8-6c95-11ec-88b1-cacd34981f8e', 'AAA', 1, 11, NULL, NULL, NULL, NULL, '103', '2022-01-13 23:13:31', '103', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (44, 'test:1:913d7930-75b8-11ec-b607-a2380e71991a', '1f98df4c-75b7-11ec-b607-a2380e71991a', NULL, 1, 11, NULL, NULL, NULL, NULL, '103', '2022-01-15 12:06:51', '103', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (45, 'test:2:0f0e3986-75ba-11ec-a317-a2380e71991a', '1f98df4c-75b7-11ec-b607-a2380e71991a', NULL, 1, 11, NULL, NULL, NULL, NULL, '103', '2022-01-15 12:17:32', '103', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (46, 'test:3:8e4df3a5-75bb-11ec-a317-a2380e71991a', '1f98df4c-75b7-11ec-b607-a2380e71991a', NULL, 1, 11, NULL, NULL, NULL, NULL, '103', '2022-01-15 12:28:15', '103', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (47, 'test:4:b86e7d03-75bd-11ec-bf54-a2380e71991a', '1f98df4c-75b7-11ec-b607-a2380e71991a', NULL, 1, 11, NULL, NULL, NULL, NULL, '103', '2022-01-15 12:43:45', '103', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (48, 'test:5:d64bc095-75bd-11ec-bf54-a2380e71991a', '1f98df4c-75b7-11ec-b607-a2380e71991a', NULL, 1, 11, NULL, NULL, NULL, NULL, '103', '2022-01-15 12:44:35', '103', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (49, 'test:6:ebac9f59-75bd-11ec-bf54-a2380e71991a', '1f98df4c-75b7-11ec-b607-a2380e71991a', NULL, 1, 11, NULL, NULL, NULL, NULL, '103', '2022-01-15 12:45:11', '103', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (50, 'test:7:fc60e5fc-75bd-11ec-bf54-a2380e71991a', '1f98df4c-75b7-11ec-b607-a2380e71991a', NULL, 1, 11, NULL, NULL, NULL, NULL, '103', '2022-01-15 12:45:39', '103', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (51, 'test:8:12e0a13e-75be-11ec-bf54-a2380e71991a', '1f98df4c-75b7-11ec-b607-a2380e71991a', NULL, 1, 11, NULL, NULL, NULL, NULL, '103', '2022-01-15 12:46:16', '103', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (53, 'test:9:e2658d43-7606-11ec-8cd2-a2380e71991a', 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', '滔博牛皮', 1, 11, NULL, NULL, NULL, NULL, '103', '2022-01-15 21:27:28', '103', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (54, 'test:10:f3aa05e6-7606-11ec-8cd2-a2380e71991a', 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', '滔博牛皮', 1, 11, NULL, NULL, NULL, NULL, '103', '2022-01-15 21:27:57', '103', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (55, 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', 'a3d5105e-760b-11ec-9367-a2380e71991a', NULL, 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-15 22:02:27', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (56, 'test:11:536ecba7-761a-11ec-a5c5-a2380e71991a', 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', '滔博牛皮', 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-15 23:46:38', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (57, 'test:12:5c91d0ba-761a-11ec-a5c5-a2380e71991a', 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', '滔博牛皮', 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-15 23:46:54', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (58, 'test:13:651e140d-761a-11ec-a5c5-a2380e71991a', 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', '滔博牛皮', 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-15 23:47:08', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (59, 'test:14:c1f049a4-761a-11ec-ba93-a2380e71991a', 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', '滔博牛皮', 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-15 23:49:44', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (60, 'test:15:5304ca92-761b-11ec-b05a-a2380e71991a', 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', '滔博牛皮', 1, 11, NULL, NULL, NULL, NULL, '1', '2022-01-15 23:53:47', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (61, 'oa_leave:1:482ec033-762a-11ec-8477-a2380e71991a', 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'OA 请假的示例', 20, NULL, NULL, NULL, '/bpm/oa/flow', '/oa/oa/leave', '1', '2022-01-16 01:40:51', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (62, 'test:16:d83ee859-762d-11ec-9125-a2380e71991a', 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', '滔博牛皮', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-16 02:06:22', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (63, 'test:17:04259e68-762e-11ec-9ab0-a2380e71991a', 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', '滔博牛皮', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-16 02:07:35', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (64, 'test:18:1bb307b1-7633-11ec-957a-a2380e71991a', 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', '滔博牛皮', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-16 02:44:02', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (65, 'self:1:17c042ff-7680-11ec-bc82-a2380e71991a', '024b400b-7680-11ec-bc82-a2380e71991a', NULL, 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-16 11:55:07', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (66, 'test:19:a401b61a-768b-11ec-afcd-a2380e71991a', 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', '滔博牛皮', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-16 13:17:47', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (67, 'test_001:2:c680200d-768b-11ec-afcd-a2380e71991a', 'a3d5105e-760b-11ec-9367-a2380e71991a', NULL, 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-16 13:18:44', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (68, 'test_001:3:4e8e99b2-768c-11ec-afcd-a2380e71991a', 'a3d5105e-760b-11ec-9367-a2380e71991a', NULL, 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-16 13:22:33', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (69, 'self:2:3a5a065e-76b1-11ec-9c66-a2380e71991a', '024b400b-7680-11ec-bc82-a2380e71991a', NULL, 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-16 17:46:50', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (70, 'oa_leave:2:3c1f0ef1-76b1-11ec-9c66-a2380e71991a', 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'OA 请假的示例', 20, NULL, NULL, NULL, '/bpm/oa/flow', '/oa/oa/leave', '1', '2022-01-16 17:46:53', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (71, 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', 'a3d5105e-760b-11ec-9367-a2380e71991a', NULL, 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-16 17:46:56', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (72, 'test:20:3f1c2257-76b1-11ec-9c66-a2380e71991a', 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', '滔博牛皮', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-16 17:46:58', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (73, 'eee:1:89b300ac-79af-11ec-abb0-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', NULL, 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-20 13:12:18', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (74, 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', '滔博牛皮', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-20 13:21:03', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (75, 'eee:2:8a7b5672-7ade-11ec-a777-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', NULL, 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-22 01:21:17', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (76, 'eee:3:8db9dfa5-7ade-11ec-a777-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', NULL, 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-22 01:21:22', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (77, 'eee:4:a63e1e68-7ade-11ec-a777-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', 'AAA', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-22 01:22:03', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (78, 'eee:5:33f2d275-7adf-11ec-93fe-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', 'AAA', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-22 01:26:01', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (79, 'eee:6:365e0618-7adf-11ec-93fe-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', 'AAA', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-22 01:26:05', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (80, 'eee:7:3c5b3a1b-7adf-11ec-93fe-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', 'AAA', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-22 01:26:15', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (81, 'eee:8:3da2872e-7adf-11ec-93fe-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', 'AAA', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-22 01:26:17', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (82, 'eee:9:3f0f84b1-7adf-11ec-93fe-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', 'AAA', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-22 01:26:20', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (83, 'eee:10:479efc54-7adf-11ec-93fe-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', 'AAA', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-22 01:26:34', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (84, 'eee:11:38c6faaa-7ae0-11ec-9d9d-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', 'AAA', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-22 01:33:19', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (85, 'eee:12:c9c8ddcd-7ae0-11ec-9d9d-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', 'AAA', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-22 01:37:22', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (86, 'eee:13:f1aca890-7ae0-11ec-9d9d-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', 'AAA', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-22 01:38:29', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (87, 'eee:14:27a560fb-7ae2-11ec-9d9a-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', 'AAA', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-22 01:47:09', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (88, 'eee:15:c1906d85-7ae5-11ec-a69c-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', 'AAA', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-22 02:12:56', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (89, 'eee:16:c325da98-7ae5-11ec-a69c-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', 'AAA', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-22 02:12:58', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (90, 'eee:17:f3aad03b-7ae5-11ec-a69c-a2380e71991a', '02b756a8-79af-11ec-abb0-a2380e71991a', 'AAA', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-01-22 02:14:20', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (91, 'oa_leave:3:1fad3d93-7b75-11ec-a3c8-acde48001122', 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'OA 请假的示例', 20, NULL, NULL, NULL, '/bpm/oa/flow', '/oa/oa/leave', '1', '2022-01-22 19:19:11', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (92, 'oa_leave:4:991f2193-7b7f-11ec-a3c8-acde48001122', 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'OA 请假的示例', 20, NULL, NULL, NULL, '/bpm/oa/flow', '/oa/oa/leave', '1', '2022-01-22 20:34:10', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (93, 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'OA 请假的示例', 20, NULL, NULL, NULL, '/bpm/oa/leave/create', '/bpm/oa/leave/detail', '1', '2022-01-22 21:48:38', '1', '2022-02-19 17:29:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (94, 'flowable_01:1:c0bb5b36-97ed-11ec-a2b9-862bc1a4a054', '4b4909d8-97e7-11ec-8e20-862bc1a4a054', 'ooxx', 10, 11, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"单行文本\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"changeTag\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"input\\\",\\\"required\\\":true,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"regList\\\":[],\\\"formId\\\":121,\\\"renderKey\\\":\\\"1211641657675668\\\"},\\\"__slot__\\\":{\\\"prepend\\\":\\\"\\\",\\\"append\\\":\\\"\\\"},\\\"placeholder\\\":\\\"请输入单行文本\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"prefix-icon\\\":\\\"\\\",\\\"suffix-icon\\\":\\\"\\\",\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field121\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"多选框组\\\",\\\"tag\\\":\\\"el-checkbox-group\\\",\\\"tagIcon\\\":\\\"checkbox\\\",\\\"defaultValue\\\":[],\\\"span\\\":24,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"layout\\\":\\\"colFormItem\\\",\\\"optionType\\\":\\\"default\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"border\\\":false,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/checkbox\\\",\\\"formId\\\":122,\\\"renderKey\\\":\\\"1221641097529857\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"选项一\\\",\\\"value\\\":1},{\\\"label\\\":\\\"选项二\\\",\\\"value\\\":2}]},\\\"style\\\":{},\\\"size\\\":\\\"medium\\\",\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field122\\\"}\"]', NULL, NULL, '1', '2022-02-28 00:53:14', '1', '2022-02-28 00:53:14', b'0', 1); -INSERT INTO `bpm_process_definition_ext` (`id`, `process_definition_id`, `model_id`, `description`, `form_type`, `form_id`, `form_conf`, `form_fields`, `form_custom_create_path`, `form_custom_view_path`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (95, 'common-form:1:7fdfc407-a786-11ec-96d6-8e557beca7ad', '02217e82-a77e-11ec-96d6-8e557beca7ad', '通用表单简单示例', 10, 15, '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true}', '[\"{\\\"__config__\\\":{\\\"label\\\":\\\"开始时间\\\",\\\"tag\\\":\\\"el-date-picker\\\",\\\"tagIcon\\\":\\\"date\\\",\\\"defaultValue\\\":null,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"span\\\":24,\\\"layout\\\":\\\"colFormItem\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/date-picker\\\",\\\"formId\\\":101,\\\"renderKey\\\":\\\"1011647692195671\\\"},\\\"placeholder\\\":\\\"请选择开始时间\\\",\\\"type\\\":\\\"date\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"disabled\\\":false,\\\"clearable\\\":true,\\\"format\\\":\\\"yyyy-MM-dd\\\",\\\"value-format\\\":\\\"yyyy-MM-dd\\\",\\\"readonly\\\":false,\\\"__vModel__\\\":\\\"field101\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"结束时间\\\",\\\"tag\\\":\\\"el-date-picker\\\",\\\"tagIcon\\\":\\\"date\\\",\\\"defaultValue\\\":null,\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"span\\\":24,\\\"layout\\\":\\\"colFormItem\\\",\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/date-picker\\\",\\\"formId\\\":102,\\\"renderKey\\\":\\\"1021647692207701\\\"},\\\"placeholder\\\":\\\"请选择结束时间\\\",\\\"type\\\":\\\"date\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"disabled\\\":false,\\\"clearable\\\":true,\\\"format\\\":\\\"yyyy-MM-dd\\\",\\\"value-format\\\":\\\"yyyy-MM-dd\\\",\\\"readonly\\\":false,\\\"__vModel__\\\":\\\"field102\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"请假类型\\\",\\\"showLabel\\\":true,\\\"labelWidth\\\":null,\\\"tag\\\":\\\"el-select\\\",\\\"tagIcon\\\":\\\"select\\\",\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"required\\\":true,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/select\\\",\\\"formId\\\":103,\\\"renderKey\\\":\\\"1031647692231884\\\"},\\\"__slot__\\\":{\\\"options\\\":[{\\\"label\\\":\\\"事假\\\",\\\"value\\\":1},{\\\"label\\\":\\\"年假\\\",\\\"value\\\":2}]},\\\"placeholder\\\":\\\"请选择请假类型\\\",\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"clearable\\\":true,\\\"disabled\\\":false,\\\"filterable\\\":false,\\\"multiple\\\":false,\\\"__vModel__\\\":\\\"field103\\\"}\",\"{\\\"__config__\\\":{\\\"label\\\":\\\"原因\\\",\\\"labelWidth\\\":null,\\\"showLabel\\\":true,\\\"tag\\\":\\\"el-input\\\",\\\"tagIcon\\\":\\\"textarea\\\",\\\"required\\\":false,\\\"layout\\\":\\\"colFormItem\\\",\\\"span\\\":24,\\\"regList\\\":[],\\\"changeTag\\\":true,\\\"document\\\":\\\"https://element.eleme.cn/#/zh-CN/component/input\\\",\\\"formId\\\":105,\\\"renderKey\\\":\\\"1051647692319768\\\"},\\\"type\\\":\\\"textarea\\\",\\\"placeholder\\\":\\\"请输入原因\\\",\\\"autosize\\\":{\\\"minRows\\\":4,\\\"maxRows\\\":4},\\\"style\\\":{\\\"width\\\":\\\"100%\\\"},\\\"maxlength\\\":null,\\\"show-word-limit\\\":false,\\\"readonly\\\":false,\\\"disabled\\\":false,\\\"__vModel__\\\":\\\"field105\\\"}\"]', NULL, NULL, '1', '2022-03-19 21:14:26', '1', '2022-03-19 21:14:26', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for bpm_process_instance_ext -- ---------------------------- DROP TABLE IF EXISTS `bpm_process_instance_ext`; -CREATE TABLE `bpm_process_instance_ext` ( +CREATE TABLE `bpm_process_instance_ext` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `start_user_id` bigint NOT NULL COMMENT '发起流程的用户编号', - `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '流程实例的名字', + `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '流程实例的名字', `process_instance_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '流程实例的编号', `process_definition_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '流程定义的编号', - `category` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '流程分类', + `category` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '流程分类', `status` tinyint NOT NULL COMMENT '流程实例的状态', `result` tinyint NOT NULL COMMENT '流程实例的结果', - `end_time` datetime DEFAULT NULL COMMENT '结束时间', - `form_variables` varchar(5000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '表单值', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `end_time` datetime NULL DEFAULT NULL COMMENT '结束时间', + `form_variables` varchar(5000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '表单值', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=200 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='工作流的流程实例的拓展'; +) ENGINE = InnoDB AUTO_INCREMENT = 200 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '工作流的流程实例的拓展'; -- ---------------------------- -- Records of bpm_process_instance_ext -- ---------------------------- BEGIN; -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (51, 1, '笑死', 'd7bcdeb9-7134-11ec-99e4-a2380e71991a', 'gateway_test:3:43f8ca4f-709c-11ec-9ce9-a2380e71991a', '1', 1, 4, '2022-01-09 18:18:36', NULL, '1', '2022-01-09 18:13:51', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (52, 1, '笑死', '944619dd-7135-11ec-93f6-a2380e71991a', 'gateway_test:3:43f8ca4f-709c-11ec-9ce9-a2380e71991a', '2', 2, 3, '2022-01-09 18:35:50', NULL, '1', '2022-01-09 18:19:08', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (53, 1, '业务流程_1641152976334', 'dc524fb5-7135-11ec-93f6-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '1', 2, 3, '2022-01-09 18:35:49', NULL, '1', '2022-01-09 18:21:09', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (54, 1, '背背', 'e4e745a4-7135-11ec-93f6-a2380e71991a', 'qqw:1:897c7005-6c80-11ec-88b1-cacd34981f8e', '2', 2, 3, '2022-01-09 18:35:49', NULL, '1', '2022-01-09 18:21:23', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (55, 1, '背背', 'ea2ff6c3-7135-11ec-93f6-a2380e71991a', 'qqw:1:897c7005-6c80-11ec-88b1-cacd34981f8e', '1', 2, 3, '2022-01-09 18:35:48', NULL, '1', '2022-01-09 18:21:32', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (56, 1, '笑死', '47a87df5-7136-11ec-93f6-a2380e71991a', 'gateway_test:4:2e50e9a4-7136-11ec-93f6-a2380e71991a', 'http://activiti.org/bpmn', 2, 3, '2022-01-09 18:35:46', NULL, '1', '2022-01-09 18:24:09', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (58, 1, '业务流程_1641152976334', 'af747f00-7137-11ec-bf24-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', 'http://activiti.org/bpmn', 1, 2, '2022-01-09 18:34:35', NULL, '1', '2022-01-09 18:34:12', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (59, 1, '笑死', 'f17cf222-7137-11ec-bf24-a2380e71991a', 'gateway_test:4:2e50e9a4-7136-11ec-93f6-a2380e71991a', 'http://activiti.org/bpmn', 1, 2, '2022-01-09 18:36:16', NULL, '1', '2022-01-09 18:36:03', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (60, 1, '笑死', '2592fce0-7138-11ec-bf24-a2380e71991a', 'gateway_test:4:2e50e9a4-7136-11ec-93f6-a2380e71991a', 'http://activiti.org/bpmn', 2, 3, '2022-01-09 18:37:37', NULL, '1', '2022-01-09 18:37:30', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (61, 1, '业务流程_1641152976334', '34b09dfb-7138-11ec-bf24-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', 'http://activiti.org/bpmn', 2, 2, '2022-01-09 18:38:02', NULL, '1', '2022-01-09 18:37:56', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (63, 1, '笑死', '9ea14ead-714b-11ec-af9b-a2380e71991a', 'gateway_test:4:2e50e9a4-7136-11ec-93f6-a2380e71991a', 'http://activiti.org/bpmn', 2, 3, '2022-01-09 22:08:12', NULL, '1', '2022-01-09 20:56:54', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (64, 1, '业务流程_1641152976334', '1179546c-714c-11ec-943f-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '1', 2, 2, '2022-01-09 22:08:11', NULL, '1', '2022-01-09 21:00:07', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (65, 1, '业务流程_1641152976334', 'be323fbb-714c-11ec-943f-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '1', 2, 3, '2022-01-09 22:08:10', NULL, '1', '2022-01-09 21:04:56', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (66, 1, '业务流程_1641152976334', '09da6c8e-714e-11ec-922e-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '1', 2, 2, '2022-01-09 22:08:09', NULL, '1', '2022-01-09 21:14:13', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (67, 1, '业务流程_1641152976334', '66f0f91f-7155-11ec-b613-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '1', 2, 2, '2022-01-09 22:07:03', NULL, '1', '2022-01-09 22:06:55', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (68, 1, '业务流程_1641152976334', 'b86d4397-7155-11ec-b613-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '1', 2, 3, '2022-01-09 22:10:02', NULL, '1', '2022-01-09 22:09:12', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (69, 1, '业务流程_1641152976334', 'dcaa4d86-7155-11ec-b613-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '1', 2, 2, '2022-01-09 22:10:19', NULL, '1', '2022-01-09 22:10:13', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (70, 1, '业务流程_1641152976334', '4b1c61a8-7156-11ec-b613-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '1', 2, 2, '2022-01-09 22:14:38', NULL, '1', '2022-01-09 22:13:18', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (71, 1, '业务流程_1641152976334', '36e36bdd-7157-11ec-8642-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '1', 2, 2, '2022-01-09 22:20:16', NULL, '1', '2022-01-09 22:19:54', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (72, 1, '业务流程_1641152976334', '7917733d-7207-11ec-af01-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '1', 2, 2, '2022-01-10 19:48:34', NULL, '1', '2022-01-10 19:21:36', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (73, 1, '业务流程_1641152976334', 'd14992df-7207-11ec-a1b3-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '1', 2, 4, '2022-01-15 21:59:21', NULL, '1', '2022-01-10 19:24:04', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (74, 1, '业务流程_1641152976334', '37056d50-7208-11ec-a594-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '1', 2, 4, '2022-01-15 21:59:23', NULL, '1', '2022-01-10 19:26:55', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (75, 1, '笑死', '90b5effe-7208-11ec-a594-a2380e71991a', 'gateway_test:4:2e50e9a4-7136-11ec-93f6-a2380e71991a', '2', 2, 4, '2022-01-15 21:59:26', NULL, '1', '2022-01-10 19:29:25', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (76, 1, '测试任务', '12ac8117-7209-11ec-8954-a2380e71991a', 'AA:2:0d01d9e6-7209-11ec-8954-a2380e71991a', '2', 2, 4, '2022-01-15 21:59:33', NULL, '1', '2022-01-10 19:33:04', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (77, 1, '测试任务', '712ac2f9-720a-11ec-883f-a2380e71991a', 'AA:2:0d01d9e6-7209-11ec-8954-a2380e71991a', '2', 2, 4, '2022-01-15 21:59:29', NULL, '1', '2022-01-10 19:42:52', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (78, 1, '测试任务', '926ee336-720b-11ec-95cb-a2380e71991a', 'AA:3:83a1ac25-720b-11ec-95cb-a2380e71991a', '2', 2, 4, '2022-01-15 21:59:36', NULL, '1', '2022-01-10 19:50:57', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (79, 1, '测试任务', 'a89534d8-720b-11ec-95cb-a2380e71991a', 'AA:3:83a1ac25-720b-11ec-95cb-a2380e71991a', '2', 2, 4, '2022-01-15 21:59:38', NULL, '1', '2022-01-10 19:51:34', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (80, 1, '测试任务', '6acb0a6b-720f-11ec-b740-a2380e71991a', 'AA:3:83a1ac25-720b-11ec-95cb-a2380e71991a', '2', 2, 4, '2022-01-15 21:59:41', NULL, '1', '2022-01-10 20:18:28', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (81, 1, '笑死', 'dcc756b9-720f-11ec-b740-a2380e71991a', 'gateway_test:4:2e50e9a4-7136-11ec-93f6-a2380e71991a', '2', 2, 4, '2022-01-15 21:59:43', NULL, '1', '2022-01-10 20:21:40', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (82, 1, '测试任务', '2597c8a7-7210-11ec-8e38-a2380e71991a', 'AA:3:83a1ac25-720b-11ec-95cb-a2380e71991a', '2', 2, 2, '2022-01-10 20:23:55', NULL, '1', '2022-01-10 20:23:42', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (83, 1, '测试任务', '46b12370-7210-11ec-8e38-a2380e71991a', 'AA:3:83a1ac25-720b-11ec-95cb-a2380e71991a', '2', 2, 2, '2022-01-10 20:25:14', NULL, '1', '2022-01-10 20:24:37', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (84, 1, '测试任务', '40416229-7211-11ec-8e38-a2380e71991a', 'AA:3:83a1ac25-720b-11ec-95cb-a2380e71991a', '2', 2, 4, '2022-01-15 21:59:15', NULL, '1', '2022-01-10 20:31:36', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (85, 1, '测试任务', '84285947-7211-11ec-8e38-a2380e71991a', 'AA:3:83a1ac25-720b-11ec-95cb-a2380e71991a', '2', 2, 4, '2022-01-15 21:59:12', NULL, '1', '2022-01-10 20:33:30', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (92, 1, '请假', 'e93a3338-729d-11ec-abc7-a2380e71991a', 'leave:9:59689ba0-7284-11ec-965c-a2380e71991a', '2', 2, 4, '2022-01-15 21:59:10', NULL, '1', '2022-01-11 13:18:29', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (93, 1, '请假', '37c2e026-729e-11ec-abc7-a2380e71991a', 'leave:9:59689ba0-7284-11ec-965c-a2380e71991a', '2', 2, 4, '2022-01-15 21:59:07', NULL, '1', '2022-01-11 13:20:41', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (94, 1, '请假', '613e8904-729e-11ec-abc7-a2380e71991a', 'leave:9:59689ba0-7284-11ec-965c-a2380e71991a', '2', 2, 3, '2022-01-15 21:58:22', NULL, '1', '2022-01-11 13:21:50', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (98, 103, '请假', 'fcdfddae-7483-11ec-8645-a2380e71991a', 'leave:11:5ddc9eb0-7483-11ec-b390-a2380e71991a', '2', 2, 4, '2022-01-13 23:20:27', NULL, '103', '2022-01-13 23:17:57', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (99, 103, '请假', '265fa43c-7484-11ec-8645-a2380e71991a', 'leave:11:5ddc9eb0-7483-11ec-b390-a2380e71991a', '2', 2, 4, '2022-01-13 23:20:22', NULL, '103', '2022-01-13 23:19:07', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (103, 103, '测试流程', '078f63f1-75b9-11ec-b607-a2380e71991a', 'test:1:913d7930-75b8-11ec-b607-a2380e71991a', '1', 2, 4, '2022-01-15 12:10:18', NULL, '103', '2022-01-15 12:10:10', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (117, 103, '测试流程', 'a4f215b0-75bd-11ec-bf54-a2380e71991a', 'test:3:8e4df3a5-75bb-11ec-a317-a2380e71991a', '1', 2, 4, '2022-01-15 21:58:18', NULL, '103', '2022-01-15 12:43:12', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (118, 103, '测试流程', 'c2c10164-75bd-11ec-bf54-a2380e71991a', 'test:4:b86e7d03-75bd-11ec-bf54-a2380e71991a', '1', 2, 4, '2022-01-15 21:58:15', NULL, '103', '2022-01-15 12:44:02', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (119, 103, '测试流程', 'dce61ef6-75bd-11ec-bf54-a2380e71991a', 'test:5:d64bc095-75bd-11ec-bf54-a2380e71991a', '1', 2, 4, '2022-01-15 21:58:12', NULL, '103', '2022-01-15 12:44:46', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (120, 103, '测试流程', 'f19a6a0a-75bd-11ec-bf54-a2380e71991a', 'test:6:ebac9f59-75bd-11ec-bf54-a2380e71991a', '1', 2, 4, '2022-01-15 21:58:10', NULL, '103', '2022-01-15 12:45:20', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (121, 103, '测试流程', '027ff9dd-75be-11ec-bf54-a2380e71991a', 'test:7:fc60e5fc-75bd-11ec-bf54-a2380e71991a', '1', 2, 4, '2022-01-15 21:58:07', NULL, '103', '2022-01-15 12:45:49', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (123, 103, '滔博', '10008257-7607-11ec-8cd2-a2380e71991a', 'test:10:f3aa05e6-7606-11ec-8cd2-a2380e71991a', '1', 2, 4, '2022-01-15 21:58:05', NULL, '103', '2022-01-15 21:28:45', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (124, 1, '测试多审批人', 'caf40483-760b-11ec-9367-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', 2, 3, '2022-01-15 22:28:57', NULL, '1', '2022-01-15 22:02:36', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (125, 1, '测试多审批人', '9091b32c-760e-11ec-a415-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', 2, 3, '2022-01-15 22:28:51', NULL, '1', '2022-01-15 22:22:27', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (128, 1, '测试多审批人', '6325c778-760f-11ec-ad1b-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', 2, 3, '2022-01-15 22:28:56', NULL, '1', '2022-01-15 22:28:20', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (129, 1, '测试多审批人', '873817e8-760f-11ec-ad1b-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', 2, 3, '2022-01-15 22:31:04', NULL, '1', '2022-01-15 22:29:21', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (130, 1, '测试多审批人', '0c843d9b-7610-11ec-9266-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', 2, 3, '2022-01-15 23:01:43', NULL, '1', '2022-01-15 22:33:04', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (131, 1, '测试多审批人', '5822c2eb-7610-11ec-9266-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', 2, 3, '2022-01-15 23:01:42', NULL, '1', '2022-01-15 22:35:11', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (132, 1, '测试多审批人', '59b537cc-7612-11ec-8063-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', 2, 3, '2022-01-15 23:01:41', NULL, '1', '2022-01-15 22:49:33', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (133, 1, '测试多审批人', '1a0bb164-7614-11ec-87b4-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', 2, 4, '2022-01-15 23:54:05', NULL, '1', '2022-01-15 23:02:05', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (134, 1, '测试多审批人', '46a21254-7615-11ec-87b4-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', 2, 4, '2022-01-15 23:54:02', NULL, '1', '2022-01-15 23:10:29', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (135, 1, '测试多审批人', '57ce3983-761b-11ec-b05a-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', 2, 4, '2022-01-15 23:54:00', NULL, '1', '2022-01-15 23:53:55', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (136, 1, '滔博', '8a2ee6c9-7630-11ec-a535-a2380e71991a', 'test:17:04259e68-762e-11ec-9ab0-a2380e71991a', '1', 2, 4, '2022-01-16 22:58:25', '{\"field121\":\"AA\",\"field122\":[1]}', '1', '2022-01-16 02:25:39', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (137, 1, '滔博', 'e05c44cd-767f-11ec-bc82-a2380e71991a', 'test:18:1bb307b1-7633-11ec-957a-a2380e71991a', '1', 2, 4, '2022-01-16 22:58:23', '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-16 11:53:34', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (138, 1, '自己审批', '1d249260-7680-11ec-bc82-a2380e71991a', 'self:1:17c042ff-7680-11ec-bc82-a2380e71991a', '1', 2, 2, '2022-01-16 22:58:04', '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-16 11:55:16', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (139, 1, '测试多审批人', '70ca71a9-768b-11ec-afcd-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', 2, 4, '2022-01-16 22:58:20', '{\"field121\":\"EEE\",\"field122\":[1]}', '1', '2022-01-16 13:16:21', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (140, 1, '测试多审批人', 'cdbd4e1e-768b-11ec-afcd-a2380e71991a', 'test_001:2:c680200d-768b-11ec-afcd-a2380e71991a', '1', 2, 2, '2022-01-16 13:21:42', '{\"field121\":\"eee\",\"field122\":[1]}', '1', '2022-01-16 13:18:57', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (141, 1, '测试多审批人', '537cceb3-768c-11ec-afcd-a2380e71991a', 'test_001:3:4e8e99b2-768c-11ec-afcd-a2380e71991a', '1', 2, 2, '2022-01-16 22:58:03', '{\"field121\":\"EEE\",\"field122\":[1]}', '1', '2022-01-16 13:22:41', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (142, 1, '测试多审批人', '4b4c16ac-76d2-11ec-9423-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 2, 2, '2022-01-16 22:57:44', '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-16 21:43:32', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (143, 1, '测试多审批人', 'db3f3c84-76dc-11ec-95f2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 2, 2, '2022-01-16 23:12:55', '{\"field121\":\"AEEE\",\"field122\":[1,2]}', '1', '2022-01-16 22:59:08', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (144, 1, '测试多审批人', 'cfe3c1d0-76de-11ec-95f2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 2, 2, '2022-01-17 00:51:07', '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-16 23:13:08', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (145, 1, '测试多审批人', '1642e0b9-76e6-11ec-95f2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 2, 2, '2022-01-17 00:35:32', '{\"field121\":\"EEE\",\"field122\":[1]}', '1', '2022-01-17 00:05:13', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (146, 1, '测试多审批人', '8bb14c95-76ea-11ec-95f2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 2, 3, '2022-01-17 00:37:21', '{\"field121\":\"EEE\",\"field122\":[1]}', '1', '2022-01-17 00:37:08', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (147, 1, '测试多审批人', '29288241-76ed-11ec-95f2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 2, 2, '2022-01-17 12:49:45', '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-17 00:55:51', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (148, 1, '测试多审批人', 'ce5e126f-77aa-11ec-9be9-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 2, 2, '2022-01-17 23:51:26', '{\"field121\":\"AAAA\",\"field122\":[1]}', '1', '2022-01-17 23:33:23', '103', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (149, 1, '测试多审批人', 'd1e75899-77b8-11ec-bc1a-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 2, 2, '2022-01-19 08:45:38', '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-18 01:13:42', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (150, 1, '滔博', 'f3191202-77f2-11ec-bc1a-a2380e71991a', 'test:20:3f1c2257-76b1-11ec-9c66-a2380e71991a', '1', 1, 1, NULL, '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-18 08:09:49', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (151, 1, '滔博', '342453f2-78c1-11ec-9b4d-a2380e71991a', 'test:20:3f1c2257-76b1-11ec-9c66-a2380e71991a', '1', 1, 1, NULL, '{\"field121\":\"EEE\",\"field122\":[1]}', '1', '2022-01-19 08:46:14', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (152, 1, '测试多审批人', 'b2b9b949-78c1-11ec-9b4d-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 2, 3, '2022-01-19 09:13:19', '{\"field121\":\"EEE\",\"field122\":[1]}', '1', '2022-01-19 08:49:46', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (153, 1, '测试多审批人', '0ef30262-78c5-11ec-9b4d-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 2, 2, '2022-01-19 09:14:22', '{\"field121\":\"AAAA\",\"field122\":[2]}', '1', '2022-01-19 09:13:50', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (154, 1, '测试多审批人', '7d80f10e-78c7-11ec-9b4d-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 2, 2, '2022-01-19 09:31:27', '{\"field121\":\"aaaa\",\"field122\":[1]}', '1', '2022-01-19 09:31:14', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (155, 1, '测试多审批人', '079d97ba-78cd-11ec-a731-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 2, 3, '2022-01-19 10:11:03', '{\"field121\":\"AAAA\",\"field122\":[1]}', '1', '2022-01-19 10:10:53', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (156, 1, 'eeee', '92904a2d-79af-11ec-abb0-a2380e71991a', 'eee:1:89b300ac-79af-11ec-abb0-a2380e71991a', '1', 2, 2, '2022-01-20 13:12:51', '{\"field121\":\"eeee\",\"field122\":[1]}', '1', '2022-01-20 13:12:33', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (157, 1, '滔博', 'cabc84b1-79b0-11ec-b2b8-a2380e71991a', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', '1', 2, 2, '2022-01-20 13:21:30', '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-20 13:21:16', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (158, 1, '自己审批', 'b7f3b79b-7a14-11ec-8762-a2380e71991a', 'self:2:3a5a065e-76b1-11ec-9c66-a2380e71991a', '1', 2, 3, '2022-01-21 01:16:42', '{\"field121\":\"aaa\",\"field122\":[1]}', '1', '2022-01-21 01:16:35', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (159, 1, '滔博', 'd9ee295b-7ac6-11ec-a040-a2380e71991a', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', '1', 1, 1, NULL, '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-21 22:31:42', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (160, 1, '测试多审批人', 'ed4a3769-7ac6-11ec-a040-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 1, 1, NULL, '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-21 22:32:14', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (161, 1, '滔博', '54aa251f-7ac7-11ec-a040-a2380e71991a', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', '1', 1, 1, NULL, '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-21 22:35:08', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (162, 1, '滔博', 'bd7dc717-7ac7-11ec-9948-a2380e71991a', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', '1', 1, 1, NULL, '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-21 22:38:04', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (163, 1, '测试多审批人', '37d7a55c-7ac8-11ec-a9e2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 1, 1, NULL, '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-21 22:41:29', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (164, 1, '测试多审批人', '580a98c2-7ac8-11ec-a9e2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 1, 1, NULL, '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-21 22:42:23', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (165, 1, '测试多审批人', '8f021988-7ac8-11ec-a9e2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 1, 1, NULL, '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-21 22:43:55', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (166, 1, '测试多审批人', '23615875-7ac9-11ec-aa06-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 2, 2, '2022-01-22 00:20:51', '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-21 22:48:04', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (167, 1, '自己审批', '34f51703-7ad6-11ec-abe9-a2380e71991a', 'self:2:3a5a065e-76b1-11ec-9c66-a2380e71991a', '1', 2, 2, '2022-01-22 00:22:02', '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-22 00:21:37', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (168, 1, '自己审批', 'a413bed4-7ad6-11ec-abe9-a2380e71991a', 'self:2:3a5a065e-76b1-11ec-9c66-a2380e71991a', '1', 2, 4, '2022-01-22 00:24:48', '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-22 00:24:44', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (169, 1, '滔博', 'c00d2732-7ad6-11ec-abe9-a2380e71991a', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', '1', 2, 3, '2022-01-22 00:30:01', '{\"field121\":\"AA\",\"field122\":[1]}', '1', '2022-01-22 00:25:31', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (170, 1, 'OA 请假', 'a6a007dd-7b6d-11ec-b781-acde48001122', 'oa_leave:2:3c1f0ef1-76b1-11ec-9c66-a2380e71991a', '2', 1, 1, NULL, '{\"day\":2}', '1', '2022-01-22 18:25:42', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (171, 1, 'OA 请假', '28a5d744-7b75-11ec-a3c8-acde48001122', 'oa_leave:3:1fad3d93-7b75-11ec-a3c8-acde48001122', '2', 2, 2, '2022-01-22 20:31:52', '{\"day\":2}', '1', '2022-01-22 19:19:26', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (172, 1, 'OA 请假', '75d43fd1-7b7f-11ec-a3c8-acde48001122', 'oa_leave:3:1fad3d93-7b75-11ec-a3c8-acde48001122', '2', 1, 1, NULL, '{\"day\":4}', '1', '2022-01-22 20:33:11', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (173, 1, 'OA 请假', '9ac0eab4-7b7f-11ec-a3c8-acde48001122', 'oa_leave:4:991f2193-7b7f-11ec-a3c8-acde48001122', '2', 2, 2, '2022-01-22 20:34:33', '{\"day\":4}', '1', '2022-01-22 20:34:13', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (174, 1, 'OA 请假', '7250cfdf-7b88-11ec-8ef0-acde48001122', 'oa_leave:4:991f2193-7b7f-11ec-a3c8-acde48001122', '2', 1, 1, NULL, '{\"day\":16}', '1', '2022-01-22 21:37:31', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (175, 1, 'OA 请假', '0699ab3c-7b8a-11ec-8ef0-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 1, 1, NULL, '{\"day\":21}', '1', '2022-01-22 21:48:49', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (176, 1, 'OA 请假', 'ea957056-7b8d-11ec-b8e2-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 2, 2, '2022-01-22 22:17:00', '{\"day\":28}', '1', '2022-01-22 22:16:40', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (177, 1, 'OA 请假', '7e093de8-7b8e-11ec-b8e2-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 2, 3, '2022-01-22 22:23:25', '{\"day\":12}', '1', '2022-01-22 22:20:47', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (178, 1, 'OA 请假', '5354233a-7b91-11ec-8473-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 2, 3, '2022-01-22 22:41:09', '{\"day\":18}', '1', '2022-01-22 22:41:04', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (179, 1, 'OA 请假', '68ce0834-7b91-11ec-8473-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 2, 3, '2022-01-22 22:43:14', '{\"day\":31}', '1', '2022-01-22 22:41:40', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (180, 1, 'OA 请假', 'bb23c2b4-7b91-11ec-8473-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 2, 3, NULL, '{\"day\":18}', '1', '2022-01-22 22:43:58', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (181, 1, '自己审批', '49d3df58-7b98-11ec-b5ee-acde48001122', 'self:2:3a5a065e-76b1-11ec-9c66-a2380e71991a', '1', 2, 4, '2022-01-22 23:39:17', '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-22 23:30:55', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (182, 1, 'OA 请假', '8884f3e7-7b99-11ec-ba5c-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 2, 3, NULL, '{\"day\":32}', '1', '2022-01-22 23:39:49', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (183, 1, 'OA 请假', 'a59a5391-7b99-11ec-ba5c-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 2, 2, '2022-01-22 23:40:52', '{\"day\":1}', '1', '2022-01-22 23:40:38', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (184, 1, 'OA 请假', '03c6c157-7b9a-11ec-a290-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 2, 3, NULL, '{\"day\":9}', '1', '2022-01-22 23:43:16', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (185, 1, 'OA 请假', '331bc281-7b9a-11ec-a290-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 2, 2, '2022-01-22 23:44:42', '{\"day\":0}', '1', '2022-01-22 23:44:35', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (186, 1, 'OA 请假', '52ffd28e-7b9a-11ec-a290-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 2, 2, '2022-01-22 23:45:37', '{\"day\":0}', '1', '2022-01-22 23:45:29', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (187, 1, 'OA 请假', '67c2eaab-7b9a-11ec-a290-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 2, 2, '2022-01-22 23:46:09', '{\"day\":0}', '1', '2022-01-22 23:46:04', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (188, 1, 'OA 请假', '819442e8-7b9a-11ec-a290-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 2, 2, '2022-01-22 23:46:53', '{\"day\":0}', '1', '2022-01-22 23:46:47', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (189, 1, 'OA 请假', 'ec45f38f-7b9a-11ec-b03b-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 2, 2, '2022-01-22 23:49:51', '{\"day\":1}', '1', '2022-01-22 23:49:46', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (190, 1, 'OA 请假', '2152467e-7b9b-11ec-9a1b-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 2, 2, '2022-01-22 23:51:20', '{\"day\":0}', '1', '2022-01-22 23:51:15', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (191, 1, 'OA 请假', '7317cec6-7b9b-11ec-b5b7-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 1, 1, NULL, '{\"day\":23}', '1', '2022-01-22 23:53:32', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (192, 1, 'OA 请假', '7470a810-7b9b-11ec-b5b7-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 2, 4, '2022-01-23 00:08:41', '{\"day\":23}', '1', '2022-01-22 23:53:35', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (193, 1, 'OA 请假', '3ad174fb-7b9d-11ec-8404-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '2', 2, 4, '2022-01-23 00:07:03', '{\"day\":23}', '1', '2022-01-23 00:06:17', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (194, 1, 'eeee', 'b243fa82-7c06-11ec-9110-acde48001122', 'eee:17:f3aad03b-7ae5-11ec-a69c-a2380e71991a', '1', 1, 1, NULL, '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-23 12:41:14', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (195, 1, '测试多审批人', 'ecddb286-7c07-11ec-a41d-acde48001122', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', 2, 4, '2022-01-23 12:59:40', '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-01-23 12:50:02', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (197, 1, '滔博', '4f676a08-7c09-11ec-b8a1-acde48001122', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', '1', 1, 1, NULL, '{\"field121\":\"aaa\",\"field122\":[1]}', '1', '2022-01-23 12:59:57', '1', '2022-02-19 17:29:20', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (198, 1, 'flowable测试', 'c964c377-97ed-11ec-a2b9-862bc1a4a054', 'flowable_01:1:c0bb5b36-97ed-11ec-a2b9-862bc1a4a054', '1', 2, 2, '2022-02-28 00:53:35', '{\"field121\":\"AAA\",\"field122\":[1]}', '1', '2022-02-28 00:53:28', '1', '2022-02-28 00:53:35', b'0', 1); -INSERT INTO `bpm_process_instance_ext` (`id`, `start_user_id`, `name`, `process_instance_id`, `process_definition_id`, `category`, `status`, `result`, `end_time`, `form_variables`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (199, 1, '通用表单', '6be9f198-a787-11ec-96d6-8e557beca7ad', 'common-form:1:7fdfc407-a786-11ec-96d6-8e557beca7ad', '1', 2, 2, '2022-03-19 22:16:00', '{\"field101\":\"2022-03-16\",\"field102\":\"2022-03-18\",\"field103\":1,\"field105\":\"生病了\"}', '1', '2022-03-19 21:21:01', '114', '2022-03-19 22:16:00', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for bpm_task_assign_rule -- ---------------------------- DROP TABLE IF EXISTS `bpm_task_assign_rule`; -CREATE TABLE `bpm_task_assign_rule` ( +CREATE TABLE `bpm_task_assign_rule` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `model_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '流程模型的编号', `process_definition_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '流程定义的编号', `task_definition_key` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '流程任务定义的 key', `type` tinyint NOT NULL COMMENT '规则类型', `options` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '规则值,JSON 数组', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=187 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Bpm 任务规则表'; +) ENGINE = InnoDB AUTO_INCREMENT = 187 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = 'Bpm 任务规则表'; -- ---------------------------- -- Records of bpm_task_assign_rule -- ---------------------------- BEGIN; -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (40, '0c1ee1f8-6c95-11ec-88b1-cacd34981f8e', 'leave:9:59689ba0-7284-11ec-965c-a2380e71991a', 'task1', 30, '[\"1\", \"103\"]', '', '2022-01-11 02:02:17', '', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (41, '0c1ee1f8-6c95-11ec-88b1-cacd34981f8e', '', 'task2', 50, '[1]', '103', '2022-01-13 13:07:05', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (42, '0c1ee1f8-6c95-11ec-88b1-cacd34981f8e', '', 'task1', 10, '[1,2]', '103', '2022-01-13 20:41:28', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (43, '0c1ee1f8-6c95-11ec-88b1-cacd34981f8e', 'leave:11:5ddc9eb0-7483-11ec-b390-a2380e71991a', 'task1', 10, '[1,2]', '103', '2022-01-13 23:13:31', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (44, '0c1ee1f8-6c95-11ec-88b1-cacd34981f8e', 'leave:11:5ddc9eb0-7483-11ec-b390-a2380e71991a', 'task2', 10, '[1]', '103', '2022-01-13 23:13:31', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (45, '1f98df4c-75b7-11ec-b607-a2380e71991a', '', 'task', 50, '[1]', '103', '2022-01-15 11:57:38', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (46, '1f98df4c-75b7-11ec-b607-a2380e71991a', 'test:1:913d7930-75b8-11ec-b607-a2380e71991a', 'task', 10, '[1]', '103', '2022-01-15 12:06:51', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (47, '1f98df4c-75b7-11ec-b607-a2380e71991a', 'test:2:0f0e3986-75ba-11ec-a317-a2380e71991a', 'task', 20, '[109]', '103', '2022-01-15 12:17:32', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (48, '1f98df4c-75b7-11ec-b607-a2380e71991a', 'test:3:8e4df3a5-75bb-11ec-a317-a2380e71991a', 'task', 20, '[103,109]', '103', '2022-01-15 12:28:15', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (49, '1f98df4c-75b7-11ec-b607-a2380e71991a', 'test:4:b86e7d03-75bd-11ec-bf54-a2380e71991a', 'task', 21, '[103,109]', '103', '2022-01-15 12:43:45', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (50, '1f98df4c-75b7-11ec-b607-a2380e71991a', 'test:5:d64bc095-75bd-11ec-bf54-a2380e71991a', 'task', 22, '[1,2,3,4]', '103', '2022-01-15 12:44:35', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (51, '1f98df4c-75b7-11ec-b607-a2380e71991a', 'test:6:ebac9f59-75bd-11ec-bf54-a2380e71991a', 'task', 30, '[1,103]', '103', '2022-01-15 12:45:11', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (52, '1f98df4c-75b7-11ec-b607-a2380e71991a', 'test:7:fc60e5fc-75bd-11ec-bf54-a2380e71991a', 'task', 40, '[110]', '103', '2022-01-15 12:45:39', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (53, '1f98df4c-75b7-11ec-b607-a2380e71991a', 'test:8:12e0a13e-75be-11ec-bf54-a2380e71991a', 'task', 50, '[1]', '103', '2022-01-15 12:46:16', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (54, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', '', 'Activity_05kt1hf', 50, '[10]', '103', '2022-01-15 21:27:10', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (55, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', '', 'Activity_10tl4d8', 50, '[10]', '103', '2022-01-15 21:27:18', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (56, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', '', 'Activity_00wash3', 50, '[10]', '103', '2022-01-15 21:27:26', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (57, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:9:e2658d43-7606-11ec-8cd2-a2380e71991a', 'Activity_05kt1hf', 50, '[10]', '103', '2022-01-15 21:27:28', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (58, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:9:e2658d43-7606-11ec-8cd2-a2380e71991a', 'Activity_10tl4d8', 50, '[20]', '103', '2022-01-15 21:27:28', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (59, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:9:e2658d43-7606-11ec-8cd2-a2380e71991a', 'Activity_00wash3', 50, '[21]', '103', '2022-01-15 21:27:28', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (60, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:10:f3aa05e6-7606-11ec-8cd2-a2380e71991a', 'Activity_05kt1hf', 50, '[10]', '103', '2022-01-15 21:27:57', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (61, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:10:f3aa05e6-7606-11ec-8cd2-a2380e71991a', 'Activity_10tl4d8', 50, '[20]', '103', '2022-01-15 21:27:57', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (62, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:10:f3aa05e6-7606-11ec-8cd2-a2380e71991a', 'Activity_00wash3', 50, '[21]', '103', '2022-01-15 21:27:57', '103', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (63, 'a3d5105e-760b-11ec-9367-a2380e71991a', '', 'Activity_1avi0yr', 30, '[1,103]', '1', '2022-01-15 22:02:24', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (64, 'a3d5105e-760b-11ec-9367-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', 'Activity_1avi0yr', 30, '[1,103]', '1', '2022-01-15 22:02:27', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (65, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:11:536ecba7-761a-11ec-a5c5-a2380e71991a', 'Activity_05kt1hf', 50, '[10]', '1', '2022-01-15 23:46:38', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (66, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:11:536ecba7-761a-11ec-a5c5-a2380e71991a', 'Activity_10tl4d8', 50, '[20]', '1', '2022-01-15 23:46:38', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (67, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:11:536ecba7-761a-11ec-a5c5-a2380e71991a', 'Activity_00wash3', 50, '[21]', '1', '2022-01-15 23:46:38', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (68, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:12:5c91d0ba-761a-11ec-a5c5-a2380e71991a', 'Activity_05kt1hf', 50, '[10]', '1', '2022-01-15 23:46:54', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (69, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:12:5c91d0ba-761a-11ec-a5c5-a2380e71991a', 'Activity_10tl4d8', 50, '[20]', '1', '2022-01-15 23:46:54', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (70, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:12:5c91d0ba-761a-11ec-a5c5-a2380e71991a', 'Activity_00wash3', 50, '[21]', '1', '2022-01-15 23:46:54', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (71, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:13:651e140d-761a-11ec-a5c5-a2380e71991a', 'Activity_05kt1hf', 50, '[10]', '1', '2022-01-15 23:47:08', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (72, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:13:651e140d-761a-11ec-a5c5-a2380e71991a', 'Activity_10tl4d8', 50, '[20]', '1', '2022-01-15 23:47:08', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (73, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:13:651e140d-761a-11ec-a5c5-a2380e71991a', 'Activity_00wash3', 50, '[21]', '1', '2022-01-15 23:47:08', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (74, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:14:c1f049a4-761a-11ec-ba93-a2380e71991a', 'Activity_05kt1hf', 50, '[10]', '1', '2022-01-15 23:49:44', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (75, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:14:c1f049a4-761a-11ec-ba93-a2380e71991a', 'Activity_10tl4d8', 50, '[20]', '1', '2022-01-15 23:49:44', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (76, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:14:c1f049a4-761a-11ec-ba93-a2380e71991a', 'Activity_00wash3', 50, '[21]', '1', '2022-01-15 23:49:44', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (77, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:15:5304ca92-761b-11ec-b05a-a2380e71991a', 'Activity_05kt1hf', 50, '[10]', '1', '2022-01-15 23:53:47', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (78, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:15:5304ca92-761b-11ec-b05a-a2380e71991a', 'Activity_10tl4d8', 50, '[20]', '1', '2022-01-15 23:53:47', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (79, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:15:5304ca92-761b-11ec-b05a-a2380e71991a', 'Activity_00wash3', 50, '[21]', '1', '2022-01-15 23:53:47', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (80, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', '', 'task-01', 50, '[10]', '1', '2022-01-16 01:40:26', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (81, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', '', 'task-22', 50, '[20]', '1', '2022-01-16 01:40:32', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (82, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', '', 'task-23', 50, '[21]', '1', '2022-01-16 01:40:39', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (83, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', '', 'task-21', 30, '[1]', '1', '2022-01-16 01:40:48', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (84, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'oa_leave:1:482ec033-762a-11ec-8477-a2380e71991a', 'task-01', 50, '[10]', '1', '2022-01-16 01:40:51', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (85, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'oa_leave:1:482ec033-762a-11ec-8477-a2380e71991a', 'task-22', 50, '[20]', '1', '2022-01-16 01:40:51', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (86, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'oa_leave:1:482ec033-762a-11ec-8477-a2380e71991a', 'task-23', 50, '[21]', '1', '2022-01-16 01:40:51', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (87, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'oa_leave:1:482ec033-762a-11ec-8477-a2380e71991a', 'task-21', 20, '[100]', '1', '2022-01-16 01:40:51', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (88, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:16:d83ee859-762d-11ec-9125-a2380e71991a', 'Activity_05kt1hf', 50, '[10]', '1', '2022-01-16 02:06:22', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (89, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:16:d83ee859-762d-11ec-9125-a2380e71991a', 'Activity_10tl4d8', 50, '[20]', '1', '2022-01-16 02:06:22', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (90, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:16:d83ee859-762d-11ec-9125-a2380e71991a', 'Activity_00wash3', 50, '[21]', '1', '2022-01-16 02:06:22', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (91, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:17:04259e68-762e-11ec-9ab0-a2380e71991a', 'Activity_05kt1hf', 50, '[10]', '1', '2022-01-16 02:07:35', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (92, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:17:04259e68-762e-11ec-9ab0-a2380e71991a', 'Activity_10tl4d8', 50, '[20]', '1', '2022-01-16 02:07:35', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (93, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:17:04259e68-762e-11ec-9ab0-a2380e71991a', 'Activity_00wash3', 50, '[21]', '1', '2022-01-16 02:07:35', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (94, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:18:1bb307b1-7633-11ec-957a-a2380e71991a', 'Activity_05kt1hf', 50, '[10]', '1', '2022-01-16 02:44:02', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (95, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:18:1bb307b1-7633-11ec-957a-a2380e71991a', 'Activity_10tl4d8', 50, '[20]', '1', '2022-01-16 02:44:02', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (96, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:18:1bb307b1-7633-11ec-957a-a2380e71991a', 'Activity_00wash3', 50, '[21]', '1', '2022-01-16 02:44:02', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (97, '024b400b-7680-11ec-bc82-a2380e71991a', '', 'Activity_04asu4q', 50, '[10]', '1', '2022-01-16 11:55:04', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (98, '024b400b-7680-11ec-bc82-a2380e71991a', 'self:1:17c042ff-7680-11ec-bc82-a2380e71991a', 'Activity_04asu4q', 50, '[10]', '1', '2022-01-16 11:55:07', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (99, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:19:a401b61a-768b-11ec-afcd-a2380e71991a', 'Activity_05kt1hf', 50, '[10]', '1', '2022-01-16 13:17:47', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (100, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:19:a401b61a-768b-11ec-afcd-a2380e71991a', 'Activity_10tl4d8', 50, '[20]', '1', '2022-01-16 13:17:47', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (101, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:19:a401b61a-768b-11ec-afcd-a2380e71991a', 'Activity_00wash3', 50, '[21]', '1', '2022-01-16 13:17:47', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (102, 'a3d5105e-760b-11ec-9367-a2380e71991a', '', 'Activity_0wdgatv', 50, '[10]', '1', '2022-01-16 13:18:29', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (103, 'a3d5105e-760b-11ec-9367-a2380e71991a', '', 'Activity_1y4q91p', 30, '[1]', '1', '2022-01-16 13:18:41', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (104, 'a3d5105e-760b-11ec-9367-a2380e71991a', 'test_001:2:c680200d-768b-11ec-afcd-a2380e71991a', 'Activity_0wdgatv', 50, '[10]', '1', '2022-01-16 13:18:45', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (105, 'a3d5105e-760b-11ec-9367-a2380e71991a', 'test_001:2:c680200d-768b-11ec-afcd-a2380e71991a', 'Activity_1y4q91p', 30, '[1]', '1', '2022-01-16 13:18:45', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (106, 'a3d5105e-760b-11ec-9367-a2380e71991a', 'test_001:3:4e8e99b2-768c-11ec-afcd-a2380e71991a', 'Activity_0wdgatv', 50, '[10]', '1', '2022-01-16 13:22:33', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (107, 'a3d5105e-760b-11ec-9367-a2380e71991a', 'test_001:3:4e8e99b2-768c-11ec-afcd-a2380e71991a', 'Activity_1y4q91p', 30, '[1]', '1', '2022-01-16 13:22:33', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (108, '024b400b-7680-11ec-bc82-a2380e71991a', 'self:2:3a5a065e-76b1-11ec-9c66-a2380e71991a', 'Activity_04asu4q', 50, '[10]', '1', '2022-01-16 17:46:50', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (109, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'oa_leave:2:3c1f0ef1-76b1-11ec-9c66-a2380e71991a', 'task-01', 50, '[10]', '1', '2022-01-16 17:46:53', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (110, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'oa_leave:2:3c1f0ef1-76b1-11ec-9c66-a2380e71991a', 'task-22', 50, '[20]', '1', '2022-01-16 17:46:53', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (111, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'oa_leave:2:3c1f0ef1-76b1-11ec-9c66-a2380e71991a', 'task-23', 50, '[21]', '1', '2022-01-16 17:46:53', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (112, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'oa_leave:2:3c1f0ef1-76b1-11ec-9c66-a2380e71991a', 'task-21', 20, '[100]', '1', '2022-01-16 17:46:53', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (113, 'a3d5105e-760b-11ec-9367-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', 'Activity_0wdgatv', 50, '[10]', '1', '2022-01-16 17:46:56', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (114, 'a3d5105e-760b-11ec-9367-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', 'Activity_1y4q91p', 30, '[1]', '1', '2022-01-16 17:46:56', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (115, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:20:3f1c2257-76b1-11ec-9c66-a2380e71991a', 'Activity_05kt1hf', 50, '[10]', '1', '2022-01-16 17:46:58', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (116, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:20:3f1c2257-76b1-11ec-9c66-a2380e71991a', 'Activity_10tl4d8', 50, '[20]', '1', '2022-01-16 17:46:58', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (117, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:20:3f1c2257-76b1-11ec-9c66-a2380e71991a', 'Activity_00wash3', 50, '[21]', '1', '2022-01-16 17:46:58', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (118, '02b756a8-79af-11ec-abb0-a2380e71991a', '', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-20 13:09:15', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (119, '02b756a8-79af-11ec-abb0-a2380e71991a', '', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-20 13:12:08', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (120, '02b756a8-79af-11ec-abb0-a2380e71991a', '', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-20 13:12:15', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (121, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:1:89b300ac-79af-11ec-abb0-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-20 13:12:18', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (122, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:1:89b300ac-79af-11ec-abb0-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-20 13:12:18', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (123, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:1:89b300ac-79af-11ec-abb0-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-20 13:12:18', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (124, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', 'Activity_05kt1hf', 50, '[10]', '1', '2022-01-20 13:21:03', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (125, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', 'Activity_10tl4d8', 50, '[10]', '1', '2022-01-20 13:21:03', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (126, 'a4ef4c7f-7606-11ec-8cd2-a2380e71991a', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', 'Activity_00wash3', 50, '[10]', '1', '2022-01-20 13:21:03', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (127, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:2:8a7b5672-7ade-11ec-a777-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-22 01:21:17', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (128, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:2:8a7b5672-7ade-11ec-a777-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-22 01:21:17', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (129, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:2:8a7b5672-7ade-11ec-a777-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-22 01:21:17', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (130, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:3:8db9dfa5-7ade-11ec-a777-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-22 01:21:22', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (131, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:3:8db9dfa5-7ade-11ec-a777-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-22 01:21:22', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (132, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:3:8db9dfa5-7ade-11ec-a777-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-22 01:21:22', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (133, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:4:a63e1e68-7ade-11ec-a777-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-22 01:22:03', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (134, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:4:a63e1e68-7ade-11ec-a777-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-22 01:22:03', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (135, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:4:a63e1e68-7ade-11ec-a777-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-22 01:22:03', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (136, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:5:33f2d275-7adf-11ec-93fe-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-22 01:26:01', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (137, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:5:33f2d275-7adf-11ec-93fe-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-22 01:26:01', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (138, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:5:33f2d275-7adf-11ec-93fe-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-22 01:26:01', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (139, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:6:365e0618-7adf-11ec-93fe-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-22 01:26:05', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (140, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:6:365e0618-7adf-11ec-93fe-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-22 01:26:05', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (141, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:6:365e0618-7adf-11ec-93fe-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-22 01:26:05', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (142, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:7:3c5b3a1b-7adf-11ec-93fe-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-22 01:26:15', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (143, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:7:3c5b3a1b-7adf-11ec-93fe-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-22 01:26:15', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (144, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:7:3c5b3a1b-7adf-11ec-93fe-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-22 01:26:15', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (145, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:8:3da2872e-7adf-11ec-93fe-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-22 01:26:17', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (146, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:8:3da2872e-7adf-11ec-93fe-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-22 01:26:17', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (147, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:8:3da2872e-7adf-11ec-93fe-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-22 01:26:17', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (148, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:9:3f0f84b1-7adf-11ec-93fe-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-22 01:26:20', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (149, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:9:3f0f84b1-7adf-11ec-93fe-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-22 01:26:20', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (150, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:9:3f0f84b1-7adf-11ec-93fe-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-22 01:26:20', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (151, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:10:479efc54-7adf-11ec-93fe-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-22 01:26:34', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (152, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:10:479efc54-7adf-11ec-93fe-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-22 01:26:34', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (153, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:10:479efc54-7adf-11ec-93fe-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-22 01:26:34', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (154, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:11:38c6faaa-7ae0-11ec-9d9d-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-22 01:33:19', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (155, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:11:38c6faaa-7ae0-11ec-9d9d-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-22 01:33:19', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (156, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:11:38c6faaa-7ae0-11ec-9d9d-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-22 01:33:19', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (157, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:12:c9c8ddcd-7ae0-11ec-9d9d-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-22 01:37:22', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (158, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:12:c9c8ddcd-7ae0-11ec-9d9d-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-22 01:37:22', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (159, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:12:c9c8ddcd-7ae0-11ec-9d9d-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-22 01:37:22', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (160, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:13:f1aca890-7ae0-11ec-9d9d-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-22 01:38:29', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (161, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:13:f1aca890-7ae0-11ec-9d9d-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-22 01:38:29', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (162, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:13:f1aca890-7ae0-11ec-9d9d-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-22 01:38:29', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (163, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:14:27a560fb-7ae2-11ec-9d9a-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-22 01:47:09', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (164, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:14:27a560fb-7ae2-11ec-9d9a-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-22 01:47:09', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (165, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:14:27a560fb-7ae2-11ec-9d9a-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-22 01:47:09', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (166, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:15:c1906d85-7ae5-11ec-a69c-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-22 02:12:56', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (167, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:15:c1906d85-7ae5-11ec-a69c-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-22 02:12:56', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (168, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:15:c1906d85-7ae5-11ec-a69c-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-22 02:12:56', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (169, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:16:c325da98-7ae5-11ec-a69c-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-22 02:12:58', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (170, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:16:c325da98-7ae5-11ec-a69c-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-22 02:12:58', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (171, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:16:c325da98-7ae5-11ec-a69c-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-22 02:12:58', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (172, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:17:f3aad03b-7ae5-11ec-a69c-a2380e71991a', 'Activity_1gndzgr', 50, '[10]', '1', '2022-01-22 02:14:20', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (173, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:17:f3aad03b-7ae5-11ec-a69c-a2380e71991a', 'Activity_078i5dd', 50, '[10]', '1', '2022-01-22 02:14:20', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (174, '02b756a8-79af-11ec-abb0-a2380e71991a', 'eee:17:f3aad03b-7ae5-11ec-a69c-a2380e71991a', 'Activity_0dlqjcv', 50, '[10]', '1', '2022-01-22 02:14:20', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (175, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'oa_leave:3:1fad3d93-7b75-11ec-a3c8-acde48001122', 'task-01', 50, '[10]', '1', '2022-01-22 19:19:12', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (176, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'oa_leave:3:1fad3d93-7b75-11ec-a3c8-acde48001122', 'task-21', 20, '[100]', '1', '2022-01-22 19:19:12', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (177, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'oa_leave:4:991f2193-7b7f-11ec-a3c8-acde48001122', 'task-01', 50, '[10]', '1', '2022-01-22 20:34:10', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (178, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'oa_leave:4:991f2193-7b7f-11ec-a3c8-acde48001122', 'task-21', 30, '[1]', '1', '2022-01-22 20:34:10', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (179, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', 'task-01', 50, '[10]', '1', '2022-01-22 21:48:38', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (180, 'e4a1a1ef-7628-11ec-8477-a2380e71991a', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', 'task-21', 30, '[1]', '1', '2022-01-22 21:48:38', '1', '2022-02-19 17:29:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (181, '4b4909d8-97e7-11ec-8e20-862bc1a4a054', '', 'task01', 50, '[10]', '1', '2022-02-28 00:53:09', '1', '2022-02-28 00:53:09', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (182, '4b4909d8-97e7-11ec-8e20-862bc1a4a054', 'flowable_01:1:c0bb5b36-97ed-11ec-a2b9-862bc1a4a054', 'task01', 50, '[10]', '1', '2022-02-28 00:53:14', '1', '2022-02-28 00:53:14', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (183, '02217e82-a77e-11ec-96d6-8e557beca7ad', '', 'Activity_06rmtz9', 50, '[20]', '1', '2022-03-19 20:58:24', '1', '2022-03-19 20:58:24', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (184, '02217e82-a77e-11ec-96d6-8e557beca7ad', '', 'Activity_1hxzcyl', 22, '[3]', '1', '2022-03-19 20:59:35', '1', '2022-03-19 20:59:35', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (185, '02217e82-a77e-11ec-96d6-8e557beca7ad', 'common-form:1:7fdfc407-a786-11ec-96d6-8e557beca7ad', 'Activity_06rmtz9', 50, '[20]', '1', '2022-03-19 21:14:26', '1', '2022-03-19 21:14:26', b'0', 1); -INSERT INTO `bpm_task_assign_rule` (`id`, `model_id`, `process_definition_id`, `task_definition_key`, `type`, `options`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (186, '02217e82-a77e-11ec-96d6-8e557beca7ad', 'common-form:1:7fdfc407-a786-11ec-96d6-8e557beca7ad', 'Activity_1hxzcyl', 22, '[3]', '1', '2022-03-19 21:14:26', '1', '2022-03-19 21:14:26', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for bpm_task_ext -- ---------------------------- DROP TABLE IF EXISTS `bpm_task_ext`; -CREATE TABLE `bpm_task_ext` ( +CREATE TABLE `bpm_task_ext` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', - `assignee_user_id` bigint DEFAULT NULL COMMENT '任务的审批人', - `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '任务的名字', + `assignee_user_id` bigint NULL DEFAULT NULL COMMENT '任务的审批人', + `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '任务的名字', `task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '任务的编号', `result` tinyint NOT NULL COMMENT '任务的结果', - `comment` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '审批建议', - `end_time` datetime DEFAULT NULL COMMENT '任务的结束时间', + `reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '审批建议', + `end_time` datetime NULL DEFAULT NULL COMMENT '任务的结束时间', `process_instance_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '流程实例的编号', `process_definition_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '流程定义的编号', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=213 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='工作流的流程任务的拓展表'; +) ENGINE = InnoDB AUTO_INCREMENT = 213 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '工作流的流程任务的拓展表'; -- ---------------------------- -- Records of bpm_task_ext -- ---------------------------- BEGIN; -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (79, 1, NULL, '36ea97d6-7157-11ec-8642-a2380e71991a', 2, '通过', NULL, '36e36bdd-7157-11ec-8642-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '1', '2022-01-09 22:19:54', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (80, 1, NULL, '791e01f6-7207-11ec-af01-a2380e71991a', 2, '通过', NULL, '7917733d-7207-11ec-af01-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '1', '2022-01-10 19:21:36', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (81, NULL, NULL, 'd15049a8-7207-11ec-a1b3-a2380e71991a', 4, NULL, '2022-01-15 21:59:21', 'd14992df-7207-11ec-a1b3-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '1', '2022-01-10 19:24:04', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (82, NULL, NULL, '370c4b29-7208-11ec-a594-a2380e71991a', 4, NULL, '2022-01-15 21:59:23', '37056d50-7208-11ec-a594-a2380e71991a', 'Process_1641152976334:10:dd62eaef-6c30-11ec-9fc8-cacd34981f8e', '1', '2022-01-10 19:26:55', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (83, NULL, '任务二', '90cbe90b-7208-11ec-a594-a2380e71991a', 4, NULL, '2022-01-15 21:59:26', '90b5effe-7208-11ec-a594-a2380e71991a', 'gateway_test:4:2e50e9a4-7136-11ec-93f6-a2380e71991a', '1', '2022-01-10 19:29:26', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (84, NULL, '任务一', '90cbe909-7208-11ec-a594-a2380e71991a', 4, NULL, '2022-01-15 21:59:26', '90b5effe-7208-11ec-a594-a2380e71991a', 'gateway_test:4:2e50e9a4-7136-11ec-93f6-a2380e71991a', '1', '2022-01-10 19:29:26', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (85, 1, '审批任务一', '842b1870-7211-11ec-8e38-a2380e71991a', 4, NULL, '2022-01-15 21:59:12', '84285947-7211-11ec-8e38-a2380e71991a', 'AA:3:83a1ac25-720b-11ec-95cb-a2380e71991a', '1', '2022-01-10 20:33:30', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (86, 1, '一级审批', 'e9444561-729d-11ec-abc7-a2380e71991a', 4, NULL, '2022-01-15 21:59:10', 'e93a3338-729d-11ec-abc7-a2380e71991a', 'leave:9:59689ba0-7284-11ec-965c-a2380e71991a', '1', '2022-01-11 13:18:29', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (87, 1, '一级审批', '37c5ed6f-729e-11ec-abc7-a2380e71991a', 4, NULL, '2022-01-15 21:59:07', '37c2e026-729e-11ec-abc7-a2380e71991a', 'leave:9:59689ba0-7284-11ec-965c-a2380e71991a', '1', '2022-01-11 13:20:41', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (88, 103, '一级审批', '61416f3d-729e-11ec-abc7-a2380e71991a', 3, '不通过', '2022-01-15 21:58:22', '613e8904-729e-11ec-abc7-a2380e71991a', 'leave:9:59689ba0-7284-11ec-965c-a2380e71991a', '1', '2022-01-11 13:21:50', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (89, 2, '一级审批', 'fcea15e7-7483-11ec-8645-a2380e71991a', 4, NULL, '2022-01-13 23:20:26', 'fcdfddae-7483-11ec-8645-a2380e71991a', 'leave:11:5ddc9eb0-7483-11ec-b390-a2380e71991a', '103', '2022-01-13 23:17:57', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (90, 2, '一级审批', '42f302b6-7484-11ec-8645-a2380e71991a', 4, NULL, '2022-01-13 23:20:22', '265fa43c-7484-11ec-8645-a2380e71991a', 'leave:11:5ddc9eb0-7483-11ec-b390-a2380e71991a', '103', '2022-01-13 23:19:55', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (91, 1, '一级审批', '476773e2-7484-11ec-8645-a2380e71991a', 3, '不通过', '2022-01-15 21:59:57', '2cb112bf-7484-11ec-8645-a2380e71991a', 'leave:11:5ddc9eb0-7483-11ec-b390-a2380e71991a', '103', '2022-01-13 23:20:02', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (92, 2, '一级审批', '4767c205-7484-11ec-8645-a2380e71991a', 1, NULL, NULL, '38d522d3-7484-11ec-8645-a2380e71991a', 'leave:11:5ddc9eb0-7483-11ec-b390-a2380e71991a', '103', '2022-01-13 23:20:02', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (93, 1, '一级审批', '477e7e66-7484-11ec-8645-a2380e71991a', 3, '不通过', '2022-01-15 21:59:56', '475d139b-7484-11ec-8645-a2380e71991a', 'leave:11:5ddc9eb0-7483-11ec-b390-a2380e71991a', '103', '2022-01-13 23:20:03', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (94, 1, '任务一', '0799c43a-75b9-11ec-b607-a2380e71991a', 4, NULL, '2022-01-15 12:10:18', '078f63f1-75b9-11ec-b607-a2380e71991a', 'test:1:913d7930-75b8-11ec-b607-a2380e71991a', '103', '2022-01-15 12:10:10', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (95, 1, '任务一', 'a4fdfc99-75bd-11ec-bf54-a2380e71991a', 4, NULL, '2022-01-15 21:58:18', 'a4f215b0-75bd-11ec-bf54-a2380e71991a', 'test:3:8e4df3a5-75bb-11ec-a317-a2380e71991a', '103', '2022-01-15 12:43:12', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (96, 104, '任务一', 'c2c3c08d-75bd-11ec-bf54-a2380e71991a', 4, NULL, '2022-01-15 21:58:15', 'c2c10164-75bd-11ec-bf54-a2380e71991a', 'test:4:b86e7d03-75bd-11ec-bf54-a2380e71991a', '103', '2022-01-15 12:44:02', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (97, 105, '任务一', 'dcea64bf-75bd-11ec-bf54-a2380e71991a', 4, NULL, '2022-01-15 21:58:12', 'dce61ef6-75bd-11ec-bf54-a2380e71991a', 'test:5:d64bc095-75bd-11ec-bf54-a2380e71991a', '103', '2022-01-15 12:44:46', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (98, 103, '任务一', 'f19d7753-75bd-11ec-bf54-a2380e71991a', 4, NULL, '2022-01-15 21:58:10', 'f19a6a0a-75bd-11ec-bf54-a2380e71991a', 'test:6:ebac9f59-75bd-11ec-bf54-a2380e71991a', '103', '2022-01-15 12:45:20', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (99, 1, '任务一', '02832d36-75be-11ec-bf54-a2380e71991a', 4, NULL, '2022-01-15 21:58:07', '027ff9dd-75be-11ec-bf54-a2380e71991a', 'test:7:fc60e5fc-75bd-11ec-bf54-a2380e71991a', '103', '2022-01-15 12:45:49', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (100, 103, '任务一', '100e3e00-7607-11ec-8cd2-a2380e71991a', 2, '通过', NULL, '10008257-7607-11ec-8cd2-a2380e71991a', 'test:10:f3aa05e6-7606-11ec-8cd2-a2380e71991a', '103', '2022-01-15 21:28:45', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (101, 103, '任务二', 'a0e12108-7607-11ec-8cd2-a2380e71991a', 2, '通过', NULL, '10008257-7607-11ec-8cd2-a2380e71991a', 'test:10:f3aa05e6-7606-11ec-8cd2-a2380e71991a', '103', '2022-01-15 21:32:48', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (102, 104, '任务三', 'ae546d70-7607-11ec-8cd2-a2380e71991a', 4, NULL, '2022-01-15 21:58:05', '10008257-7607-11ec-8cd2-a2380e71991a', 'test:10:f3aa05e6-7606-11ec-8cd2-a2380e71991a', '103', '2022-01-15 21:33:10', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (103, 103, '我哎审批', 'cafed9fc-760b-11ec-9367-a2380e71991a', 3, '不通过', '2022-01-15 22:28:57', 'caf40483-760b-11ec-9367-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', '2022-01-15 22:02:36', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (104, 1, '我哎审批', '90a11c85-760e-11ec-a415-a2380e71991a', 3, '不通过', '2022-01-15 22:28:51', '9091b32c-760e-11ec-a415-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', '2022-01-15 22:22:27', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (106, 103, '我哎审批', '6338b341-760f-11ec-ad1b-a2380e71991a', 3, '不通过', '2022-01-15 22:28:56', '6325c778-760f-11ec-ad1b-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', '2022-01-15 22:28:20', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (107, 103, '我哎审批', '873c5db1-760f-11ec-ad1b-a2380e71991a', 3, '不通过', '2022-01-15 22:31:04', '873817e8-760f-11ec-ad1b-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', '2022-01-15 22:29:21', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (108, 103, '我哎审批', '0c93a6f4-7610-11ec-9266-a2380e71991a', 3, '不通过', '2022-01-15 23:01:43', '0c843d9b-7610-11ec-9266-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', '2022-01-15 22:33:04', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (109, 103, '我哎审批', '5825f744-7610-11ec-9266-a2380e71991a', 3, '不通过', '2022-01-15 23:01:42', '5822c2eb-7610-11ec-9266-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', '2022-01-15 22:35:11', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (110, 103, '我哎审批', '59c4c835-7612-11ec-8063-a2380e71991a', 3, '不通过', '2022-01-15 23:01:41', '59b537cc-7612-11ec-8063-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', '2022-01-15 22:49:33', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (111, 1, '我哎审批', '1a14b21d-7614-11ec-87b4-a2380e71991a', 4, NULL, '2022-01-15 23:54:05', '1a0bb164-7614-11ec-87b4-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', '2022-01-15 23:02:05', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (112, 1, '我哎审批', '46a4f88d-7615-11ec-87b4-a2380e71991a', 4, NULL, '2022-01-15 23:54:02', '46a21254-7615-11ec-87b4-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', '2022-01-15 23:10:29', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (113, 103, '我哎审批', '57d90efc-761b-11ec-b05a-a2380e71991a', 4, NULL, '2022-01-15 23:54:00', '57ce3983-761b-11ec-b05a-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', '2022-01-15 23:53:55', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (114, 1, '任务一', '8a3a3172-7630-11ec-a535-a2380e71991a', 2, '通过', NULL, '8a2ee6c9-7630-11ec-a535-a2380e71991a', 'test:17:04259e68-762e-11ec-9ab0-a2380e71991a', '1', '2022-01-16 02:25:39', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (115, 1, '任务一', 'e06804a6-767f-11ec-bc82-a2380e71991a', 2, '通过', NULL, 'e05c44cd-767f-11ec-bc82-a2380e71991a', 'test:18:1bb307b1-7633-11ec-957a-a2380e71991a', '1', '2022-01-16 11:53:34', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (116, 1, '哈哈哈哈', '1d275189-7680-11ec-bc82-a2380e71991a', 2, '通过', NULL, '1d249260-7680-11ec-bc82-a2380e71991a', 'self:1:17c042ff-7680-11ec-bc82-a2380e71991a', '1', '2022-01-16 11:55:16', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (117, 103, '我哎审批', '70d54722-768b-11ec-afcd-a2380e71991a', 4, NULL, '2022-01-16 22:58:20', '70ca71a9-768b-11ec-afcd-a2380e71991a', 'test_001:1:c5772412-760b-11ec-9367-a2380e71991a', '1', '2022-01-16 13:16:21', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (118, 1, '1.1', 'cdc05b68-768b-11ec-afcd-a2380e71991a', 2, '通过', NULL, 'cdbd4e1e-768b-11ec-afcd-a2380e71991a', 'test_001:2:c680200d-768b-11ec-afcd-a2380e71991a', '1', '2022-01-16 13:18:57', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (119, 1, '1.2', '53892ad4-768c-11ec-afcd-a2380e71991a', 2, '通过', NULL, '537cceb3-768c-11ec-afcd-a2380e71991a', 'test_001:3:4e8e99b2-768c-11ec-afcd-a2380e71991a', '1', '2022-01-16 13:22:41', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (120, 1, '1.1', '5380ed6e-768c-11ec-afcd-a2380e71991a', 2, '通过', NULL, '537cceb3-768c-11ec-afcd-a2380e71991a', 'test_001:3:4e8e99b2-768c-11ec-afcd-a2380e71991a', '1', '2022-01-16 13:22:41', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (121, 1, '1.2', '363e7d39-76d1-11ec-9c66-a2380e71991a', 2, '通过', NULL, '362b9168-76d1-11ec-9c66-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-16 21:35:47', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (122, 1, '1.1', '3634b933-76d1-11ec-9c66-a2380e71991a', 2, '通过', NULL, '362b9168-76d1-11ec-9c66-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-16 21:35:47', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (123, 1, '1.2', 'c88367bf-76d1-11ec-9c66-a2380e71991a', 2, '通过', NULL, 'c1ca84ce-76d1-11ec-9c66-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-16 21:39:53', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (124, 1, '1.1', 'c87c3bc9-76d1-11ec-9c66-a2380e71991a', 2, '通过', NULL, 'c1ca84ce-76d1-11ec-9c66-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-16 21:39:53', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (125, 1, '1.2', '4da1ed9d-76d2-11ec-9423-a2380e71991a', 2, '通过', NULL, '4b4c16ac-76d2-11ec-9423-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-16 21:43:36', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (126, 1, '1.1', '4d91c0f7-76d2-11ec-9423-a2380e71991a', 2, '通过', NULL, '4b4c16ac-76d2-11ec-9423-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-16 21:43:36', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (127, 104, '任务二', 'b5cb3a35-76dc-11ec-95f2-a2380e71991a', 4, NULL, '2022-01-16 22:58:23', 'e05c44cd-767f-11ec-bc82-a2380e71991a', 'test:18:1bb307b1-7633-11ec-957a-a2380e71991a', '1', '2022-01-16 22:58:06', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (128, 104, '任务二', 'b6a45c2e-76dc-11ec-95f2-a2380e71991a', 4, NULL, '2022-01-16 22:58:25', '8a2ee6c9-7630-11ec-a535-a2380e71991a', 'test:17:04259e68-762e-11ec-9ab0-a2380e71991a', '1', '2022-01-16 22:58:07', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (129, 1, '1.2', 'ddef8f85-76dc-11ec-95f2-a2380e71991a', 2, '通过', NULL, 'db3f3c84-76dc-11ec-95f2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-16 22:59:13', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (130, 1, '1.1', 'dde35a7f-76dc-11ec-95f2-a2380e71991a', 2, '通过', NULL, 'db3f3c84-76dc-11ec-95f2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-16 22:59:13', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (131, 1, '1.2', 'cff54e11-76de-11ec-95f2-a2380e71991a', 2, '通过', '2022-01-16 23:13:15', 'cfe3c1d0-76de-11ec-95f2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-16 23:13:09', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (132, 1, '1.1', 'cfea789b-76de-11ec-95f2-a2380e71991a', 2, 'EEE', '2022-01-17 00:51:06', 'cfe3c1d0-76de-11ec-95f2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-16 23:13:08', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (133, 1, '1.2', '164c2f9a-76e6-11ec-95f2-a2380e71991a', 2, 'A', '2022-01-17 00:35:25', '1642e0b9-76e6-11ec-95f2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-17 00:05:13', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (134, 1, '1.1', '1645ee04-76e6-11ec-95f2-a2380e71991a', 2, 'BBB', '2022-01-17 00:35:32', '1642e0b9-76e6-11ec-95f2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-17 00:05:13', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (135, 1, '1.2', '8bbac286-76ea-11ec-95f2-a2380e71991a', 2, 'AAAA', '2022-01-17 00:37:19', '8bb14c95-76ea-11ec-95f2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-17 00:37:08', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (136, 1, '1.1', '8bb40bc0-76ea-11ec-95f2-a2380e71991a', 3, 'BBB', '2022-01-17 00:37:21', '8bb14c95-76ea-11ec-95f2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-17 00:37:08', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (137, 1, '1.2', '2937eba2-76ed-11ec-95f2-a2380e71991a', 2, '1111', '2022-01-17 00:57:01', '29288241-76ed-11ec-95f2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-17 00:55:51', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (138, 1, '1.1', '292cef1c-76ed-11ec-95f2-a2380e71991a', 2, 'aaaa', '2022-01-17 12:49:45', '29288241-76ed-11ec-95f2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-17 00:55:51', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (139, 103, '1.2', 'ce91ccb0-77aa-11ec-9be9-a2380e71991a', 2, 'AAA', '2022-01-17 23:51:24', 'ce5e126f-77aa-11ec-9be9-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-17 23:33:24', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (140, 103, '1.1', 'ce773fca-77aa-11ec-9be9-a2380e71991a', 2, 'BBB', '2022-01-17 23:51:26', 'ce5e126f-77aa-11ec-9be9-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-17 23:33:23', '103', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (141, 1, '1.2', 'd201e58a-77b8-11ec-bc1a-a2380e71991a', 2, 'AAA', '2022-01-18 01:13:50', 'd1e75899-77b8-11ec-bc1a-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-18 01:13:42', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (142, 1, '1.1', 'd1f625b4-77b8-11ec-bc1a-a2380e71991a', 2, 'AAA', '2022-01-19 08:45:37', 'd1e75899-77b8-11ec-bc1a-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-18 01:13:42', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (143, 1, '任务一', 'f31c6d6b-77f2-11ec-bc1a-a2380e71991a', 2, 'AAA', '2022-01-18 08:10:09', 'f3191202-77f2-11ec-bc1a-a2380e71991a', 'test:20:3f1c2257-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-18 08:09:49', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (144, 104, '任务二', 'ff5f7733-77f2-11ec-bc1a-a2380e71991a', 1, NULL, NULL, 'f3191202-77f2-11ec-bc1a-a2380e71991a', 'test:20:3f1c2257-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-18 08:10:09', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (145, 1, '任务一', '342d7bbb-78c1-11ec-9b4d-a2380e71991a', 2, '恩恩', '2022-01-19 08:46:24', '342453f2-78c1-11ec-9b4d-a2380e71991a', 'test:20:3f1c2257-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-19 08:46:14', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (146, 104, '任务二', '39d64e33-78c1-11ec-9b4d-a2380e71991a', 1, NULL, NULL, '342453f2-78c1-11ec-9b4d-a2380e71991a', 'test:20:3f1c2257-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-19 08:46:24', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (147, 1, '1.2', 'b2c79c0a-78c1-11ec-9b4d-a2380e71991a', 2, 'A', '2022-01-19 08:49:59', 'b2b9b949-78c1-11ec-9b4d-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-19 08:49:47', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (148, 1, '1.1', 'b2be4d34-78c1-11ec-9b4d-a2380e71991a', 3, 'EEE', '2022-01-19 09:13:18', 'b2b9b949-78c1-11ec-9b4d-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-19 08:49:46', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (149, 1, '1.2', '0efced83-78c5-11ec-9b4d-a2380e71991a', 2, 'EEE', '2022-01-19 09:14:15', '0ef30262-78c5-11ec-9b4d-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-19 09:13:50', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (150, 1, '1.1', '0ef636bd-78c5-11ec-9b4d-a2380e71991a', 2, 'EEE', '2022-01-19 09:14:21', '0ef30262-78c5-11ec-9b4d-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-19 09:13:50', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (151, 1, '1.2', '7d8b2a4f-78c7-11ec-9b4d-a2380e71991a', 2, 'bbb', '2022-01-19 09:31:27', '7d80f10e-78c7-11ec-9b4d-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-19 09:31:14', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (152, 1, '1.1', '7d847389-78c7-11ec-9b4d-a2380e71991a', 2, 'aaaa', '2022-01-19 09:31:24', '7d80f10e-78c7-11ec-9b4d-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-19 09:31:14', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (153, 1, '1.2', '07b342ab-78cd-11ec-a731-a2380e71991a', 4, NULL, '2022-01-19 10:11:03', '079d97ba-78cd-11ec-a731-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-19 10:10:53', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (154, 1, '1.1', '07a86d35-78cd-11ec-a731-a2380e71991a', 3, 'BBB', '2022-01-19 10:11:03', '079d97ba-78cd-11ec-a731-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-19 10:10:53', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (155, 1, '申请', '929c0a06-79af-11ec-abb0-a2380e71991a', 2, 'eee', '2022-01-20 13:12:39', '92904a2d-79af-11ec-abb0-a2380e71991a', 'eee:1:89b300ac-79af-11ec-abb0-a2380e71991a', '1', '2022-01-20 13:12:33', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (156, 1, '部门33审批', '9658eb06-79af-11ec-abb0-a2380e71991a', 2, 'qqq', '2022-01-20 13:12:46', '92904a2d-79af-11ec-abb0-a2380e71991a', 'eee:1:89b300ac-79af-11ec-abb0-a2380e71991a', '1', '2022-01-20 13:12:39', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (157, 1, '人事审批', '96519800-79af-11ec-abb0-a2380e71991a', 2, 'wwww', '2022-01-20 13:12:51', '92904a2d-79af-11ec-abb0-a2380e71991a', 'eee:1:89b300ac-79af-11ec-abb0-a2380e71991a', '1', '2022-01-20 13:12:39', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (158, 1, '任务一', 'cac7f66a-79b0-11ec-b2b8-a2380e71991a', 2, 'EEE', '2022-01-20 13:21:22', 'cabc84b1-79b0-11ec-b2b8-a2380e71991a', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', '1', '2022-01-20 13:21:16', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (159, 1, '任务二', 'ce4cd772-79b0-11ec-b2b8-a2380e71991a', 2, 'ZZZ', '2022-01-20 13:21:26', 'cabc84b1-79b0-11ec-b2b8-a2380e71991a', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', '1', '2022-01-20 13:21:22', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (160, 1, '任务三', 'd080805a-79b0-11ec-b2b8-a2380e71991a', 2, 'WWW', '2022-01-20 13:21:30', 'cabc84b1-79b0-11ec-b2b8-a2380e71991a', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', '1', '2022-01-20 13:21:26', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (161, 1, '哈哈哈哈', 'b7ff7774-7a14-11ec-8762-a2380e71991a', 3, 'eee', '2022-01-21 01:16:42', 'b7f3b79b-7a14-11ec-8762-a2380e71991a', 'self:2:3a5a065e-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-21 01:16:35', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (162, 1, '任务一', 'd9fa3754-7ac6-11ec-a040-a2380e71991a', 1, NULL, NULL, 'd9ee295b-7ac6-11ec-a040-a2380e71991a', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', '1', '2022-01-21 22:31:42', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (163, 1, '1.2', 'ed555b0a-7ac6-11ec-a040-a2380e71991a', 1, NULL, NULL, 'ed4a3769-7ac6-11ec-a040-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-21 22:32:15', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (164, 1, '1.1', 'ed4ef264-7ac6-11ec-a040-a2380e71991a', 1, NULL, NULL, 'ed4a3769-7ac6-11ec-a040-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-21 22:32:15', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (165, 1, '任务一', '54ad8088-7ac7-11ec-a040-a2380e71991a', 1, NULL, NULL, '54aa251f-7ac7-11ec-a040-a2380e71991a', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', '1', '2022-01-21 22:35:08', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (166, 1, '任务一', 'bd97b7c0-7ac7-11ec-9948-a2380e71991a', 1, NULL, NULL, 'bd7dc717-7ac7-11ec-9948-a2380e71991a', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', '1', '2022-01-21 22:38:04', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (167, 1, '1.2', '381aa1dd-7ac8-11ec-a9e2-a2380e71991a', 1, NULL, NULL, '37d7a55c-7ac8-11ec-a9e2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-21 22:41:29', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (168, 1, '1.1', '37f95e37-7ac8-11ec-a9e2-a2380e71991a', 1, NULL, NULL, '37d7a55c-7ac8-11ec-a9e2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-21 22:41:29', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (169, 1, '1.2', '58154733-7ac8-11ec-a9e2-a2380e71991a', 1, NULL, NULL, '580a98c2-7ac8-11ec-a9e2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-21 22:42:23', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (170, 1, '1.1', '580e1b3d-7ac8-11ec-a9e2-a2380e71991a', 1, NULL, NULL, '580a98c2-7ac8-11ec-a9e2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-21 22:42:23', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (171, 1, '1.2', '8f0d1619-7ac8-11ec-a9e2-a2380e71991a', 1, NULL, NULL, '8f021988-7ac8-11ec-a9e2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-21 22:43:55', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (172, 1, '1.1', '8f059c03-7ac8-11ec-a9e2-a2380e71991a', 1, NULL, NULL, '8f021988-7ac8-11ec-a9e2-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-21 22:43:55', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (173, 1, '1.2', '2377edc6-7ac9-11ec-aa06-a2380e71991a', 2, 'A', '2022-01-22 00:20:48', '23615875-7ac9-11ec-aa06-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-21 22:48:04', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (174, 1, '1.1', '236c5500-7ac9-11ec-aa06-a2380e71991a', 2, 'A', '2022-01-22 00:20:51', '23615875-7ac9-11ec-aa06-a2380e71991a', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-21 22:48:04', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (175, 1, '哈哈哈哈', '34fb7fac-7ad6-11ec-abe9-a2380e71991a', 2, 'AAA', '2022-01-22 00:22:02', '34f51703-7ad6-11ec-abe9-a2380e71991a', 'self:2:3a5a065e-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-22 00:21:37', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (176, 1, '哈哈哈哈', 'a4178f6d-7ad6-11ec-abe9-a2380e71991a', 4, NULL, '2022-01-22 00:24:48', 'a413bed4-7ad6-11ec-abe9-a2380e71991a', 'self:2:3a5a065e-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-22 00:24:44', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (177, 1, '任务一', 'c010347b-7ad6-11ec-abe9-a2380e71991a', 3, 'EEE', '2022-01-22 00:30:01', 'c00d2732-7ad6-11ec-abe9-a2380e71991a', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', '1', '2022-01-22 00:25:31', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (178, 1, '一级审批', 'a6aba0a4-7b6d-11ec-b781-acde48001122', 1, NULL, NULL, 'a6a007dd-7b6d-11ec-b781-acde48001122', 'oa_leave:2:3c1f0ef1-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-22 18:25:42', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (179, 1, '一级审批', '28aed7fb-7b75-11ec-a3c8-acde48001122', 2, 'EEE', '2022-01-22 20:31:52', '28a5d744-7b75-11ec-a3c8-acde48001122', 'oa_leave:3:1fad3d93-7b75-11ec-a3c8-acde48001122', '1', '2022-01-22 19:19:27', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (180, 1, '一级审批', '75d72608-7b7f-11ec-a3c8-acde48001122', 1, NULL, NULL, '75d43fd1-7b7f-11ec-a3c8-acde48001122', 'oa_leave:3:1fad3d93-7b75-11ec-a3c8-acde48001122', '1', '2022-01-22 20:33:11', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (181, 1, '一级审批', '9ac3d0eb-7b7f-11ec-a3c8-acde48001122', 2, 'EEE', '2022-01-22 20:34:25', '9ac0eab4-7b7f-11ec-a3c8-acde48001122', 'oa_leave:4:991f2193-7b7f-11ec-a3c8-acde48001122', '1', '2022-01-22 20:34:13', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (182, 1, '二级审批', 'a23fb5b1-7b7f-11ec-a3c8-acde48001122', 2, 'CCC', '2022-01-22 20:34:33', '9ac0eab4-7b7f-11ec-a3c8-acde48001122', 'oa_leave:4:991f2193-7b7f-11ec-a3c8-acde48001122', '1', '2022-01-22 20:34:25', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (183, 1, '一级审批', '725a1eb6-7b88-11ec-8ef0-acde48001122', 1, NULL, NULL, '7250cfdf-7b88-11ec-8ef0-acde48001122', 'oa_leave:4:991f2193-7b7f-11ec-a3c8-acde48001122', '1', '2022-01-22 21:37:31', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (184, 1, '一级审批', '069c6a63-7b8a-11ec-8ef0-acde48001122', 1, NULL, NULL, '0699ab3c-7b8a-11ec-8ef0-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 21:48:49', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (185, 1, '一级审批', 'eaa01ebd-7b8d-11ec-b8e2-acde48001122', 2, 'AAA', '2022-01-22 22:16:53', 'ea957056-7b8d-11ec-b8e2-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 22:16:40', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (186, 1, '二级审批', 'f24cfe93-7b8d-11ec-b8e2-acde48001122', 2, 'EEE', '2022-01-22 22:16:56', 'ea957056-7b8d-11ec-b8e2-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 22:16:53', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (187, 1, '一级审批', '7e0bd5ff-7b8e-11ec-b8e2-acde48001122', 3, 'EEE', '2022-01-22 22:21:14', '7e093de8-7b8e-11ec-b8e2-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 22:20:47', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (188, 1, '一级审批', '535dc031-7b91-11ec-8473-acde48001122', 3, 'EEE', '2022-01-22 22:41:09', '5354233a-7b91-11ec-8473-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 22:41:04', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (189, 1, '一级审批', '68d13c8b-7b91-11ec-8473-acde48001122', 2, '1111', '2022-01-22 22:41:46', '68ce0834-7b91-11ec-8473-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 22:41:40', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (190, 1, '二级审批', '6c5ad881-7b91-11ec-8473-acde48001122', 3, 'EEE', '2022-01-22 22:41:57', '68ce0834-7b91-11ec-8473-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 22:41:46', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (191, 1, '一级审批', 'bb265acb-7b91-11ec-8473-acde48001122', 3, 'eeee', '2022-01-22 22:44:07', 'bb23c2b4-7b91-11ec-8473-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 22:43:58', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (192, 1, '哈哈哈哈', '49dd7c51-7b98-11ec-b5ee-acde48001122', 4, NULL, '2022-01-22 23:39:10', '49d3df58-7b98-11ec-b5ee-acde48001122', 'self:2:3a5a065e-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-22 23:30:55', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (193, 1, '一级审批', '888c6dfe-7b99-11ec-ba5c-acde48001122', 3, 'eee', '2022-01-22 23:39:59', '8884f3e7-7b99-11ec-ba5c-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 23:39:49', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (194, 1, '一级审批', 'a59c9d88-7b99-11ec-ba5c-acde48001122', 2, 'AAAA', '2022-01-22 23:40:49', 'a59a5391-7b99-11ec-ba5c-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 23:40:38', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (195, 1, '一级审批', '03d1219e-7b9a-11ec-a290-acde48001122', 3, 'BBB', '2022-01-22 23:43:29', '03c6c157-7b9a-11ec-a290-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 23:43:16', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (196, 1, '一级审批', '331e3388-7b9a-11ec-a290-acde48001122', 2, 'EEE', '2022-01-22 23:44:40', '331bc281-7b9a-11ec-a290-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 23:44:35', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (197, 1, '一级审批', '53026aa5-7b9a-11ec-a290-acde48001122', 2, 'AAA', '2022-01-22 23:45:37', '52ffd28e-7b9a-11ec-a290-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 23:45:29', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (198, 1, '一级审批', '67c534a2-7b9a-11ec-a290-acde48001122', 2, 'EEEE', '2022-01-22 23:46:09', '67c2eaab-7b9a-11ec-a290-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 23:46:04', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (199, 1, '一级审批', '8196daff-7b9a-11ec-a290-acde48001122', 2, 'eee', '2022-01-22 23:46:53', '819442e8-7b9a-11ec-a290-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 23:46:47', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (200, 1, '一级审批', 'ec507ae6-7b9a-11ec-b03b-acde48001122', 2, 'AAA', '2022-01-22 23:49:51', 'ec45f38f-7b9a-11ec-b03b-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 23:49:46', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (201, 1, '一级审批', '215cf4e5-7b9b-11ec-9a1b-acde48001122', 2, 'aaa', '2022-01-22 23:51:20', '2152467e-7b9b-11ec-9a1b-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 23:51:15', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (202, 1, '一级审批', '73211d9d-7b9b-11ec-b5b7-acde48001122', 1, NULL, NULL, '7317cec6-7b9b-11ec-b5b7-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 23:53:32', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (203, 1, '一级审批', '74736737-7b9b-11ec-b5b7-acde48001122', 4, NULL, '2022-01-23 00:08:41', '7470a810-7b9b-11ec-b5b7-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-22 23:53:35', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (204, 1, '一级审批', '3adac3d2-7b9d-11ec-8404-acde48001122', 4, NULL, '2022-01-23 00:07:03', '3ad174fb-7b9d-11ec-8404-acde48001122', 'oa_leave:5:004b710b-7b8a-11ec-8ef0-acde48001122', '1', '2022-01-23 00:06:17', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (205, 1, '申请', 'b25363db-7c06-11ec-9110-acde48001122', 1, NULL, NULL, 'b243fa82-7c06-11ec-9110-acde48001122', 'eee:17:f3aad03b-7ae5-11ec-a69c-a2380e71991a', '1', '2022-01-23 12:41:14', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (206, 1, '1.2', 'ee7cbc97-7c07-11ec-a41d-acde48001122', 4, NULL, '2022-01-23 12:59:40', 'ecddb286-7c07-11ec-a41d-acde48001122', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-23 12:50:05', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (207, 1, '1.1', 'ee67adf1-7c07-11ec-a41d-acde48001122', 4, NULL, '2022-01-23 12:59:40', 'ecddb286-7c07-11ec-a41d-acde48001122', 'test_001:4:3dbe6714-76b1-11ec-9c66-a2380e71991a', '1', '2022-01-23 12:50:05', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (209, 1, '任务一', '4f6fce81-7c09-11ec-b8a1-acde48001122', 1, NULL, NULL, '4f676a08-7c09-11ec-b8a1-acde48001122', 'test:21:c2cd44b0-79b0-11ec-b2b8-a2380e71991a', '1', '2022-01-23 12:59:57', '1', '2022-02-19 17:29:32', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (210, 1, 'task01', 'c97146a4-97ed-11ec-a2b9-862bc1a4a054', 2, '嗯嗯嗯', '2022-02-28 00:53:35', 'c964c377-97ed-11ec-a2b9-862bc1a4a054', 'flowable_01:1:c0bb5b36-97ed-11ec-a2b9-862bc1a4a054', '1', '2022-02-28 00:53:28', '1', '2022-02-28 00:53:35', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (211, 104, '部门领导审批', '6bf71106-a787-11ec-96d6-8e557beca7ad', 2, '关注【芋道源码】公众号', '2022-03-19 22:00:45', '6be9f198-a787-11ec-96d6-8e557beca7ad', 'common-form:1:7fdfc407-a786-11ec-96d6-8e557beca7ad', '1', '2022-03-19 21:21:02', '104', '2022-03-19 22:00:45', b'0', 1); -INSERT INTO `bpm_task_ext` (`id`, `assignee_user_id`, `name`, `task_id`, `result`, `comment`, `end_time`, `process_instance_id`, `process_definition_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (212, 114, 'HR 审批', 'f8beb356-a78c-11ec-bf87-8e557beca7ad', 2, '不错!', '2022-03-19 22:16:00', '6be9f198-a787-11ec-96d6-8e557beca7ad', 'common-form:1:7fdfc407-a786-11ec-96d6-8e557beca7ad', '104', '2022-03-19 22:00:45', '114', '2022-03-19 22:16:00', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for bpm_user_group -- ---------------------------- DROP TABLE IF EXISTS `bpm_user_group`; -CREATE TABLE `bpm_user_group` ( +CREATE TABLE `bpm_user_group` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '组名', `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '描述', `member_user_ids` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0' COMMENT '成员编号数组', `status` tinyint NOT NULL COMMENT '状态(0正常 1停用)', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=111 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='用户组'; +) ENGINE = InnoDB AUTO_INCREMENT = 111 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '用户组'; -- ---------------------------- -- Records of bpm_user_group -- ---------------------------- BEGIN; -INSERT INTO `bpm_user_group` (`id`, `name`, `description`, `member_user_ids`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (110, '测试组', '哈哈哈哈', '[1]', 0, '1', '2022-01-14 13:54:13', '1', '2022-02-19 17:29:39', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for infra_api_access_log -- ---------------------------- DROP TABLE IF EXISTS `infra_api_access_log`; -CREATE TABLE `infra_api_access_log` ( +CREATE TABLE `infra_api_access_log` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '日志主键', `trace_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '链路追踪编号', - `user_id` bigint NOT NULL DEFAULT '0' COMMENT '用户编号', - `user_type` tinyint NOT NULL DEFAULT '0' COMMENT '用户类型', + `user_id` bigint NOT NULL DEFAULT 0 COMMENT '用户编号', + `user_type` tinyint NOT NULL DEFAULT 0 COMMENT '用户类型', `application_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '应用名', `request_method` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '请求方法名', `request_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '请求地址', @@ -740,892 +498,32 @@ CREATE TABLE `infra_api_access_log` ( `begin_time` datetime NOT NULL COMMENT '开始请求时间', `end_time` datetime NOT NULL COMMENT '结束请求时间', `duration` int NOT NULL COMMENT '执行时长', - `result_code` int NOT NULL DEFAULT '0' COMMENT '结果码', - `result_msg` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '结果提示', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `result_code` int NOT NULL DEFAULT 0 COMMENT '结果码', + `result_msg` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '结果提示', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=26800 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='API 访问日志表'; +) ENGINE = InnoDB AUTO_INCREMENT = 26800 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = 'API 访问日志表'; -- ---------------------------- -- Records of infra_api_access_log -- ---------------------------- BEGIN; -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25940, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:43:38', '2022-04-27 21:43:38', 176, 0, '', NULL, '2022-04-27 21:43:38', NULL, '2022-04-27 21:43:38', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25941, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:43:38', '2022-04-27 21:43:38', 171, 0, '', NULL, '2022-04-27 21:43:38', NULL, '2022-04-27 21:43:38', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25942, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:43:38', '2022-04-27 21:43:38', 13, 0, '', NULL, '2022-04-27 21:43:38', NULL, '2022-04-27 21:43:38', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25943, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:34', '2022-04-27 21:44:34', 103, 0, '', NULL, '2022-04-27 21:44:34', NULL, '2022-04-27 21:44:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25944, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:38', '2022-04-27 21:44:38', 58, 0, '', NULL, '2022-04-27 21:44:38', NULL, '2022-04-27 21:44:38', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25945, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"tableName\":\"infra\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:51', '2022-04-27 21:44:51', 33, 0, '', NULL, '2022-04-27 21:44:51', NULL, '2022-04-27 21:44:51', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25946, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"tableName\":\"infra\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:51', '2022-04-27 21:44:51', 24, 0, '', NULL, '2022-04-27 21:44:51', NULL, '2022-04-27 21:44:51', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25947, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"infra_data_source_config\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:54', '2022-04-27 21:44:54', 166, 0, '', NULL, '2022-04-27 21:44:54', NULL, '2022-04-27 21:44:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25948, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:54', '2022-04-27 21:44:54', 28, 0, '', NULL, '2022-04-27 21:44:54', NULL, '2022-04-27 21:44:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25949, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:58', '2022-04-27 21:44:58', 23, 0, '', NULL, '2022-04-27 21:44:58', NULL, '2022-04-27 21:44:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25950, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:58', '2022-04-27 21:44:58', 30, 0, '', NULL, '2022-04-27 21:44:58', NULL, '2022-04-27 21:44:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25951, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:58', '2022-04-27 21:44:58', 6, 0, '', NULL, '2022-04-27 21:44:58', NULL, '2022-04-27 21:44:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25952, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:59', '2022-04-27 21:44:59', 31, 0, '', NULL, '2022-04-27 21:44:59', NULL, '2022-04-27 21:44:59', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25953, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:45:09', '2022-04-27 21:45:09', 33, 0, '', NULL, '2022-04-27 21:45:09', NULL, '2022-04-27 21:45:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25954, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/detail', '{\"query\":{\"tableId\":\"70\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:45:09', '2022-04-27 21:45:09', 63, 0, '', NULL, '2022-04-27 21:45:09', NULL, '2022-04-27 21:45:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25955, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:45:09', '2022-04-27 21:45:10', 249, 0, '', NULL, '2022-04-27 21:45:10', NULL, '2022-04-27 21:45:10', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25956, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/codegen/update', '{\"query\":{},\"body\":\"{\\\"table\\\":{\\\"importType\\\":1,\\\"scene\\\":1,\\\"tableName\\\":\\\"infra_data_source_config\\\",\\\"tableComment\\\":\\\"数据源配置表\\\",\\\"remark\\\":null,\\\"moduleName\\\":\\\"infra\\\",\\\"businessName\\\":\\\"dataSourceConfig\\\",\\\"className\\\":\\\"DataSourceConfig\\\",\\\"classComment\\\":\\\"数据源配置\\\",\\\"author\\\":\\\"芋道源码\\\",\\\"templateType\\\":1,\\\"parentMenuId\\\":null,\\\"id\\\":70,\\\"createTime\\\":1651038084000,\\\"updateTime\\\":1651067094000},\\\"columns\\\":[{\\\"tableId\\\":70,\\\"columnName\\\":\\\"id\\\",\\\"columnType\\\":\\\"int\\\",\\\"columnComment\\\":\\\"主键编号\\\",\\\"nullable\\\":false,\\\"primaryKey\\\":true,\\\"autoIncrement\\\":\\\"true\\\",\\\"ordinalPosition\\\":1,\\\"javaType\\\":\\\"Integer\\\",\\\"javaField\\\":\\\"id\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":\\\"1024\\\",\\\"createOperation\\\":false,\\\"updateOperation\\\":true,\\\"listOperation\\\":false,\\\"listOperationCondition\\\":\\\"=\\\",\\\"listOperationResult\\\":true,\\\"htmlType\\\":\\\"input\\\",\\\"id\\\":824,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"name\\\",\\\"columnType\\\":\\\"varchar(100)\\\",\\\"columnComment\\\":\\\"参数名称\\\",\\\"nullable\\\":false,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":2,\\\"javaType\\\":\\\"String\\\",\\\"javaField\\\":\\\"name\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":\\\"test\\\",\\\"createOperation\\\":true,\\\"updateOperation\\\":true,\\\"listOperation\\\":true,\\\"listOperationCondition\\\":\\\"LIKE\\\",\\\"listOperationResult\\\":true,\\\"htmlType\\\":\\\"input\\\",\\\"id\\\":825,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"url\\\",\\\"columnType\\\":\\\"varchar(1024)\\\",\\\"columnComment\\\":\\\"数据源连接\\\",\\\"nullable\\\":false,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":3,\\\"javaType\\\":\\\"String\\\",\\\"javaField\\\":\\\"url\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":\\\"jdbc:mysql://127.0.0.1:3306/ruoyi-vue-pro\\\",\\\"createOperation\\\":true,\\\"updateOperation\\\":true,\\\"listOperation\\\":true,\\\"listOperationCondition\\\":\\\"LIKE\\\",\\\"listOperationResult\\\":true,\\\"htmlType\\\":\\\"input\\\",\\\"id\\\":826,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"username\\\",\\\"columnType\\\":\\\"varchar(255)\\\",\\\"columnComment\\\":\\\"用户名\\\",\\\"nullable\\\":false,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":4,\\\"javaType\\\":\\\"String\\\",\\\"javaField\\\":\\\"username\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":\\\"root\\\",\\\"createOperation\\\":true,\\\"updateOperation\\\":true,\\\"listOperation\\\":\\\"false\\\",\\\"listOperationCondition\\\":\\\"LIKE\\\",\\\"listOperationResult\\\":true,\\\"htmlType\\\":\\\"input\\\",\\\"id\\\":827,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"password\\\",\\\"columnType\\\":\\\"varchar(255)\\\",\\\"columnComment\\\":\\\"密码\\\",\\\"nullable\\\":false,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":5,\\\"javaType\\\":\\\"String\\\",\\\"javaField\\\":\\\"password\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":\\\"123456\\\",\\\"createOperation\\\":true,\\\"updateOperation\\\":true,\\\"listOperation\\\":\\\"false\\\",\\\"listOperationCondition\\\":\\\"=\\\",\\\"listOperationResult\\\":\\\"false\\\",\\\"htmlType\\\":\\\"input\\\",\\\"id\\\":828,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"creator\\\",\\\"columnType\\\":\\\"varchar(64)\\\",\\\"columnComment\\\":\\\"创建者\\\",\\\"nullable\\\":true,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":6,\\\"javaType\\\":\\\"String\\\",\\\"javaField\\\":\\\"creator\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":null,\\\"createOperation\\\":false,\\\"updateOperation\\\":false,\\\"listOperation\\\":false,\\\"listOperationCondition\\\":\\\"=\\\",\\\"listOperationResult\\\":false,\\\"htmlType\\\":\\\"input\\\",\\\"id\\\":829,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"create_time\\\",\\\"columnType\\\":\\\"datetime\\\",\\\"columnComment\\\":\\\"创建时间\\\",\\\"nullable\\\":false,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":7,\\\"javaType\\\":\\\"Date\\\",\\\"javaField\\\":\\\"createTime\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":null,\\\"createOperation\\\":false,\\\"updateOperation\\\":false,\\\"listOperation\\\":true,\\\"listOperationCondition\\\":\\\"BETWEEN\\\",\\\"listOperationResult\\\":true,\\\"htmlType\\\":\\\"datetime\\\",\\\"id\\\":830,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"updater\\\",\\\"columnType\\\":\\\"varchar(64)\\\",\\\"columnComment\\\":\\\"更新者\\\",\\\"nullable\\\":true,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":8,\\\"javaType\\\":\\\"String\\\",\\\"javaField\\\":\\\"updater\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":null,\\\"createOperation\\\":false,\\\"updateOperation\\\":false,\\\"listOperation\\\":false,\\\"listOperationCondition\\\":\\\"=\\\",\\\"listOperationResult\\\":false,\\\"htmlType\\\":\\\"input\\\",\\\"id\\\":831,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"update_time\\\",\\\"columnType\\\":\\\"datetime\\\",\\\"columnComment\\\":\\\"更新时间\\\",\\\"nullable\\\":false,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":9,\\\"javaType\\\":\\\"Date\\\",\\\"javaField\\\":\\\"updateTime\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":null,\\\"createOperation\\\":false,\\\"updateOperation\\\":false,\\\"listOperation\\\":false,\\\"listOperationCondition\\\":\\\"BETWEEN\\\",\\\"listOperationResult\\\":false,\\\"htmlType\\\":\\\"datetime\\\",\\\"id\\\":832,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"deleted\\\",\\\"columnType\\\":\\\"bit(1)\\\",\\\"columnComment\\\":\\\"是否删除\\\",\\\"nullable\\\":false,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":10,\\\"javaType\\\":\\\"Boolean\\\",\\\"javaField\\\":\\\"deleted\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":null,\\\"createOperation\\\":false,\\\"updateOperation\\\":false,\\\"listOperation\\\":false,\\\"listOperationCondition\\\":\\\"=\\\",\\\"listOperationResult\\\":false,\\\"htmlType\\\":\\\"radio\\\",\\\"id\\\":833,\\\"createTime\\\":1651067094000}],\\\"params\\\":{}}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:49:28', '2022-04-27 21:49:29', 79, 400, '请求参数不正确:上级菜单不能为空', NULL, '2022-04-27 21:49:29', NULL, '2022-04-27 21:49:29', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25957, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/codegen/update', '{\"query\":{},\"body\":\"{\\\"table\\\":{\\\"importType\\\":1,\\\"scene\\\":1,\\\"tableName\\\":\\\"infra_data_source_config\\\",\\\"tableComment\\\":\\\"数据源配置表\\\",\\\"remark\\\":null,\\\"moduleName\\\":\\\"infra\\\",\\\"businessName\\\":\\\"db\\\",\\\"className\\\":\\\"DataSourceConfig\\\",\\\"classComment\\\":\\\"数据源配置\\\",\\\"author\\\":\\\"芋道源码\\\",\\\"templateType\\\":1,\\\"parentMenuId\\\":2,\\\"id\\\":70,\\\"createTime\\\":1651038084000,\\\"updateTime\\\":1651067094000},\\\"columns\\\":[{\\\"tableId\\\":70,\\\"columnName\\\":\\\"id\\\",\\\"columnType\\\":\\\"int\\\",\\\"columnComment\\\":\\\"主键编号\\\",\\\"nullable\\\":false,\\\"primaryKey\\\":true,\\\"autoIncrement\\\":\\\"true\\\",\\\"ordinalPosition\\\":1,\\\"javaType\\\":\\\"Integer\\\",\\\"javaField\\\":\\\"id\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":\\\"1024\\\",\\\"createOperation\\\":false,\\\"updateOperation\\\":true,\\\"listOperation\\\":false,\\\"listOperationCondition\\\":\\\"=\\\",\\\"listOperationResult\\\":true,\\\"htmlType\\\":\\\"input\\\",\\\"id\\\":824,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"name\\\",\\\"columnType\\\":\\\"varchar(100)\\\",\\\"columnComment\\\":\\\"参数名称\\\",\\\"nullable\\\":false,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":2,\\\"javaType\\\":\\\"String\\\",\\\"javaField\\\":\\\"name\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":\\\"test\\\",\\\"createOperation\\\":true,\\\"updateOperation\\\":true,\\\"listOperation\\\":true,\\\"listOperationCondition\\\":\\\"LIKE\\\",\\\"listOperationResult\\\":true,\\\"htmlType\\\":\\\"input\\\",\\\"id\\\":825,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"url\\\",\\\"columnType\\\":\\\"varchar(1024)\\\",\\\"columnComment\\\":\\\"数据源连接\\\",\\\"nullable\\\":false,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":3,\\\"javaType\\\":\\\"String\\\",\\\"javaField\\\":\\\"url\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":\\\"jdbc:mysql://127.0.0.1:3306/ruoyi-vue-pro\\\",\\\"createOperation\\\":true,\\\"updateOperation\\\":true,\\\"listOperation\\\":true,\\\"listOperationCondition\\\":\\\"LIKE\\\",\\\"listOperationResult\\\":true,\\\"htmlType\\\":\\\"input\\\",\\\"id\\\":826,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"username\\\",\\\"columnType\\\":\\\"varchar(255)\\\",\\\"columnComment\\\":\\\"用户名\\\",\\\"nullable\\\":false,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":4,\\\"javaType\\\":\\\"String\\\",\\\"javaField\\\":\\\"username\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":\\\"root\\\",\\\"createOperation\\\":true,\\\"updateOperation\\\":true,\\\"listOperation\\\":\\\"false\\\",\\\"listOperationCondition\\\":\\\"LIKE\\\",\\\"listOperationResult\\\":true,\\\"htmlType\\\":\\\"input\\\",\\\"id\\\":827,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"password\\\",\\\"columnType\\\":\\\"varchar(255)\\\",\\\"columnComment\\\":\\\"密码\\\",\\\"nullable\\\":false,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":5,\\\"javaType\\\":\\\"String\\\",\\\"javaField\\\":\\\"password\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":\\\"123456\\\",\\\"createOperation\\\":true,\\\"updateOperation\\\":true,\\\"listOperation\\\":\\\"false\\\",\\\"listOperationCondition\\\":\\\"=\\\",\\\"listOperationResult\\\":\\\"false\\\",\\\"htmlType\\\":\\\"input\\\",\\\"id\\\":828,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"creator\\\",\\\"columnType\\\":\\\"varchar(64)\\\",\\\"columnComment\\\":\\\"创建者\\\",\\\"nullable\\\":true,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":6,\\\"javaType\\\":\\\"String\\\",\\\"javaField\\\":\\\"creator\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":null,\\\"createOperation\\\":false,\\\"updateOperation\\\":false,\\\"listOperation\\\":false,\\\"listOperationCondition\\\":\\\"=\\\",\\\"listOperationResult\\\":false,\\\"htmlType\\\":\\\"input\\\",\\\"id\\\":829,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"create_time\\\",\\\"columnType\\\":\\\"datetime\\\",\\\"columnComment\\\":\\\"创建时间\\\",\\\"nullable\\\":false,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":7,\\\"javaType\\\":\\\"Date\\\",\\\"javaField\\\":\\\"createTime\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":null,\\\"createOperation\\\":false,\\\"updateOperation\\\":false,\\\"listOperation\\\":true,\\\"listOperationCondition\\\":\\\"BETWEEN\\\",\\\"listOperationResult\\\":true,\\\"htmlType\\\":\\\"datetime\\\",\\\"id\\\":830,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"updater\\\",\\\"columnType\\\":\\\"varchar(64)\\\",\\\"columnComment\\\":\\\"更新者\\\",\\\"nullable\\\":true,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":8,\\\"javaType\\\":\\\"String\\\",\\\"javaField\\\":\\\"updater\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":null,\\\"createOperation\\\":false,\\\"updateOperation\\\":false,\\\"listOperation\\\":false,\\\"listOperationCondition\\\":\\\"=\\\",\\\"listOperationResult\\\":false,\\\"htmlType\\\":\\\"input\\\",\\\"id\\\":831,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"update_time\\\",\\\"columnType\\\":\\\"datetime\\\",\\\"columnComment\\\":\\\"更新时间\\\",\\\"nullable\\\":false,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":9,\\\"javaType\\\":\\\"Date\\\",\\\"javaField\\\":\\\"updateTime\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":null,\\\"createOperation\\\":false,\\\"updateOperation\\\":false,\\\"listOperation\\\":false,\\\"listOperationCondition\\\":\\\"BETWEEN\\\",\\\"listOperationResult\\\":false,\\\"htmlType\\\":\\\"datetime\\\",\\\"id\\\":832,\\\"createTime\\\":1651067094000},{\\\"tableId\\\":70,\\\"columnName\\\":\\\"deleted\\\",\\\"columnType\\\":\\\"bit(1)\\\",\\\"columnComment\\\":\\\"是否删除\\\",\\\"nullable\\\":false,\\\"primaryKey\\\":false,\\\"autoIncrement\\\":\\\"false\\\",\\\"ordinalPosition\\\":10,\\\"javaType\\\":\\\"Boolean\\\",\\\"javaField\\\":\\\"deleted\\\",\\\"dictType\\\":\\\"\\\",\\\"example\\\":null,\\\"createOperation\\\":false,\\\"updateOperation\\\":false,\\\"listOperation\\\":false,\\\"listOperationCondition\\\":\\\"=\\\",\\\"listOperationResult\\\":false,\\\"htmlType\\\":\\\"radio\\\",\\\"id\\\":833,\\\"createTime\\\":1651067094000}],\\\"params\\\":{}}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:50:04', '2022-04-27 21:50:04', 103, 0, '', NULL, '2022-04-27 21:50:04', NULL, '2022-04-27 21:50:04', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25958, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:50:04', '2022-04-27 21:50:04', 26, 0, '', NULL, '2022-04-27 21:50:04', NULL, '2022-04-27 21:50:04', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25959, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"70\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:50:07', '2022-04-27 21:50:08', 239, 0, '', NULL, '2022-04-27 21:50:08', NULL, '2022-04-27 21:50:08', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25960, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/download', '{\"query\":{\"tableId\":\"70\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:50:23', '2022-04-27 21:50:23', 76, 0, '', NULL, '2022-04-27 21:50:23', NULL, '2022-04-27 21:50:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25961, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:38:08', '2022-04-27 22:38:08', 115, 0, '', NULL, '2022-04-27 22:38:08', NULL, '2022-04-27 22:38:08', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25962, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:38:08', '2022-04-27 22:38:08', 137, 0, '', NULL, '2022-04-27 22:38:08', NULL, '2022-04-27 22:38:08', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25963, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:38:08', '2022-04-27 22:38:08', 14, 0, '', NULL, '2022-04-27 22:38:08', NULL, '2022-04-27 22:38:08', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25964, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:38:09', '2022-04-27 22:38:09', 141, 0, '', NULL, '2022-04-27 22:38:09', NULL, '2022-04-27 22:38:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25965, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:09', '2022-04-27 22:41:09', 23, 0, '', NULL, '2022-04-27 22:41:09', NULL, '2022-04-27 22:41:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25966, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:09', '2022-04-27 22:41:09', 29, 0, '', NULL, '2022-04-27 22:41:09', NULL, '2022-04-27 22:41:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25967, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:09', '2022-04-27 22:41:09', 7, 0, '', NULL, '2022-04-27 22:41:09', NULL, '2022-04-27 22:41:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25968, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:09', '2022-04-27 22:41:09', 41, 0, '', NULL, '2022-04-27 22:41:09', NULL, '2022-04-27 22:41:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25969, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:13', '2022-04-27 22:41:13', 34, 0, '', NULL, '2022-04-27 22:41:13', NULL, '2022-04-27 22:41:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25970, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:13', '2022-04-27 22:41:13', 43, 0, '', NULL, '2022-04-27 22:41:13', NULL, '2022-04-27 22:41:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25971, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:13', '2022-04-27 22:41:13', 8, 0, '', NULL, '2022-04-27 22:41:13', NULL, '2022-04-27 22:41:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25972, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:14', '2022-04-27 22:41:14', 30, 0, '', NULL, '2022-04-27 22:41:14', NULL, '2022-04-27 22:41:14', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25973, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:19', '2022-04-27 22:41:19', 53, 0, '', NULL, '2022-04-27 22:41:19', NULL, '2022-04-27 22:41:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25974, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:25', '2022-04-27 22:41:25', 28, 0, '', NULL, '2022-04-27 22:41:25', NULL, '2022-04-27 22:41:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25975, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/get', '{\"query\":{\"id\":\"1255\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:25', '2022-04-27 22:41:25', 29, 0, '', NULL, '2022-04-27 22:41:25', NULL, '2022-04-27 22:41:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25976, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/system/menu/update', '{\"query\":{},\"body\":\"{\\\"name\\\":\\\"数据源配置管理\\\",\\\"permission\\\":\\\"\\\",\\\"type\\\":2,\\\"sort\\\":1,\\\"parentId\\\":2,\\\"path\\\":\\\"data-source-config\\\",\\\"icon\\\":\\\"\\\",\\\"component\\\":\\\"infra/dataSourceConfig/index\\\",\\\"status\\\":0,\\\"visible\\\":true,\\\"keepAlive\\\":true,\\\"id\\\":1255,\\\"createTime\\\":1651041452000}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:28', '2022-04-27 22:41:28', 106, 0, '', NULL, '2022-04-27 22:41:28', NULL, '2022-04-27 22:41:28', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25977, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:28', '2022-04-27 22:41:28', 24, 0, '', NULL, '2022-04-27 22:41:28', NULL, '2022-04-27 22:41:28', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25978, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/get', '{\"query\":{\"id\":\"1255\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:34', '2022-04-27 22:41:34', 16, 0, '', NULL, '2022-04-27 22:41:34', NULL, '2022-04-27 22:41:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25979, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:34', '2022-04-27 22:41:34', 25, 0, '', NULL, '2022-04-27 22:41:34', NULL, '2022-04-27 22:41:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25980, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/system/menu/update', '{\"query\":{},\"body\":\"{\\\"name\\\":\\\"数据源配置\\\",\\\"permission\\\":\\\"\\\",\\\"type\\\":2,\\\"sort\\\":1,\\\"parentId\\\":2,\\\"path\\\":\\\"data-source-config\\\",\\\"icon\\\":\\\"\\\",\\\"component\\\":\\\"infra/dataSourceConfig/index\\\",\\\"status\\\":0,\\\"visible\\\":true,\\\"keepAlive\\\":true,\\\"id\\\":1255,\\\"createTime\\\":1651041452000}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:37', '2022-04-27 22:41:37', 62, 0, '', NULL, '2022-04-27 22:41:37', NULL, '2022-04-27 22:41:37', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25981, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:37', '2022-04-27 22:41:37', 60, 0, '', NULL, '2022-04-27 22:41:37', NULL, '2022-04-27 22:41:37', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25982, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/get', '{\"query\":{\"id\":\"1255\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:45', '2022-04-27 22:41:45', 18, 0, '', NULL, '2022-04-27 22:41:45', NULL, '2022-04-27 22:41:45', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25983, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:45', '2022-04-27 22:41:45', 28, 0, '', NULL, '2022-04-27 22:41:45', NULL, '2022-04-27 22:41:45', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25984, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/system/menu/update', '{\"query\":{},\"body\":\"{\\\"name\\\":\\\"数据源配置\\\",\\\"permission\\\":\\\"\\\",\\\"type\\\":2,\\\"sort\\\":1,\\\"parentId\\\":2,\\\"path\\\":\\\"data-source-config\\\",\\\"icon\\\":\\\"rate\\\",\\\"component\\\":\\\"infra/dataSourceConfig/index\\\",\\\"status\\\":0,\\\"visible\\\":true,\\\"keepAlive\\\":true,\\\"id\\\":1255,\\\"createTime\\\":1651041452000}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:06', '2022-04-27 22:42:06', 50, 0, '', NULL, '2022-04-27 22:42:06', NULL, '2022-04-27 22:42:06', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25985, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:06', '2022-04-27 22:42:06', 25, 0, '', NULL, '2022-04-27 22:42:06', NULL, '2022-04-27 22:42:06', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25986, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:07', '2022-04-27 22:42:07', 20, 0, '', NULL, '2022-04-27 22:42:07', NULL, '2022-04-27 22:42:07', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25987, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:07', '2022-04-27 22:42:07', 29, 0, '', NULL, '2022-04-27 22:42:07', NULL, '2022-04-27 22:42:07', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25988, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:07', '2022-04-27 22:42:07', 6, 0, '', NULL, '2022-04-27 22:42:07', NULL, '2022-04-27 22:42:07', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25989, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:08', '2022-04-27 22:42:08', 25, 0, '', NULL, '2022-04-27 22:42:08', NULL, '2022-04-27 22:42:08', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25990, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:25', '2022-04-27 22:42:25', 26, 0, '', NULL, '2022-04-27 22:42:25', NULL, '2022-04-27 22:42:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25991, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:25', '2022-04-27 22:42:25', 38, 0, '', NULL, '2022-04-27 22:42:25', NULL, '2022-04-27 22:42:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25992, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:26', '2022-04-27 22:42:26', 31, 0, '', NULL, '2022-04-27 22:42:26', NULL, '2022-04-27 22:42:26', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25993, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:26', '2022-04-27 22:42:26', 33, 0, '', NULL, '2022-04-27 22:42:26', NULL, '2022-04-27 22:42:26', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25994, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:26', '2022-04-27 22:42:26', 7, 0, '', NULL, '2022-04-27 22:42:26', NULL, '2022-04-27 22:42:26', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25995, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:07', '2022-04-27 22:43:07', 140, 500, '系统异常', NULL, '2022-04-27 22:43:07', NULL, '2022-04-27 22:43:07', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25996, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:31', '2022-04-27 22:43:31', 27, 0, '', NULL, '2022-04-27 22:43:31', NULL, '2022-04-27 22:43:31', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25997, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:31', '2022-04-27 22:43:31', 38, 0, '', NULL, '2022-04-27 22:43:31', NULL, '2022-04-27 22:43:31', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25998, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:31', '2022-04-27 22:43:31', 9, 0, '', NULL, '2022-04-27 22:43:31', NULL, '2022-04-27 22:43:31', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25999, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:32', '2022-04-27 22:43:32', 21, 500, '系统异常', NULL, '2022-04-27 22:43:32', NULL, '2022-04-27 22:43:32', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26000, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:46', '2022-04-27 22:43:46', 25, 0, '', NULL, '2022-04-27 22:43:46', NULL, '2022-04-27 22:43:46', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26001, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:46', '2022-04-27 22:43:46', 38, 0, '', NULL, '2022-04-27 22:43:46', NULL, '2022-04-27 22:43:46', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26002, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:46', '2022-04-27 22:43:46', 8, 0, '', NULL, '2022-04-27 22:43:46', NULL, '2022-04-27 22:43:46', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26003, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:47', '2022-04-27 22:43:47', 39, 500, '系统异常', NULL, '2022-04-27 22:43:47', NULL, '2022-04-27 22:43:47', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26004, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:45:55', '2022-04-27 22:45:55', 98, 0, '', NULL, '2022-04-27 22:45:55', NULL, '2022-04-27 22:45:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26005, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:45:55', '2022-04-27 22:45:55', 119, 0, '', NULL, '2022-04-27 22:45:55', NULL, '2022-04-27 22:45:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26006, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:45:55', '2022-04-27 22:45:55', 14, 0, '', NULL, '2022-04-27 22:45:55', NULL, '2022-04-27 22:45:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26007, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:45:56', '2022-04-27 22:45:56', 46, 0, '', NULL, '2022-04-27 22:45:56', NULL, '2022-04-27 22:45:56', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26008, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:46:01', '2022-04-27 22:46:01', 28, 0, '', NULL, '2022-04-27 22:46:01', NULL, '2022-04-27 22:46:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26009, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:46:01', '2022-04-27 22:46:01', 39, 0, '', NULL, '2022-04-27 22:46:01', NULL, '2022-04-27 22:46:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26010, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:46:01', '2022-04-27 22:46:01', 6, 0, '', NULL, '2022-04-27 22:46:01', NULL, '2022-04-27 22:46:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26011, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:46:02', '2022-04-27 22:46:02', 20, 0, '', NULL, '2022-04-27 22:46:02', NULL, '2022-04-27 22:46:02', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26012, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:46:21', '2022-04-27 22:46:21', 29, 0, '', NULL, '2022-04-27 22:46:21', NULL, '2022-04-27 22:46:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26013, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:46:21', '2022-04-27 22:46:21', 112, 0, '', NULL, '2022-04-27 22:46:21', NULL, '2022-04-27 22:46:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26014, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:46:21', '2022-04-27 22:46:21', 15, 0, '', NULL, '2022-04-27 22:46:21', NULL, '2022-04-27 22:46:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26015, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:46:22', '2022-04-27 22:46:22', 20, 0, '', NULL, '2022-04-27 22:46:22', NULL, '2022-04-27 22:46:22', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26016, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:47:23', '2022-04-27 22:47:23', 20, 0, '', NULL, '2022-04-27 22:47:23', NULL, '2022-04-27 22:47:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26017, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:47:23', '2022-04-27 22:47:23', 27, 0, '', NULL, '2022-04-27 22:47:23', NULL, '2022-04-27 22:47:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26018, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:47:23', '2022-04-27 22:47:23', 7, 0, '', NULL, '2022-04-27 22:47:23', NULL, '2022-04-27 22:47:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26019, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:47:24', '2022-04-27 22:47:24', 16, 0, '', NULL, '2022-04-27 22:47:24', NULL, '2022-04-27 22:47:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26020, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/data-source-config/create', '{\"query\":{},\"body\":\"{\\\"name\\\":\\\"test\\\",\\\"url\\\":\\\"jdbc:mysql://127.0.0.1:3306/testb5f4\\\",\\\"username\\\":\\\"root\\\",\\\"password\\\":\\\"123456\\\"}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:20', '2022-04-27 22:48:20', 110, 0, '', NULL, '2022-04-27 22:48:20', NULL, '2022-04-27 22:48:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26021, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:20', '2022-04-27 22:48:20', 16, 0, '', NULL, '2022-04-27 22:48:20', NULL, '2022-04-27 22:48:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26022, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:22', '2022-04-27 22:48:22', 20, 0, '', NULL, '2022-04-27 22:48:22', NULL, '2022-04-27 22:48:22', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26023, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:22', '2022-04-27 22:48:22', 28, 0, '', NULL, '2022-04-27 22:48:22', NULL, '2022-04-27 22:48:22', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26024, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:22', '2022-04-27 22:48:22', 5, 0, '', NULL, '2022-04-27 22:48:22', NULL, '2022-04-27 22:48:22', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26025, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:23', '2022-04-27 22:48:23', 16, 0, '', NULL, '2022-04-27 22:48:23', NULL, '2022-04-27 22:48:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26026, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:29', '2022-04-27 22:48:29', 27, 0, '', NULL, '2022-04-27 22:48:29', NULL, '2022-04-27 22:48:29', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26027, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:29', '2022-04-27 22:48:29', 38, 0, '', NULL, '2022-04-27 22:48:29', NULL, '2022-04-27 22:48:29', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26028, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:29', '2022-04-27 22:48:29', 7, 0, '', NULL, '2022-04-27 22:48:29', NULL, '2022-04-27 22:48:29', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26029, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:30', '2022-04-27 22:48:30', 20, 0, '', NULL, '2022-04-27 22:48:30', NULL, '2022-04-27 22:48:30', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26030, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:49:08', '2022-04-27 22:49:09', 25, 0, '', NULL, '2022-04-27 22:49:09', NULL, '2022-04-27 22:49:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26031, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:49:09', '2022-04-27 22:49:09', 37, 0, '', NULL, '2022-04-27 22:49:09', NULL, '2022-04-27 22:49:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26032, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:49:09', '2022-04-27 22:49:09', 5, 0, '', NULL, '2022-04-27 22:49:09', NULL, '2022-04-27 22:49:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26033, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:49:09', '2022-04-27 22:49:09', 16, 0, '', NULL, '2022-04-27 22:49:09', NULL, '2022-04-27 22:49:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26034, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/get', '{\"query\":{\"id\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:49:18', '2022-04-27 22:49:19', 27, 0, '', NULL, '2022-04-27 22:49:19', NULL, '2022-04-27 22:49:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26035, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/data-source-config/update', '{\"query\":{},\"body\":\"{\\\"name\\\":\\\"test\\\",\\\"url\\\":\\\"jdbc:mysql://127.0.0.1:3306/testb5f4\\\",\\\"username\\\":\\\"root\\\",\\\"id\\\":8,\\\"createTime\\\":1651070900000,\\\"password\\\":\\\"123456\\\"}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:49:22', '2022-04-27 22:49:22', 40, 0, '', NULL, '2022-04-27 22:49:22', NULL, '2022-04-27 22:49:22', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26036, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:49:22', '2022-04-27 22:49:22', 14, 0, '', NULL, '2022-04-27 22:49:22', NULL, '2022-04-27 22:49:22', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26037, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 23:04:18', '2022-04-27 23:04:18', 88, 0, '', NULL, '2022-04-27 23:04:18', NULL, '2022-04-27 23:04:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26038, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 23:04:18', '2022-04-27 23:04:18', 117, 0, '', NULL, '2022-04-27 23:04:18', NULL, '2022-04-27 23:04:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26039, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 23:04:18', '2022-04-27 23:04:18', 14, 0, '', NULL, '2022-04-27 23:04:18', NULL, '2022-04-27 23:04:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26040, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 23:04:19', '2022-04-27 23:04:19', 50, 0, '', NULL, '2022-04-27 23:04:19', NULL, '2022-04-27 23:04:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26041, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/get', '{\"query\":{\"id\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 23:04:20', '2022-04-27 23:04:20', 80, 0, '', NULL, '2022-04-27 23:04:20', NULL, '2022-04-27 23:04:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26042, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/data-source-config/update', '{\"query\":{},\"body\":\"{\\\"name\\\":\\\"test\\\",\\\"url\\\":\\\"jdbc:mysql://127.0.0.1:3306/testb5f4\\\",\\\"username\\\":\\\"root\\\",\\\"id\\\":8,\\\"createTime\\\":1651070900000,\\\"password\\\":\\\"1\\\"}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 23:04:21', '2022-04-27 23:04:22', 173, 1001007001, '数据源配置不正确,无法进行连接', NULL, '2022-04-27 23:04:22', NULL, '2022-04-27 23:04:22', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26043, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/data-source-config/update', '{\"query\":{},\"body\":\"{\\\"name\\\":\\\"test\\\",\\\"url\\\":\\\"jdbc:mysql://127.0.0.1:3306/testb5f4\\\",\\\"username\\\":\\\"root\\\",\\\"id\\\":8,\\\"createTime\\\":1651070900000,\\\"password\\\":\\\"123456\\\"}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 23:04:24', '2022-04-27 23:04:24', 87, 0, '', NULL, '2022-04-27 23:04:24', NULL, '2022-04-27 23:04:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26044, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 23:04:24', '2022-04-27 23:04:24', 16, 0, '', NULL, '2022-04-27 23:04:24', NULL, '2022-04-27 23:04:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26045, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:47:55', '2022-04-28 10:47:55', 128, 0, '', NULL, '2022-04-28 10:47:55', NULL, '2022-04-28 10:47:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26046, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:47:55', '2022-04-28 10:47:55', 173, 0, '', NULL, '2022-04-28 10:47:55', NULL, '2022-04-28 10:47:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26047, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/logout', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:47:55', '2022-04-28 10:47:55', 91, 0, '', NULL, '2022-04-28 10:47:55', NULL, '2022-04-28 10:47:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26048, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:47:55', '2022-04-28 10:47:57', 1651, 0, '', NULL, '2022-04-28 10:47:57', NULL, '2022-04-28 10:47:57', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26049, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:47:59', '2022-04-28 10:47:59', 24, 0, '', NULL, '2022-04-28 10:47:59', NULL, '2022-04-28 10:47:59', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26050, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/tenant/get-id-by-name', '{\"query\":{\"name\":\"芋道源码\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:04', '2022-04-28 10:48:04', 35, 0, '', NULL, '2022-04-28 10:48:04', NULL, '2022-04-28 10:48:04', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26051, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/login', '{\"query\":{},\"body\":\"{\\\"username\\\":\\\"admin\\\",\\\"password\\\":\\\"admin123\\\",\\\"code\\\":\\\"qmqy0\\\",\\\"uuid\\\":\\\"baf9d07446d84e55abc6e5952ba9e6a5\\\"}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:04', '2022-04-28 10:48:04', 4, 0, '', NULL, '2022-04-28 10:48:04', NULL, '2022-04-28 10:48:04', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26052, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:04', '2022-04-28 10:48:04', 13, 0, '', NULL, '2022-04-28 10:48:04', NULL, '2022-04-28 10:48:04', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26053, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/logout', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:05', '2022-04-28 10:48:05', 2, 0, '', NULL, '2022-04-28 10:48:05', NULL, '2022-04-28 10:48:05', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26054, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:06', '2022-04-28 10:48:06', 20, 0, '', NULL, '2022-04-28 10:48:06', NULL, '2022-04-28 10:48:06', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26055, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:12', '2022-04-28 10:48:12', 15, 0, '', NULL, '2022-04-28 10:48:12', NULL, '2022-04-28 10:48:12', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26056, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/tenant/get-id-by-name', '{\"query\":{\"name\":\"芋道源码\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:15', '2022-04-28 10:48:15', 12, 0, '', NULL, '2022-04-28 10:48:15', NULL, '2022-04-28 10:48:15', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26057, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/auth/login', '{\"query\":{},\"body\":\"{\\\"username\\\":\\\"admin\\\",\\\"password\\\":\\\"admin123\\\",\\\"code\\\":\\\"07wd7\\\",\\\"uuid\\\":\\\"2cee3479acf345f5938b2a9be688a260\\\"}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:15', '2022-04-28 10:48:15', 239, 0, '', NULL, '2022-04-28 10:48:15', NULL, '2022-04-28 10:48:15', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26058, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:15', '2022-04-28 10:48:15', 19, 0, '', NULL, '2022-04-28 10:48:15', NULL, '2022-04-28 10:48:15', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26059, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:15', '2022-04-28 10:48:15', 41, 0, '', NULL, '2022-04-28 10:48:15', NULL, '2022-04-28 10:48:15', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26060, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:15', '2022-04-28 10:48:16', 10, 0, '', NULL, '2022-04-28 10:48:16', NULL, '2022-04-28 10:48:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26061, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:54', '2022-04-28 10:48:54', 109, 0, '', NULL, '2022-04-28 10:48:54', NULL, '2022-04-28 10:48:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26062, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:56', '2022-04-28 10:57:52', 535817, 500, '系统异常', NULL, '2022-04-28 10:57:52', NULL, '2022-04-28 10:57:52', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26063, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:05:10', '2022-04-28 11:05:10', 107, 0, '', NULL, '2022-04-28 11:05:10', NULL, '2022-04-28 11:05:10', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26064, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:05:10', '2022-04-28 11:05:10', 86, 0, '', NULL, '2022-04-28 11:05:10', NULL, '2022-04-28 11:05:10', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26065, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:05:10', '2022-04-28 11:05:10', 14, 0, '', NULL, '2022-04-28 11:05:10', NULL, '2022-04-28 11:05:10', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26066, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:05:10', '2022-04-28 11:05:10', 113, 0, '', NULL, '2022-04-28 11:05:10', NULL, '2022-04-28 11:05:10', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26067, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:05:11', '2022-04-28 11:05:54', 42421, 500, '系统异常', NULL, '2022-04-28 11:05:54', NULL, '2022-04-28 11:05:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26068, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:18:18', '2022-04-28 11:18:18', 74, 0, '', NULL, '2022-04-28 11:18:18', NULL, '2022-04-28 11:18:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26069, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:18:18', '2022-04-28 11:18:18', 68, 0, '', NULL, '2022-04-28 11:18:18', NULL, '2022-04-28 11:18:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26070, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:18:18', '2022-04-28 11:18:18', 10, 0, '', NULL, '2022-04-28 11:18:18', NULL, '2022-04-28 11:18:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26071, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:18:19', '2022-04-28 11:18:19', 126, 0, '', NULL, '2022-04-28 11:18:19', NULL, '2022-04-28 11:18:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26072, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:28:34', '2022-04-28 11:28:34', 21, 0, '', NULL, '2022-04-28 11:28:34', NULL, '2022-04-28 11:28:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26073, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:28:34', '2022-04-28 11:28:34', 31, 0, '', NULL, '2022-04-28 11:28:34', NULL, '2022-04-28 11:28:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26074, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:28:34', '2022-04-28 11:28:34', 6, 0, '', NULL, '2022-04-28 11:28:34', NULL, '2022-04-28 11:28:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26075, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:28:34', '2022-04-28 11:28:34', 39, 0, '', NULL, '2022-04-28 11:28:34', NULL, '2022-04-28 11:28:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26076, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:28:50', '2022-04-28 11:41:03', 733029, 500, '系统异常', NULL, '2022-04-28 11:41:03', NULL, '2022-04-28 11:41:03', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26077, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:41:52', '2022-04-28 11:41:53', 105, 0, '', NULL, '2022-04-28 11:41:53', NULL, '2022-04-28 11:41:53', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26078, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:41:52', '2022-04-28 11:41:53', 88, 0, '', NULL, '2022-04-28 11:41:53', NULL, '2022-04-28 11:41:53', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26079, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:41:53', '2022-04-28 11:41:53', 15, 0, '', NULL, '2022-04-28 11:41:53', NULL, '2022-04-28 11:41:53', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26080, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:41:53', '2022-04-28 11:41:53', 128, 0, '', NULL, '2022-04-28 11:41:53', NULL, '2022-04-28 11:41:53', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26081, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:42:20', '2022-04-28 11:47:34', 314086, 500, '系统异常', NULL, '2022-04-28 11:47:34', NULL, '2022-04-28 11:47:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26082, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:13', '2022-04-28 11:49:13', 86, 0, '', NULL, '2022-04-28 11:49:13', NULL, '2022-04-28 11:49:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26083, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:13', '2022-04-28 11:49:13', 105, 0, '', NULL, '2022-04-28 11:49:13', NULL, '2022-04-28 11:49:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26084, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:13', '2022-04-28 11:49:13', 12, 0, '', NULL, '2022-04-28 11:49:13', NULL, '2022-04-28 11:49:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26085, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:14', '2022-04-28 11:49:14', 110, 0, '', NULL, '2022-04-28 11:49:14', NULL, '2022-04-28 11:49:14', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26086, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:16', '2022-04-28 11:49:46', 29006, 0, '', NULL, '2022-04-28 11:49:46', NULL, '2022-04-28 11:49:46', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26087, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:51', '2022-04-28 11:49:51', 25, 0, '', NULL, '2022-04-28 11:49:51', NULL, '2022-04-28 11:49:51', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26088, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:51', '2022-04-28 11:49:51', 34, 0, '', NULL, '2022-04-28 11:49:51', NULL, '2022-04-28 11:49:51', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26089, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:51', '2022-04-28 11:49:51', 6, 0, '', NULL, '2022-04-28 11:49:51', NULL, '2022-04-28 11:49:51', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26090, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:52', '2022-04-28 11:49:52', 37, 0, '', NULL, '2022-04-28 11:49:52', NULL, '2022-04-28 11:49:52', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26091, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:56', '2022-04-28 11:49:58', 2261, 0, '', NULL, '2022-04-28 11:49:58', NULL, '2022-04-28 11:49:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26092, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:33:33', '2022-04-28 12:33:33', 98, 0, '', NULL, '2022-04-28 12:33:33', NULL, '2022-04-28 12:33:33', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26093, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:33:33', '2022-04-28 12:33:33', 118, 0, '', NULL, '2022-04-28 12:33:33', NULL, '2022-04-28 12:33:33', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26094, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:33:33', '2022-04-28 12:33:33', 14, 0, '', NULL, '2022-04-28 12:33:33', NULL, '2022-04-28 12:33:33', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26095, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:33:33', '2022-04-28 12:33:33', 122, 0, '', NULL, '2022-04-28 12:33:33', NULL, '2022-04-28 12:33:33', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26096, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:34:17', '2022-04-28 12:34:17', 79, 500, '系统异常', NULL, '2022-04-28 12:34:17', NULL, '2022-04-28 12:34:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26097, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:34:42', '2022-04-28 12:34:42', 22, 0, '', NULL, '2022-04-28 12:34:42', NULL, '2022-04-28 12:34:42', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26098, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:34:42', '2022-04-28 12:34:42', 27, 0, '', NULL, '2022-04-28 12:34:42', NULL, '2022-04-28 12:34:42', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26099, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:34:43', '2022-04-28 12:34:43', 8, 0, '', NULL, '2022-04-28 12:34:43', NULL, '2022-04-28 12:34:43', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26100, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:34:43', '2022-04-28 12:34:43', 38, 0, '', NULL, '2022-04-28 12:34:43', NULL, '2022-04-28 12:34:43', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26101, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:34:48', '2022-04-28 12:37:35', 166291, 500, '系统异常', NULL, '2022-04-28 12:37:35', NULL, '2022-04-28 12:37:35', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26102, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:38:27', '2022-04-28 12:38:27', 90, 0, '', NULL, '2022-04-28 12:38:27', NULL, '2022-04-28 12:38:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26103, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:38:27', '2022-04-28 12:38:27', 108, 0, '', NULL, '2022-04-28 12:38:27', NULL, '2022-04-28 12:38:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26104, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:38:27', '2022-04-28 12:38:27', 14, 0, '', NULL, '2022-04-28 12:38:27', NULL, '2022-04-28 12:38:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26105, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:38:28', '2022-04-28 12:38:28', 113, 0, '', NULL, '2022-04-28 12:38:28', NULL, '2022-04-28 12:38:28', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26106, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:38:29', '2022-04-28 12:38:29', 85, 0, '', NULL, '2022-04-28 12:38:29', NULL, '2022-04-28 12:38:29', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26107, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:50:23', '2022-04-28 12:50:23', 104, 0, '', NULL, '2022-04-28 12:50:23', NULL, '2022-04-28 12:50:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26108, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:50:23', '2022-04-28 12:50:23', 87, 0, '', NULL, '2022-04-28 12:50:23', NULL, '2022-04-28 12:50:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26109, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:50:23', '2022-04-28 12:50:23', 15, 0, '', NULL, '2022-04-28 12:50:23', NULL, '2022-04-28 12:50:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26110, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:50:23', '2022-04-28 12:50:23', 115, 0, '', NULL, '2022-04-28 12:50:23', NULL, '2022-04-28 12:50:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26111, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:50:25', '2022-04-28 12:51:14', 49283, 0, '', NULL, '2022-04-28 12:51:14', NULL, '2022-04-28 12:51:14', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26112, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:51:18', '2022-04-28 12:51:18', 23, 0, '', NULL, '2022-04-28 12:51:18', NULL, '2022-04-28 12:51:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26113, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:51:18', '2022-04-28 12:51:18', 30, 0, '', NULL, '2022-04-28 12:51:18', NULL, '2022-04-28 12:51:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26114, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:51:18', '2022-04-28 12:51:18', 6, 0, '', NULL, '2022-04-28 12:51:18', NULL, '2022-04-28 12:51:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26115, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:51:19', '2022-04-28 12:51:19', 34, 0, '', NULL, '2022-04-28 12:51:19', NULL, '2022-04-28 12:51:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26116, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:51:20', '2022-04-28 12:51:21', 35, 0, '', NULL, '2022-04-28 12:51:21', NULL, '2022-04-28 12:51:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26117, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 13:04:23', '2022-04-28 13:04:23', 108, 0, '', NULL, '2022-04-28 13:04:23', NULL, '2022-04-28 13:04:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26118, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 13:04:23', '2022-04-28 13:04:23', 88, 0, '', NULL, '2022-04-28 13:04:23', NULL, '2022-04-28 13:04:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26119, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 13:04:23', '2022-04-28 13:04:23', 15, 0, '', NULL, '2022-04-28 13:04:23', NULL, '2022-04-28 13:04:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26120, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 13:04:24', '2022-04-28 13:04:24', 120, 0, '', NULL, '2022-04-28 13:04:24', NULL, '2022-04-28 13:04:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26121, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 13:04:24', '2022-04-28 13:04:25', 62, 0, '', NULL, '2022-04-28 13:04:25', NULL, '2022-04-28 13:04:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26122, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"53\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:01:28', '2022-04-28 19:01:28', 221, 500, '系统异常', NULL, '2022-04-28 19:01:28', NULL, '2022-04-28 19:01:28', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26123, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:19:06', '2022-04-28 19:19:06', 110, 0, '', NULL, '2022-04-28 19:19:06', NULL, '2022-04-28 19:19:06', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26124, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:19:06', '2022-04-28 19:19:06', 91, 0, '', NULL, '2022-04-28 19:19:06', NULL, '2022-04-28 19:19:06', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26125, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:19:06', '2022-04-28 19:19:06', 13, 0, '', NULL, '2022-04-28 19:19:06', NULL, '2022-04-28 19:19:06', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26126, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:19:06', '2022-04-28 19:19:06', 113, 0, '', NULL, '2022-04-28 19:19:06', NULL, '2022-04-28 19:19:06', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26127, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:19:11', '2022-04-28 19:19:11', 63, 0, '', NULL, '2022-04-28 19:19:11', NULL, '2022-04-28 19:19:11', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26128, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:19:14', '2022-04-28 19:19:14', 69, 500, '系统异常', NULL, '2022-04-28 19:19:14', NULL, '2022-04-28 19:19:14', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26129, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:21:13', '2022-04-28 19:21:13', 105, 0, '', NULL, '2022-04-28 19:21:13', NULL, '2022-04-28 19:21:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26130, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:21:13', '2022-04-28 19:21:13', 89, 0, '', NULL, '2022-04-28 19:21:13', NULL, '2022-04-28 19:21:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26131, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:21:13', '2022-04-28 19:21:13', 12, 0, '', NULL, '2022-04-28 19:21:13', NULL, '2022-04-28 19:21:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26132, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:21:13', '2022-04-28 19:21:14', 117, 0, '', NULL, '2022-04-28 19:21:14', NULL, '2022-04-28 19:21:14', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26133, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:21:16', '2022-04-28 19:21:16', 66, 0, '', NULL, '2022-04-28 19:21:16', NULL, '2022-04-28 19:21:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26134, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:21:18', '2022-04-28 19:21:18', 70, 500, '系统异常', NULL, '2022-04-28 19:21:18', NULL, '2022-04-28 19:21:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26135, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:22:34', '2022-04-28 19:22:34', 107, 0, '', NULL, '2022-04-28 19:22:34', NULL, '2022-04-28 19:22:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26136, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:22:34', '2022-04-28 19:22:34', 88, 0, '', NULL, '2022-04-28 19:22:34', NULL, '2022-04-28 19:22:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26137, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:22:34', '2022-04-28 19:22:34', 12, 0, '', NULL, '2022-04-28 19:22:34', NULL, '2022-04-28 19:22:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26138, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:22:34', '2022-04-28 19:22:35', 111, 0, '', NULL, '2022-04-28 19:22:35', NULL, '2022-04-28 19:22:35', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26139, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:22:36', '2022-04-28 19:22:36', 67, 0, '', NULL, '2022-04-28 19:22:36', NULL, '2022-04-28 19:22:36', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26140, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:22:38', '2022-04-28 19:22:39', 69, 500, '系统异常', NULL, '2022-04-28 19:22:39', NULL, '2022-04-28 19:22:39', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26141, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:23:20', '2022-04-28 19:23:51', 31422, 500, '系统异常', NULL, '2022-04-28 19:23:51', NULL, '2022-04-28 19:23:51', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26142, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:23:51', '2022-04-28 19:23:53', 2169, 500, '系统异常', NULL, '2022-04-28 19:23:53', NULL, '2022-04-28 19:23:53', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26143, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:23:56', '2022-04-28 19:23:57', 47, 500, '系统异常', NULL, '2022-04-28 19:23:57', NULL, '2022-04-28 19:23:57', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26144, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:25:47', '2022-04-28 19:25:51', 4334, 0, '', NULL, '2022-04-28 19:25:51', NULL, '2022-04-28 19:25:51', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26145, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:25:51', '2022-04-28 19:25:52', 109, 0, '', NULL, '2022-04-28 19:25:52', NULL, '2022-04-28 19:25:52', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26146, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"53\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:25:57', '2022-04-28 19:25:57', 54, 0, '', NULL, '2022-04-28 19:25:57', NULL, '2022-04-28 19:25:57', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26147, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:25:57', '2022-04-28 19:25:57', 35, 0, '', NULL, '2022-04-28 19:25:57', NULL, '2022-04-28 19:25:57', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26148, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"54\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:00', '2022-04-28 19:26:00', 39, 0, '', NULL, '2022-04-28 19:26:00', NULL, '2022-04-28 19:26:00', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26149, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:00', '2022-04-28 19:26:00', 29, 0, '', NULL, '2022-04-28 19:26:00', NULL, '2022-04-28 19:26:00', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26150, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"55\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:02', '2022-04-28 19:26:02', 42, 0, '', NULL, '2022-04-28 19:26:02', NULL, '2022-04-28 19:26:02', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26151, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:02', '2022-04-28 19:26:02', 28, 0, '', NULL, '2022-04-28 19:26:02', NULL, '2022-04-28 19:26:02', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26152, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"59\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:03', '2022-04-28 19:26:03', 41, 0, '', NULL, '2022-04-28 19:26:03', NULL, '2022-04-28 19:26:03', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26153, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:03', '2022-04-28 19:26:04', 30, 0, '', NULL, '2022-04-28 19:26:04', NULL, '2022-04-28 19:26:04', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26154, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"62\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:05', '2022-04-28 19:26:05', 41, 0, '', NULL, '2022-04-28 19:26:05', NULL, '2022-04-28 19:26:05', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26155, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:05', '2022-04-28 19:26:05', 31, 0, '', NULL, '2022-04-28 19:26:05', NULL, '2022-04-28 19:26:05', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26156, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"64\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:07', '2022-04-28 19:26:07', 42, 0, '', NULL, '2022-04-28 19:26:07', NULL, '2022-04-28 19:26:07', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26157, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:07', '2022-04-28 19:26:07', 29, 0, '', NULL, '2022-04-28 19:26:07', NULL, '2022-04-28 19:26:07', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26158, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"67\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:09', '2022-04-28 19:26:09', 40, 0, '', NULL, '2022-04-28 19:26:09', NULL, '2022-04-28 19:26:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26159, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:09', '2022-04-28 19:26:09', 31, 0, '', NULL, '2022-04-28 19:26:09', NULL, '2022-04-28 19:26:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26160, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"68\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:11', '2022-04-28 19:26:11', 39, 0, '', NULL, '2022-04-28 19:26:11', NULL, '2022-04-28 19:26:11', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26161, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:11', '2022-04-28 19:26:11', 28, 0, '', NULL, '2022-04-28 19:26:11', NULL, '2022-04-28 19:26:11', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26162, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"69\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:12', '2022-04-28 19:26:12', 39, 0, '', NULL, '2022-04-28 19:26:12', NULL, '2022-04-28 19:26:12', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26163, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:12', '2022-04-28 19:26:12', 30, 0, '', NULL, '2022-04-28 19:26:12', NULL, '2022-04-28 19:26:12', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26164, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"70\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:14', '2022-04-28 19:26:14', 38, 0, '', NULL, '2022-04-28 19:26:14', NULL, '2022-04-28 19:26:14', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26165, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:14', '2022-04-28 19:26:14', 29, 0, '', NULL, '2022-04-28 19:26:14', NULL, '2022-04-28 19:26:14', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26166, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"71\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:16', '2022-04-28 19:26:16', 42, 0, '', NULL, '2022-04-28 19:26:16', NULL, '2022-04-28 19:26:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26167, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:16', '2022-04-28 19:26:16', 26, 0, '', NULL, '2022-04-28 19:26:16', NULL, '2022-04-28 19:26:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26168, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:17', '2022-04-28 19:26:17', 41, 0, '', NULL, '2022-04-28 19:26:17', NULL, '2022-04-28 19:26:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26169, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:20', '2022-04-28 19:26:20', 37, 0, '', NULL, '2022-04-28 19:26:20', NULL, '2022-04-28 19:26:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26170, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:44', '2022-04-28 19:26:44', 39, 0, '', NULL, '2022-04-28 19:26:44', NULL, '2022-04-28 19:26:44', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26171, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:49', '2022-04-28 19:26:49', 36, 0, '', NULL, '2022-04-28 19:26:49', NULL, '2022-04-28 19:26:49', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26172, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:50', '2022-04-28 19:26:50', 37, 0, '', NULL, '2022-04-28 19:26:50', NULL, '2022-04-28 19:26:50', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26173, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:55:10', '2022-04-28 19:55:10', 37, 0, '', NULL, '2022-04-28 19:55:10', NULL, '2022-04-28 19:55:10', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26174, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:01:25', '2022-04-28 20:01:25', 62, 0, '', NULL, '2022-04-28 20:01:25', NULL, '2022-04-28 20:01:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26175, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:01:25', '2022-04-28 20:01:25', 65, 0, '', NULL, '2022-04-28 20:01:25', NULL, '2022-04-28 20:01:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26176, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:01:25', '2022-04-28 20:01:25', 21, 0, '', NULL, '2022-04-28 20:01:25', NULL, '2022-04-28 20:01:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26177, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:01:25', '2022-04-28 20:01:25', 35, 0, '', NULL, '2022-04-28 20:01:25', NULL, '2022-04-28 20:01:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26178, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:01:26', '2022-04-28 20:01:26', 44, 0, '', NULL, '2022-04-28 20:01:26', NULL, '2022-04-28 20:01:26', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26179, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:01:26', '2022-04-28 20:01:26', 34, 0, '', NULL, '2022-04-28 20:01:26', NULL, '2022-04-28 20:01:26', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26180, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:09', '2022-04-28 20:02:09', 14, 0, '', NULL, '2022-04-28 20:02:09', NULL, '2022-04-28 20:02:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26181, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:09', '2022-04-28 20:02:09', 31, 0, '', NULL, '2022-04-28 20:02:09', NULL, '2022-04-28 20:02:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26182, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:11', '2022-04-28 20:02:11', 25, 0, '', NULL, '2022-04-28 20:02:11', NULL, '2022-04-28 20:02:11', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26183, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:11', '2022-04-28 20:02:11', 32, 0, '', NULL, '2022-04-28 20:02:11', NULL, '2022-04-28 20:02:11', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26184, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:11', '2022-04-28 20:02:11', 6, 0, '', NULL, '2022-04-28 20:02:11', NULL, '2022-04-28 20:02:11', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26185, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:12', '2022-04-28 20:02:12', 28, 0, '', NULL, '2022-04-28 20:02:12', NULL, '2022-04-28 20:02:12', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26186, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:13', '2022-04-28 20:02:13', 14, 0, '', NULL, '2022-04-28 20:02:13', NULL, '2022-04-28 20:02:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26187, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:13', '2022-04-28 20:02:13', 33, 0, '', NULL, '2022-04-28 20:02:13', NULL, '2022-04-28 20:02:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26188, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:16', '2022-04-28 20:02:17', 31, 0, '', NULL, '2022-04-28 20:02:17', NULL, '2022-04-28 20:02:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26189, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:19', '2022-04-28 20:02:19', 37, 0, '', NULL, '2022-04-28 20:02:19', NULL, '2022-04-28 20:02:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26190, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:20', '2022-04-28 20:02:20', 43, 0, '', NULL, '2022-04-28 20:02:20', NULL, '2022-04-28 20:02:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26191, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:16', '2022-04-28 20:03:16', 11, 0, '', NULL, '2022-04-28 20:03:16', NULL, '2022-04-28 20:03:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26192, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:16', '2022-04-28 20:03:16', 47, 0, '', NULL, '2022-04-28 20:03:16', NULL, '2022-04-28 20:03:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26193, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:16', '2022-04-28 20:03:16', 11, 0, '', NULL, '2022-04-28 20:03:16', NULL, '2022-04-28 20:03:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26194, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:16', '2022-04-28 20:03:16', 26, 0, '', NULL, '2022-04-28 20:03:16', NULL, '2022-04-28 20:03:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26195, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:17', '2022-04-28 20:03:17', 14, 0, '', NULL, '2022-04-28 20:03:17', NULL, '2022-04-28 20:03:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26196, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:17', '2022-04-28 20:03:17', 40, 0, '', NULL, '2022-04-28 20:03:17', NULL, '2022-04-28 20:03:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26197, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:19', '2022-04-28 20:03:19', 10, 0, '', NULL, '2022-04-28 20:03:19', NULL, '2022-04-28 20:03:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26198, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:19', '2022-04-28 20:03:19', 23, 0, '', NULL, '2022-04-28 20:03:19', NULL, '2022-04-28 20:03:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26199, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:20', '2022-04-28 20:03:20', 13, 0, '', NULL, '2022-04-28 20:03:20', NULL, '2022-04-28 20:03:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26200, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:21', '2022-04-28 20:03:21', 32, 0, '', NULL, '2022-04-28 20:03:21', NULL, '2022-04-28 20:03:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26201, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:27', '2022-04-28 20:03:27', 37, 0, '', NULL, '2022-04-28 20:03:27', NULL, '2022-04-28 20:03:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26202, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:28', '2022-04-28 20:03:28', 35, 0, '', NULL, '2022-04-28 20:03:28', NULL, '2022-04-28 20:03:28', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26203, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:34', '2022-04-28 20:03:34', 31, 0, '', NULL, '2022-04-28 20:03:34', NULL, '2022-04-28 20:03:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26204, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:41', '2022-04-28 20:03:41', 31, 0, '', NULL, '2022-04-28 20:03:41', NULL, '2022-04-28 20:03:41', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26205, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:47', '2022-04-28 20:03:47', 16, 0, '', NULL, '2022-04-28 20:03:47', NULL, '2022-04-28 20:03:47', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26206, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/get', '{\"query\":{\"id\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:01', '2022-04-28 20:04:01', 115, 0, '', NULL, '2022-04-28 20:04:01', NULL, '2022-04-28 20:04:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26207, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/data-source-config/update', '{\"query\":{},\"body\":\"{\\\"name\\\":\\\"test\\\",\\\"url\\\":\\\"jdbc:mysql://127.0.0.1:3306/testb5f4\\\",\\\"username\\\":\\\"root\\\",\\\"id\\\":8,\\\"createTime\\\":1651070900000,\\\"password\\\":\\\"123456\\\"}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:05', '2022-04-28 20:04:06', 268, 0, '', NULL, '2022-04-28 20:04:06', NULL, '2022-04-28 20:04:06', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26208, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:06', '2022-04-28 20:04:06', 20, 0, '', NULL, '2022-04-28 20:04:06', NULL, '2022-04-28 20:04:06', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26209, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/test-demo/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:10', '2022-04-28 20:04:10', 85, 0, '', NULL, '2022-04-28 20:04:10', NULL, '2022-04-28 20:04:10', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26210, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:13', '2022-04-28 20:04:13', 14, 0, '', NULL, '2022-04-28 20:04:13', NULL, '2022-04-28 20:04:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26211, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:17', '2022-04-28 20:04:17', 24, 0, '', NULL, '2022-04-28 20:04:17', NULL, '2022-04-28 20:04:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26212, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:18', '2022-04-28 20:04:18', 13, 0, '', NULL, '2022-04-28 20:04:18', NULL, '2022-04-28 20:04:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26213, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:18', '2022-04-28 20:04:18', 34, 0, '', NULL, '2022-04-28 20:04:18', NULL, '2022-04-28 20:04:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26214, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:24', '2022-04-28 20:04:25', 55, 0, '', NULL, '2022-04-28 20:04:25', NULL, '2022-04-28 20:04:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26215, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:25', '2022-04-28 20:04:25', 34, 0, '', NULL, '2022-04-28 20:04:25', NULL, '2022-04-28 20:04:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26216, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:29', '2022-04-28 20:04:29', 34, 0, '', NULL, '2022-04-28 20:04:29', NULL, '2022-04-28 20:04:29', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26217, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:08:31', '2022-04-28 20:08:31', 176, 0, '', NULL, '2022-04-28 20:08:31', NULL, '2022-04-28 20:08:31', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26218, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:08:31', '2022-04-28 20:08:31', 152, 0, '', NULL, '2022-04-28 20:08:31', NULL, '2022-04-28 20:08:31', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26219, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:08:31', '2022-04-28 20:08:31', 23, 0, '', NULL, '2022-04-28 20:08:31', NULL, '2022-04-28 20:08:31', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26220, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:08:33', '2022-04-28 20:08:33', 161, 0, '', NULL, '2022-04-28 20:08:33', NULL, '2022-04-28 20:08:33', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26221, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:08:38', '2022-04-28 20:08:38', 36, 0, '', NULL, '2022-04-28 20:08:38', NULL, '2022-04-28 20:08:38', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26222, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:08:38', '2022-04-28 20:08:38', 53, 0, '', NULL, '2022-04-28 20:08:38', NULL, '2022-04-28 20:08:38', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26223, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:09:27', '2022-04-28 20:09:27', 16, 0, '', NULL, '2022-04-28 20:09:27', NULL, '2022-04-28 20:09:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26224, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:09:27', '2022-04-28 20:09:27', 34, 0, '', NULL, '2022-04-28 20:09:27', NULL, '2022-04-28 20:09:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26225, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:09:51', '2022-04-28 20:09:51', 22, 0, '', NULL, '2022-04-28 20:09:51', NULL, '2022-04-28 20:09:51', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26226, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:09:54', '2022-04-28 20:09:54', 15, 0, '', NULL, '2022-04-28 20:09:54', NULL, '2022-04-28 20:09:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26227, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:09:54', '2022-04-28 20:09:54', 40, 0, '', NULL, '2022-04-28 20:09:54', NULL, '2022-04-28 20:09:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26228, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:09:59', '2022-04-28 20:09:59', 264, 0, '', NULL, '2022-04-28 20:09:59', NULL, '2022-04-28 20:09:59', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26229, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:01', '2022-04-28 20:10:01', 14, 400, '请求参数缺失:dataSourceConfigId', NULL, '2022-04-28 20:10:01', NULL, '2022-04-28 20:10:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26230, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:35', '2022-04-28 20:10:35', 36, 0, '', NULL, '2022-04-28 20:10:35', NULL, '2022-04-28 20:10:35', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26231, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:35', '2022-04-28 20:10:35', 51, 0, '', NULL, '2022-04-28 20:10:35', NULL, '2022-04-28 20:10:35', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26232, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:35', '2022-04-28 20:10:35', 14, 0, '', NULL, '2022-04-28 20:10:35', NULL, '2022-04-28 20:10:35', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26233, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:36', '2022-04-28 20:10:36', 42, 0, '', NULL, '2022-04-28 20:10:36', NULL, '2022-04-28 20:10:36', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26234, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:37', '2022-04-28 20:10:37', 17, 0, '', NULL, '2022-04-28 20:10:37', NULL, '2022-04-28 20:10:37', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26235, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:37', '2022-04-28 20:10:37', 36, 0, '', NULL, '2022-04-28 20:10:37', NULL, '2022-04-28 20:10:37', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26236, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:39', '2022-04-28 20:10:39', 36, 0, '', NULL, '2022-04-28 20:10:39', NULL, '2022-04-28 20:10:39', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26237, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:41', '2022-04-28 20:10:41', 39, 0, '', NULL, '2022-04-28 20:10:41', NULL, '2022-04-28 20:10:41', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26238, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:42', '2022-04-28 20:10:42', 36, 0, '', NULL, '2022-04-28 20:10:42', NULL, '2022-04-28 20:10:42', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26239, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:44', '2022-04-28 20:10:44', 90, 0, '', NULL, '2022-04-28 20:10:44', NULL, '2022-04-28 20:10:44', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26240, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:57', '2022-04-28 20:10:57', 13, 0, '', NULL, '2022-04-28 20:10:57', NULL, '2022-04-28 20:10:57', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26241, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:57', '2022-04-28 20:10:57', 36, 0, '', NULL, '2022-04-28 20:10:57', NULL, '2022-04-28 20:10:57', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26242, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:11:01', '2022-04-28 20:11:01', 89, 0, '', NULL, '2022-04-28 20:11:01', NULL, '2022-04-28 20:11:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26243, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"user_profile\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:11:02', '2022-04-28 20:11:02', 56, 1003001001, '导入的表不存在', NULL, '2022-04-28 20:11:02', NULL, '2022-04-28 20:11:02', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26244, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:35:41', '2022-04-28 20:35:41', 87, 0, '', NULL, '2022-04-28 20:35:41', NULL, '2022-04-28 20:35:41', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26245, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:35:41', '2022-04-28 20:35:41', 106, 0, '', NULL, '2022-04-28 20:35:41', NULL, '2022-04-28 20:35:41', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26246, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:35:41', '2022-04-28 20:35:41', 12, 0, '', NULL, '2022-04-28 20:35:41', NULL, '2022-04-28 20:35:41', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26247, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:35:42', '2022-04-28 20:35:42', 105, 0, '', NULL, '2022-04-28 20:35:42', NULL, '2022-04-28 20:35:42', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26248, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:35:46', '2022-04-28 20:35:46', 34, 0, '', NULL, '2022-04-28 20:35:46', NULL, '2022-04-28 20:35:46', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26249, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:37:29', '2022-04-28 20:37:29', 15, 0, '', NULL, '2022-04-28 20:37:29', NULL, '2022-04-28 20:37:29', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26250, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:37:29', '2022-04-28 20:37:29', 16, 0, '', NULL, '2022-04-28 20:37:29', NULL, '2022-04-28 20:37:29', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26251, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:40:20', '2022-04-28 20:40:20', 24, 0, '', NULL, '2022-04-28 20:40:20', NULL, '2022-04-28 20:40:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26252, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:40:20', '2022-04-28 20:40:20', 29, 0, '', NULL, '2022-04-28 20:40:20', NULL, '2022-04-28 20:40:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26253, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:40:20', '2022-04-28 20:40:20', 6, 0, '', NULL, '2022-04-28 20:40:20', NULL, '2022-04-28 20:40:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26254, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:40:21', '2022-04-28 20:40:21', 20, 0, '', NULL, '2022-04-28 20:40:21', NULL, '2022-04-28 20:40:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26255, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/data-source-config/create', '{\"query\":{},\"body\":\"{\\\"name\\\":\\\"oracle_test\\\",\\\"url\\\":\\\"jdbc:oracle:thin:@127.0.0.1:1521:orcl\\\",\\\"username\\\":\\\"root\\\",\\\"password\\\":\\\"123456\\\"}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:41:07', '2022-04-28 20:41:07', 140, 1001007001, '数据源配置不正确,无法进行连接', NULL, '2022-04-28 20:41:07', NULL, '2022-04-28 20:41:07', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26256, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/data-source-config/create', '{\"query\":{},\"body\":\"{\\\"name\\\":\\\"oracle_test\\\",\\\"url\\\":\\\"jdbc:oracle:thin:@127.0.0.1:1521:xe\\\",\\\"username\\\":\\\"root\\\",\\\"password\\\":\\\"123456\\\"}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:41:26', '2022-04-28 20:41:26', 255, 0, '', NULL, '2022-04-28 20:41:26', NULL, '2022-04-28 20:41:26', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26257, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:41:26', '2022-04-28 20:41:26', 13, 0, '', NULL, '2022-04-28 20:41:26', NULL, '2022-04-28 20:41:26', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26258, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:11:58', '2022-04-28 21:11:58', 107, 0, '', NULL, '2022-04-28 21:11:58', NULL, '2022-04-28 21:11:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26259, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:11:58', '2022-04-28 21:11:58', 89, 0, '', NULL, '2022-04-28 21:11:58', NULL, '2022-04-28 21:11:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26260, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:11:58', '2022-04-28 21:11:58', 15, 0, '', NULL, '2022-04-28 21:11:58', NULL, '2022-04-28 21:11:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26261, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:11:58', '2022-04-28 21:11:58', 51, 0, '', NULL, '2022-04-28 21:11:58', NULL, '2022-04-28 21:11:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26262, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:00', '2022-04-28 21:12:00', 97, 0, '', NULL, '2022-04-28 21:12:00', NULL, '2022-04-28 21:12:00', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26263, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:01', '2022-04-28 21:12:01', 14, 0, '', NULL, '2022-04-28 21:12:01', NULL, '2022-04-28 21:12:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26264, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:01', '2022-04-28 21:12:01', 52, 0, '', NULL, '2022-04-28 21:12:01', NULL, '2022-04-28 21:12:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26265, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:05', '2022-04-28 21:12:05', 541, 500, '系统异常', NULL, '2022-04-28 21:12:05', NULL, '2022-04-28 21:12:05', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26266, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:05', '2022-04-28 21:12:05', 113, 500, '系统异常', NULL, '2022-04-28 21:12:05', NULL, '2022-04-28 21:12:05', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26267, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:05', '2022-04-28 21:12:05', 102, 500, '系统异常', NULL, '2022-04-28 21:12:05', NULL, '2022-04-28 21:12:05', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26268, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:05', '2022-04-28 21:12:05', 98, 500, '系统异常', NULL, '2022-04-28 21:12:05', NULL, '2022-04-28 21:12:05', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26269, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:13:13', '2022-04-28 21:13:14', 1481, 0, '', NULL, '2022-04-28 21:13:14', NULL, '2022-04-28 21:13:14', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26270, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\",\"tableName\":\"1\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:13:38', '2022-04-28 21:13:39', 468, 0, '', NULL, '2022-04-28 21:13:39', NULL, '2022-04-28 21:13:39', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26271, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\",\"tableName\":\"\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:13:41', '2022-04-28 21:13:41', 667, 0, '', NULL, '2022-04-28 21:13:41', NULL, '2022-04-28 21:13:41', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26272, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\",\"tableComment\":\"支付订单\",\"tableName\":\"\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:13:46', '2022-04-28 21:13:46', 106, 500, '系统异常', NULL, '2022-04-28 21:13:46', NULL, '2022-04-28 21:13:46', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26273, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:15:57', '2022-04-28 21:15:57', 25, 0, '', NULL, '2022-04-28 21:15:57', NULL, '2022-04-28 21:15:57', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26274, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:15:58', '2022-04-28 21:15:58', 136, 0, '', NULL, '2022-04-28 21:15:58', NULL, '2022-04-28 21:15:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26275, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:15:59', '2022-04-28 21:15:59', 84, 0, '', NULL, '2022-04-28 21:15:59', NULL, '2022-04-28 21:15:59', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26276, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\",\"tableComment\":\"支付订单\",\"tableName\":\"\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:15:59', '2022-04-28 21:15:59', 60, 0, '', NULL, '2022-04-28 21:15:59', NULL, '2022-04-28 21:15:59', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26277, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:16:02', '2022-04-28 21:16:03', 37, 0, '', NULL, '2022-04-28 21:16:03', NULL, '2022-04-28 21:16:03', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26278, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:16:06', '2022-04-28 21:16:06', 194, 0, '', NULL, '2022-04-28 21:16:06', NULL, '2022-04-28 21:16:06', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26279, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:16:07', '2022-04-28 21:16:08', 737, 0, '', NULL, '2022-04-28 21:16:08', NULL, '2022-04-28 21:16:08', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26280, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\",\"tableName\":\"支付订单\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:16:15', '2022-04-28 21:16:15', 312, 0, '', NULL, '2022-04-28 21:16:15', NULL, '2022-04-28 21:16:15', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26281, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:16:16', '2022-04-28 21:16:16', 33, 0, '', NULL, '2022-04-28 21:16:16', NULL, '2022-04-28 21:16:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26282, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\",\"tableName\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:16:20', '2022-04-28 21:16:20', 32, 0, '', NULL, '2022-04-28 21:16:20', NULL, '2022-04-28 21:16:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26283, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:16:21', '2022-04-28 21:16:21', 30, 0, '', NULL, '2022-04-28 21:16:21', NULL, '2022-04-28 21:16:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26284, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:17:47', '2022-04-28 21:17:47', 41, 0, '', NULL, '2022-04-28 21:17:47', NULL, '2022-04-28 21:17:47', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26285, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:17:47', '2022-04-28 21:17:47', 56, 0, '', NULL, '2022-04-28 21:17:47', NULL, '2022-04-28 21:17:47', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26286, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:17:47', '2022-04-28 21:17:47', 11, 0, '', NULL, '2022-04-28 21:17:47', NULL, '2022-04-28 21:17:47', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26287, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:17:47', '2022-04-28 21:17:47', 26, 0, '', NULL, '2022-04-28 21:17:47', NULL, '2022-04-28 21:17:47', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26288, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:17:51', '2022-04-28 21:17:51', 12, 0, '', NULL, '2022-04-28 21:17:51', NULL, '2022-04-28 21:17:51', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26289, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:17:51', '2022-04-28 21:17:51', 32, 0, '', NULL, '2022-04-28 21:17:51', NULL, '2022-04-28 21:17:51', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26290, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:22', '2022-04-29 00:18:22', 108, 0, '', NULL, '2022-04-29 00:18:22', NULL, '2022-04-29 00:18:22', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26291, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:22', '2022-04-29 00:18:22', 92, 0, '', NULL, '2022-04-29 00:18:22', NULL, '2022-04-29 00:18:22', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26292, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:22', '2022-04-29 00:18:22', 16, 0, '', NULL, '2022-04-29 00:18:22', NULL, '2022-04-29 00:18:22', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26293, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:23', '2022-04-29 00:18:23', 110, 0, '', NULL, '2022-04-29 00:18:23', NULL, '2022-04-29 00:18:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26294, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:23', '2022-04-29 00:18:23', 34, 0, '', NULL, '2022-04-29 00:18:23', NULL, '2022-04-29 00:18:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26295, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:23', '2022-04-29 00:18:24', 53, 0, '', NULL, '2022-04-29 00:18:24', NULL, '2022-04-29 00:18:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26296, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:27', '2022-04-29 00:18:29', 1175, 0, '', NULL, '2022-04-29 00:18:29', NULL, '2022-04-29 00:18:29', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26297, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:31', '2022-04-29 00:18:31', 70, 500, '系统异常', NULL, '2022-04-29 00:18:31', NULL, '2022-04-29 00:18:31', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26298, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:53', '2022-04-29 00:18:53', 41, 500, '系统异常', NULL, '2022-04-29 00:18:53', NULL, '2022-04-29 00:18:53', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26299, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:19:05', '2022-04-29 00:19:05', 38, 500, '系统异常', NULL, '2022-04-29 00:19:05', NULL, '2022-04-29 00:19:05', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26300, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:19:12', '2022-04-29 00:19:12', 22, 0, '', NULL, '2022-04-29 00:19:12', NULL, '2022-04-29 00:19:12', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26301, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:19:12', '2022-04-29 00:19:12', 29, 0, '', NULL, '2022-04-29 00:19:12', NULL, '2022-04-29 00:19:12', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26302, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:19:12', '2022-04-29 00:19:12', 7, 0, '', NULL, '2022-04-29 00:19:12', NULL, '2022-04-29 00:19:12', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26303, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:19:12', '2022-04-29 00:19:12', 15, 0, '', NULL, '2022-04-29 00:19:12', NULL, '2022-04-29 00:19:12', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26304, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:19:15', '2022-04-29 00:19:15', 22, 0, '', NULL, '2022-04-29 00:19:15', NULL, '2022-04-29 00:19:15', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26305, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:19:17', '2022-04-29 00:19:17', 16, 0, '', NULL, '2022-04-29 00:19:17', NULL, '2022-04-29 00:19:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26306, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:20:01', '2022-04-29 00:20:01', 94, 500, '系统异常', NULL, '2022-04-29 00:20:01', NULL, '2022-04-29 00:20:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26307, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:20:24', '2022-04-29 00:20:24', 65, 500, '系统异常', NULL, '2022-04-29 00:20:24', NULL, '2022-04-29 00:20:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26308, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:20:51', '2022-04-29 00:20:58', 7613, 500, '系统异常', NULL, '2022-04-29 00:20:58', NULL, '2022-04-29 00:20:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26309, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:21:20', '2022-04-29 00:22:43', 82607, 500, '系统异常', NULL, '2022-04-29 00:22:43', NULL, '2022-04-29 00:22:43', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26310, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:22:45', '2022-04-29 00:23:00', 15731, 500, '系统异常', NULL, '2022-04-29 00:23:00', NULL, '2022-04-29 00:23:00', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26311, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:23:42', '2022-04-29 00:23:43', 619, 500, '系统异常', NULL, '2022-04-29 00:23:43', NULL, '2022-04-29 00:23:43', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26312, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:24:05', '2022-04-29 00:24:35', 30328, 500, '系统异常', NULL, '2022-04-29 00:24:35', NULL, '2022-04-29 00:24:35', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26313, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:25:57', '2022-04-29 00:26:00', 3827, 500, '系统异常', NULL, '2022-04-29 00:26:00', NULL, '2022-04-29 00:26:00', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26314, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:26:25', '2022-04-29 00:26:25', 240, 500, '系统异常', NULL, '2022-04-29 00:26:25', NULL, '2022-04-29 00:26:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26315, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:26:36', '2022-04-29 00:28:34', 118280, 500, '系统异常', NULL, '2022-04-29 00:28:34', NULL, '2022-04-29 00:28:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26316, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:28:42', '2022-04-29 00:28:46', 3694, 500, '系统异常', NULL, '2022-04-29 00:28:46', NULL, '2022-04-29 00:28:46', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26317, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:29:54', '2022-04-29 00:30:44', 49492, 500, '系统异常', NULL, '2022-04-29 00:30:44', NULL, '2022-04-29 00:30:44', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26318, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:40:15', '2022-04-29 00:40:16', 110, 0, '', NULL, '2022-04-29 00:40:16', NULL, '2022-04-29 00:40:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26319, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:40:16', '2022-04-29 00:40:16', 83, 0, '', NULL, '2022-04-29 00:40:16', NULL, '2022-04-29 00:40:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26320, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:40:18', '2022-04-29 00:40:18', 73, 500, '系统异常', NULL, '2022-04-29 00:40:18', NULL, '2022-04-29 00:40:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26321, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:40:50', '2022-04-29 00:40:50', 49, 500, '系统异常', NULL, '2022-04-29 00:40:50', NULL, '2022-04-29 00:40:50', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26322, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:40:54', '2022-04-29 00:40:54', 40, 500, '系统异常', NULL, '2022-04-29 00:40:54', NULL, '2022-04-29 00:40:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26323, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:41:51', '2022-04-29 00:41:51', 191, 0, '', NULL, '2022-04-29 00:41:51', NULL, '2022-04-29 00:41:51', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26324, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:41:51', '2022-04-29 00:41:51', 99, 0, '', NULL, '2022-04-29 00:41:51', NULL, '2022-04-29 00:41:51', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26325, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"74\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:41:53', '2022-04-29 00:41:54', 300, 0, '', NULL, '2022-04-29 00:41:54', NULL, '2022-04-29 00:41:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26326, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:42:58', '2022-04-29 00:42:58', 25, 0, '', NULL, '2022-04-29 00:42:58', NULL, '2022-04-29 00:42:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26327, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:42:58', '2022-04-29 00:42:58', 39, 0, '', NULL, '2022-04-29 00:42:58', NULL, '2022-04-29 00:42:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26328, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:43:00', '2022-04-29 00:43:02', 1196, 0, '', NULL, '2022-04-29 00:43:02', NULL, '2022-04-29 00:43:02', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26329, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:43:04', '2022-04-29 00:43:05', 493, 500, '系统异常', NULL, '2022-04-29 00:43:05', NULL, '2022-04-29 00:43:05', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26330, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:43:15', '2022-04-29 00:43:27', 11978, 500, '系统异常', NULL, '2022-04-29 00:43:27', NULL, '2022-04-29 00:43:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26331, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:44:16', '2022-04-29 00:44:40', 24093, 500, '系统异常', NULL, '2022-04-29 00:44:40', NULL, '2022-04-29 00:44:40', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26332, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:47:21', '2022-04-29 00:47:22', 1170, 0, '', NULL, '2022-04-29 00:47:22', NULL, '2022-04-29 00:47:22', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26333, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:47:22', '2022-04-29 00:47:22', 106, 0, '', NULL, '2022-04-29 00:47:22', NULL, '2022-04-29 00:47:22', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26334, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:47:27', '2022-04-29 00:47:27', 36, 0, '', NULL, '2022-04-29 00:47:27', NULL, '2022-04-29 00:47:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26335, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/detail', '{\"query\":{\"tableId\":\"79\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:47:27', '2022-04-29 00:47:27', 70, 0, '', NULL, '2022-04-29 00:47:27', NULL, '2022-04-29 00:47:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26336, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:47:27', '2022-04-29 00:47:27', 102, 0, '', NULL, '2022-04-29 00:47:27', NULL, '2022-04-29 00:47:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26337, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 18:06:09', '2022-04-29 18:06:09', 219, 0, '', NULL, '2022-04-29 18:06:09', NULL, '2022-04-29 18:06:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26338, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 18:06:09', '2022-04-29 18:06:09', 208, 0, '', NULL, '2022-04-29 18:06:09', NULL, '2022-04-29 18:06:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26339, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 18:06:09', '2022-04-29 18:06:09', 14, 0, '', NULL, '2022-04-29 18:06:09', NULL, '2022-04-29 18:06:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26340, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/role/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 18:06:15', '2022-04-29 18:06:15', 83, 0, '', NULL, '2022-04-29 18:06:15', NULL, '2022-04-29 18:06:15', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26341, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:06:56', '2022-04-29 20:06:57', 132, 0, '', NULL, '2022-04-29 20:06:57', NULL, '2022-04-29 20:06:57', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26342, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:06:56', '2022-04-29 20:06:57', 110, 0, '', NULL, '2022-04-29 20:06:57', NULL, '2022-04-29 20:06:57', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26343, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:06:57', '2022-04-29 20:06:57', 16, 0, '', NULL, '2022-04-29 20:06:57', NULL, '2022-04-29 20:06:57', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26344, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/role/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:06:57', '2022-04-29 20:06:57', 75, 0, '', NULL, '2022-04-29 20:06:57', NULL, '2022-04-29 20:06:57', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26345, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:05', '2022-04-29 20:07:05', 89, 0, '', NULL, '2022-04-29 20:07:05', NULL, '2022-04-29 20:07:05', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26346, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:05', '2022-04-29 20:07:06', 42, 0, '', NULL, '2022-04-29 20:07:06', NULL, '2022-04-29 20:07:06', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26347, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:07', '2022-04-29 20:07:07', 14, 0, '', NULL, '2022-04-29 20:07:07', NULL, '2022-04-29 20:07:07', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26348, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:06', '2022-04-29 20:07:07', 1764, 0, '', NULL, '2022-04-29 20:07:07', NULL, '2022-04-29 20:07:07', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26349, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:07', '2022-04-29 20:07:09', 1364, 0, '', NULL, '2022-04-29 20:07:09', NULL, '2022-04-29 20:07:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26350, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:10', '2022-04-29 20:07:10', 313, 0, '', NULL, '2022-04-29 20:07:10', NULL, '2022-04-29 20:07:10', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26351, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:16', '2022-04-29 20:07:16', 92, 0, '', NULL, '2022-04-29 20:07:16', NULL, '2022-04-29 20:07:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26352, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:38', '2022-04-29 20:07:38', 94, 0, '', NULL, '2022-04-29 20:07:38', NULL, '2022-04-29 20:07:38', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26353, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:48', '2022-04-29 20:07:48', 93, 0, '', NULL, '2022-04-29 20:07:48', NULL, '2022-04-29 20:07:48', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26354, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:12', '2022-04-29 20:08:00', 47634, 0, '', NULL, '2022-04-29 20:08:00', NULL, '2022-04-29 20:08:00', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26355, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:10', '2022-04-29 20:09:11', 1403, 0, '', NULL, '2022-04-29 20:09:11', NULL, '2022-04-29 20:09:11', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26356, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:14', '2022-04-29 20:09:15', 1452, 0, '', NULL, '2022-04-29 20:09:15', NULL, '2022-04-29 20:09:15', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26357, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:15', '2022-04-29 20:09:17', 1443, 0, '', NULL, '2022-04-29 20:09:17', NULL, '2022-04-29 20:09:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26358, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:18', '2022-04-29 20:09:19', 1500, 0, '', NULL, '2022-04-29 20:09:19', NULL, '2022-04-29 20:09:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26359, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:23', '2022-04-29 20:09:23', 223, 0, '', NULL, '2022-04-29 20:09:23', NULL, '2022-04-29 20:09:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26360, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:27', '2022-04-29 20:09:27', 97, 0, '', NULL, '2022-04-29 20:09:27', NULL, '2022-04-29 20:09:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26361, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:08:53', '2022-04-29 20:09:33', 40171, 0, '', NULL, '2022-04-29 20:09:33', NULL, '2022-04-29 20:09:33', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26362, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:40', '2022-04-29 20:09:40', 92, 0, '', NULL, '2022-04-29 20:09:40', NULL, '2022-04-29 20:09:40', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26363, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:05', '2022-04-29 20:09:41', 36470, 0, '', NULL, '2022-04-29 20:09:41', NULL, '2022-04-29 20:09:41', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26364, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:50', '2022-04-29 20:09:51', 1308, 0, '', NULL, '2022-04-29 20:09:51', NULL, '2022-04-29 20:09:51', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26365, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:53', '2022-04-29 20:10:21', 28089, 0, '', NULL, '2022-04-29 20:10:21', NULL, '2022-04-29 20:10:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26366, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:10:28', '2022-04-29 20:10:56', 27692, 0, '', NULL, '2022-04-29 20:10:56', NULL, '2022-04-29 20:10:56', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26367, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:25:10', '2022-04-29 20:25:10', 116, 0, '', NULL, '2022-04-29 20:25:10', NULL, '2022-04-29 20:25:10', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26368, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:25:10', '2022-04-29 20:25:10', 96, 0, '', NULL, '2022-04-29 20:25:10', NULL, '2022-04-29 20:25:10', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26369, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:25:10', '2022-04-29 20:25:10', 13, 0, '', NULL, '2022-04-29 20:25:10', NULL, '2022-04-29 20:25:10', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26370, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:25:11', '2022-04-29 20:25:11', 138, 0, '', NULL, '2022-04-29 20:25:11', NULL, '2022-04-29 20:25:11', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26371, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:25:12', '2022-04-29 20:25:12', 32, 0, '', NULL, '2022-04-29 20:25:12', NULL, '2022-04-29 20:25:12', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26372, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:25:12', '2022-04-29 20:25:14', 1492, 0, '', NULL, '2022-04-29 20:25:14', NULL, '2022-04-29 20:25:14', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26373, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:25:18', '2022-04-29 20:25:18', 308, 0, '', NULL, '2022-04-29 20:25:18', NULL, '2022-04-29 20:25:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26374, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:25:51', '2022-04-29 20:25:52', 1011, 0, '', NULL, '2022-04-29 20:25:52', NULL, '2022-04-29 20:25:52', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26375, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:26:11', '2022-04-29 20:26:12', 601, 0, '', NULL, '2022-04-29 20:26:12', NULL, '2022-04-29 20:26:12', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26376, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:26:13', '2022-04-29 20:26:14', 1247, 0, '', NULL, '2022-04-29 20:26:14', NULL, '2022-04-29 20:26:14', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26377, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:26:17', '2022-04-29 20:26:19', 1152, 0, '', NULL, '2022-04-29 20:26:19', NULL, '2022-04-29 20:26:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26378, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:26:27', '2022-04-29 20:26:27', 96, 0, '', NULL, '2022-04-29 20:26:27', NULL, '2022-04-29 20:26:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26379, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:26:29', '2022-04-29 20:26:30', 1169, 0, '', NULL, '2022-04-29 20:26:30', NULL, '2022-04-29 20:26:30', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26380, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:27:43', '2022-04-29 20:27:43', 23, 0, '', NULL, '2022-04-29 20:27:43', NULL, '2022-04-29 20:27:43', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26381, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:27:43', '2022-04-29 20:27:43', 30, 0, '', NULL, '2022-04-29 20:27:43', NULL, '2022-04-29 20:27:43', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26382, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:27:43', '2022-04-29 20:27:43', 9, 0, '', NULL, '2022-04-29 20:27:43', NULL, '2022-04-29 20:27:43', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26383, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:27:43', '2022-04-29 20:27:43', 35, 0, '', NULL, '2022-04-29 20:27:43', NULL, '2022-04-29 20:27:43', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26384, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:27:47', '2022-04-29 20:27:47', 13, 0, '', NULL, '2022-04-29 20:27:47', NULL, '2022-04-29 20:27:47', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26385, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:27:47', '2022-04-29 20:27:48', 1260, 0, '', NULL, '2022-04-29 20:27:48', NULL, '2022-04-29 20:27:48', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26386, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:27:51', '2022-04-29 20:27:53', 1382, 0, '', NULL, '2022-04-29 20:27:53', NULL, '2022-04-29 20:27:53', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26387, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:19', '2022-04-29 20:28:19', 15, 0, '', NULL, '2022-04-29 20:28:19', NULL, '2022-04-29 20:28:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26388, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:19', '2022-04-29 20:28:21', 1412, 0, '', NULL, '2022-04-29 20:28:21', NULL, '2022-04-29 20:28:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26389, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:25', '2022-04-29 20:28:25', 23, 0, '', NULL, '2022-04-29 20:28:25', NULL, '2022-04-29 20:28:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26390, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:25', '2022-04-29 20:28:25', 30, 0, '', NULL, '2022-04-29 20:28:25', NULL, '2022-04-29 20:28:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26391, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:25', '2022-04-29 20:28:25', 5, 0, '', NULL, '2022-04-29 20:28:25', NULL, '2022-04-29 20:28:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26392, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:26', '2022-04-29 20:28:26', 29, 0, '', NULL, '2022-04-29 20:28:26', NULL, '2022-04-29 20:28:26', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26393, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:29', '2022-04-29 20:28:29', 14, 0, '', NULL, '2022-04-29 20:28:29', NULL, '2022-04-29 20:28:29', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26394, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:29', '2022-04-29 20:28:30', 1344, 0, '', NULL, '2022-04-29 20:28:30', NULL, '2022-04-29 20:28:30', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26395, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:34', '2022-04-29 20:28:34', 103, 0, '', NULL, '2022-04-29 20:28:34', NULL, '2022-04-29 20:28:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26396, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:36', '2022-04-29 20:28:37', 608, 0, '', NULL, '2022-04-29 20:28:37', NULL, '2022-04-29 20:28:37', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26397, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:29:13', '2022-04-29 20:29:13', 15, 0, '', NULL, '2022-04-29 20:29:13', NULL, '2022-04-29 20:29:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26398, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:29:13', '2022-04-29 20:29:14', 1399, 0, '', NULL, '2022-04-29 20:29:14', NULL, '2022-04-29 20:29:14', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26399, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:29:17', '2022-04-29 20:29:18', 588, 0, '', NULL, '2022-04-29 20:29:18', NULL, '2022-04-29 20:29:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26400, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:29:44', '2022-04-29 20:29:45', 1414, 0, '', NULL, '2022-04-29 20:29:45', NULL, '2022-04-29 20:29:45', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26401, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:29:46', '2022-04-29 20:29:47', 1381, 0, '', NULL, '2022-04-29 20:29:47', NULL, '2022-04-29 20:29:47', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26402, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:32:43', '2022-04-29 20:32:45', 1351, 0, '', NULL, '2022-04-29 20:32:45', NULL, '2022-04-29 20:32:45', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26403, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\",\"name\":\"bpm\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:32:47', '2022-04-29 20:32:49', 1441, 500, '系统异常', NULL, '2022-04-29 20:32:49', NULL, '2022-04-29 20:32:49', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26404, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\",\"name\":\"apy\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:32:51', '2022-04-29 20:32:53', 1397, 500, '系统异常', NULL, '2022-04-29 20:32:53', NULL, '2022-04-29 20:32:53', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26405, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:33:03', '2022-04-29 20:33:04', 1343, 0, '', NULL, '2022-04-29 20:33:04', NULL, '2022-04-29 20:33:04', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26406, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:33:49', '2022-04-29 20:33:51', 1427, 0, '', NULL, '2022-04-29 20:33:51', NULL, '2022-04-29 20:33:51', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26407, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\",\"name\":\"pay\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:33:54', '2022-04-29 20:33:55', 1333, 500, '系统异常', NULL, '2022-04-29 20:33:55', NULL, '2022-04-29 20:33:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26408, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:34:21', '2022-04-29 20:34:21', 26, 0, '', NULL, '2022-04-29 20:34:21', NULL, '2022-04-29 20:34:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26409, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:34:21', '2022-04-29 20:34:21', 31, 0, '', NULL, '2022-04-29 20:34:21', NULL, '2022-04-29 20:34:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26410, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:34:23', '2022-04-29 20:34:23', 15, 0, '', NULL, '2022-04-29 20:34:23', NULL, '2022-04-29 20:34:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26411, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\",\"name\":\"pay\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:34:23', '2022-04-29 20:34:26', 3596, 0, '', NULL, '2022-04-29 20:34:26', NULL, '2022-04-29 20:34:26', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26412, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\",\"name\":\"pay\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:34:49', '2022-04-29 20:34:50', 1345, 0, '', NULL, '2022-04-29 20:34:50', NULL, '2022-04-29 20:34:50', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26413, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:34:53', '2022-04-29 20:34:54', 1409, 0, '', NULL, '2022-04-29 20:34:54', NULL, '2022-04-29 20:34:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26414, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\",\"comment\":\"OA\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:34:56', '2022-04-29 20:34:58', 1442, 0, '', NULL, '2022-04-29 20:34:58', NULL, '2022-04-29 20:34:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26415, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\",\"comment\":\"OA\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:35:05', '2022-04-29 20:35:05', 99, 0, '', NULL, '2022-04-29 20:35:05', NULL, '2022-04-29 20:35:05', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26416, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:35:07', '2022-04-29 20:35:09', 1338, 0, '', NULL, '2022-04-29 20:35:09', NULL, '2022-04-29 20:35:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26417, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:35:10', '2022-04-29 20:35:10', 89, 0, '', NULL, '2022-04-29 20:35:10', NULL, '2022-04-29 20:35:10', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26418, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"8\",\"name\":\"profile\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:35:17', '2022-04-29 20:35:17', 90, 0, '', NULL, '2022-04-29 20:35:17', NULL, '2022-04-29 20:35:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26419, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:35:18', '2022-04-29 20:35:19', 1364, 0, '', NULL, '2022-04-29 20:35:19', NULL, '2022-04-29 20:35:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26420, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:35:21', '2022-04-29 20:35:22', 603, 0, '', NULL, '2022-04-29 20:35:22', NULL, '2022-04-29 20:35:22', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26421, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:36:59', '2022-04-29 20:37:01', 1408, 0, '', NULL, '2022-04-29 20:37:01', NULL, '2022-04-29 20:37:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26422, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_merchant\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:28:40', '2022-04-29 21:28:41', 1282, 1003001000, '表定义已经存在', NULL, '2022-04-29 21:28:41', NULL, '2022-04-29 21:28:41', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26423, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_log\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:28:49', '2022-04-29 21:28:50', 583, 1003001000, '表定义已经存在', NULL, '2022-04-29 21:28:50', NULL, '2022-04-29 21:28:50', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26424, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_log\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:10', '2022-04-29 21:29:27', 16861, 1003001000, '表定义已经存在', NULL, '2022-04-29 21:29:27', NULL, '2022-04-29 21:29:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26425, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:27', '2022-04-29 21:29:27', 59, 0, '', NULL, '2022-04-29 21:29:27', NULL, '2022-04-29 21:29:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26426, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:27', '2022-04-29 21:29:27', 77, 0, '', NULL, '2022-04-29 21:29:27', NULL, '2022-04-29 21:29:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26427, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:27', '2022-04-29 21:29:27', 12, 0, '', NULL, '2022-04-29 21:29:27', NULL, '2022-04-29 21:29:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26428, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:28', '2022-04-29 21:29:28', 109, 0, '', NULL, '2022-04-29 21:29:28', NULL, '2022-04-29 21:29:28', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26429, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:29', '2022-04-29 21:29:29', 20, 0, '', NULL, '2022-04-29 21:29:29', NULL, '2022-04-29 21:29:29', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26430, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:29', '2022-04-29 21:29:29', 26, 0, '', NULL, '2022-04-29 21:29:29', NULL, '2022-04-29 21:29:29', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26431, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:29', '2022-04-29 21:29:29', 8, 0, '', NULL, '2022-04-29 21:29:29', NULL, '2022-04-29 21:29:29', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26432, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:30', '2022-04-29 21:29:30', 36, 0, '', NULL, '2022-04-29 21:29:30', NULL, '2022-04-29 21:29:30', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26433, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"74\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:32', '2022-04-29 21:29:32', 62, 0, '', NULL, '2022-04-29 21:29:32', NULL, '2022-04-29 21:29:32', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26434, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:32', '2022-04-29 21:29:32', 28, 0, '', NULL, '2022-04-29 21:29:32', NULL, '2022-04-29 21:29:32', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26435, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"79\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:34', '2022-04-29 21:29:34', 40, 0, '', NULL, '2022-04-29 21:29:34', NULL, '2022-04-29 21:29:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26436, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:34', '2022-04-29 21:29:34', 23, 0, '', NULL, '2022-04-29 21:29:34', NULL, '2022-04-29 21:29:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26437, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:35', '2022-04-29 21:29:35', 30, 0, '', NULL, '2022-04-29 21:29:35', NULL, '2022-04-29 21:29:35', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26438, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:35', '2022-04-29 21:29:36', 1523, 0, '', NULL, '2022-04-29 21:29:36', NULL, '2022-04-29 21:29:36', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26439, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:40', '2022-04-29 21:31:44', 124794, 0, '', NULL, '2022-04-29 21:31:44', NULL, '2022-04-29 21:31:44', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26440, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:49', '2022-04-29 21:36:49', 94, 0, '', NULL, '2022-04-29 21:36:49', NULL, '2022-04-29 21:36:49', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26441, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:49', '2022-04-29 21:36:49', 123, 0, '', NULL, '2022-04-29 21:36:49', NULL, '2022-04-29 21:36:49', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26442, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:49', '2022-04-29 21:36:49', 14, 0, '', NULL, '2022-04-29 21:36:49', NULL, '2022-04-29 21:36:49', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26443, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:50', '2022-04-29 21:36:50', 130, 0, '', NULL, '2022-04-29 21:36:50', NULL, '2022-04-29 21:36:50', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26444, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"80\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:53', '2022-04-29 21:36:53', 61, 0, '', NULL, '2022-04-29 21:36:53', NULL, '2022-04-29 21:36:53', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26445, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:53', '2022-04-29 21:36:53', 26, 0, '', NULL, '2022-04-29 21:36:53', NULL, '2022-04-29 21:36:53', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26446, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:54', '2022-04-29 21:36:54', 33, 0, '', NULL, '2022-04-29 21:36:54', NULL, '2022-04-29 21:36:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26447, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:54', '2022-04-29 21:36:55', 1648, 0, '', NULL, '2022-04-29 21:36:55', NULL, '2022-04-29 21:36:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26448, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:58', '2022-04-29 21:37:41', 43021, 0, '', NULL, '2022-04-29 21:37:41', NULL, '2022-04-29 21:37:41', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26449, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:37:48', '2022-04-29 21:37:48', 20, 0, '', NULL, '2022-04-29 21:37:48', NULL, '2022-04-29 21:37:48', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26450, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:37:48', '2022-04-29 21:37:48', 29, 0, '', NULL, '2022-04-29 21:37:48', NULL, '2022-04-29 21:37:48', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26451, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:37:48', '2022-04-29 21:37:48', 7, 0, '', NULL, '2022-04-29 21:37:48', NULL, '2022-04-29 21:37:48', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26452, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:37:49', '2022-04-29 21:37:49', 32, 0, '', NULL, '2022-04-29 21:37:49', NULL, '2022-04-29 21:37:49', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26453, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"81\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:37:52', '2022-04-29 21:37:52', 39, 0, '', NULL, '2022-04-29 21:37:52', NULL, '2022-04-29 21:37:52', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26454, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:37:52', '2022-04-29 21:37:52', 23, 0, '', NULL, '2022-04-29 21:37:52', NULL, '2022-04-29 21:37:52', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26455, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:38:54', '2022-04-29 21:38:54', 32, 0, '', NULL, '2022-04-29 21:38:54', NULL, '2022-04-29 21:38:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26456, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:38:54', '2022-04-29 21:38:54', 36, 0, '', NULL, '2022-04-29 21:38:54', NULL, '2022-04-29 21:38:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26457, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:38:54', '2022-04-29 21:38:54', 7, 0, '', NULL, '2022-04-29 21:38:54', NULL, '2022-04-29 21:38:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26458, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:38:55', '2022-04-29 21:38:55', 28, 0, '', NULL, '2022-04-29 21:38:55', NULL, '2022-04-29 21:38:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26459, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:38:59', '2022-04-29 21:38:59', 16, 0, '', NULL, '2022-04-29 21:38:59', NULL, '2022-04-29 21:38:59', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26460, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:39:00', '2022-04-29 21:39:00', 15, 0, '', NULL, '2022-04-29 21:39:00', NULL, '2022-04-29 21:39:00', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26461, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:38:59', '2022-04-29 21:39:00', 1449, 0, '', NULL, '2022-04-29 21:39:00', NULL, '2022-04-29 21:39:00', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26462, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:39:00', '2022-04-29 21:39:02', 1350, 0, '', NULL, '2022-04-29 21:39:02', NULL, '2022-04-29 21:39:02', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26463, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:39:04', '2022-04-29 21:39:51', 46587, 0, '', NULL, '2022-04-29 21:39:51', NULL, '2022-04-29 21:39:51', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26464, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:39:57', '2022-04-29 21:39:57', 66, 1003001000, '表定义已经存在', NULL, '2022-04-29 21:39:57', NULL, '2022-04-29 21:39:57', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26465, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:39:58', '2022-04-29 21:39:58', 22, 0, '', NULL, '2022-04-29 21:39:58', NULL, '2022-04-29 21:39:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26466, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:39:58', '2022-04-29 21:39:58', 29, 0, '', NULL, '2022-04-29 21:39:58', NULL, '2022-04-29 21:39:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26467, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:39:58', '2022-04-29 21:39:58', 5, 0, '', NULL, '2022-04-29 21:39:58', NULL, '2022-04-29 21:39:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26468, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:39:59', '2022-04-29 21:39:59', 30, 0, '', NULL, '2022-04-29 21:39:59', NULL, '2022-04-29 21:39:59', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26469, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"82\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:40:03', '2022-04-29 21:40:04', 295, 0, '', NULL, '2022-04-29 21:40:04', NULL, '2022-04-29 21:40:04', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26470, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"82\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:40:37', '2022-04-29 21:40:37', 38, 0, '', NULL, '2022-04-29 21:40:37', NULL, '2022-04-29 21:40:37', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26471, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:40:37', '2022-04-29 21:40:37', 23, 0, '', NULL, '2022-04-29 21:40:37', NULL, '2022-04-29 21:40:37', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26472, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:40:39', '2022-04-29 21:40:39', 13, 0, '', NULL, '2022-04-29 21:40:39', NULL, '2022-04-29 21:40:39', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26473, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:40:39', '2022-04-29 21:40:40', 1388, 0, '', NULL, '2022-04-29 21:40:40', NULL, '2022-04-29 21:40:40', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26474, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:08', '2022-04-29 21:41:08', 32, 0, '', NULL, '2022-04-29 21:41:08', NULL, '2022-04-29 21:41:08', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26475, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:08', '2022-04-29 21:41:09', 1468, 0, '', NULL, '2022-04-29 21:41:09', NULL, '2022-04-29 21:41:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26476, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:11', '2022-04-29 21:41:12', 1249, 0, '', NULL, '2022-04-29 21:41:12', NULL, '2022-04-29 21:41:12', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26477, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:15', '2022-04-29 21:41:15', 153, 0, '', NULL, '2022-04-29 21:41:15', NULL, '2022-04-29 21:41:15', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26478, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:15', '2022-04-29 21:41:15', 25, 0, '', NULL, '2022-04-29 21:41:15', NULL, '2022-04-29 21:41:15', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26479, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"83\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:17', '2022-04-29 21:41:17', 91, 0, '', NULL, '2022-04-29 21:41:17', NULL, '2022-04-29 21:41:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26480, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:36', '2022-04-29 21:41:36', 14, 0, '', NULL, '2022-04-29 21:41:36', NULL, '2022-04-29 21:41:36', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26481, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:36', '2022-04-29 21:41:37', 1410, 0, '', NULL, '2022-04-29 21:41:37', NULL, '2022-04-29 21:41:37', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26482, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:38', '2022-04-29 21:41:38', 14, 0, '', NULL, '2022-04-29 21:41:38', NULL, '2022-04-29 21:41:38', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26483, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:38', '2022-04-29 21:41:40', 1486, 0, '', NULL, '2022-04-29 21:41:40', NULL, '2022-04-29 21:41:40', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26484, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"83\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:51', '2022-04-29 21:41:51', 104, 0, '', NULL, '2022-04-29 21:41:51', NULL, '2022-04-29 21:41:51', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26485, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/detail', '{\"query\":{\"tableId\":\"83\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:54', '2022-04-29 21:41:54', 42, 0, '', NULL, '2022-04-29 21:41:54', NULL, '2022-04-29 21:41:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26486, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:54', '2022-04-29 21:41:54', 43, 0, '', NULL, '2022-04-29 21:41:54', NULL, '2022-04-29 21:41:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26487, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:54', '2022-04-29 21:41:54', 101, 0, '', NULL, '2022-04-29 21:41:54', NULL, '2022-04-29 21:41:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26488, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:13', '2022-04-29 21:42:14', 30, 0, '', NULL, '2022-04-29 21:42:14', NULL, '2022-04-29 21:42:14', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26489, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"83\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:16', '2022-04-29 21:42:16', 38, 0, '', NULL, '2022-04-29 21:42:16', NULL, '2022-04-29 21:42:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26490, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:16', '2022-04-29 21:42:16', 23, 0, '', NULL, '2022-04-29 21:42:16', NULL, '2022-04-29 21:42:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26491, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:17', '2022-04-29 21:42:17', 14, 0, '', NULL, '2022-04-29 21:42:17', NULL, '2022-04-29 21:42:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26492, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:17', '2022-04-29 21:42:18', 1430, 0, '', NULL, '2022-04-29 21:42:18', NULL, '2022-04-29 21:42:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26493, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:22', '2022-04-29 21:42:53', 30584, 0, '', NULL, '2022-04-29 21:42:53', NULL, '2022-04-29 21:42:53', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26494, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:56', '2022-04-29 21:42:56', 26, 0, '', NULL, '2022-04-29 21:42:56', NULL, '2022-04-29 21:42:56', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26495, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:56', '2022-04-29 21:42:56', 36, 0, '', NULL, '2022-04-29 21:42:56', NULL, '2022-04-29 21:42:56', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26496, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:56', '2022-04-29 21:42:56', 6, 0, '', NULL, '2022-04-29 21:42:56', NULL, '2022-04-29 21:42:56', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26497, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:56', '2022-04-29 21:42:57', 35, 0, '', NULL, '2022-04-29 21:42:57', NULL, '2022-04-29 21:42:57', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26498, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"84\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:58', '2022-04-29 21:42:58', 107, 0, '', NULL, '2022-04-29 21:42:58', NULL, '2022-04-29 21:42:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26499, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:01', '2022-04-29 21:43:01', 20, 0, '', NULL, '2022-04-29 21:43:01', NULL, '2022-04-29 21:43:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26500, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/detail', '{\"query\":{\"tableId\":\"84\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:01', '2022-04-29 21:43:01', 51, 0, '', NULL, '2022-04-29 21:43:01', NULL, '2022-04-29 21:43:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26501, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:01', '2022-04-29 21:43:01', 66, 0, '', NULL, '2022-04-29 21:43:01', NULL, '2022-04-29 21:43:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26502, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:16', '2022-04-29 21:43:16', 31, 0, '', NULL, '2022-04-29 21:43:16', NULL, '2022-04-29 21:43:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26503, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:16', '2022-04-29 21:43:16', 57, 0, '', NULL, '2022-04-29 21:43:16', NULL, '2022-04-29 21:43:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26504, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:17', '2022-04-29 21:43:17', 6, 0, '', NULL, '2022-04-29 21:43:17', NULL, '2022-04-29 21:43:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26505, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:17', '2022-04-29 21:43:17', 26, 0, '', NULL, '2022-04-29 21:43:17', NULL, '2022-04-29 21:43:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26506, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/detail', '{\"query\":{\"tableId\":\"84\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:17', '2022-04-29 21:43:17', 52, 0, '', NULL, '2022-04-29 21:43:17', NULL, '2022-04-29 21:43:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26507, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:17', '2022-04-29 21:43:17', 95, 0, '', NULL, '2022-04-29 21:43:17', NULL, '2022-04-29 21:43:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26508, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:44:32', '2022-04-29 21:44:32', 27, 0, '', NULL, '2022-04-29 21:44:32', NULL, '2022-04-29 21:44:32', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26509, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:44:32', '2022-04-29 21:44:32', 44, 0, '', NULL, '2022-04-29 21:44:32', NULL, '2022-04-29 21:44:32', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26510, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:44:32', '2022-04-29 21:44:32', 7, 0, '', NULL, '2022-04-29 21:44:32', NULL, '2022-04-29 21:44:32', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26511, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:44:33', '2022-04-29 21:44:33', 24, 0, '', NULL, '2022-04-29 21:44:33', NULL, '2022-04-29 21:44:33', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26512, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/detail', '{\"query\":{\"tableId\":\"84\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:44:33', '2022-04-29 21:44:33', 59, 0, '', NULL, '2022-04-29 21:44:33', NULL, '2022-04-29 21:44:33', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26513, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:44:33', '2022-04-29 21:44:33', 90, 0, '', NULL, '2022-04-29 21:44:33', NULL, '2022-04-29 21:44:33', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26514, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:44:44', '2022-04-29 21:44:44', 27, 0, '', NULL, '2022-04-29 21:44:44', NULL, '2022-04-29 21:44:44', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26515, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"84\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:06', '2022-04-29 21:45:06', 97, 0, '', NULL, '2022-04-29 21:45:06', NULL, '2022-04-29 21:45:06', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26516, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"84\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:08', '2022-04-29 21:45:08', 87, 0, '', NULL, '2022-04-29 21:45:08', NULL, '2022-04-29 21:45:08', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26517, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"84\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:19', '2022-04-29 21:45:19', 38, 0, '', NULL, '2022-04-29 21:45:19', NULL, '2022-04-29 21:45:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26518, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:19', '2022-04-29 21:45:19', 23, 0, '', NULL, '2022-04-29 21:45:19', NULL, '2022-04-29 21:45:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26519, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:20', '2022-04-29 21:45:20', 14, 0, '', NULL, '2022-04-29 21:45:20', NULL, '2022-04-29 21:45:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26520, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:20', '2022-04-29 21:45:21', 1432, 0, '', NULL, '2022-04-29 21:45:21', NULL, '2022-04-29 21:45:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26521, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:25', '2022-04-29 21:45:49', 23564, 0, '', NULL, '2022-04-29 21:45:49', NULL, '2022-04-29 21:45:49', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26522, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:52', '2022-04-29 21:45:52', 22, 0, '', NULL, '2022-04-29 21:45:52', NULL, '2022-04-29 21:45:52', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26523, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:52', '2022-04-29 21:45:52', 30, 0, '', NULL, '2022-04-29 21:45:52', NULL, '2022-04-29 21:45:52', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26524, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:52', '2022-04-29 21:45:52', 6, 0, '', NULL, '2022-04-29 21:45:52', NULL, '2022-04-29 21:45:52', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26525, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:52', '2022-04-29 21:45:52', 33, 0, '', NULL, '2022-04-29 21:45:52', NULL, '2022-04-29 21:45:52', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26526, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"85\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:54', '2022-04-29 21:45:54', 89, 0, '', NULL, '2022-04-29 21:45:54', NULL, '2022-04-29 21:45:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26527, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"85\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:46:03', '2022-04-29 21:46:03', 41, 0, '', NULL, '2022-04-29 21:46:03', NULL, '2022-04-29 21:46:03', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26528, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:46:03', '2022-04-29 21:46:03', 25, 0, '', NULL, '2022-04-29 21:46:03', NULL, '2022-04-29 21:46:03', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26529, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:46:04', '2022-04-29 21:46:04', 14, 0, '', NULL, '2022-04-29 21:46:04', NULL, '2022-04-29 21:46:04', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26530, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:46:04', '2022-04-29 21:46:05', 1509, 0, '', NULL, '2022-04-29 21:46:05', NULL, '2022-04-29 21:46:05', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26531, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:46:07', '2022-04-29 21:46:08', 900, 0, '', NULL, '2022-04-29 21:46:08', NULL, '2022-04-29 21:46:08', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26532, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:46:10', '2022-04-29 21:47:24', 73382, 0, '', NULL, '2022-04-29 21:47:24', NULL, '2022-04-29 21:47:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26533, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:00', '2022-04-29 21:48:00', 27, 0, '', NULL, '2022-04-29 21:48:00', NULL, '2022-04-29 21:48:00', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26534, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:00', '2022-04-29 21:48:00', 35, 0, '', NULL, '2022-04-29 21:48:00', NULL, '2022-04-29 21:48:00', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26535, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:00', '2022-04-29 21:48:00', 7, 0, '', NULL, '2022-04-29 21:48:00', NULL, '2022-04-29 21:48:00', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26536, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:01', '2022-04-29 21:48:01', 68, 0, '', NULL, '2022-04-29 21:48:01', NULL, '2022-04-29 21:48:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26537, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:13', '2022-04-29 21:48:13', 13, 0, '', NULL, '2022-04-29 21:48:13', NULL, '2022-04-29 21:48:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26538, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:13', '2022-04-29 21:48:14', 1430, 0, '', NULL, '2022-04-29 21:48:14', NULL, '2022-04-29 21:48:14', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26539, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:19', '2022-04-29 21:48:20', 719, 0, '', NULL, '2022-04-29 21:48:20', NULL, '2022-04-29 21:48:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26540, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_oa_leave\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:22', '2022-04-29 21:48:48', 25844, 0, '', NULL, '2022-04-29 21:48:48', NULL, '2022-04-29 21:48:48', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26541, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:54', '2022-04-29 21:48:54', 27, 0, '', NULL, '2022-04-29 21:48:54', NULL, '2022-04-29 21:48:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26542, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:54', '2022-04-29 21:48:54', 36, 0, '', NULL, '2022-04-29 21:48:54', NULL, '2022-04-29 21:48:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26543, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:55', '2022-04-29 21:48:55', 8, 0, '', NULL, '2022-04-29 21:48:55', NULL, '2022-04-29 21:48:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26544, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:55', '2022-04-29 21:48:55', 42, 0, '', NULL, '2022-04-29 21:48:55', NULL, '2022-04-29 21:48:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26545, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"87\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:58', '2022-04-29 21:48:58', 112, 0, '', NULL, '2022-04-29 21:48:58', NULL, '2022-04-29 21:48:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26546, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"86\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:50:13', '2022-04-29 21:50:13', 44, 0, '', NULL, '2022-04-29 21:50:13', NULL, '2022-04-29 21:50:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26547, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:50:13', '2022-04-29 21:50:13', 30, 0, '', NULL, '2022-04-29 21:50:13', NULL, '2022-04-29 21:50:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26548, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"87\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:50:15', '2022-04-29 21:50:15', 38, 0, '', NULL, '2022-04-29 21:50:15', NULL, '2022-04-29 21:50:15', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26549, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:50:15', '2022-04-29 21:50:15', 23, 0, '', NULL, '2022-04-29 21:50:15', NULL, '2022-04-29 21:50:15', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26550, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:11', '2022-04-29 22:04:11', 118, 0, '', NULL, '2022-04-29 22:04:11', NULL, '2022-04-29 22:04:11', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26551, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:11', '2022-04-29 22:04:11', 101, 0, '', NULL, '2022-04-29 22:04:11', NULL, '2022-04-29 22:04:11', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26552, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:11', '2022-04-29 22:04:11', 15, 0, '', NULL, '2022-04-29 22:04:11', NULL, '2022-04-29 22:04:11', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26553, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:12', '2022-04-29 22:04:12', 138, 0, '', NULL, '2022-04-29 22:04:12', NULL, '2022-04-29 22:04:12', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26554, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:40', '2022-04-29 22:04:40', 34, 0, '', NULL, '2022-04-29 22:04:40', NULL, '2022-04-29 22:04:40', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26555, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:40', '2022-04-29 22:04:40', 35, 0, '', NULL, '2022-04-29 22:04:40', NULL, '2022-04-29 22:04:40', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26556, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:40', '2022-04-29 22:04:40', 8, 0, '', NULL, '2022-04-29 22:04:40', NULL, '2022-04-29 22:04:40', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26557, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:41', '2022-04-29 22:04:41', 26, 0, '', NULL, '2022-04-29 22:04:41', NULL, '2022-04-29 22:04:41', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26558, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:43', '2022-04-29 22:04:43', 45, 0, '', NULL, '2022-04-29 22:04:43', NULL, '2022-04-29 22:04:43', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26559, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:43', '2022-04-29 22:04:45', 1543, 0, '', NULL, '2022-04-29 22:04:45', NULL, '2022-04-29 22:04:45', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26560, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:47', '2022-04-29 22:04:47', 188, 0, '', NULL, '2022-04-29 22:04:47', NULL, '2022-04-29 22:04:47', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26561, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:47', '2022-04-29 22:04:47', 39, 0, '', NULL, '2022-04-29 22:04:47', NULL, '2022-04-29 22:04:47', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26562, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"88\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:49', '2022-04-29 22:04:50', 292, 0, '', NULL, '2022-04-29 22:04:50', NULL, '2022-04-29 22:04:50', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26563, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/codegen/sync-from-db', '{\"query\":{\"tableId\":\"88\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:53', '2022-04-29 22:04:54', 673, 1003001007, '同步失败,不存在改变', NULL, '2022-04-29 22:04:54', NULL, '2022-04-29 22:04:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26564, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/codegen/sync-from-db', '{\"query\":{\"tableId\":\"88\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:05:23', '2022-04-29 22:05:23', 114, 1003001007, '同步失败,不存在改变', NULL, '2022-04-29 22:05:23', NULL, '2022-04-29 22:05:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26565, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/codegen/sync-from-db', '{\"query\":{\"tableId\":\"88\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:05:44', '2022-04-29 22:05:44', 93, 0, '', NULL, '2022-04-29 22:05:44', NULL, '2022-04-29 22:05:44', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26566, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"88\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:05:49', '2022-04-29 22:05:49', 98, 0, '', NULL, '2022-04-29 22:05:49', NULL, '2022-04-29 22:05:49', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26567, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/detail', '{\"query\":{\"tableId\":\"88\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:05:52', '2022-04-29 22:05:52', 42, 0, '', NULL, '2022-04-29 22:05:52', NULL, '2022-04-29 22:05:52', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26568, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:05:52', '2022-04-29 22:05:52', 43, 0, '', NULL, '2022-04-29 22:05:52', NULL, '2022-04-29 22:05:52', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26569, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:05:52', '2022-04-29 22:05:53', 105, 0, '', NULL, '2022-04-29 22:05:53', NULL, '2022-04-29 22:05:53', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26570, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:06:01', '2022-04-29 22:06:01', 26, 0, '', NULL, '2022-04-29 22:06:01', NULL, '2022-04-29 22:06:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26571, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"88\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:06:17', '2022-04-29 22:06:17', 45, 0, '', NULL, '2022-04-29 22:06:17', NULL, '2022-04-29 22:06:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26572, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:06:17', '2022-04-29 22:06:17', 23, 0, '', NULL, '2022-04-29 22:06:17', NULL, '2022-04-29 22:06:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26573, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:29:39', '2022-04-29 22:29:39', 195, 0, '', NULL, '2022-04-29 22:29:39', NULL, '2022-04-29 22:29:39', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26574, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:30:36', '2022-04-29 22:30:36', 44, 0, '', NULL, '2022-04-29 22:30:36', NULL, '2022-04-29 22:30:36', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26575, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:30:36', '2022-04-29 22:30:36', 64, 0, '', NULL, '2022-04-29 22:30:36', NULL, '2022-04-29 22:30:36', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26576, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:30:36', '2022-04-29 22:30:36', 19, 0, '', NULL, '2022-04-29 22:30:36', NULL, '2022-04-29 22:30:36', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26577, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:30:37', '2022-04-29 22:30:37', 34, 0, '', NULL, '2022-04-29 22:30:37', NULL, '2022-04-29 22:30:37', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26578, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:30:38', '2022-04-29 22:30:38', 37, 0, '', NULL, '2022-04-29 22:30:38', NULL, '2022-04-29 22:30:38', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26579, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:30:38', '2022-04-29 22:30:40', 1608, 0, '', NULL, '2022-04-29 22:30:40', NULL, '2022-04-29 22:30:40', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26580, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{},\"body\":\"{\\\"dataSourceConfigId\\\":0,\\\"tableNames\\\":[\\\"bpm_form\\\"]}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:30:44', '2022-04-29 22:30:44', 172, 500, '系统异常', NULL, '2022-04-29 22:30:44', NULL, '2022-04-29 22:30:44', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26581, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:47', '2022-04-29 22:33:48', 156, 0, '', NULL, '2022-04-29 22:33:48', NULL, '2022-04-29 22:33:48', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26582, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:47', '2022-04-29 22:33:47', 126, 0, '', NULL, '2022-04-29 22:33:48', NULL, '2022-04-29 22:33:48', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26583, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:48', '2022-04-29 22:33:48', 19, 0, '', NULL, '2022-04-29 22:33:48', NULL, '2022-04-29 22:33:48', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26584, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:48', '2022-04-29 22:33:48', 172, 0, '', NULL, '2022-04-29 22:33:48', NULL, '2022-04-29 22:33:48', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26585, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:50', '2022-04-29 22:33:50', 43, 0, '', NULL, '2022-04-29 22:33:50', NULL, '2022-04-29 22:33:50', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26586, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:50', '2022-04-29 22:33:52', 1755, 0, '', NULL, '2022-04-29 22:33:52', NULL, '2022-04-29 22:33:52', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26587, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{},\"body\":\"{\\\"dataSourceConfigId\\\":0,\\\"tableNames\\\":[\\\"bpm_form\\\"]}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:54', '2022-04-29 22:33:54', 203, 0, '', NULL, '2022-04-29 22:33:54', NULL, '2022-04-29 22:33:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26588, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:54', '2022-04-29 22:33:54', 40, 0, '', NULL, '2022-04-29 22:33:54', NULL, '2022-04-29 22:33:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26589, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"89\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:57', '2022-04-29 22:33:57', 383, 0, '', NULL, '2022-04-29 22:33:57', NULL, '2022-04-29 22:33:57', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26590, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"89\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:59', '2022-04-29 22:33:59', 103, 0, '', NULL, '2022-04-29 22:33:59', NULL, '2022-04-29 22:33:59', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26591, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:01', '2022-04-29 22:34:01', 16, 0, '', NULL, '2022-04-29 22:34:01', NULL, '2022-04-29 22:34:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26592, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:01', '2022-04-29 22:34:02', 1526, 0, '', NULL, '2022-04-29 22:34:02', NULL, '2022-04-29 22:34:02', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26593, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:07', '2022-04-29 22:34:08', 1421, 0, '', NULL, '2022-04-29 22:34:08', NULL, '2022-04-29 22:34:08', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26594, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:08', '2022-04-29 22:34:09', 654, 0, '', NULL, '2022-04-29 22:34:09', NULL, '2022-04-29 22:34:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26595, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{},\"body\":\"{\\\"dataSourceConfigId\\\":9,\\\"tableNames\\\":[\\\"bpm_oa_leave\\\"]}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:12', '2022-04-29 22:34:12', 204, 0, '', NULL, '2022-04-29 22:34:12', NULL, '2022-04-29 22:34:12', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26596, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:12', '2022-04-29 22:34:12', 35, 0, '', NULL, '2022-04-29 22:34:12', NULL, '2022-04-29 22:34:12', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26597, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:47', '2022-04-29 22:34:47', 15, 0, '', NULL, '2022-04-29 22:34:47', NULL, '2022-04-29 22:34:47', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26598, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:47', '2022-04-29 22:34:48', 1419, 0, '', NULL, '2022-04-29 22:34:48', NULL, '2022-04-29 22:34:48', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26599, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"beginCreateTime\":\"2022-03-31 00:00:00\",\"pageNo\":\"1\",\"pageSize\":\"10\",\"endCreateTime\":\"2022-04-05 23:59:59\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:54', '2022-04-29 22:34:54', 112, 0, '', NULL, '2022-04-29 22:34:54', NULL, '2022-04-29 22:34:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26600, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:55', '2022-04-29 22:34:55', 27, 0, '', NULL, '2022-04-29 22:34:55', NULL, '2022-04-29 22:34:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26601, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:43:05', '2022-04-29 22:43:05', 459, 0, '', NULL, '2022-04-29 22:43:05', NULL, '2022-04-29 22:43:05', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26602, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:43:25', '2022-04-29 22:43:25', 36, 0, '', NULL, '2022-04-29 22:43:25', NULL, '2022-04-29 22:43:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26603, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:43:25', '2022-04-29 22:43:25', 66, 0, '', NULL, '2022-04-29 22:43:25', NULL, '2022-04-29 22:43:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26604, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"dataSourceConfigId\":\"0\",\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:43:25', '2022-04-29 22:43:25', 37, 0, '', NULL, '2022-04-29 22:43:25', NULL, '2022-04-29 22:43:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26605, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:43:55', '2022-04-29 22:43:55', 27, 0, '', NULL, '2022-04-29 22:43:55', NULL, '2022-04-29 22:43:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26606, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:43:55', '2022-04-29 22:43:55', 55, 0, '', NULL, '2022-04-29 22:43:55', NULL, '2022-04-29 22:43:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26607, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:44:04', '2022-04-29 22:44:04', 18, 0, '', NULL, '2022-04-29 22:44:04', NULL, '2022-04-29 22:44:04', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26608, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:44:04', '2022-04-29 22:44:04', 38, 0, '', NULL, '2022-04-29 22:44:04', NULL, '2022-04-29 22:44:04', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26609, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:44:20', '2022-04-29 22:44:20', 39, 0, '', NULL, '2022-04-29 22:44:20', NULL, '2022-04-29 22:44:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26610, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:44:20', '2022-04-29 22:44:20', 60, 0, '', NULL, '2022-04-29 22:44:20', NULL, '2022-04-29 22:44:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26611, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:44:20', '2022-04-29 22:44:20', 11, 0, '', NULL, '2022-04-29 22:44:20', NULL, '2022-04-29 22:44:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26612, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:44:21', '2022-04-29 22:44:21', 18, 0, '', NULL, '2022-04-29 22:44:21', NULL, '2022-04-29 22:44:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26613, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:44:21', '2022-04-29 22:44:21', 37, 0, '', NULL, '2022-04-29 22:44:21', NULL, '2022-04-29 22:44:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26614, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:46:44', '2022-04-29 22:46:44', 18, 0, '', NULL, '2022-04-29 22:46:44', NULL, '2022-04-29 22:46:44', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26615, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:46:44', '2022-04-29 22:46:44', 53, 0, '', NULL, '2022-04-29 22:46:44', NULL, '2022-04-29 22:46:44', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26616, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:19', '2022-04-29 22:47:19', 18, 0, '', NULL, '2022-04-29 22:47:19', NULL, '2022-04-29 22:47:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26617, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:19', '2022-04-29 22:47:19', 43, 0, '', NULL, '2022-04-29 22:47:19', NULL, '2022-04-29 22:47:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26618, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:24', '2022-04-29 22:47:24', 27, 0, '', NULL, '2022-04-29 22:47:24', NULL, '2022-04-29 22:47:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26619, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:24', '2022-04-29 22:47:24', 33, 0, '', NULL, '2022-04-29 22:47:24', NULL, '2022-04-29 22:47:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26620, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:24', '2022-04-29 22:47:24', 7, 0, '', NULL, '2022-04-29 22:47:24', NULL, '2022-04-29 22:47:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26621, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:24', '2022-04-29 22:47:24', 20, 0, '', NULL, '2022-04-29 22:47:24', NULL, '2022-04-29 22:47:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26622, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:24', '2022-04-29 22:47:24', 41, 0, '', NULL, '2022-04-29 22:47:24', NULL, '2022-04-29 22:47:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26623, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:55', '2022-04-29 22:47:55', 30, 0, '', NULL, '2022-04-29 22:47:55', NULL, '2022-04-29 22:47:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26624, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:55', '2022-04-29 22:47:55', 40, 0, '', NULL, '2022-04-29 22:47:55', NULL, '2022-04-29 22:47:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26625, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:55', '2022-04-29 22:47:55', 9, 0, '', NULL, '2022-04-29 22:47:55', NULL, '2022-04-29 22:47:55', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26626, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:56', '2022-04-29 22:47:56', 21, 0, '', NULL, '2022-04-29 22:47:56', NULL, '2022-04-29 22:47:56', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26627, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:56', '2022-04-29 22:47:56', 47, 0, '', NULL, '2022-04-29 22:47:56', NULL, '2022-04-29 22:47:56', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26628, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:48:01', '2022-04-29 22:48:01', 23, 0, '', NULL, '2022-04-29 22:48:01', NULL, '2022-04-29 22:48:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26629, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:48:01', '2022-04-29 22:48:01', 29, 0, '', NULL, '2022-04-29 22:48:01', NULL, '2022-04-29 22:48:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26630, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:48:01', '2022-04-29 22:48:01', 8, 0, '', NULL, '2022-04-29 22:48:01', NULL, '2022-04-29 22:48:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26631, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:48:02', '2022-04-29 22:48:02', 16, 0, '', NULL, '2022-04-29 22:48:02', NULL, '2022-04-29 22:48:02', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26632, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:48:02', '2022-04-29 22:48:02', 38, 0, '', NULL, '2022-04-29 22:48:02', NULL, '2022-04-29 22:48:02', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26633, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:55:59', '2022-04-29 22:55:59', 12, 0, '', NULL, '2022-04-29 22:55:59', NULL, '2022-04-29 22:55:59', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26634, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:55:59', '2022-04-29 22:56:01', 1535, 0, '', NULL, '2022-04-29 22:56:01', NULL, '2022-04-29 22:56:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26635, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:06', '2022-04-29 22:56:07', 1288, 0, '', NULL, '2022-04-29 22:56:07', NULL, '2022-04-29 22:56:07', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26636, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{},\"body\":\"{\\\"dataSourceConfigId\\\":9,\\\"tableNames\\\":[\\\"bpm_form\\\"]}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:11', '2022-04-29 22:56:11', 225, 0, '', NULL, '2022-04-29 22:56:11', NULL, '2022-04-29 22:56:11', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26637, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:11', '2022-04-29 22:56:11', 27, 0, '', NULL, '2022-04-29 22:56:11', NULL, '2022-04-29 22:56:11', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26638, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"91\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:21', '2022-04-29 22:56:21', 51, 0, '', NULL, '2022-04-29 22:56:21', NULL, '2022-04-29 22:56:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26639, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:21', '2022-04-29 22:56:21', 26, 0, '', NULL, '2022-04-29 22:56:21', NULL, '2022-04-29 22:56:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26640, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"90\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:23', '2022-04-29 22:56:24', 36, 0, '', NULL, '2022-04-29 22:56:24', NULL, '2022-04-29 22:56:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26641, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:24', '2022-04-29 22:56:24', 26, 0, '', NULL, '2022-04-29 22:56:24', NULL, '2022-04-29 22:56:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26642, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"89\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:25', '2022-04-29 22:56:25', 38, 0, '', NULL, '2022-04-29 22:56:25', NULL, '2022-04-29 22:56:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26643, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:25', '2022-04-29 22:56:25', 22, 0, '', NULL, '2022-04-29 22:56:25', NULL, '2022-04-29 22:56:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26644, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:05:18', '2022-04-29 23:05:18', 21, 0, '', NULL, '2022-04-29 23:05:18', NULL, '2022-04-29 23:05:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26645, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:05:18', '2022-04-29 23:05:18', 40, 0, '', NULL, '2022-04-29 23:05:18', NULL, '2022-04-29 23:05:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26646, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:05:27', '2022-04-29 23:05:27', 23, 0, '', NULL, '2022-04-29 23:05:27', NULL, '2022-04-29 23:05:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26647, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:05:27', '2022-04-29 23:05:27', 40, 0, '', NULL, '2022-04-29 23:05:27', NULL, '2022-04-29 23:05:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26648, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:05:34', '2022-04-29 23:05:34', 15, 0, '', NULL, '2022-04-29 23:05:34', NULL, '2022-04-29 23:05:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26649, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:05:34', '2022-04-29 23:05:34', 28, 0, '', NULL, '2022-04-29 23:05:34', NULL, '2022-04-29 23:05:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26650, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:06:33', '2022-04-29 23:06:33', 27, 0, '', NULL, '2022-04-29 23:06:33', NULL, '2022-04-29 23:06:33', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26651, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:06:33', '2022-04-29 23:06:33', 35, 0, '', NULL, '2022-04-29 23:06:33', NULL, '2022-04-29 23:06:33', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26652, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:06:33', '2022-04-29 23:06:33', 8, 0, '', NULL, '2022-04-29 23:06:33', NULL, '2022-04-29 23:06:33', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26653, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:06:34', '2022-04-29 23:06:34', 19, 0, '', NULL, '2022-04-29 23:06:34', NULL, '2022-04-29 23:06:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26654, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:06:34', '2022-04-29 23:06:34', 40, 0, '', NULL, '2022-04-29 23:06:34', NULL, '2022-04-29 23:06:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26655, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:06:35', '2022-04-29 23:06:35', 17, 0, '', NULL, '2022-04-29 23:06:35', NULL, '2022-04-29 23:06:35', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26656, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:06:35', '2022-04-29 23:06:37', 1687, 500, '系统异常', NULL, '2022-04-29 23:06:37', NULL, '2022-04-29 23:06:37', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26657, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:16', '2022-04-29 23:11:17', 114, 0, '', NULL, '2022-04-29 23:11:17', NULL, '2022-04-29 23:11:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26658, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:16', '2022-04-29 23:11:16', 93, 0, '', NULL, '2022-04-29 23:11:17', NULL, '2022-04-29 23:11:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26659, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:17', '2022-04-29 23:11:17', 16, 0, '', NULL, '2022-04-29 23:11:17', NULL, '2022-04-29 23:11:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26660, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:17', '2022-04-29 23:11:17', 63, 0, '', NULL, '2022-04-29 23:11:17', NULL, '2022-04-29 23:11:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26661, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:17', '2022-04-29 23:11:17', 115, 0, '', NULL, '2022-04-29 23:11:17', NULL, '2022-04-29 23:11:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26662, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:21', '2022-04-29 23:11:21', 22, 0, '', NULL, '2022-04-29 23:11:21', NULL, '2022-04-29 23:11:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26663, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:21', '2022-04-29 23:11:21', 28, 0, '', NULL, '2022-04-29 23:11:21', NULL, '2022-04-29 23:11:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26664, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:21', '2022-04-29 23:11:21', 7, 0, '', NULL, '2022-04-29 23:11:21', NULL, '2022-04-29 23:11:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26665, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:22', '2022-04-29 23:11:22', 17, 0, '', NULL, '2022-04-29 23:11:22', NULL, '2022-04-29 23:11:22', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26666, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:22', '2022-04-29 23:11:22', 30, 0, '', NULL, '2022-04-29 23:11:22', NULL, '2022-04-29 23:11:22', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26667, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:23', '2022-04-29 23:11:23', 15, 0, '', NULL, '2022-04-29 23:11:23', NULL, '2022-04-29 23:11:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26668, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:23', '2022-04-29 23:11:25', 1664, 0, '', NULL, '2022-04-29 23:11:25', NULL, '2022-04-29 23:11:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26669, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{},\"body\":\"{\\\"dataSourceConfigId\\\":0,\\\"tableNames\\\":[\\\"bpm_form\\\"]}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:27', '2022-04-29 23:11:27', 12, 0, '', NULL, '2022-04-29 23:11:27', NULL, '2022-04-29 23:11:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26670, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:07', '2022-04-29 23:12:07', 32, 0, '', NULL, '2022-04-29 23:12:07', NULL, '2022-04-29 23:12:07', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26671, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:07', '2022-04-29 23:12:07', 40, 0, '', NULL, '2022-04-29 23:12:07', NULL, '2022-04-29 23:12:07', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26672, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:07', '2022-04-29 23:12:07', 8, 0, '', NULL, '2022-04-29 23:12:07', NULL, '2022-04-29 23:12:07', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26673, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:08', '2022-04-29 23:12:08', 22, 0, '', NULL, '2022-04-29 23:12:08', NULL, '2022-04-29 23:12:08', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26674, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:08', '2022-04-29 23:12:08', 42, 0, '', NULL, '2022-04-29 23:12:08', NULL, '2022-04-29 23:12:08', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26675, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:08', '2022-04-29 23:12:08', 14, 0, '', NULL, '2022-04-29 23:12:08', NULL, '2022-04-29 23:12:08', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26676, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:08', '2022-04-29 23:12:10', 1443, 0, '', NULL, '2022-04-29 23:12:10', NULL, '2022-04-29 23:12:10', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26677, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list', '{\"query\":{},\"body\":\"{\\\"dataSourceConfigId\\\":0,\\\"tableNames\\\":[\\\"bpm_form\\\"]}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:12', '2022-04-29 23:12:12', 182, 0, '', NULL, '2022-04-29 23:12:12', NULL, '2022-04-29 23:12:12', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26678, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:12', '2022-04-29 23:12:12', 34, 0, '', NULL, '2022-04-29 23:12:12', NULL, '2022-04-29 23:12:12', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26679, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/codegen/sync-from-db', '{\"query\":{\"tableId\":\"92\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:16', '2022-04-29 23:12:16', 94, 1003001007, '同步失败,不存在改变', NULL, '2022-04-29 23:12:16', NULL, '2022-04-29 23:12:16', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26680, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:17', '2022-04-29 23:13:17', 17, 0, '', NULL, '2022-04-29 23:13:17', NULL, '2022-04-29 23:13:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26681, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:17', '2022-04-29 23:13:17', 34, 0, '', NULL, '2022-04-29 23:13:17', NULL, '2022-04-29 23:13:17', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26682, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:37', '2022-04-29 23:13:37', 14, 0, '', NULL, '2022-04-29 23:13:37', NULL, '2022-04-29 23:13:37', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26683, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:37', '2022-04-29 23:13:37', 29, 0, '', NULL, '2022-04-29 23:13:37', NULL, '2022-04-29 23:13:37', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26684, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:45', '2022-04-29 23:13:45', 29, 0, '', NULL, '2022-04-29 23:13:45', NULL, '2022-04-29 23:13:45', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26685, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:45', '2022-04-29 23:13:45', 41, 0, '', NULL, '2022-04-29 23:13:45', NULL, '2022-04-29 23:13:45', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26686, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:45', '2022-04-29 23:13:45', 8, 0, '', NULL, '2022-04-29 23:13:45', NULL, '2022-04-29 23:13:45', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26687, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:46', '2022-04-29 23:13:46', 22, 0, '', NULL, '2022-04-29 23:13:46', NULL, '2022-04-29 23:13:46', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26688, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:46', '2022-04-29 23:13:46', 39, 0, '', NULL, '2022-04-29 23:13:46', NULL, '2022-04-29 23:13:46', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26689, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:46', '2022-04-29 23:13:46', 15, 0, '', NULL, '2022-04-29 23:13:46', NULL, '2022-04-29 23:13:46', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26690, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:46', '2022-04-29 23:13:48', 1537, 0, '', NULL, '2022-04-29 23:13:48', NULL, '2022-04-29 23:13:48', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26691, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:49', '2022-04-29 23:13:49', 13, 0, '', NULL, '2022-04-29 23:13:49', NULL, '2022-04-29 23:13:49', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26692, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:49', '2022-04-29 23:13:50', 1416, 0, '', NULL, '2022-04-29 23:13:50', NULL, '2022-04-29 23:13:50', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26693, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list', '{\"query\":{},\"body\":\"{\\\"dataSourceConfigId\\\":0,\\\"tableNames\\\":[\\\"bpm_task_assign_rule\\\"]}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:55', '2022-04-29 23:13:56', 135, 0, '', NULL, '2022-04-29 23:13:56', NULL, '2022-04-29 23:13:56', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26694, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:56', '2022-04-29 23:13:56', 28, 0, '', NULL, '2022-04-29 23:13:56', NULL, '2022-04-29 23:13:56', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26695, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{\"query\":{\"tableId\":\"93\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:59', '2022-04-29 23:13:59', 47, 0, '', NULL, '2022-04-29 23:13:59', NULL, '2022-04-29 23:13:59', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26696, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:59', '2022-04-29 23:13:59', 27, 0, '', NULL, '2022-04-29 23:13:59', NULL, '2022-04-29 23:13:59', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26697, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:14:40', '2022-04-29 23:14:40', 14, 0, '', NULL, '2022-04-29 23:14:40', NULL, '2022-04-29 23:14:40', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26698, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:14:40', '2022-04-29 23:14:41', 1452, 0, '', NULL, '2022-04-29 23:14:41', NULL, '2022-04-29 23:14:41', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26699, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:14:43', '2022-04-29 23:14:44', 1244, 0, '', NULL, '2022-04-29 23:14:44', NULL, '2022-04-29 23:14:44', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26700, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list', '{\"query\":{},\"body\":\"{\\\"dataSourceConfigId\\\":9,\\\"tableNames\\\":[\\\"bpm_form\\\"]}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:14:46', '2022-04-29 23:14:47', 186, 0, '', NULL, '2022-04-29 23:14:47', NULL, '2022-04-29 23:14:47', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26701, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:14:47', '2022-04-29 23:14:47', 28, 0, '', NULL, '2022-04-29 23:14:47', NULL, '2022-04-29 23:14:47', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26702, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"94\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:14:48', '2022-04-29 23:14:49', 327, 0, '', NULL, '2022-04-29 23:14:49', NULL, '2022-04-29 23:14:49', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26703, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"92\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:15:43', '2022-04-29 23:15:43', 92, 0, '', NULL, '2022-04-29 23:15:43', NULL, '2022-04-29 23:15:43', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26704, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:18:54', '2022-04-29 23:18:54', 13, 0, '', NULL, '2022-04-29 23:18:54', NULL, '2022-04-29 23:18:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26705, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:18:54', '2022-04-29 23:18:56', 1434, 0, '', NULL, '2022-04-29 23:18:56', NULL, '2022-04-29 23:18:56', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26706, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list', '{\"query\":{},\"body\":\"{\\\"dataSourceConfigId\\\":0,\\\"tableNames\\\":[\\\"bpm_oa_leave\\\"]}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:18:59', '2022-04-29 23:18:59', 148, 0, '', NULL, '2022-04-29 23:18:59', NULL, '2022-04-29 23:18:59', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26707, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:18:59', '2022-04-29 23:18:59', 41, 0, '', NULL, '2022-04-29 23:18:59', NULL, '2022-04-29 23:18:59', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26708, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"94\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:19:01', '2022-04-29 23:19:01', 77, 0, '', NULL, '2022-04-29 23:19:01', NULL, '2022-04-29 23:19:01', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26709, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"95\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:19:11', '2022-04-29 23:19:11', 97, 0, '', NULL, '2022-04-29 23:19:11', NULL, '2022-04-29 23:19:11', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26710, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:33:24', '2022-04-29 23:33:24', 144, 0, '', NULL, '2022-04-29 23:33:24', NULL, '2022-04-29 23:33:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26711, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:33:24', '2022-04-29 23:33:24', 123, 0, '', NULL, '2022-04-29 23:33:24', NULL, '2022-04-29 23:33:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26712, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:33:24', '2022-04-29 23:33:24', 21, 0, '', NULL, '2022-04-29 23:33:24', NULL, '2022-04-29 23:33:24', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26713, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:33:25', '2022-04-29 23:33:25', 69, 0, '', NULL, '2022-04-29 23:33:25', NULL, '2022-04-29 23:33:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26714, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:33:25', '2022-04-29 23:33:25', 134, 0, '', NULL, '2022-04-29 23:33:25', NULL, '2022-04-29 23:33:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26715, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"92\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:33:26', '2022-04-29 23:33:27', 286, 500, '系统异常', NULL, '2022-04-29 23:33:27', NULL, '2022-04-29 23:33:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26716, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:35:34', '2022-04-29 23:35:34', 120, 0, '', NULL, '2022-04-29 23:35:34', NULL, '2022-04-29 23:35:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26717, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:35:34', '2022-04-29 23:35:34', 99, 0, '', NULL, '2022-04-29 23:35:34', NULL, '2022-04-29 23:35:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26718, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:35:34', '2022-04-29 23:35:34', 14, 0, '', NULL, '2022-04-29 23:35:34', NULL, '2022-04-29 23:35:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26719, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:35:35', '2022-04-29 23:35:35', 60, 0, '', NULL, '2022-04-29 23:35:35', NULL, '2022-04-29 23:35:35', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26720, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:35:35', '2022-04-29 23:35:35', 120, 0, '', NULL, '2022-04-29 23:35:35', NULL, '2022-04-29 23:35:35', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26721, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"92\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:35:37', '2022-04-29 23:35:38', 265, 500, '系统异常', NULL, '2022-04-29 23:35:38', NULL, '2022-04-29 23:35:38', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26722, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"92\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:37:07', '2022-04-29 23:37:07', 354, 500, '系统异常', NULL, '2022-04-29 23:37:07', NULL, '2022-04-29 23:37:07', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26723, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"92\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:38:08', '2022-04-29 23:38:08', 329, 0, '', NULL, '2022-04-29 23:38:08', NULL, '2022-04-29 23:38:08', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26724, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:42:45', '2022-04-29 23:42:45', 114, 0, '', NULL, '2022-04-29 23:42:45', NULL, '2022-04-29 23:42:45', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26725, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:42:45', '2022-04-29 23:42:45', 95, 0, '', NULL, '2022-04-29 23:42:45', NULL, '2022-04-29 23:42:45', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26726, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:42:45', '2022-04-29 23:42:45', 19, 0, '', NULL, '2022-04-29 23:42:45', NULL, '2022-04-29 23:42:45', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26727, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:42:46', '2022-04-29 23:42:46', 61, 0, '', NULL, '2022-04-29 23:42:46', NULL, '2022-04-29 23:42:46', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26728, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:42:46', '2022-04-29 23:42:46', 126, 0, '', NULL, '2022-04-29 23:42:46', NULL, '2022-04-29 23:42:46', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26729, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"92\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:42:49', '2022-04-29 23:42:50', 295, 500, '系统异常', NULL, '2022-04-29 23:42:50', NULL, '2022-04-29 23:42:50', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26730, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:44:40', '2022-04-29 23:44:40', 87, 0, '', NULL, '2022-04-29 23:44:40', NULL, '2022-04-29 23:44:40', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26731, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:44:40', '2022-04-29 23:44:40', 111, 0, '', NULL, '2022-04-29 23:44:40', NULL, '2022-04-29 23:44:40', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26732, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:44:40', '2022-04-29 23:44:40', 15, 0, '', NULL, '2022-04-29 23:44:40', NULL, '2022-04-29 23:44:40', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26733, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:44:40', '2022-04-29 23:44:41', 68, 0, '', NULL, '2022-04-29 23:44:41', NULL, '2022-04-29 23:44:41', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26734, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:44:40', '2022-04-29 23:44:41', 136, 0, '', NULL, '2022-04-29 23:44:41', NULL, '2022-04-29 23:44:41', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26735, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"94\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:44:43', '2022-04-29 23:44:43', 277, 500, '系统异常', NULL, '2022-04-29 23:44:43', NULL, '2022-04-29 23:44:43', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26736, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:46:30', '2022-04-29 23:46:30', 111, 0, '', NULL, '2022-04-29 23:46:30', NULL, '2022-04-29 23:46:30', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26737, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:46:30', '2022-04-29 23:46:30', 93, 0, '', NULL, '2022-04-29 23:46:30', NULL, '2022-04-29 23:46:30', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26738, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:46:30', '2022-04-29 23:46:30', 17, 0, '', NULL, '2022-04-29 23:46:30', NULL, '2022-04-29 23:46:30', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26739, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:46:31', '2022-04-29 23:46:31', 74, 0, '', NULL, '2022-04-29 23:46:31', NULL, '2022-04-29 23:46:31', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26740, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:46:31', '2022-04-29 23:46:31', 153, 0, '', NULL, '2022-04-29 23:46:31', NULL, '2022-04-29 23:46:31', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26741, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"94\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:46:34', '2022-04-29 23:46:34', 288, 0, '', NULL, '2022-04-29 23:46:34', NULL, '2022-04-29 23:46:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26742, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"92\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:47:53', '2022-04-29 23:47:54', 341, 0, '', NULL, '2022-04-29 23:47:54', NULL, '2022-04-29 23:47:54', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26743, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"94\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:48:14', '2022-04-29 23:48:14', 87, 0, '', NULL, '2022-04-29 23:48:14', NULL, '2022-04-29 23:48:14', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26744, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:48:48', '2022-04-29 23:48:48', 37, 0, '', NULL, '2022-04-29 23:48:48', NULL, '2022-04-29 23:48:48', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26745, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:48:48', '2022-04-29 23:48:49', 1543, 0, '', NULL, '2022-04-29 23:48:49', NULL, '2022-04-29 23:48:49', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26746, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list', '{\"query\":{},\"body\":\"{\\\"dataSourceConfigId\\\":0,\\\"tableNames\\\":[\\\"system_user_session\\\"]}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:48:56', '2022-04-29 23:48:56', 173, 0, '', NULL, '2022-04-29 23:48:56', NULL, '2022-04-29 23:48:56', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26747, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:48:56', '2022-04-29 23:48:56', 86, 0, '', NULL, '2022-04-29 23:48:56', NULL, '2022-04-29 23:48:56', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26748, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"96\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:48:58', '2022-04-29 23:48:58', 83, 0, '', NULL, '2022-04-29 23:48:58', NULL, '2022-04-29 23:48:58', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26749, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:56:03', '2022-04-29 23:56:05', 1589, 0, '', NULL, '2022-04-29 23:56:05', NULL, '2022-04-29 23:56:05', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26750, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:20', '2022-04-30 00:02:20', 41, 0, '', NULL, '2022-04-30 00:02:20', NULL, '2022-04-30 00:02:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26751, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:20', '2022-04-30 00:02:20', 96, 0, '', NULL, '2022-04-30 00:02:20', NULL, '2022-04-30 00:02:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26752, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/logout', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:20', '2022-04-30 00:02:20', 112, 0, '', NULL, '2022-04-30 00:02:20', NULL, '2022-04-30 00:02:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26753, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:20', '2022-04-30 00:02:22', 1529, 0, '', NULL, '2022-04-30 00:02:22', NULL, '2022-04-30 00:02:22', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26754, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:25', '2022-04-30 00:02:25', 25, 0, '', NULL, '2022-04-30 00:02:25', NULL, '2022-04-30 00:02:25', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26755, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:27', '2022-04-30 00:02:27', 14, 0, '', NULL, '2022-04-30 00:02:27', NULL, '2022-04-30 00:02:27', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26756, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:36', '2022-04-30 00:02:36', 12, 0, '', NULL, '2022-04-30 00:02:36', NULL, '2022-04-30 00:02:36', b'0', 0); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26757, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/tenant/get-id-by-name', '{\"query\":{\"name\":\"芋道源码\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:39', '2022-04-30 00:02:39', 32, 0, '', NULL, '2022-04-30 00:02:39', NULL, '2022-04-30 00:02:39', b'0', 0); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26758, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/login', '{\"query\":{},\"body\":\"{\\\"username\\\":\\\"admin\\\",\\\"password\\\":\\\"admin123\\\",\\\"code\\\":\\\"j7cif\\\",\\\"uuid\\\":\\\"a1e9258429b14294b2c032fdfdd141a5\\\"}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:39', '2022-04-30 00:02:39', 5, 0, '', NULL, '2022-04-30 00:02:39', NULL, '2022-04-30 00:02:39', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26759, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:39', '2022-04-30 00:02:39', 11, 0, '', NULL, '2022-04-30 00:02:39', NULL, '2022-04-30 00:02:39', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26760, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/logout', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:40', '2022-04-30 00:02:40', 2, 0, '', NULL, '2022-04-30 00:02:40', NULL, '2022-04-30 00:02:40', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26761, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:41', '2022-04-30 00:02:41', 20, 0, '', NULL, '2022-04-30 00:02:41', NULL, '2022-04-30 00:02:41', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26762, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/tenant/get-id-by-name', '{\"query\":{\"name\":\"芋道源码\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:45', '2022-04-30 00:02:45', 16, 0, '', NULL, '2022-04-30 00:02:45', NULL, '2022-04-30 00:02:45', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26763, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/login', '{\"query\":{},\"body\":\"{\\\"username\\\":\\\"admin\\\",\\\"password\\\":\\\"admin123\\\",\\\"code\\\":\\\"03p97\\\",\\\"uuid\\\":\\\"92f67d699db140c1afec2541517b34d5\\\"}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:45', '2022-04-30 00:02:45', 2, 0, '', NULL, '2022-04-30 00:02:45', NULL, '2022-04-30 00:02:45', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26764, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:45', '2022-04-30 00:02:45', 14, 0, '', NULL, '2022-04-30 00:02:45', NULL, '2022-04-30 00:02:45', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26765, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/logout', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:52', '2022-04-30 00:02:52', 1, 0, '', NULL, '2022-04-30 00:02:52', NULL, '2022-04-30 00:02:52', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26766, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:53', '2022-04-30 00:02:53', 19, 0, '', NULL, '2022-04-30 00:02:53', NULL, '2022-04-30 00:02:53', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26767, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/tenant/get-id-by-name', '{\"query\":{\"name\":\"芋道源码\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:56', '2022-04-30 00:02:56', 14, 0, '', NULL, '2022-04-30 00:02:56', NULL, '2022-04-30 00:02:56', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26768, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/login', '{\"query\":{},\"body\":\"{\\\"username\\\":\\\"admin\\\",\\\"password\\\":\\\"admin123\\\",\\\"code\\\":\\\"dbvcc\\\",\\\"uuid\\\":\\\"310ea712de274745ac235baba97e528a\\\"}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:56', '2022-04-30 00:02:56', 2, 0, '', NULL, '2022-04-30 00:02:56', NULL, '2022-04-30 00:02:56', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26769, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:56', '2022-04-30 00:02:56', 13, 0, '', NULL, '2022-04-30 00:02:56', NULL, '2022-04-30 00:02:56', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26770, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:06:16', '2022-04-30 00:06:18', 1387, 0, '', NULL, '2022-04-30 00:06:18', NULL, '2022-04-30 00:06:18', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26771, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/tenant/get-id-by-name', '{\"query\":{\"name\":\"芋道源码\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:06:20', '2022-04-30 00:06:20', 50, 0, '', NULL, '2022-04-30 00:06:20', NULL, '2022-04-30 00:06:20', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26772, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/auth/login', '{\"query\":{},\"body\":\"{\\\"username\\\":\\\"admin\\\",\\\"password\\\":\\\"admin123\\\",\\\"code\\\":\\\"ib7z7\\\",\\\"uuid\\\":\\\"b9d3d0218ed2466f86a9d76f127b91f6\\\"}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:06:20', '2022-04-30 00:06:21', 340, 0, '', NULL, '2022-04-30 00:06:21', NULL, '2022-04-30 00:06:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26773, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:06:21', '2022-04-30 00:06:21', 55, 0, '', NULL, '2022-04-30 00:06:21', NULL, '2022-04-30 00:06:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26774, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:06:21', '2022-04-30 00:06:21', 61, 0, '', NULL, '2022-04-30 00:06:21', NULL, '2022-04-30 00:06:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26775, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:06:21', '2022-04-30 00:06:21', 18, 0, '', NULL, '2022-04-30 00:06:21', NULL, '2022-04-30 00:06:21', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26776, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:04', '2022-04-30 02:55:04', 87, 0, '', NULL, '2022-04-30 02:55:04', NULL, '2022-04-30 02:55:04', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26777, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:04', '2022-04-30 02:55:04', 116, 0, '', NULL, '2022-04-30 02:55:04', NULL, '2022-04-30 02:55:04', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26778, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:04', '2022-04-30 02:55:04', 16, 0, '', NULL, '2022-04-30 02:55:04', NULL, '2022-04-30 02:55:04', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26779, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:13', '2022-04-30 02:55:13', 23, 0, '', NULL, '2022-04-30 02:55:13', NULL, '2022-04-30 02:55:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26780, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:13', '2022-04-30 02:55:13', 32, 0, '', NULL, '2022-04-30 02:55:13', NULL, '2022-04-30 02:55:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26781, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:13', '2022-04-30 02:55:13', 8, 0, '', NULL, '2022-04-30 02:55:13', NULL, '2022-04-30 02:55:13', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26782, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:18', '2022-04-30 02:55:19', 65, 0, '', NULL, '2022-04-30 02:55:19', NULL, '2022-04-30 02:55:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26783, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{\"query\":{\"key\":\"sys.user.init-password\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:18', '2022-04-30 02:55:19', 77, 0, '', NULL, '2022-04-30 02:55:19', NULL, '2022-04-30 02:55:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26784, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:18', '2022-04-30 02:55:19', 83, 0, '', NULL, '2022-04-30 02:55:19', NULL, '2022-04-30 02:55:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26785, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:18', '2022-04-30 02:55:19', 186, 0, '', NULL, '2022-04-30 02:55:19', NULL, '2022-04-30 02:55:19', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26786, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:23', '2022-04-30 02:55:23', 17, 0, '', NULL, '2022-04-30 02:55:23', NULL, '2022-04-30 02:55:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26787, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:23', '2022-04-30 02:55:23', 29, 0, '', NULL, '2022-04-30 02:55:23', NULL, '2022-04-30 02:55:23', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26788, '', 1, 2, 'yudao-server', 'POST', '/admin-api/system/user/create', '{\"query\":{},\"body\":\"{\\\"deptId\\\":100,\\\"username\\\":\\\"admin\\\",\\\"nickname\\\":\\\"1\\\",\\\"password\\\":\\\"admin123\\\",\\\"mobile\\\":\\\"\\\",\\\"email\\\":\\\"\\\",\\\"status\\\":\\\"0\\\",\\\"remark\\\":\\\"11\\\",\\\"postIds\\\":[],\\\"roleIds\\\":[]}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:34', '2022-04-30 02:55:34', 100, 1002003000, '用户账号已经存在', NULL, '2022-04-30 02:55:34', NULL, '2022-04-30 02:55:34', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26789, '', 1, 2, 'yudao-server', 'POST', '/admin-api/system/user/create', '{\"query\":{},\"body\":\"{\\\"deptId\\\":100,\\\"username\\\":\\\"aotemane\\\",\\\"nickname\\\":\\\"1\\\",\\\"password\\\":\\\"admin123\\\",\\\"mobile\\\":\\\"\\\",\\\"email\\\":\\\"\\\",\\\"status\\\":\\\"0\\\",\\\"remark\\\":\\\"11\\\",\\\"postIds\\\":[],\\\"roleIds\\\":[]}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:43', '2022-04-30 02:55:43', 177, 0, '', NULL, '2022-04-30 02:55:43', NULL, '2022-04-30 02:55:43', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26790, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:43', '2022-04-30 02:55:43', 55, 0, '', NULL, '2022-04-30 02:55:43', NULL, '2022-04-30 02:55:43', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26791, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:48:06', '2022-04-30 19:48:06', 103, 0, '', NULL, '2022-04-30 19:48:06', NULL, '2022-04-30 19:48:06', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26792, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:48:06', '2022-04-30 19:48:06', 78, 0, '', NULL, '2022-04-30 19:48:06', NULL, '2022-04-30 19:48:06', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26793, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:48:06', '2022-04-30 19:48:06', 19, 0, '', NULL, '2022-04-30 19:48:06', NULL, '2022-04-30 19:48:06', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26794, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:48:07', '2022-04-30 19:48:07', 119, 0, '', NULL, '2022-04-30 19:48:07', NULL, '2022-04-30 19:48:07', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26795, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:48:09', '2022-04-30 19:48:09', 62, 0, '', NULL, '2022-04-30 19:48:09', NULL, '2022-04-30 19:48:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26796, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{\"query\":{\"key\":\"sys.user.init-password\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:48:09', '2022-04-30 19:48:09', 75, 0, '', NULL, '2022-04-30 19:48:09', NULL, '2022-04-30 19:48:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26797, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list-all-simple', '{\"query\":{},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:48:09', '2022-04-30 19:48:09', 74, 0, '', NULL, '2022-04-30 19:48:09', NULL, '2022-04-30 19:48:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26798, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:48:09', '2022-04-30 19:48:09', 126, 0, '', NULL, '2022-04-30 19:48:09', NULL, '2022-04-30 19:48:09', b'0', 1); -INSERT INTO `infra_api_access_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `begin_time`, `end_time`, `duration`, `result_code`, `result_msg`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26799, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/page', '{\"query\":{\"pageNo\":\"1\",\"pageSize\":\"10\"},\"body\":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:48:10', '2022-04-30 19:48:10', 26, 0, '', NULL, '2022-04-30 19:48:10', NULL, '2022-04-30 19:48:10', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for infra_api_error_log -- ---------------------------- DROP TABLE IF EXISTS `infra_api_error_log`; -CREATE TABLE `infra_api_error_log` ( +CREATE TABLE `infra_api_error_log` ( `id` int NOT NULL AUTO_INCREMENT COMMENT '编号', `trace_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '链路追踪编号\n *\n * 一般来说,通过链路追踪编号,可以将访问日志,错误日志,链路追踪日志,logger 打印日志等,结合在一起,从而进行排错。', - `user_id` int NOT NULL DEFAULT '0' COMMENT '用户编号', - `user_type` tinyint NOT NULL DEFAULT '0' COMMENT '用户类型', + `user_id` int NOT NULL DEFAULT 0 COMMENT '用户编号', + `user_type` tinyint NOT NULL DEFAULT 0 COMMENT '用户类型', `application_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '应用名\n *\n * 目前读取 spring.application.name', `request_method` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '请求方法名', `request_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '请求地址', @@ -1642,80 +540,28 @@ CREATE TABLE `infra_api_error_log` ( `exception_method_name` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '异常发生的方法名\n *\n * {@link StackTraceElement#getMethodName()}', `exception_line_number` int NOT NULL COMMENT '异常发生的方法所在行\n *\n * {@link StackTraceElement#getLineNumber()}', `process_status` tinyint NOT NULL COMMENT '处理状态', - `process_time` datetime DEFAULT NULL COMMENT '处理时间', - `process_user_id` int DEFAULT '0' COMMENT '处理用户编号', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `process_time` datetime NULL DEFAULT NULL COMMENT '处理时间', + `process_user_id` int NULL DEFAULT 0 COMMENT '处理用户编号', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=409 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='系统异常日志'; +) ENGINE = InnoDB AUTO_INCREMENT = 409 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '系统异常日志'; -- ---------------------------- -- Records of infra_api_error_log -- ---------------------------- BEGIN; -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (357, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:07', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: \n### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/db/DataSourceConfigMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id, name, url, username, password, create_time, update_time, creator, updater, deleted FROM infra_data_source_config WHERE deleted = 0 AND tenant_id = 1\n### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'', 'MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'', 'org.springframework.jdbc.BadSqlGrammarException: \n### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/db/DataSourceConfigMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id, name, url, username, password, create_time, update_time, creator, updater, deleted FROM infra_data_source_config WHERE deleted = 0 AND tenant_id = 1\n### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy138.selectList(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)\n at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166)\n at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)\n at com.sun.proxy.$Proxy260.selectList(Unknown Source)\n at cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX.selectList(BaseMapperX.java:59)\n at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)\n at com.sun.proxy.$Proxy260.selectList(Unknown Source)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfigList(DataSourceConfigServiceImpl.java:78)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$3cf50a47.getDataSourceConfigList()\n at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.getDataSourceConfigList(DataSourceConfigController.java:69)\n at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController$$FastClassBySpringCGLIB$$983ba4d8.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.GeneratedMethodAccessor373.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController$$EnhancerBySpringCGLIB$$3a669c08.getDataSourceConfigList()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461)\n at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459)\n at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167)\n at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497)\n at sun.reflect.GeneratedMethodAccessor246.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)\n at com.sun.proxy.$Proxy159.execute(Unknown Source)\n at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64)\n at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)\n at sun.reflect.GeneratedMethodAccessor254.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64)\n at com.sun.proxy.$Proxy157.query(Unknown Source)\n at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)\n at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325)\n at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)\n at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)\n at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62)\n at com.sun.proxy.$Proxy156.query(Unknown Source)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)\n at sun.reflect.GeneratedMethodAccessor275.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427)\n ... 185 more\n', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, 0, NULL, '2022-04-27 22:43:07', NULL, '2022-04-27 22:43:07', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (358, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:32', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: \n### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/db/DataSourceConfigMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id, name, url, username, password, create_time, update_time, creator, updater, deleted FROM infra_data_source_config WHERE deleted = 0 AND tenant_id = 1\n### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'', 'MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'', 'org.springframework.jdbc.BadSqlGrammarException: \n### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/db/DataSourceConfigMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id, name, url, username, password, create_time, update_time, creator, updater, deleted FROM infra_data_source_config WHERE deleted = 0 AND tenant_id = 1\n### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy138.selectList(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)\n at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166)\n at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)\n at com.sun.proxy.$Proxy260.selectList(Unknown Source)\n at cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX.selectList(BaseMapperX.java:59)\n at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)\n at com.sun.proxy.$Proxy260.selectList(Unknown Source)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfigList(DataSourceConfigServiceImpl.java:78)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$3cf50a47.getDataSourceConfigList()\n at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.getDataSourceConfigList(DataSourceConfigController.java:69)\n at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController$$FastClassBySpringCGLIB$$983ba4d8.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.GeneratedMethodAccessor373.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController$$EnhancerBySpringCGLIB$$3a669c08.getDataSourceConfigList()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461)\n at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459)\n at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167)\n at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497)\n at sun.reflect.GeneratedMethodAccessor246.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)\n at com.sun.proxy.$Proxy159.execute(Unknown Source)\n at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64)\n at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)\n at sun.reflect.GeneratedMethodAccessor254.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64)\n at com.sun.proxy.$Proxy157.query(Unknown Source)\n at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)\n at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325)\n at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)\n at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)\n at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62)\n at com.sun.proxy.$Proxy156.query(Unknown Source)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)\n at sun.reflect.GeneratedMethodAccessor275.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427)\n ... 185 more\n', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, 0, NULL, '2022-04-27 22:43:32', NULL, '2022-04-27 22:43:32', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (359, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{\"query\":{},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:47', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: \n### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/db/DataSourceConfigMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id, name, url, username, password, create_time, update_time, creator, updater, deleted FROM infra_data_source_config WHERE deleted = 0 AND tenant_id = 1\n### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'', 'MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'', 'org.springframework.jdbc.BadSqlGrammarException: \n### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/db/DataSourceConfigMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id, name, url, username, password, create_time, update_time, creator, updater, deleted FROM infra_data_source_config WHERE deleted = 0 AND tenant_id = 1\n### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy138.selectList(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)\n at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166)\n at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)\n at com.sun.proxy.$Proxy260.selectList(Unknown Source)\n at cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX.selectList(BaseMapperX.java:59)\n at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)\n at com.sun.proxy.$Proxy260.selectList(Unknown Source)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfigList(DataSourceConfigServiceImpl.java:78)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$3cf50a47.getDataSourceConfigList()\n at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.getDataSourceConfigList(DataSourceConfigController.java:69)\n at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController$$FastClassBySpringCGLIB$$983ba4d8.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.GeneratedMethodAccessor373.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController$$EnhancerBySpringCGLIB$$3a669c08.getDataSourceConfigList()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tenant_id\' in \'where clause\'\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461)\n at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459)\n at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167)\n at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497)\n at sun.reflect.GeneratedMethodAccessor246.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)\n at com.sun.proxy.$Proxy159.execute(Unknown Source)\n at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64)\n at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)\n at sun.reflect.GeneratedMethodAccessor254.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64)\n at com.sun.proxy.$Proxy157.query(Unknown Source)\n at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)\n at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325)\n at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)\n at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)\n at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62)\n at com.sun.proxy.$Proxy156.query(Unknown Source)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)\n at sun.reflect.GeneratedMethodAccessor275.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427)\n ... 185 more\n', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, 0, NULL, '2022-04-27 22:43:47', NULL, '2022-04-27 22:43:47', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (360, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:57:51', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: Unknown column \'tableName\' in \'field list\'', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$e8532de0.selectTableList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:39)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:264)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$df999684.getSchemaTableList()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:61)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$2b284dcd.getSchemaTableList()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tableName\' in \'field list\'\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:65)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectTableList(DatabaseTableMySQLDAOImpl.java:43)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 174 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 10:57:52', NULL, '2022-04-28 10:57:52', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (361, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:05:54', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: Unknown column \'tableName\' in \'field list\'', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$b643c6cc.selectTableList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:39)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:264)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$a3a2cc3d.getSchemaTableList()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:61)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$aface5d0.getSchemaTableList()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tableName\' in \'field list\'\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:76)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectTableList(DatabaseTableMySQLDAOImpl.java:43)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 174 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 11:05:54', NULL, '2022-04-28 11:05:54', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (362, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:41:03', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: Unknown column \'tableName\' in \'field list\'', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$acbe86cb.selectTableList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:39)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:264)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7a20d1a8.getSchemaTableList()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:61)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$f13af62e.getSchemaTableList()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'tableName\' in \'field list\'\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:76)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectTableList(DatabaseTableMySQLDAOImpl.java:43)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 174 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 11:41:03', NULL, '2022-04-28 11:41:03', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (363, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:47:34', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: Unknown column \'ruoyi\' in \'where clause\'', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$87361831.selectTableList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:39)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:264)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$fac36cb0.getSchemaTableList()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:61)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$51369398.getSchemaTableList()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'ruoyi\' in \'where clause\'\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:76)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectTableList(DatabaseTableMySQLDAOImpl.java:43)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 174 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 11:47:34', NULL, '2022-04-28 11:47:34', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (364, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:34:17', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'SELECT DATABASE())\' at line 1', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$87361831.selectTableList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:39)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:264)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$fac36cb0.getSchemaTableList()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:61)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$51369398.getSchemaTableList()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'SELECT DATABASE())\' at line 1\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:76)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectTableList(DatabaseTableMySQLDAOImpl.java:43)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 174 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 12:34:17', NULL, '2022-04-28 12:34:17', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (365, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:37:35', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'SELECT DATABASE())\' at line 1', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$87361831.selectTableList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:39)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:264)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$fac36cb0.getSchemaTableList()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:61)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$51369398.getSchemaTableList()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'SELECT DATABASE())\' at line 1\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:76)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectTableList(DatabaseTableMySQLDAOImpl.java:43)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 174 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 12:37:35', NULL, '2022-04-28 12:37:35', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (366, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"53\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:01:28', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: \n### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'column_type\' in \'field list\'\n### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/codegen/CodegenColumnMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id, table_id, column_name, column_type, column_comment, nullable, primary_key, auto_increment, ordinal_position, java_type, java_field, dict_type, example, create_operation, update_operation, list_operation, list_operation_condition, list_operation_result, html_type, create_time, update_time, creator, updater, deleted FROM infra_codegen_column WHERE deleted = 0 AND (table_id = ?) ORDER BY ordinal_position ASC\n### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'column_type\' in \'field list\'\n; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'column_type\' in \'field list\'', 'MySQLSyntaxErrorException: Unknown column \'column_type\' in \'field list\'', 'org.springframework.jdbc.BadSqlGrammarException: \n### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'column_type\' in \'field list\'\n### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/codegen/CodegenColumnMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id, table_id, column_name, column_type, column_comment, nullable, primary_key, auto_increment, ordinal_position, java_type, java_field, dict_type, example, create_operation, update_operation, list_operation, list_operation_condition, list_operation_result, html_type, create_time, update_time, creator, updater, deleted FROM infra_codegen_column WHERE deleted = 0 AND (table_id = ?) ORDER BY ordinal_position ASC\n### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'column_type\' in \'field list\'\n; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'column_type\' in \'field list\'\n at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy138.selectList(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)\n at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166)\n at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)\n at com.sun.proxy.$Proxy259.selectList(Unknown Source)\n at cn.iocoder.yudao.module.infra.dal.mysql.codegen.CodegenColumnMapper.selectListByTableId(CodegenColumnMapper.java:14)\n at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)\n at com.sun.proxy.$Proxy259.selectListByTableId(Unknown Source)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.generationCodes(CodegenServiceImpl.java:252)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$39e0660e.generationCodes()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.previewCodegen(CodegenController.java:147)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$d8bf44dd.previewCodegen()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'column_type\' in \'field list\'\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461)\n at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459)\n at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167)\n at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497)\n at sun.reflect.GeneratedMethodAccessor244.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)\n at com.sun.proxy.$Proxy159.execute(Unknown Source)\n at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64)\n at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)\n at sun.reflect.GeneratedMethodAccessor264.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64)\n at com.sun.proxy.$Proxy157.query(Unknown Source)\n at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)\n at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325)\n at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)\n at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)\n at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62)\n at com.sun.proxy.$Proxy156.query(Unknown Source)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)\n at sun.reflect.GeneratedMethodAccessor272.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427)\n ... 180 more\n', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, 0, NULL, '2022-04-28 19:01:28', NULL, '2022-04-28 19:01:28', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (367, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:19:14', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: Unknown column \'column_name\' in \'field list\'', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$acbe86cb.selectColumnList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:110)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:120)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:120)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$39e0660e.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:92)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$1e092b2f.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'column_name\' in \'field list\'\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:53)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 185 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 19:19:14', NULL, '2022-04-28 19:19:14', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (368, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:21:18', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: Unknown column \'ordinalPosition\' in \'field list\'', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$773168f2.selectColumnList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:110)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:120)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:120)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$39e0660e.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:92)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$14d5a133.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'ordinalPosition\' in \'field list\'\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:53)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 185 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 19:21:18', NULL, '2022-04-28 19:21:18', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (369, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:22:39', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'SQLException: Column \'table_name\' not found.', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$acbe86cb.selectColumnList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:110)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:120)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:120)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7a20d1a8.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:92)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$a82dfdfd.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: java.sql.SQLException: Column \'table_name\' not found.\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:965)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:898)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:887)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:861)\n at com.mysql.jdbc.ResultSetImpl.findColumn(ResultSetImpl.java:1080)\n at com.mysql.jdbc.ResultSetImpl.getString(ResultSetImpl.java:5177)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.lambda$selectColumnList$1(DatabaseTableMySQLDAOImpl.java:54)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:68)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:53)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 185 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 19:22:39', NULL, '2022-04-28 19:22:39', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (370, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:23:51', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'SQLException: Column \'table_name\' not found.', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$acbe86cb.selectColumnList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:110)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:120)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:120)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7a20d1a8.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:92)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$a82dfdfd.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: java.sql.SQLException: Column \'table_name\' not found.\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:965)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:898)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:887)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:861)\n at com.mysql.jdbc.ResultSetImpl.findColumn(ResultSetImpl.java:1080)\n at com.mysql.jdbc.ResultSetImpl.getString(ResultSetImpl.java:5177)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.lambda$selectColumnList$1(DatabaseTableMySQLDAOImpl.java:54)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:68)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:53)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 185 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 19:23:51', NULL, '2022-04-28 19:23:51', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (371, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:23:53', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'SQLException: Column \'table_name\' not found.', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$acbe86cb.selectColumnList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:110)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:120)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:120)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7a20d1a8.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:92)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$a82dfdfd.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: java.sql.SQLException: Column \'table_name\' not found.\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:965)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:898)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:887)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:861)\n at com.mysql.jdbc.ResultSetImpl.findColumn(ResultSetImpl.java:1080)\n at com.mysql.jdbc.ResultSetImpl.getString(ResultSetImpl.java:5177)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.lambda$selectColumnList$1(DatabaseTableMySQLDAOImpl.java:54)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:68)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:53)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 185 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 19:23:53', NULL, '2022-04-28 19:23:53', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (372, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:23:57', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'SQLException: Column \'table_name\' not found.', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$acbe86cb.selectColumnList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:110)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:120)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:120)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7a20d1a8.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:92)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$a82dfdfd.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: java.sql.SQLException: Column \'table_name\' not found.\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:965)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:898)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:887)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:861)\n at com.mysql.jdbc.ResultSetImpl.findColumn(ResultSetImpl.java:1080)\n at com.mysql.jdbc.ResultSetImpl.getString(ResultSetImpl.java:5177)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.lambda$selectColumnList$1(DatabaseTableMySQLDAOImpl.java:54)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:68)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:53)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 185 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 19:23:57', NULL, '2022-04-28 19:23:57', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (373, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:05', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'OracleDatabaseException: ORA-00904: \"DT\".\"COMMENTS\": 标识符无效\n', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$EnhancerBySpringCGLIB$$16f580a1.selectTableList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:36)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:251)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7fff112.getSchemaTableList()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:63)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$a8421874.getSchemaTableList()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: java.sql.SQLSyntaxErrorException: ORA-00904: \"DT\".\"COMMENTS\": 标识符无效\n\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:628)\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:562)\n at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1145)\n at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:726)\n at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:291)\n at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:492)\n at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:148)\n at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:928)\n at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1158)\n at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1093)\n at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1402)\n at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285)\n at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3735)\n at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3847)\n at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1098)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl.selectTableList(DatabaseTableOracleDAOImpl.java:36)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$FastClassBySpringCGLIB$$89ea0450.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 174 more\nCaused by: Error : 904, Position : 22, Sql = SELECT dt.table_name, dt.comments, uo.created FROM user_tables dt, user_tab_comments dtc, user_objects uo WHERE dt.table_name = dtc.table_name AND dt.table_name = uo.object_name AND uo.object_type = \'TABLE\', OriginalSql = SELECT dt.table_name, dt.comments, uo.created FROM user_tables dt, user_tab_comments dtc, user_objects uo WHERE dt.table_name = dtc.table_name AND dt.table_name = uo.object_name AND uo.object_type = \'TABLE\', Error Msg = ORA-00904: \"DT\".\"COMMENTS\": 标识符无效\n\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:632)\n ... 195 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 21:12:05', NULL, '2022-04-28 21:12:05', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (374, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:05', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'OracleDatabaseException: ORA-00904: \"DT\".\"COMMENTS\": 标识符无效\n', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$EnhancerBySpringCGLIB$$16f580a1.selectTableList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:36)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:251)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7fff112.getSchemaTableList()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:63)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$a8421874.getSchemaTableList()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: java.sql.SQLSyntaxErrorException: ORA-00904: \"DT\".\"COMMENTS\": 标识符无效\n\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:628)\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:562)\n at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1145)\n at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:726)\n at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:291)\n at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:492)\n at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:148)\n at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:928)\n at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1158)\n at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1093)\n at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1402)\n at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285)\n at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3735)\n at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3847)\n at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1098)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl.selectTableList(DatabaseTableOracleDAOImpl.java:36)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$FastClassBySpringCGLIB$$89ea0450.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 174 more\nCaused by: Error : 904, Position : 22, Sql = SELECT dt.table_name, dt.comments, uo.created FROM user_tables dt, user_tab_comments dtc, user_objects uo WHERE dt.table_name = dtc.table_name AND dt.table_name = uo.object_name AND uo.object_type = \'TABLE\', OriginalSql = SELECT dt.table_name, dt.comments, uo.created FROM user_tables dt, user_tab_comments dtc, user_objects uo WHERE dt.table_name = dtc.table_name AND dt.table_name = uo.object_name AND uo.object_type = \'TABLE\', Error Msg = ORA-00904: \"DT\".\"COMMENTS\": 标识符无效\n\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:632)\n ... 195 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 21:12:05', NULL, '2022-04-28 21:12:05', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (375, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:05', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'OracleDatabaseException: ORA-00904: \"DT\".\"COMMENTS\": 标识符无效\n', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$EnhancerBySpringCGLIB$$16f580a1.selectTableList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:36)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:251)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7fff112.getSchemaTableList()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:63)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$a8421874.getSchemaTableList()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: java.sql.SQLSyntaxErrorException: ORA-00904: \"DT\".\"COMMENTS\": 标识符无效\n\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:628)\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:562)\n at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1145)\n at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:726)\n at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:291)\n at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:492)\n at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:148)\n at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:928)\n at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1158)\n at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1093)\n at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1402)\n at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285)\n at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3735)\n at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3847)\n at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1098)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl.selectTableList(DatabaseTableOracleDAOImpl.java:36)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$FastClassBySpringCGLIB$$89ea0450.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 174 more\nCaused by: Error : 904, Position : 22, Sql = SELECT dt.table_name, dt.comments, uo.created FROM user_tables dt, user_tab_comments dtc, user_objects uo WHERE dt.table_name = dtc.table_name AND dt.table_name = uo.object_name AND uo.object_type = \'TABLE\', OriginalSql = SELECT dt.table_name, dt.comments, uo.created FROM user_tables dt, user_tab_comments dtc, user_objects uo WHERE dt.table_name = dtc.table_name AND dt.table_name = uo.object_name AND uo.object_type = \'TABLE\', Error Msg = ORA-00904: \"DT\".\"COMMENTS\": 标识符无效\n\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:632)\n ... 195 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 21:12:05', NULL, '2022-04-28 21:12:05', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (376, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:05', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'OracleDatabaseException: ORA-00904: \"DT\".\"COMMENTS\": 标识符无效\n', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$EnhancerBySpringCGLIB$$16f580a1.selectTableList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:36)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:251)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7fff112.getSchemaTableList()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:63)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$a8421874.getSchemaTableList()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: java.sql.SQLSyntaxErrorException: ORA-00904: \"DT\".\"COMMENTS\": 标识符无效\n\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:628)\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:562)\n at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1145)\n at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:726)\n at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:291)\n at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:492)\n at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:148)\n at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:928)\n at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1158)\n at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1093)\n at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1402)\n at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285)\n at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3735)\n at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3847)\n at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1098)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl.selectTableList(DatabaseTableOracleDAOImpl.java:36)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$FastClassBySpringCGLIB$$89ea0450.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 174 more\nCaused by: Error : 904, Position : 22, Sql = SELECT dt.table_name, dt.comments, uo.created FROM user_tables dt, user_tab_comments dtc, user_objects uo WHERE dt.table_name = dtc.table_name AND dt.table_name = uo.object_name AND uo.object_type = \'TABLE\', OriginalSql = SELECT dt.table_name, dt.comments, uo.created FROM user_tables dt, user_tab_comments dtc, user_objects uo WHERE dt.table_name = dtc.table_name AND dt.table_name = uo.object_name AND uo.object_type = \'TABLE\', Error Msg = ORA-00904: \"DT\".\"COMMENTS\": 标识符无效\n\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:632)\n ... 195 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 21:12:05', NULL, '2022-04-28 21:12:05', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (377, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"9\",\"tableComment\":\"支付订单\",\"tableName\":\"\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:13:46', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'OracleDatabaseException: ORA-00904: \"TBL\".\"COMMENTS\": 标识符无效\n', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$EnhancerBySpringCGLIB$$7047f474.selectTableList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:36)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:251)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$b01c9c2e.getSchemaTableList()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:63)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$8d194706.getSchemaTableList()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: java.sql.SQLSyntaxErrorException: ORA-00904: \"TBL\".\"COMMENTS\": 标识符无效\n\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:628)\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:562)\n at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1145)\n at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:726)\n at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:291)\n at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:492)\n at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:148)\n at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:928)\n at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1158)\n at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1093)\n at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1402)\n at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285)\n at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3735)\n at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3847)\n at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1098)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl.selectTableList(DatabaseTableOracleDAOImpl.java:36)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$FastClassBySpringCGLIB$$89ea0450.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 174 more\nCaused by: Error : 904, Position : 219, Sql = SELECT tbl.table_name, tblc.comments, uo.created FROM user_tables tbl, user_tab_comments tblc, user_objects uo WHERE tbl.table_name = tblc.table_name AND tbl.table_name = uo.object_name AND uo.object_type = \'TABLE\' AND tbl.comments LIKE \'%支付订单%\', OriginalSql = SELECT tbl.table_name, tblc.comments, uo.created FROM user_tables tbl, user_tab_comments tblc, user_objects uo WHERE tbl.table_name = tblc.table_name AND tbl.table_name = uo.object_name AND uo.object_type = \'TABLE\' AND tbl.comments LIKE \'%支付订单%\', Error Msg = ORA-00904: \"TBL\".\"COMMENTS\": 标识符无效\n\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:632)\n ... 195 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 21:13:46', NULL, '2022-04-28 21:13:46', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (378, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:31', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$e70fa128.selectColumnList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b729c9b3.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:52)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 185 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:18:31', NULL, '2022-04-29 00:18:31', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (379, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:53', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$e70fa128.selectColumnList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b729c9b3.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:52)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 185 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:18:53', NULL, '2022-04-29 00:18:53', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (380, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:19:05', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$e70fa128.selectColumnList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b729c9b3.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:52)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 185 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:19:05', NULL, '2022-04-29 00:19:05', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (381, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:20:01', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException', 'EncryptionOperationNotPossibleException: null', 'EncryptionOperationNotPossibleException: null', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException\n at org.jasypt.encryption.pbe.StandardPBEByteEncryptor.decrypt(StandardPBEByteEncryptor.java:1054)\n at org.jasypt.encryption.pbe.StandardPBEStringEncryptor.decrypt(StandardPBEStringEncryptor.java:738)\n at org.jasypt.encryption.pbe.PooledPBEStringEncryptor.decrypt(PooledPBEStringEncryptor.java:511)\n at com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor.decrypt(DefaultLazyEncryptor.java:57)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfig(DataSourceConfigServiceImpl.java:88)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$771db724.getDataSourceConfig()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getDatabaseTableDAO(DatabaseTableServiceImpl.java:63)\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTable(DatabaseTableServiceImpl.java:44)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:104)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.GeneratedMethodAccessor320.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b729c9b3.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'org.jasypt.encryption.pbe.StandardPBEByteEncryptor', 'StandardPBEByteEncryptor.java', 'decrypt', 1054, 0, NULL, 0, NULL, '2022-04-29 00:20:01', NULL, '2022-04-29 00:20:01', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (382, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:20:24', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException', 'EncryptionOperationNotPossibleException: null', 'EncryptionOperationNotPossibleException: null', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException\n at org.jasypt.encryption.pbe.StandardPBEByteEncryptor.decrypt(StandardPBEByteEncryptor.java:1054)\n at org.jasypt.encryption.pbe.StandardPBEStringEncryptor.decrypt(StandardPBEStringEncryptor.java:738)\n at org.jasypt.encryption.pbe.PooledPBEStringEncryptor.decrypt(PooledPBEStringEncryptor.java:511)\n at com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor.decrypt(DefaultLazyEncryptor.java:57)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfig(DataSourceConfigServiceImpl.java:88)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$771db724.getDataSourceConfig()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getDatabaseTableDAO(DatabaseTableServiceImpl.java:63)\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTable(DatabaseTableServiceImpl.java:44)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:104)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.GeneratedMethodAccessor320.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b729c9b3.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'org.jasypt.encryption.pbe.StandardPBEByteEncryptor', 'StandardPBEByteEncryptor.java', 'decrypt', 1054, 0, NULL, 0, NULL, '2022-04-29 00:20:24', NULL, '2022-04-29 00:20:24', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (383, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:20:58', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException', 'EncryptionOperationNotPossibleException: null', 'EncryptionOperationNotPossibleException: null', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException\n at org.jasypt.encryption.pbe.StandardPBEByteEncryptor.decrypt(StandardPBEByteEncryptor.java:1054)\n at org.jasypt.encryption.pbe.StandardPBEStringEncryptor.decrypt(StandardPBEStringEncryptor.java:738)\n at org.jasypt.encryption.pbe.PooledPBEStringEncryptor.decrypt(PooledPBEStringEncryptor.java:511)\n at com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor.decrypt(DefaultLazyEncryptor.java:57)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfig(DataSourceConfigServiceImpl.java:88)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$771db724.getDataSourceConfig()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getDatabaseTableDAO(DatabaseTableServiceImpl.java:63)\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTable(DatabaseTableServiceImpl.java:44)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:104)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.GeneratedMethodAccessor320.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b729c9b3.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'org.jasypt.encryption.pbe.StandardPBEByteEncryptor', 'StandardPBEByteEncryptor.java', 'decrypt', 1054, 0, NULL, 0, NULL, '2022-04-29 00:20:58', NULL, '2022-04-29 00:20:58', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (384, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:22:43', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException', 'EncryptionOperationNotPossibleException: null', 'EncryptionOperationNotPossibleException: null', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException\n at org.jasypt.encryption.pbe.StandardPBEByteEncryptor.decrypt(StandardPBEByteEncryptor.java:1054)\n at org.jasypt.encryption.pbe.StandardPBEStringEncryptor.decrypt(StandardPBEStringEncryptor.java:738)\n at org.jasypt.encryption.pbe.PooledPBEStringEncryptor.decrypt(PooledPBEStringEncryptor.java:511)\n at com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor.decrypt(DefaultLazyEncryptor.java:57)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfig(DataSourceConfigServiceImpl.java:88)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$771db724.getDataSourceConfig()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getDatabaseTableDAO(DatabaseTableServiceImpl.java:63)\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTable(DatabaseTableServiceImpl.java:44)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:104)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.GeneratedMethodAccessor320.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b729c9b3.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'org.jasypt.encryption.pbe.StandardPBEByteEncryptor', 'StandardPBEByteEncryptor.java', 'decrypt', 1054, 0, NULL, 0, NULL, '2022-04-29 00:22:43', NULL, '2022-04-29 00:22:43', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (385, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:23:00', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException', 'EncryptionOperationNotPossibleException: null', 'EncryptionOperationNotPossibleException: null', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException\n at org.jasypt.encryption.pbe.StandardPBEByteEncryptor.decrypt(StandardPBEByteEncryptor.java:1054)\n at org.jasypt.encryption.pbe.StandardPBEStringEncryptor.decrypt(StandardPBEStringEncryptor.java:738)\n at org.jasypt.encryption.pbe.PooledPBEStringEncryptor.decrypt(PooledPBEStringEncryptor.java:511)\n at com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor.decrypt(DefaultLazyEncryptor.java:57)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfig(DataSourceConfigServiceImpl.java:88)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$771db724.getDataSourceConfig()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getDatabaseTableDAO(DatabaseTableServiceImpl.java:63)\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTable(DatabaseTableServiceImpl.java:44)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:104)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.GeneratedMethodAccessor320.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b729c9b3.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'org.jasypt.encryption.pbe.StandardPBEByteEncryptor', 'StandardPBEByteEncryptor.java', 'decrypt', 1054, 0, NULL, 0, NULL, '2022-04-29 00:23:00', NULL, '2022-04-29 00:23:00', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (386, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:23:43', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException', 'EncryptionOperationNotPossibleException: null', 'EncryptionOperationNotPossibleException: null', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException\n at org.jasypt.encryption.pbe.StandardPBEByteEncryptor.decrypt(StandardPBEByteEncryptor.java:1054)\n at org.jasypt.encryption.pbe.StandardPBEStringEncryptor.decrypt(StandardPBEStringEncryptor.java:738)\n at org.jasypt.encryption.pbe.PooledPBEStringEncryptor.decrypt(PooledPBEStringEncryptor.java:511)\n at com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor.decrypt(DefaultLazyEncryptor.java:57)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfig(DataSourceConfigServiceImpl.java:88)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$c04d5327.getDataSourceConfig()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getDatabaseTableDAO(DatabaseTableServiceImpl.java:63)\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTable(DatabaseTableServiceImpl.java:44)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:104)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$b01c9c2e.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$e8728cf.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'org.jasypt.encryption.pbe.StandardPBEByteEncryptor', 'StandardPBEByteEncryptor.java', 'decrypt', 1054, 0, NULL, 0, NULL, '2022-04-29 00:23:43', NULL, '2022-04-29 00:23:43', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (387, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:24:35', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException', 'EncryptionOperationNotPossibleException: null', 'EncryptionOperationNotPossibleException: null', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException\n at org.jasypt.encryption.pbe.StandardPBEByteEncryptor.decrypt(StandardPBEByteEncryptor.java:1054)\n at org.jasypt.encryption.pbe.StandardPBEStringEncryptor.decrypt(StandardPBEStringEncryptor.java:738)\n at org.jasypt.encryption.pbe.PooledPBEStringEncryptor.decrypt(PooledPBEStringEncryptor.java:511)\n at com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor.decrypt(DefaultLazyEncryptor.java:57)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfig(DataSourceConfigServiceImpl.java:88)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$c04d5327.getDataSourceConfig()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getDatabaseTableDAO(DatabaseTableServiceImpl.java:63)\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTable(DatabaseTableServiceImpl.java:44)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:104)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$b01c9c2e.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$e8728cf.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'org.jasypt.encryption.pbe.StandardPBEByteEncryptor', 'StandardPBEByteEncryptor.java', 'decrypt', 1054, 0, NULL, 0, NULL, '2022-04-29 00:24:35', NULL, '2022-04-29 00:24:35', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (388, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:26:00', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'OracleDatabaseException: ORA-00923: 未找到要求的 FROM 关键字\n', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$EnhancerBySpringCGLIB$$16f580a1.selectColumnList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d807844e.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$ae37713d.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: java.sql.SQLSyntaxErrorException: ORA-00923: 未找到要求的 FROM 关键字\n\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:628)\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:562)\n at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1145)\n at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:726)\n at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:291)\n at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:492)\n at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:148)\n at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:928)\n at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1158)\n at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1093)\n at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1402)\n at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285)\n at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3735)\n at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3847)\n at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1098)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl.selectColumnList(DatabaseTableOracleDAOImpl.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$FastClassBySpringCGLIB$$89ea0450.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 185 more\nCaused by: Error : 923, Position : 203, Sql = SELECT table_name, column_name, data_type, comments, column_id, (CASE WHEN nullable = \'Y\' THEN \'1\' ELSE \'0\' END) AS nullable, (CASE WHEN constraint_type = \'P\' THEN \'1\' ELSE \'0\' END) AS primary_keyFROM ( SELECT col.*, comments, constraint_type, row_number ( ) over ( partition BY col.column_name ORDER BY constraint_type DESC ) AS row_flag FROM user_tab_columns col LEFT JOIN user_col_comments ON user_col_comments.table_name = col.table_name AND user_col_comments.column_name = col.column_name LEFT JOIN user_cons_columns ON user_cons_columns.table_name = col.table_name AND user_cons_columns.column_name = col.column_name LEFT JOIN user_constraints ON user_constraints.constraint_name = user_cons_columns.constraint_name WHERE col.table_name = \'pay_notify_task\' )WHERE row_flag = 1, OriginalSql = SELECT table_name, column_name, data_type, comments, column_id, (CASE WHEN nullable = \'Y\' THEN \'1\' ELSE \'0\' END) AS nullable, (CASE WHEN constraint_type = \'P\' THEN \'1\' ELSE \'0\' END) AS primary_keyFROM ( SELECT col.*, comments, constraint_type, row_number ( ) over ( partition BY col.column_name ORDER BY constraint_type DESC ) AS row_flag FROM user_tab_columns col LEFT JOIN user_col_comments ON user_col_comments.table_name = col.table_name AND user_col_comments.column_name = col.column_name LEFT JOIN user_cons_columns ON user_cons_columns.table_name = col.table_name AND user_cons_columns.column_name = col.column_name LEFT JOIN user_constraints ON user_constraints.constraint_name = user_cons_columns.constraint_name WHERE col.table_name = \'pay_notify_task\' )WHERE row_flag = 1, Error Msg = ORA-00923: 未找到要求的 FROM 关键字\n\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:632)\n ... 206 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:26:00', NULL, '2022-04-29 00:26:00', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (389, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:26:25', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'OracleDatabaseException: ORA-00923: 未找到要求的 FROM 关键字\n', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$EnhancerBySpringCGLIB$$16f580a1.selectColumnList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d807844e.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$ae37713d.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: java.sql.SQLSyntaxErrorException: ORA-00923: 未找到要求的 FROM 关键字\n\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:628)\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:562)\n at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1145)\n at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:726)\n at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:291)\n at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:492)\n at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:148)\n at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:928)\n at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1158)\n at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1093)\n at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1402)\n at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285)\n at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3735)\n at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3847)\n at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1098)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl.selectColumnList(DatabaseTableOracleDAOImpl.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$FastClassBySpringCGLIB$$89ea0450.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 185 more\nCaused by: Error : 923, Position : 203, Sql = SELECT table_name, column_name, data_type, comments, column_id, (CASE WHEN nullable = \'Y\' THEN \'1\' ELSE \'0\' END) AS nullable, (CASE WHEN constraint_type = \'P\' THEN \'1\' ELSE \'0\' END) AS primary_keyFROM ( SELECT col.*, comments, constraint_type, row_number ( ) over ( partition BY col.column_name ORDER BY constraint_type DESC ) AS row_flag FROM user_tab_columns col LEFT JOIN user_col_comments ON user_col_comments.table_name = col.table_name AND user_col_comments.column_name = col.column_name LEFT JOIN user_cons_columns ON user_cons_columns.table_name = col.table_name AND user_cons_columns.column_name = col.column_name LEFT JOIN user_constraints ON user_constraints.constraint_name = user_cons_columns.constraint_name WHERE col.table_name = \'pay_notify_task\' )WHERE row_flag = 1, OriginalSql = SELECT table_name, column_name, data_type, comments, column_id, (CASE WHEN nullable = \'Y\' THEN \'1\' ELSE \'0\' END) AS nullable, (CASE WHEN constraint_type = \'P\' THEN \'1\' ELSE \'0\' END) AS primary_keyFROM ( SELECT col.*, comments, constraint_type, row_number ( ) over ( partition BY col.column_name ORDER BY constraint_type DESC ) AS row_flag FROM user_tab_columns col LEFT JOIN user_col_comments ON user_col_comments.table_name = col.table_name AND user_col_comments.column_name = col.column_name LEFT JOIN user_cons_columns ON user_cons_columns.table_name = col.table_name AND user_cons_columns.column_name = col.column_name LEFT JOIN user_constraints ON user_constraints.constraint_name = user_cons_columns.constraint_name WHERE col.table_name = \'pay_notify_task\' )WHERE row_flag = 1, Error Msg = ORA-00923: 未找到要求的 FROM 关键字\n\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:632)\n ... 206 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:26:25', NULL, '2022-04-29 00:26:25', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (390, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:28:34', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'OracleDatabaseException: ORA-00923: 未找到要求的 FROM 关键字\n', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$EnhancerBySpringCGLIB$$16f580a1.selectColumnList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d807844e.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$ae37713d.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: java.sql.SQLSyntaxErrorException: ORA-00923: 未找到要求的 FROM 关键字\n\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:628)\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:562)\n at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1145)\n at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:726)\n at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:291)\n at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:492)\n at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:148)\n at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:928)\n at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1158)\n at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1093)\n at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1402)\n at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285)\n at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3735)\n at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3847)\n at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1098)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl.selectColumnList(DatabaseTableOracleDAOImpl.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$FastClassBySpringCGLIB$$89ea0450.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 185 more\nCaused by: Error : 923, Position : 203, Sql = SELECT table_name, column_name, data_type, comments, column_id, (CASE WHEN nullable = \'Y\' THEN \'1\' ELSE \'0\' END) AS nullable, (CASE WHEN constraint_type = \'P\' THEN \'1\' ELSE \'0\' END) AS primary_keyFROM ( SELECT col.*, comments, constraint_type, row_number ( ) over ( partition BY col.column_name ORDER BY constraint_type DESC ) AS row_flag FROM user_tab_columns col LEFT JOIN user_col_comments ON user_col_comments.table_name = col.table_name AND user_col_comments.column_name = col.column_name LEFT JOIN user_cons_columns ON user_cons_columns.table_name = col.table_name AND user_cons_columns.column_name = col.column_name LEFT JOIN user_constraints ON user_constraints.constraint_name = user_cons_columns.constraint_name WHERE col.table_name = \'pay_notify_task\' )WHERE row_flag = 1, OriginalSql = SELECT table_name, column_name, data_type, comments, column_id, (CASE WHEN nullable = \'Y\' THEN \'1\' ELSE \'0\' END) AS nullable, (CASE WHEN constraint_type = \'P\' THEN \'1\' ELSE \'0\' END) AS primary_keyFROM ( SELECT col.*, comments, constraint_type, row_number ( ) over ( partition BY col.column_name ORDER BY constraint_type DESC ) AS row_flag FROM user_tab_columns col LEFT JOIN user_col_comments ON user_col_comments.table_name = col.table_name AND user_col_comments.column_name = col.column_name LEFT JOIN user_cons_columns ON user_cons_columns.table_name = col.table_name AND user_cons_columns.column_name = col.column_name LEFT JOIN user_constraints ON user_constraints.constraint_name = user_cons_columns.constraint_name WHERE col.table_name = \'pay_notify_task\' )WHERE row_flag = 1, Error Msg = ORA-00923: 未找到要求的 FROM 关键字\n\n at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:632)\n ... 206 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:28:34', NULL, '2022-04-29 00:28:34', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (391, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:28:46', 'java.lang.IllegalStateException', 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'java.lang.IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.processColumnJava(CodegenBuilder.java:170)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.initColumnDefault(CodegenBuilder.java:152)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.buildColumns(CodegenBuilder.java:140)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen0(CodegenServiceImpl.java:80)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:107)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d807844e.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$ae37713d.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder', 'CodegenBuilder.java', 'processColumnJava', 170, 0, NULL, 0, NULL, '2022-04-29 00:28:46', NULL, '2022-04-29 00:28:46', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (392, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:30:44', 'java.lang.IllegalStateException', 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'java.lang.IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.processColumnJava(CodegenBuilder.java:170)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.initColumnDefault(CodegenBuilder.java:152)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.buildColumns(CodegenBuilder.java:140)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen0(CodegenServiceImpl.java:80)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:107)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d807844e.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$ae37713d.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder', 'CodegenBuilder.java', 'processColumnJava', 170, 0, NULL, 0, NULL, '2022-04-29 00:30:44', NULL, '2022-04-29 00:30:44', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (393, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:40:18', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$e70fa128.selectColumnList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$bee9e593.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$f70bfce3.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:52)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 185 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:40:18', NULL, '2022-04-29 00:40:18', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (394, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:40:50', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$e70fa128.selectColumnList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$bee9e593.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$f70bfce3.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:52)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 185 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:40:50', NULL, '2022-04-29 00:40:50', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (395, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"bpm_form\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:40:54', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1', 'java.lang.reflect.UndeclaredThrowableException\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770)\n at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$e70fa128.selectColumnList()\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$bee9e593.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$f70bfce3.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966)\n at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:52)\n at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n ... 185 more\n', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:40:54', NULL, '2022-04-29 00:40:54', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (396, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:43:05', 'java.lang.IllegalStateException', 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'java.lang.IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.processColumnJava(CodegenBuilder.java:168)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.initColumnDefault(CodegenBuilder.java:152)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.buildColumns(CodegenBuilder.java:140)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen0(CodegenServiceImpl.java:80)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:107)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$bee9e593.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$f70bfce3.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder', 'CodegenBuilder.java', 'processColumnJava', 168, 0, NULL, 0, NULL, '2022-04-29 00:43:05', NULL, '2022-04-29 00:43:05', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (397, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:43:27', 'java.lang.IllegalStateException', 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'java.lang.IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.processColumnJava(CodegenBuilder.java:168)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.initColumnDefault(CodegenBuilder.java:152)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.buildColumns(CodegenBuilder.java:140)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen0(CodegenServiceImpl.java:80)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:107)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$bee9e593.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$f70bfce3.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder', 'CodegenBuilder.java', 'processColumnJava', 168, 0, NULL, 0, NULL, '2022-04-29 00:43:27', NULL, '2022-04-29 00:43:27', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (398, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{\"tableNames\":\"pay_notify_task\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:44:40', 'java.lang.IllegalStateException', 'IllegalStateException: column(creator) 的数据库类型(null) 找不到匹配的 Java 类型', 'IllegalStateException: column(creator) 的数据库类型(null) 找不到匹配的 Java 类型', 'java.lang.IllegalStateException: column(creator) 的数据库类型(null) 找不到匹配的 Java 类型\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.processColumnJava(CodegenBuilder.java:168)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.initColumnDefault(CodegenBuilder.java:152)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.buildColumns(CodegenBuilder.java:140)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen0(CodegenServiceImpl.java:80)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:107)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$c482d8f6.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$54219244.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder', 'CodegenBuilder.java', 'processColumnJava', 168, 0, NULL, 0, NULL, '2022-04-29 00:44:40', NULL, '2022-04-29 00:44:40', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (399, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\",\"name\":\"bpm\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:32:49', 'java.lang.NullPointerException', 'NullPointerException: null', 'NullPointerException: null', 'java.lang.NullPointerException\n at java.lang.String.contains(String.java:2133)\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.lambda$getTableList2$0(DatabaseTableServiceImpl.java:68)\n at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:174)\n at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1384)\n at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:482)\n at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:472)\n at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708)\n at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)\n at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:566)\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList2(DatabaseTableServiceImpl.java:70)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getDatabaseTableList(CodegenServiceImpl.java:247)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$96a77cb5.getDatabaseTableList()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:62)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.GeneratedMethodAccessor336.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$2cf01065.getSchemaTableList()\n at sun.reflect.GeneratedMethodAccessor360.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'java.lang.String', 'String.java', 'contains', 2133, 0, NULL, 0, NULL, '2022-04-29 20:32:49', NULL, '2022-04-29 20:32:49', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (400, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\",\"name\":\"apy\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:32:53', 'java.lang.NullPointerException', 'NullPointerException: null', 'NullPointerException: null', 'java.lang.NullPointerException\n at java.lang.String.contains(String.java:2133)\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.lambda$getTableList2$0(DatabaseTableServiceImpl.java:68)\n at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:174)\n at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1384)\n at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:482)\n at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:472)\n at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708)\n at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)\n at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:566)\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList2(DatabaseTableServiceImpl.java:70)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getDatabaseTableList(CodegenServiceImpl.java:247)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$96a77cb5.getDatabaseTableList()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:62)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.GeneratedMethodAccessor336.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$2cf01065.getSchemaTableList()\n at sun.reflect.GeneratedMethodAccessor360.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'java.lang.String', 'String.java', 'contains', 2133, 0, NULL, 0, NULL, '2022-04-29 20:32:53', NULL, '2022-04-29 20:32:53', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (401, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\",\"name\":\"pay\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:33:55', 'java.lang.NullPointerException', 'NullPointerException: null', 'NullPointerException: null', 'java.lang.NullPointerException\n at java.lang.String.contains(String.java:2133)\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.lambda$getTableList2$0(DatabaseTableServiceImpl.java:68)\n at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:174)\n at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1384)\n at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:482)\n at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:472)\n at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708)\n at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)\n at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:566)\n at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList2(DatabaseTableServiceImpl.java:70)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getDatabaseTableList(CodegenServiceImpl.java:247)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$96a77cb5.getDatabaseTableList()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:62)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.GeneratedMethodAccessor336.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$2cf01065.getSchemaTableList()\n at sun.reflect.GeneratedMethodAccessor360.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'java.lang.String', 'String.java', 'contains', 2133, 0, NULL, 0, NULL, '2022-04-29 20:33:55', NULL, '2022-04-29 20:33:55', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (402, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{\"query\":{},\"body\":\"{\\\"dataSourceConfigId\\\":0,\\\"tableNames\\\":[\\\"bpm_form\\\"]}\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:30:44', 'org.springframework.dao.DataIntegrityViolationException', 'DataIntegrityViolationException: \n### Error updating database. Cause: java.sql.SQLException: Field \'data_source_config_id\' doesn\'t have a default value\n### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/codegen/CodegenTableMapper.java (best guess)\n### The error may involve cn.iocoder.yudao.module.infra.dal.mysql.codegen.CodegenTableMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO infra_codegen_table (import_type, table_name, table_comment, module_name, business_name, class_name, class_comment, author, template_type, create_time, update_time, creator, updater) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)\n### Cause: java.sql.SQLException: Field \'data_source_config_id\' doesn\'t have a default value\n; Field \'data_source_config_id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'data_source_config_id\' doesn\'t have a default value', 'SQLException: Field \'data_source_config_id\' doesn\'t have a default value', 'org.springframework.dao.DataIntegrityViolationException: \n### Error updating database. Cause: java.sql.SQLException: Field \'data_source_config_id\' doesn\'t have a default value\n### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/codegen/CodegenTableMapper.java (best guess)\n### The error may involve cn.iocoder.yudao.module.infra.dal.mysql.codegen.CodegenTableMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO infra_codegen_table (import_type, table_name, table_comment, module_name, business_name, class_name, class_comment, author, template_type, create_time, update_time, creator, updater) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)\n### Cause: java.sql.SQLException: Field \'data_source_config_id\' doesn\'t have a default value\n; Field \'data_source_config_id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'data_source_config_id\' doesn\'t have a default value\n at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:251)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy138.insert(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272)\n at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)\n at com.sun.proxy.$Proxy256.insert(Unknown Source)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen0(CodegenServiceImpl.java:80)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:116)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:108)\n at java.util.ArrayList.forEach(ArrayList.java:1259)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:108)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123)\n at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388)\n at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$61f89792.createCodegenListFromDB()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:86)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$9610258a.createCodegenListFromDB()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.web.core.filter.CacheRequestBodyFilter.doFilterInternal(CacheRequestBodyFilter.java:22)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: java.sql.SQLException: Field \'data_source_config_id\' doesn\'t have a default value\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:965)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461)\n at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459)\n at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167)\n at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497)\n at sun.reflect.GeneratedMethodAccessor247.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)\n at com.sun.proxy.$Proxy159.execute(Unknown Source)\n at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47)\n at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64)\n at com.sun.proxy.$Proxy157.update(Unknown Source)\n at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50)\n at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117)\n at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)\n at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62)\n at com.sun.proxy.$Proxy156.update(Unknown Source)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427)\n ... 187 more\n', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 251, 0, NULL, 0, NULL, '2022-04-29 22:30:44', NULL, '2022-04-29 22:30:44', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (403, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{\"query\":{\"dataSourceConfigId\":\"0\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:06:37', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: \n### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'import_type\' in \'field list\'\n### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/codegen/CodegenTableMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id, data_source_config_id, import_type, scene, table_name, table_comment, remark, module_name, business_name, class_name, class_comment, author, template_type, parent_menu_id, create_time, update_time, creator, updater, deleted FROM infra_codegen_table WHERE deleted = 0 AND (data_source_config_id = ?)\n### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'import_type\' in \'field list\'\n; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'import_type\' in \'field list\'', 'MySQLSyntaxErrorException: Unknown column \'import_type\' in \'field list\'', 'org.springframework.jdbc.BadSqlGrammarException: \n### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'import_type\' in \'field list\'\n### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/codegen/CodegenTableMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id, data_source_config_id, import_type, scene, table_name, table_comment, remark, module_name, business_name, class_name, class_comment, author, template_type, parent_menu_id, create_time, update_time, creator, updater, deleted FROM infra_codegen_table WHERE deleted = 0 AND (data_source_config_id = ?)\n### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'import_type\' in \'field list\'\n; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'import_type\' in \'field list\'\n at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy138.selectList(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)\n at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166)\n at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)\n at com.sun.proxy.$Proxy256.selectList(Unknown Source)\n at cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX.selectList(BaseMapperX.java:67)\n at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)\n at com.sun.proxy.$Proxy256.selectList(Unknown Source)\n at cn.iocoder.yudao.module.infra.dal.mysql.codegen.CodegenTableMapper.selectListByDataSourceConfigId(CodegenTableMapper.java:28)\n at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)\n at com.sun.proxy.$Proxy256.selectListByDataSourceConfigId(Unknown Source)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getDatabaseTableList(CodegenServiceImpl.java:258)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.getDatabaseTableList()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:60)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.GeneratedMethodAccessor326.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b21057a5.getSchemaTableList()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\nCaused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column \'import_type\' in \'field list\'\n at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n at java.lang.reflect.Constructor.newInstance(Constructor.java:423)\n at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)\n at com.mysql.jdbc.Util.getInstance(Util.java:408)\n at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976)\n at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912)\n at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)\n at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)\n at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)\n at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)\n at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461)\n at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459)\n at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167)\n at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497)\n at sun.reflect.GeneratedMethodAccessor245.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)\n at com.sun.proxy.$Proxy159.execute(Unknown Source)\n at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64)\n at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)\n at sun.reflect.GeneratedMethodAccessor250.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64)\n at com.sun.proxy.$Proxy157.query(Unknown Source)\n at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)\n at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325)\n at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)\n at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)\n at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62)\n at com.sun.proxy.$Proxy156.query(Unknown Source)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)\n at sun.reflect.GeneratedMethodAccessor259.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427)\n ... 184 more\n', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, 0, NULL, '2022-04-29 23:06:37', NULL, '2022-04-29 23:06:37', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (404, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"92\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:33:27', 'org.apache.velocity.exception.ParseErrorException', 'ParseErrorException: Encountered \"dataType\" at codegen/sql/h2.vm[line 5, column 6]\nWas expecting one of:\n ...\n ...\n ...\n ...\n \"{\" ...\n ', 'ParseErrorException: Encountered \"dataType\" at codegen/sql/h2.vm[line 5, column 6]\nWas expecting one of:\n ...\n ...\n ...\n ...\n \"{\" ...\n ', 'org.apache.velocity.exception.ParseErrorException: Encountered \"dataType\" at codegen/sql/h2.vm[line 5, column 6]\nWas expecting one of:\n ...\n ...\n ...\n ...\n \"{\" ...\n \n at org.apache.velocity.Template.process(Template.java:154)\n at org.apache.velocity.runtime.resource.ResourceManagerImpl.loadResource(ResourceManagerImpl.java:425)\n at org.apache.velocity.runtime.resource.ResourceManagerImpl.getResource(ResourceManagerImpl.java:342)\n at org.apache.velocity.runtime.RuntimeInstance.getTemplate(RuntimeInstance.java:1661)\n at org.apache.velocity.app.VelocityEngine.getTemplate(VelocityEngine.java:334)\n at cn.hutool.extra.template.engine.velocity.VelocityEngine.getTemplate(VelocityEngine.java:111)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.lambda$execute$0(CodegenEngine.java:162)\n at java.util.LinkedHashMap.forEach(LinkedHashMap.java:684)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.execute(CodegenEngine.java:160)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.generationCodes(CodegenServiceImpl.java:200)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$e175889b.generationCodes()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.previewCodegen(CodegenController.java:120)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$ef53bada.previewCodegen()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'org.apache.velocity.Template', 'Template.java', 'process', 154, 0, NULL, 0, NULL, '2022-04-29 23:33:27', NULL, '2022-04-29 23:33:27', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (405, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"92\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:35:38', 'org.apache.velocity.exception.ParseErrorException', 'ParseErrorException: Encountered \"dataType\" at codegen/sql/h2.vm[line 5, column 7]\nWas expecting one of:\n ...\n ...\n ...\n ...\n \"{\" ...\n ', 'ParseErrorException: Encountered \"dataType\" at codegen/sql/h2.vm[line 5, column 7]\nWas expecting one of:\n ...\n ...\n ...\n ...\n \"{\" ...\n ', 'org.apache.velocity.exception.ParseErrorException: Encountered \"dataType\" at codegen/sql/h2.vm[line 5, column 7]\nWas expecting one of:\n ...\n ...\n ...\n ...\n \"{\" ...\n \n at org.apache.velocity.Template.process(Template.java:154)\n at org.apache.velocity.runtime.resource.ResourceManagerImpl.loadResource(ResourceManagerImpl.java:425)\n at org.apache.velocity.runtime.resource.ResourceManagerImpl.getResource(ResourceManagerImpl.java:342)\n at org.apache.velocity.runtime.RuntimeInstance.getTemplate(RuntimeInstance.java:1661)\n at org.apache.velocity.app.VelocityEngine.getTemplate(VelocityEngine.java:334)\n at cn.hutool.extra.template.engine.velocity.VelocityEngine.getTemplate(VelocityEngine.java:111)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.lambda$execute$0(CodegenEngine.java:162)\n at java.util.LinkedHashMap.forEach(LinkedHashMap.java:684)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.execute(CodegenEngine.java:160)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.generationCodes(CodegenServiceImpl.java:200)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$53e71908.generationCodes()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.previewCodegen(CodegenController.java:120)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$d10614f6.previewCodegen()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'org.apache.velocity.Template', 'Template.java', 'process', 154, 0, NULL, 0, NULL, '2022-04-29 23:35:38', NULL, '2022-04-29 23:35:38', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (406, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"92\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:37:07', 'org.apache.velocity.exception.ParseErrorException', 'ParseErrorException: Encountered \"dataType\" at codegen/sql/h2.vm[line 7, column 6]\nWas expecting one of:\n ...\n ...\n ...\n ...\n \"{\" ...\n ', 'ParseErrorException: Encountered \"dataType\" at codegen/sql/h2.vm[line 7, column 6]\nWas expecting one of:\n ...\n ...\n ...\n ...\n \"{\" ...\n ', 'org.apache.velocity.exception.ParseErrorException: Encountered \"dataType\" at codegen/sql/h2.vm[line 7, column 6]\nWas expecting one of:\n ...\n ...\n ...\n ...\n \"{\" ...\n \n at org.apache.velocity.Template.process(Template.java:154)\n at org.apache.velocity.runtime.resource.ResourceManagerImpl.loadResource(ResourceManagerImpl.java:425)\n at org.apache.velocity.runtime.resource.ResourceManagerImpl.getResource(ResourceManagerImpl.java:342)\n at org.apache.velocity.runtime.RuntimeInstance.getTemplate(RuntimeInstance.java:1661)\n at org.apache.velocity.app.VelocityEngine.getTemplate(VelocityEngine.java:334)\n at cn.hutool.extra.template.engine.velocity.VelocityEngine.getTemplate(VelocityEngine.java:111)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.lambda$execute$0(CodegenEngine.java:162)\n at java.util.LinkedHashMap.forEach(LinkedHashMap.java:684)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.execute(CodegenEngine.java:160)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.generationCodes(CodegenServiceImpl.java:200)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$371a85ac.generationCodes()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.previewCodegen(CodegenController.java:120)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$39d4ae27.previewCodegen()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'org.apache.velocity.Template', 'Template.java', 'process', 154, 0, NULL, 0, NULL, '2022-04-29 23:37:07', NULL, '2022-04-29 23:37:07', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (407, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"92\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:42:50', 'org.apache.velocity.exception.ParseErrorException', 'ParseErrorException: Encountered \"\" at codegen/sql/h2.vm[line 36, column 1]\nWas expecting one of:\n \"\\u001c\" ...\n \"\\u001c\" ...\n \"||\" ...\n \"|\" ...\n \"(\" ...\n \")\" ...\n ...\n \"]]#\" ...\n ...\n ...\n ...\n ...\n ...\n ...\n ...\n \"{\" ...\n \"}\" ...\n \"\\\\\\\\\" ...\n \"\\\\\" ...\n ...\n ...\n ...\n \"{\" ...\n \"\\u001c\" ...\n ', 'ParseErrorException: Encountered \"\" at codegen/sql/h2.vm[line 36, column 1]\nWas expecting one of:\n \"\\u001c\" ...\n \"\\u001c\" ...\n \"||\" ...\n \"|\" ...\n \"(\" ...\n \")\" ...\n ...\n \"]]#\" ...\n ...\n ...\n ...\n ...\n ...\n ...\n ...\n \"{\" ...\n \"}\" ...\n \"\\\\\\\\\" ...\n \"\\\\\" ...\n ...\n ...\n ...\n \"{\" ...\n \"\\u001c\" ...\n ', 'org.apache.velocity.exception.ParseErrorException: Encountered \"\" at codegen/sql/h2.vm[line 36, column 1]\nWas expecting one of:\n \"\\u001c\" ...\n \"\\u001c\" ...\n \"||\" ...\n \"|\" ...\n \"(\" ...\n \")\" ...\n ...\n \"]]#\" ...\n ...\n ...\n ...\n ...\n ...\n ...\n ...\n \"{\" ...\n \"}\" ...\n \"\\\\\\\\\" ...\n \"\\\\\" ...\n ...\n ...\n ...\n \"{\" ...\n \"\\u001c\" ...\n \n at org.apache.velocity.Template.process(Template.java:154)\n at org.apache.velocity.runtime.resource.ResourceManagerImpl.loadResource(ResourceManagerImpl.java:425)\n at org.apache.velocity.runtime.resource.ResourceManagerImpl.getResource(ResourceManagerImpl.java:342)\n at org.apache.velocity.runtime.RuntimeInstance.getTemplate(RuntimeInstance.java:1661)\n at org.apache.velocity.app.VelocityEngine.getTemplate(VelocityEngine.java:334)\n at cn.hutool.extra.template.engine.velocity.VelocityEngine.getTemplate(VelocityEngine.java:111)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.lambda$execute$0(CodegenEngine.java:162)\n at java.util.LinkedHashMap.forEach(LinkedHashMap.java:684)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.execute(CodegenEngine.java:160)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.generationCodes(CodegenServiceImpl.java:200)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$e175889b.generationCodes()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.previewCodegen(CodegenController.java:120)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$33bcd1f9.previewCodegen()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'org.apache.velocity.Template', 'Template.java', 'process', 154, 0, NULL, 0, NULL, '2022-04-29 23:42:50', NULL, '2022-04-29 23:42:50', b'0', 1); -INSERT INTO `infra_api_error_log` (`id`, `trace_id`, `user_id`, `user_type`, `application_name`, `request_method`, `request_url`, `request_params`, `user_ip`, `user_agent`, `exception_time`, `exception_name`, `exception_message`, `exception_root_cause_message`, `exception_stack_trace`, `exception_class_name`, `exception_file_name`, `exception_method_name`, `exception_line_number`, `process_status`, `process_time`, `process_user_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (408, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{\"query\":{\"tableId\":\"94\"},\"body\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:44:43', 'org.apache.velocity.exception.ParseErrorException', 'ParseErrorException: Encountered \"\" at codegen/sql/h2.vm[line 36, column 1]\nWas expecting one of:\n \"\\u001c\" ...\n \"\\u001c\" ...\n \"||\" ...\n \"|\" ...\n \"(\" ...\n \")\" ...\n ...\n \"]]#\" ...\n ...\n ...\n ...\n ...\n ...\n ...\n ...\n \"{\" ...\n \"}\" ...\n \"\\\\\\\\\" ...\n \"\\\\\" ...\n ...\n ...\n ...\n \"{\" ...\n \"\\u001c\" ...\n ', 'ParseErrorException: Encountered \"\" at codegen/sql/h2.vm[line 36, column 1]\nWas expecting one of:\n \"\\u001c\" ...\n \"\\u001c\" ...\n \"||\" ...\n \"|\" ...\n \"(\" ...\n \")\" ...\n ...\n \"]]#\" ...\n ...\n ...\n ...\n ...\n ...\n ...\n ...\n \"{\" ...\n \"}\" ...\n \"\\\\\\\\\" ...\n \"\\\\\" ...\n ...\n ...\n ...\n \"{\" ...\n \"\\u001c\" ...\n ', 'org.apache.velocity.exception.ParseErrorException: Encountered \"\" at codegen/sql/h2.vm[line 36, column 1]\nWas expecting one of:\n \"\\u001c\" ...\n \"\\u001c\" ...\n \"||\" ...\n \"|\" ...\n \"(\" ...\n \")\" ...\n ...\n \"]]#\" ...\n ...\n ...\n ...\n ...\n ...\n ...\n ...\n \"{\" ...\n \"}\" ...\n \"\\\\\\\\\" ...\n \"\\\\\" ...\n ...\n ...\n ...\n \"{\" ...\n \"\\u001c\" ...\n \n at org.apache.velocity.Template.process(Template.java:154)\n at org.apache.velocity.runtime.resource.ResourceManagerImpl.loadResource(ResourceManagerImpl.java:425)\n at org.apache.velocity.runtime.resource.ResourceManagerImpl.getResource(ResourceManagerImpl.java:342)\n at org.apache.velocity.runtime.RuntimeInstance.getTemplate(RuntimeInstance.java:1661)\n at org.apache.velocity.app.VelocityEngine.getTemplate(VelocityEngine.java:334)\n at cn.hutool.extra.template.engine.velocity.VelocityEngine.getTemplate(VelocityEngine.java:111)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.lambda$execute$0(CodegenEngine.java:162)\n at java.util.LinkedHashMap.forEach(LinkedHashMap.java:684)\n at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.execute(CodegenEngine.java:160)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.generationCodes(CodegenServiceImpl.java:200)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)\n at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$bee9e593.generationCodes()\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.previewCodegen(CodegenController.java:120)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96)\n at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698)\n at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$70ec959b.previewCodegen()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)\n at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121)\n at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)\n at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)\n at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)\n at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)\n at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)\n at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)\n at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)\n at java.lang.Thread.run(Thread.java:748)\n', 'org.apache.velocity.Template', 'Template.java', 'process', 154, 0, NULL, 0, NULL, '2022-04-29 23:44:43', NULL, '2022-04-29 23:44:43', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for infra_codegen_column -- ---------------------------- DROP TABLE IF EXISTS `infra_codegen_column`; -CREATE TABLE `infra_codegen_column` ( +CREATE TABLE `infra_codegen_column` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `table_id` bigint NOT NULL COMMENT '表编号', `column_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '字段名', @@ -1727,176 +573,65 @@ CREATE TABLE `infra_codegen_column` ( `ordinal_position` int NOT NULL COMMENT '排序', `java_type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Java 属性类型', `java_field` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Java 属性名', - `dict_type` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '字典类型', - `example` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '数据示例', + `dict_type` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '字典类型', + `example` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '数据示例', `create_operation` bit(1) NOT NULL COMMENT '是否为 Create 创建操作的字段', `update_operation` bit(1) NOT NULL COMMENT '是否为 Update 更新操作的字段', `list_operation` bit(1) NOT NULL COMMENT '是否为 List 查询操作的字段', `list_operation_condition` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '=' COMMENT 'List 查询操作的条件类型', `list_operation_result` bit(1) NOT NULL COMMENT '是否为 List 查询操作的返回字段', `html_type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '显示类型', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=1094 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='代码生成表字段定义'; +) ENGINE = InnoDB AUTO_INCREMENT = 1094 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '代码生成表字段定义'; -- ---------------------------- -- Records of infra_codegen_column -- ---------------------------- BEGIN; -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (991, 89, 'id', 'bigint', '编号', b'0', b'1', '1', 1, 'Long', 'id', '', NULL, b'0', b'1', b'0', '=', b'1', 'input', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (992, 89, 'name', 'varchar(64)', '表单名', b'0', b'0', '0', 2, 'String', 'name', '', NULL, b'1', b'1', b'1', 'LIKE', b'1', 'input', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (993, 89, 'status', 'tinyint', '开启状态', b'0', b'0', '0', 3, 'Integer', 'status', '', NULL, b'1', b'1', b'1', '=', b'1', 'radio', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (994, 89, 'conf', 'varchar(1000)', '表单的配置', b'0', b'0', '0', 4, 'String', 'conf', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (995, 89, 'fields', 'varchar(5000)', '表单项的数组', b'0', b'0', '0', 5, 'String', 'fields', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (996, 89, 'remark', 'varchar(255)', '备注', b'1', b'0', '0', 6, 'String', 'remark', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (997, 89, 'creator', 'varchar(64)', '创建者', b'1', b'0', '0', 7, 'String', 'creator', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (998, 89, 'create_time', 'datetime', '创建时间', b'0', b'0', '0', 8, 'Date', 'createTime', '', NULL, b'0', b'0', b'1', 'BETWEEN', b'1', 'datetime', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (999, 89, 'updater', 'varchar(64)', '更新者', b'1', b'0', '0', 9, 'String', 'updater', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1000, 89, 'update_time', 'datetime', '更新时间', b'0', b'0', '0', 10, 'Date', 'updateTime', '', NULL, b'0', b'0', b'0', 'BETWEEN', b'0', 'datetime', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1001, 89, 'deleted', 'bit(1)', '是否删除', b'0', b'0', '0', 11, 'Boolean', 'deleted', '', NULL, b'0', b'0', b'0', '=', b'0', 'radio', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1002, 89, 'tenant_id', 'bigint', '租户编号', b'0', b'0', '0', 12, 'Long', 'tenantId', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1003, 90, 'id', 'NUMBER(20)', '请假表单主键', b'0', b'1', '0', 1, 'BigDecimal', 'id', '', NULL, b'0', b'1', b'0', '=', b'1', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1004, 90, 'user_id', 'NUMBER(20)', '申请人的用户编号', b'0', b'0', '0', 2, 'BigDecimal', 'userId', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1005, 90, 'type', 'NUMBER(4)', '请假类型', b'0', b'0', '0', 3, 'Integer', 'type', '', NULL, b'1', b'1', b'1', '=', b'1', 'select', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1006, 90, 'reason', 'NVARCHAR2', '请假原因', b'0', b'0', '0', 4, 'String', 'reason', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1007, 90, 'start_time', 'DATE', '开始时间', b'0', b'0', '0', 5, 'Date', 'startTime', '', NULL, b'1', b'1', b'1', 'BETWEEN', b'1', 'datetime', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1008, 90, 'end_time', 'DATE', '结束时间', b'0', b'0', '0', 6, 'Date', 'endTime', '', NULL, b'1', b'1', b'1', 'BETWEEN', b'1', 'datetime', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1009, 90, 'day', 'NUMBER(4)', '请假天数', b'0', b'0', '0', 7, 'Integer', 'day', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1010, 90, 'result', 'NUMBER(4)', '请假结果', b'0', b'0', '0', 8, 'Integer', 'result', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1011, 90, 'process_instance_id', 'NVARCHAR2', '流程实例的编号', b'1', b'0', '0', 9, 'String', 'processInstanceId', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1012, 90, 'creator', 'NVARCHAR2', '创建者', b'1', b'0', '0', 10, 'String', 'creator', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1013, 90, 'create_time', 'DATE', '创建时间', b'0', b'0', '0', 11, 'Date', 'createTime', '', NULL, b'0', b'0', b'1', 'BETWEEN', b'1', 'datetime', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1014, 90, 'updater', 'NVARCHAR2', '更新者', b'1', b'0', '0', 12, 'String', 'updater', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1015, 90, 'update_time', 'DATE', '更新时间', b'0', b'0', '0', 13, 'Date', 'updateTime', '', NULL, b'0', b'0', b'0', 'BETWEEN', b'0', 'datetime', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1016, 90, 'deleted', 'VARCHAR2', '是否删除', b'0', b'0', '0', 14, 'String', 'deleted', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1017, 90, 'tenant_id', 'NUMBER(20)', '租户编号', b'0', b'0', '0', 15, 'BigDecimal', 'tenantId', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1018, 91, 'id', 'NUMBER(20)', '编号', b'0', b'1', '0', 1, 'BigDecimal', 'id', '', NULL, b'0', b'1', b'0', '=', b'1', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1019, 91, 'name', 'NVARCHAR2', '表单名', b'0', b'0', '0', 2, 'String', 'name', '', NULL, b'1', b'1', b'1', 'LIKE', b'1', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1020, 91, 'status', 'NUMBER(4)', '开启状态', b'0', b'0', '0', 3, 'Integer', 'status', '', NULL, b'1', b'1', b'1', '=', b'1', 'radio', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1021, 91, 'conf', 'NVARCHAR2', '表单的配置', b'0', b'0', '0', 4, 'String', 'conf', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1022, 91, 'fields', 'NCLOB', '表单项的数组', b'0', b'0', '0', 5, 'String', 'fields', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1023, 91, 'remark', 'NVARCHAR2', '备注', b'1', b'0', '0', 6, 'String', 'remark', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1024, 91, 'creator', 'NVARCHAR2', '创建者', b'1', b'0', '0', 7, 'String', 'creator', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1025, 91, 'create_time', 'DATE', '创建时间', b'0', b'0', '0', 8, 'Date', 'createTime', '', NULL, b'0', b'0', b'1', 'BETWEEN', b'1', 'datetime', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1026, 91, 'updater', 'NVARCHAR2', '更新者', b'1', b'0', '0', 9, 'String', 'updater', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1027, 91, 'update_time', 'DATE', '更新时间', b'0', b'0', '0', 10, 'Date', 'updateTime', '', NULL, b'0', b'0', b'0', 'BETWEEN', b'0', 'datetime', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1028, 91, 'deleted', 'VARCHAR2', '是否删除', b'0', b'0', '0', 11, 'String', 'deleted', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1029, 91, 'tenant_id', 'NUMBER(20)', '租户编号', b'0', b'0', '0', 12, 'BigDecimal', 'tenantId', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1030, 92, 'id', 'bigint', '编号', b'0', b'1', '1', 1, 'Long', 'id', '', NULL, b'0', b'1', b'0', '=', b'1', 'input', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1031, 92, 'name', 'varchar(64)', '表单名', b'0', b'0', '0', 2, 'String', 'name', '', NULL, b'1', b'1', b'1', 'LIKE', b'1', 'input', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1032, 92, 'status', 'tinyint', '开启状态', b'0', b'0', '0', 3, 'Integer', 'status', '', NULL, b'1', b'1', b'1', '=', b'1', 'radio', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1033, 92, 'conf', 'varchar(1000)', '表单的配置', b'0', b'0', '0', 4, 'String', 'conf', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1034, 92, 'fields', 'varchar(5000)', '表单项的数组', b'0', b'0', '0', 5, 'String', 'fields', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1035, 92, 'remark', 'varchar(255)', '备注', b'1', b'0', '0', 6, 'String', 'remark', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1036, 92, 'creator', 'varchar(64)', '创建者', b'1', b'0', '0', 7, 'String', 'creator', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1037, 92, 'create_time', 'datetime', '创建时间', b'0', b'0', '0', 8, 'Date', 'createTime', '', NULL, b'0', b'0', b'1', 'BETWEEN', b'1', 'datetime', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1038, 92, 'updater', 'varchar(64)', '更新者', b'1', b'0', '0', 9, 'String', 'updater', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1039, 92, 'update_time', 'datetime', '更新时间', b'0', b'0', '0', 10, 'Date', 'updateTime', '', NULL, b'0', b'0', b'0', 'BETWEEN', b'0', 'datetime', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1040, 92, 'deleted', 'bit(1)', '是否删除', b'0', b'0', '0', 11, 'Boolean', 'deleted', '', NULL, b'0', b'0', b'0', '=', b'0', 'radio', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1041, 92, 'tenant_id', 'bigint', '租户编号', b'0', b'0', '0', 12, 'Long', 'tenantId', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1042, 93, 'id', 'bigint', '编号', b'0', b'1', '1', 1, 'Long', 'id', '', NULL, b'0', b'1', b'0', '=', b'1', 'input', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1043, 93, 'model_id', 'varchar(64)', '流程模型的编号', b'0', b'0', '0', 2, 'String', 'modelId', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1044, 93, 'process_definition_id', 'varchar(64)', '流程定义的编号', b'0', b'0', '0', 3, 'String', 'processDefinitionId', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1045, 93, 'task_definition_key', 'varchar(64)', '流程任务定义的 key', b'0', b'0', '0', 4, 'String', 'taskDefinitionKey', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1046, 93, 'type', 'tinyint', '规则类型', b'0', b'0', '0', 5, 'Integer', 'type', '', NULL, b'1', b'1', b'1', '=', b'1', 'select', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1047, 93, 'options', 'varchar(1024)', '规则值,JSON 数组', b'0', b'0', '0', 6, 'String', 'options', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1048, 93, 'creator', 'varchar(64)', '创建者', b'1', b'0', '0', 7, 'String', 'creator', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1049, 93, 'create_time', 'datetime', '创建时间', b'0', b'0', '0', 8, 'Date', 'createTime', '', NULL, b'0', b'0', b'1', 'BETWEEN', b'1', 'datetime', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1050, 93, 'updater', 'varchar(64)', '更新者', b'1', b'0', '0', 9, 'String', 'updater', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1051, 93, 'update_time', 'datetime', '更新时间', b'0', b'0', '0', 10, 'Date', 'updateTime', '', NULL, b'0', b'0', b'0', 'BETWEEN', b'0', 'datetime', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1052, 93, 'deleted', 'bit(1)', '是否删除', b'0', b'0', '0', 11, 'Boolean', 'deleted', '', NULL, b'0', b'0', b'0', '=', b'0', 'radio', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1053, 93, 'tenant_id', 'bigint', '租户编号', b'0', b'0', '0', 12, 'Long', 'tenantId', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', b'1'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1054, 94, 'id', 'NUMBER(20)', '编号', b'0', b'1', '0', 1, 'BigDecimal', 'id', '', NULL, b'0', b'1', b'0', '=', b'1', 'input', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1055, 94, 'name', 'NVARCHAR2', '表单名', b'0', b'0', '0', 2, 'String', 'name', '', NULL, b'1', b'1', b'1', 'LIKE', b'1', 'input', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1056, 94, 'status', 'NUMBER(4)', '开启状态', b'0', b'0', '0', 3, 'Integer', 'status', '', NULL, b'1', b'1', b'1', '=', b'1', 'radio', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1057, 94, 'conf', 'NVARCHAR2', '表单的配置', b'0', b'0', '0', 4, 'String', 'conf', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1058, 94, 'fields', 'NCLOB', '表单项的数组', b'0', b'0', '0', 5, 'String', 'fields', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1059, 94, 'remark', 'NVARCHAR2', '备注', b'1', b'0', '0', 6, 'String', 'remark', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1060, 94, 'creator', 'NVARCHAR2', '创建者', b'1', b'0', '0', 7, 'String', 'creator', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1061, 94, 'create_time', 'DATE', '创建时间', b'0', b'0', '0', 8, 'Date', 'createTime', '', NULL, b'0', b'0', b'1', 'BETWEEN', b'1', 'datetime', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1062, 94, 'updater', 'NVARCHAR2', '更新者', b'1', b'0', '0', 9, 'String', 'updater', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1063, 94, 'update_time', 'DATE', '更新时间', b'0', b'0', '0', 10, 'Date', 'updateTime', '', NULL, b'0', b'0', b'0', 'BETWEEN', b'0', 'datetime', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1064, 94, 'deleted', 'VARCHAR2', '是否删除', b'0', b'0', '0', 11, 'String', 'deleted', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1065, 94, 'tenant_id', 'NUMBER(20)', '租户编号', b'0', b'0', '0', 12, 'BigDecimal', 'tenantId', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 23:14:47', '1', '2022-04-29 23:14:47', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1066, 95, 'id', 'bigint', '请假表单主键', b'0', b'1', '1', 1, 'Long', 'id', '', NULL, b'0', b'1', b'0', '=', b'1', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1067, 95, 'user_id', 'bigint', '申请人的用户编号', b'0', b'0', '0', 2, 'Long', 'userId', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1068, 95, 'type', 'tinyint', '请假类型', b'0', b'0', '0', 3, 'Integer', 'type', '', NULL, b'1', b'1', b'1', '=', b'1', 'select', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1069, 95, 'reason', 'varchar(200)', '请假原因', b'0', b'0', '0', 4, 'String', 'reason', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1070, 95, 'start_time', 'datetime', '开始时间', b'0', b'0', '0', 5, 'Date', 'startTime', '', NULL, b'1', b'1', b'1', 'BETWEEN', b'1', 'datetime', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1071, 95, 'end_time', 'datetime', '结束时间', b'0', b'0', '0', 6, 'Date', 'endTime', '', NULL, b'1', b'1', b'1', 'BETWEEN', b'1', 'datetime', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1072, 95, 'day', 'tinyint', '请假天数', b'0', b'0', '0', 7, 'Integer', 'day', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1073, 95, 'result', 'tinyint', '请假结果', b'0', b'0', '0', 8, 'Integer', 'result', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1074, 95, 'process_instance_id', 'varchar(64)', '流程实例的编号', b'1', b'0', '0', 9, 'String', 'processInstanceId', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1075, 95, 'creator', 'varchar(64)', '创建者', b'1', b'0', '0', 10, 'String', 'creator', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1076, 95, 'create_time', 'datetime', '创建时间', b'0', b'0', '0', 11, 'Date', 'createTime', '', NULL, b'0', b'0', b'1', 'BETWEEN', b'1', 'datetime', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1077, 95, 'updater', 'varchar(64)', '更新者', b'1', b'0', '0', 12, 'String', 'updater', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1078, 95, 'update_time', 'datetime', '更新时间', b'0', b'0', '0', 13, 'Date', 'updateTime', '', NULL, b'0', b'0', b'0', 'BETWEEN', b'0', 'datetime', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1079, 95, 'deleted', 'bit(1)', '是否删除', b'0', b'0', '0', 14, 'Boolean', 'deleted', '', NULL, b'0', b'0', b'0', '=', b'0', 'radio', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1080, 95, 'tenant_id', 'bigint', '租户编号', b'0', b'0', '0', 15, 'Long', 'tenantId', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1081, 96, 'id', 'varchar(32)', '会话编号', b'0', b'1', '0', 1, 'String', 'id', '', NULL, b'0', b'1', b'0', '=', b'1', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1082, 96, 'user_id', 'bigint', '用户编号', b'0', b'0', '0', 2, 'Long', 'userId', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1083, 96, 'user_type', 'tinyint', '用户类型', b'0', b'0', '0', 3, 'Integer', 'userType', '', NULL, b'1', b'1', b'1', '=', b'1', 'select', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1084, 96, 'session_timeout', 'datetime', '会话超时时间', b'0', b'0', '0', 4, 'Date', 'sessionTimeout', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1085, 96, 'username', 'varchar(30)', '用户账号', b'0', b'0', '0', 5, 'String', 'username', '', NULL, b'1', b'1', b'1', 'LIKE', b'1', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1086, 96, 'user_ip', 'varchar(50)', '用户 IP', b'0', b'0', '0', 6, 'String', 'userIp', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1087, 96, 'user_agent', 'varchar(512)', '浏览器 UA', b'0', b'0', '0', 7, 'String', 'userAgent', '', NULL, b'1', b'1', b'1', '=', b'1', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1088, 96, 'creator', 'varchar(64)', '创建者', b'1', b'0', '0', 8, 'String', 'creator', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1089, 96, 'create_time', 'datetime', '创建时间', b'0', b'0', '0', 9, 'Date', 'createTime', '', NULL, b'0', b'0', b'1', 'BETWEEN', b'1', 'datetime', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1090, 96, 'updater', 'varchar(64)', '更新者', b'1', b'0', '0', 10, 'String', 'updater', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1091, 96, 'update_time', 'datetime', '更新时间', b'0', b'0', '0', 11, 'Date', 'updateTime', '', NULL, b'0', b'0', b'0', 'BETWEEN', b'0', 'datetime', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1092, 96, 'deleted', 'bit(1)', '是否删除', b'0', b'0', '0', 12, 'Boolean', 'deleted', '', NULL, b'0', b'0', b'0', '=', b'0', 'radio', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', b'0'); -INSERT INTO `infra_codegen_column` (`id`, `table_id`, `column_name`, `data_type`, `column_comment`, `nullable`, `primary_key`, `auto_increment`, `ordinal_position`, `java_type`, `java_field`, `dict_type`, `example`, `create_operation`, `update_operation`, `list_operation`, `list_operation_condition`, `list_operation_result`, `html_type`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1093, 96, 'tenant_id', 'bigint', '租户编号', b'0', b'0', '0', 13, 'Long', 'tenantId', '', NULL, b'0', b'0', b'0', '=', b'0', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', b'0'); COMMIT; -- ---------------------------- -- Table structure for infra_codegen_table -- ---------------------------- DROP TABLE IF EXISTS `infra_codegen_table`; -CREATE TABLE `infra_codegen_table` ( +CREATE TABLE `infra_codegen_table` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `data_source_config_id` bigint NOT NULL COMMENT '数据源配置的编号', - `scene` tinyint NOT NULL DEFAULT '1' COMMENT '生成场景', + `scene` tinyint NOT NULL DEFAULT 1 COMMENT '生成场景', `table_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '表名称', `table_comment` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '表描述', - `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注', + `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', `module_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '模块名', `business_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '业务名', `class_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '类名称', `class_comment` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '类描述', `author` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '作者', - `template_type` tinyint NOT NULL DEFAULT '1' COMMENT '模板类型', - `parent_menu_id` bigint DEFAULT NULL COMMENT '父菜单编号', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `template_type` tinyint NOT NULL DEFAULT 1 COMMENT '模板类型', + `parent_menu_id` bigint NULL DEFAULT NULL COMMENT '父菜单编号', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=97 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='代码生成表定义'; +) ENGINE = InnoDB AUTO_INCREMENT = 97 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '代码生成表定义'; -- ---------------------------- -- Records of infra_codegen_table -- ---------------------------- BEGIN; -INSERT INTO `infra_codegen_table` (`id`, `data_source_config_id`, `scene`, `table_name`, `table_comment`, `remark`, `module_name`, `business_name`, `class_name`, `class_comment`, `author`, `template_type`, `parent_menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (89, 0, 1, 'bpm_form', '工作流的表单定义', NULL, 'bpm', 'form', 'Form', '工作流的', '芋道源码', 1, NULL, '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', b'1'); -INSERT INTO `infra_codegen_table` (`id`, `data_source_config_id`, `scene`, `table_name`, `table_comment`, `remark`, `module_name`, `business_name`, `class_name`, `class_comment`, `author`, `template_type`, `parent_menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (90, 9, 1, 'bpm_oa_leave', 'OA 请假申请表', NULL, 'bpm', 'oaLeave', 'OaLeave', 'OA 请假申请', '芋道源码', 1, NULL, '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', b'1'); -INSERT INTO `infra_codegen_table` (`id`, `data_source_config_id`, `scene`, `table_name`, `table_comment`, `remark`, `module_name`, `business_name`, `class_name`, `class_comment`, `author`, `template_type`, `parent_menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (91, 9, 1, 'bpm_form', '工作流的表单定义', NULL, 'bpm', 'form', 'Form', '工作流的', '芋道源码', 1, NULL, '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', b'1'); -INSERT INTO `infra_codegen_table` (`id`, `data_source_config_id`, `scene`, `table_name`, `table_comment`, `remark`, `module_name`, `business_name`, `class_name`, `class_comment`, `author`, `template_type`, `parent_menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (92, 0, 1, 'bpm_form', '工作流的表单定义', NULL, 'bpm', 'form', 'Form', '工作流的', '芋道源码', 1, NULL, '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', b'0'); -INSERT INTO `infra_codegen_table` (`id`, `data_source_config_id`, `scene`, `table_name`, `table_comment`, `remark`, `module_name`, `business_name`, `class_name`, `class_comment`, `author`, `template_type`, `parent_menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (93, 0, 1, 'bpm_task_assign_rule', 'Bpm 任务规则表', NULL, 'bpm', 'taskAssignRule', 'TaskAssignRule', 'Bpm 任务规则', '芋道源码', 1, NULL, '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', b'1'); -INSERT INTO `infra_codegen_table` (`id`, `data_source_config_id`, `scene`, `table_name`, `table_comment`, `remark`, `module_name`, `business_name`, `class_name`, `class_comment`, `author`, `template_type`, `parent_menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (94, 9, 1, 'bpm_form', '工作流的表单定义', NULL, 'bpm', 'form', 'Form', '工作流的', '芋道源码', 1, NULL, '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', b'0'); -INSERT INTO `infra_codegen_table` (`id`, `data_source_config_id`, `scene`, `table_name`, `table_comment`, `remark`, `module_name`, `business_name`, `class_name`, `class_comment`, `author`, `template_type`, `parent_menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (95, 0, 1, 'bpm_oa_leave', 'OA 请假申请表', NULL, 'bpm', 'oaLeave', 'OaLeave', 'OA 请假申请', '芋道源码', 1, NULL, '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', b'0'); -INSERT INTO `infra_codegen_table` (`id`, `data_source_config_id`, `scene`, `table_name`, `table_comment`, `remark`, `module_name`, `business_name`, `class_name`, `class_comment`, `author`, `template_type`, `parent_menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (96, 0, 1, 'system_user_session', '用户在线 Session', NULL, 'system', 'userSession', 'UserSession', '用户在线 Session', '芋道源码', 1, NULL, '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', b'0'); COMMIT; -- ---------------------------- -- Table structure for infra_config -- ---------------------------- DROP TABLE IF EXISTS `infra_config`; -CREATE TABLE `infra_config` ( +CREATE TABLE `infra_config` ( `id` int NOT NULL AUTO_INCREMENT COMMENT '参数主键', `category` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '参数分组', `type` tinyint NOT NULL COMMENT '参数类型', @@ -1904,14 +639,14 @@ CREATE TABLE `infra_config` ( `config_key` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '参数键名', `value` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '参数键值', `visible` bit(1) NOT NULL COMMENT '是否可见', - `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='参数配置表'; +) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '参数配置表'; -- ---------------------------- -- Records of infra_config @@ -1923,172 +658,135 @@ INSERT INTO `infra_config` (`id`, `category`, `type`, `name`, `config_key`, `val INSERT INTO `infra_config` (`id`, `category`, `type`, `name`, `config_key`, `value`, `visible`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (4, '1', 2, 'xxx', 'demo.test', '10', b'0', '5', '', '2021-01-19 03:10:26', '', '2021-01-20 09:25:55', b'0'); INSERT INTO `infra_config` (`id`, `category`, `type`, `name`, `config_key`, `value`, `visible`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5, 'xxx', 2, 'xxx', 'xxx', 'xxx', b'1', 'xxx', '', '2021-02-09 20:06:47', '', '2021-02-09 20:06:47', b'0'); INSERT INTO `infra_config` (`id`, `category`, `type`, `name`, `config_key`, `value`, `visible`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (6, 'biz', 2, '登陆验证码的开关', 'yudao.captcha.enable', 'true', b'1', NULL, '1', '2022-02-17 00:03:11', '1', '2022-04-04 12:51:40', b'0'); -INSERT INTO `infra_config` (`id`, `category`, `type`, `name`, `config_key`, `value`, `visible`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (7, '1', 2, '2', '3', '4', b'1', '1', '1', '2022-03-26 23:09:36', '1', '2022-03-26 15:09:41', b'1'); COMMIT; -- ---------------------------- -- Table structure for infra_data_source_config -- ---------------------------- DROP TABLE IF EXISTS `infra_data_source_config`; -CREATE TABLE `infra_data_source_config` ( +CREATE TABLE `infra_data_source_config` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键编号', `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '参数名称', `url` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '数据源连接', - `username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '用户名', + `username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '用户名', `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '密码', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='数据源配置表'; +) ENGINE = InnoDB AUTO_INCREMENT = 10 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '数据源配置表'; -- ---------------------------- -- Records of infra_data_source_config -- ---------------------------- BEGIN; -INSERT INTO `infra_data_source_config` (`id`, `name`, `url`, `username`, `password`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (8, 'test', 'jdbc:mysql://127.0.0.1:3306/testb5f4', 'root', '3xgHTSHmF3mlgL3Ybw45ztewGDxGgEkWF3wTSYey7k+uXI/wdz45TrvYvYssQtmA', '1', '2022-04-27 22:48:20', '1', '2022-04-28 20:04:06', b'0'); -INSERT INTO `infra_data_source_config` (`id`, `name`, `url`, `username`, `password`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (9, 'oracle_test', 'jdbc:oracle:thin:@127.0.0.1:1521:xe', 'root', 'vwmNAPLiEi+NX4AVdC+zNvpejPLwcFXp6dlhgNxCfDTi4vKRy76iIeFqyvpRerNC', '1', '2022-04-28 20:41:26', '1', '2022-04-28 20:41:26', b'0'); COMMIT; -- ---------------------------- -- Table structure for infra_file -- ---------------------------- DROP TABLE IF EXISTS `infra_file`; -CREATE TABLE `infra_file` ( +CREATE TABLE `infra_file` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '文件编号', - `config_id` bigint DEFAULT NULL COMMENT '配置编号', + `config_id` bigint NULL DEFAULT NULL COMMENT '配置编号', `path` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '文件路径', - `url` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '文件 URL', - `type` varchar(63) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '文件类型', + `url` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '文件 URL', + `type` varchar(63) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '文件类型', `size` int NOT NULL COMMENT '文件大小', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='文件表'; +) ENGINE = InnoDB AUTO_INCREMENT = 12 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '文件表'; -- ---------------------------- -- Records of infra_file -- ---------------------------- BEGIN; -INSERT INTO `infra_file` (`id`, `config_id`, `path`, `url`, `type`, `size`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1, 2, 'v2-e68697db7bc2aba0924c5b5e7e377dff_r.jpeg', 'http://test.yudao.iocoder.cn/v2-e68697db7bc2aba0924c5b5e7e377dff_r.jpeg', 'jpg', 31809, '1', '2022-03-16 22:50:11', '1', '2022-03-16 15:08:33', b'1'); -INSERT INTO `infra_file` (`id`, `config_id`, `path`, `url`, `type`, `size`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (2, 2, '1000.jpeg', 'http://test.yudao.iocoder.cn/1000.jpeg', 'jpg', 34126, '1', '2022-03-16 23:07:27', '1', '2022-03-17 11:49:48', b'1'); -INSERT INTO `infra_file` (`id`, `config_id`, `path`, `url`, `type`, `size`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (3, 2, 'a294ecb2-73dd-4353-bf40-296b8931d0bf', 'http://test.yudao.iocoder.cn/a294ecb2-73dd-4353-bf40-296b8931d0bf', 'jpg', 83115, '1', '2022-03-16 23:51:41', '1', '2022-03-17 11:49:50', b'1'); -INSERT INTO `infra_file` (`id`, `config_id`, `path`, `url`, `type`, `size`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (4, 2, '43301647479822_.pic.jpg', 'http://test.yudao.iocoder.cn/43301647479822_.pic.jpg', 'png', 423337, '1', '2022-03-17 09:19:11', '1', '2022-03-17 09:19:11', b'0'); -INSERT INTO `infra_file` (`id`, `config_id`, `path`, `url`, `type`, `size`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5, 2, '43891647495423_.pic.jpg', 'http://test.yudao.iocoder.cn/43891647495423_.pic.jpg', 'png', 17424, '1', '2022-03-17 19:51:31', '1', '2022-03-17 19:51:31', b'0'); -INSERT INTO `infra_file` (`id`, `config_id`, `path`, `url`, `type`, `size`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (6, 2, '822aebded6e6414e912534c6091771a4.jpg', 'http://test.yudao.iocoder.cn/822aebded6e6414e912534c6091771a4.jpg', 'jpg', 18385, '1', '2022-03-17 20:48:00', '1', '2022-03-17 20:48:00', b'0'); -INSERT INTO `infra_file` (`id`, `config_id`, `path`, `url`, `type`, `size`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (7, 11, 'c6b0326f-1861-4c21-bf56-c2780481bfb9', 'http://test.yudao.iocoder.cn/c6b0326f-1861-4c21-bf56-c2780481bfb9', 'jpg', 73430, '1', '2022-03-20 22:04:20', '1', '2022-03-20 22:04:20', b'0'); -INSERT INTO `infra_file` (`id`, `config_id`, `path`, `url`, `type`, `size`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (8, 11, '48934f2f-92d4-4250-b917-d10d2b262c6a', 'http://test.yudao.iocoder.cn/48934f2f-92d4-4250-b917-d10d2b262c6a', 'jpg', 73430, '1', '2022-03-20 22:04:20', '1', '2022-03-20 22:04:20', b'0'); -INSERT INTO `infra_file` (`id`, `config_id`, `path`, `url`, `type`, `size`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (9, 11, 'cbd9cf5206a94acba7065342f65a3da0.jpg', 'http://test.yudao.iocoder.cn/cbd9cf5206a94acba7065342f65a3da0.jpg', 'jpg', 18385, '1', '2022-03-20 22:07:42', '1', '2022-03-20 22:07:42', b'0'); -INSERT INTO `infra_file` (`id`, `config_id`, `path`, `url`, `type`, `size`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (10, 11, '02.png', 'http://test.yudao.iocoder.cn/02.png', 'png', 208673, '1', '2022-03-26 21:48:05', '1', '2022-03-26 21:48:05', b'0'); -INSERT INTO `infra_file` (`id`, `config_id`, `path`, `url`, `type`, `size`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (11, 11, '02.png', 'http://test.yudao.iocoder.cn/02.png', 'png', 208673, '1', '2022-03-26 21:53:20', '1', '2022-03-26 13:53:23', b'1'); COMMIT; -- ---------------------------- -- Table structure for infra_file_config -- ---------------------------- DROP TABLE IF EXISTS `infra_file_config`; -CREATE TABLE `infra_file_config` ( +CREATE TABLE `infra_file_config` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `name` varchar(63) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '配置名', `storage` tinyint NOT NULL COMMENT '存储器', - `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注', + `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', `master` bit(1) NOT NULL COMMENT '是否为主配置', `config` varchar(4096) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '存储配置', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='文件配置表'; +) ENGINE = InnoDB AUTO_INCREMENT = 15 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '文件配置表'; -- ---------------------------- -- Records of infra_file_config -- ---------------------------- BEGIN; -INSERT INTO `infra_file_config` (`id`, `name`, `storage`, `remark`, `master`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (2, 'S3 - 七牛云', 20, '戴佩妮真可爱', b'1', '{\"@class\":\"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig\",\"endpoint\":\"s3-cn-south-1.qiniucs.com\",\"domain\":\"http://test.yudao.iocoder.cn\",\"region\":\"oss-cn-beijing\",\"bucket\":\"ruoyi-vue-pro\",\"accessKey\":\"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8\",\"accessSecret\":\"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP\"}', '1', '2022-03-15 20:43:34', '1', '2022-03-19 09:55:12', b'1'); -INSERT INTO `infra_file_config` (`id`, `name`, `storage`, `remark`, `master`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (3, '测试', 20, NULL, b'0', '{\"@class\":\"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig\",\"endpoint\":\"1\",\"domain\":\"\",\"region\":\"2\",\"bucket\":\"3\",\"accessKey\":\"4\",\"accessSecret\":\"5\"}', '1', '2022-03-15 23:30:58', '1', '2022-03-15 15:40:27', b'1'); INSERT INTO `infra_file_config` (`id`, `name`, `storage`, `remark`, `master`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (4, '数据库', 1, '我是数据库', b'0', '{\"@class\":\"cn.iocoder.yudao.framework.file.core.client.db.DBFileClientConfig\",\"domain\":\"http://127.0.0.1:48080\"}', '1', '2022-03-15 23:56:24', '1', '2022-03-26 21:39:26', b'0'); INSERT INTO `infra_file_config` (`id`, `name`, `storage`, `remark`, `master`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5, '本地磁盘', 10, '测试下本地存储', b'0', '{\"@class\":\"cn.iocoder.yudao.framework.file.core.client.local.LocalFileClientConfig\",\"basePath\":\"/Users/yunai/file_test\",\"domain\":\"http://127.0.0.1:48080\"}', '1', '2022-03-15 23:57:00', '1', '2022-03-26 21:39:26', b'0'); -INSERT INTO `infra_file_config` (`id`, `name`, `storage`, `remark`, `master`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (6, 'FTP 服务器', 11, '测试下 FTP', b'0', '{\"@class\":\"cn.iocoder.yudao.framework.file.core.client.ftp.FtpFileClientConfig\",\"basePath\":\"/Users/yunai/file_test\",\"domain\":\"http://127.0.0.1:48080\",\"host\":\"127.0.0.1\",\"port\":22,\"username\":\"root\",\"password\":\"password\",\"mode\":\"Active\"}', '1', '2022-03-16 00:00:43', '1', '2022-03-16 13:23:32', b'1'); -INSERT INTO `infra_file_config` (`id`, `name`, `storage`, `remark`, `master`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (7, 'SFTP 服务器', 12, NULL, b'0', '{\"@class\":\"cn.iocoder.yudao.framework.file.core.client.sftp.SftpFileClientConfig\",\"basePath\":\"/Users/yunai/file_test\",\"domain\":\"http://127.0.0.1:48080\",\"host\":\"127.0.0.1\",\"port\":23,\"username\":\"root\",\"password\":\"password\"}', '1', '2022-03-16 00:02:02', '1', '2022-03-16 13:23:31', b'1'); -INSERT INTO `infra_file_config` (`id`, `name`, `storage`, `remark`, `master`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (8, 'S3 - 测试', 20, NULL, b'0', '{\"@class\":\"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig\",\"endpoint\":\"s3-cn-south-1.qiniucs.com\",\"domain\":\"http://test.yudao.iocoder.cn\",\"region\":\"oss-cn-beijing\",\"bucket\":\"ruoyi-vue-pro\",\"accessKey\":\"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8\",\"accessSecret\":\"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP\"}', '1', '2022-03-17 18:46:19', '1', '2022-03-17 10:46:28', b'1'); -INSERT INTO `infra_file_config` (`id`, `name`, `storage`, `remark`, `master`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (9, 'S3 - 测试', 20, NULL, b'0', '{\"@class\":\"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig\",\"endpoint\":\"s3-cn-south-1.qiniucs.com\",\"domain\":\"http://test.yudao.iocoder.cn\",\"region\":\"oss-cn-beijing\",\"bucket\":\"ruoyi-vue-pro\",\"accessKey\":\"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8\",\"accessSecret\":\"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP\"}', '1', '2022-03-17 19:40:13', '1', '2022-03-17 11:40:16', b'1'); -INSERT INTO `infra_file_config` (`id`, `name`, `storage`, `remark`, `master`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (10, 'S3 - 测试七牛', 20, NULL, b'0', '{\"@class\":\"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig\",\"endpoint\":\"s3-cn-south-1.qiniucs.com\",\"domain\":\"http://test.yudao.iocoder.cn\",\"region\":\"oss-cn-beijing\",\"bucket\":\"ruoyi-vue-pro\",\"accessKey\":\"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8\",\"accessSecret\":\"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP\"}', '1', '2022-03-17 19:54:19', '1', '2022-03-17 11:57:19', b'1'); INSERT INTO `infra_file_config` (`id`, `name`, `storage`, `remark`, `master`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (11, 'S3 - 七牛云', 20, NULL, b'1', '{\"@class\":\"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig\",\"endpoint\":\"s3-cn-south-1.qiniucs.com\",\"domain\":\"http://test.yudao.iocoder.cn\",\"bucket\":\"ruoyi-vue-pro\",\"accessKey\":\"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8\",\"accessSecret\":\"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP\"}', '1', '2022-03-19 18:00:03', '1', '2022-03-26 21:39:26', b'0'); -INSERT INTO `infra_file_config` (`id`, `name`, `storage`, `remark`, `master`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (12, 'S3 - 七牛云', 20, NULL, b'0', '{\"@class\":\"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig\",\"endpoint\":\"s3-cn-south-1.qiniucs.com\",\"domain\":\"http://test.yudao.iocoder.cn\",\"bucket\":\"ruoyi-vue-pro\",\"accessKey\":\"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8\",\"accessSecret\":\"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP\"}', '1', '2022-03-26 23:07:01', '1', '2022-03-26 15:10:43', b'1'); -INSERT INTO `infra_file_config` (`id`, `name`, `storage`, `remark`, `master`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (13, '1', 1, '2', b'0', '{\"@class\":\"cn.iocoder.yudao.framework.file.core.client.db.DBFileClientConfig\",\"domain\":\"http://127.0.0.1\"}', '1', '2022-03-26 23:07:39', '1', '2022-03-26 15:07:42', b'1'); -INSERT INTO `infra_file_config` (`id`, `name`, `storage`, `remark`, `master`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (14, 'S3 - 七牛云', 20, NULL, b'0', '{\"@class\":\"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig\",\"endpoint\":\"s3-cn-south-1.qiniucs.com\",\"domain\":\"http://test.yudao.iocoder.cn\",\"bucket\":\"ruoyi-vue-pro\",\"accessKey\":\"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8\",\"accessSecret\":\"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP\"}', '1', '2022-03-26 23:10:41', '1', '2022-03-26 15:10:46', b'1'); COMMIT; -- ---------------------------- -- Table structure for infra_file_content -- ---------------------------- DROP TABLE IF EXISTS `infra_file_content`; -CREATE TABLE `infra_file_content` ( +CREATE TABLE `infra_file_content` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `config_id` bigint NOT NULL COMMENT '配置编号', - `path` varchar(512) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '文件路径', + `path` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '文件路径', `content` mediumblob NOT NULL COMMENT '文件内容', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='文件表'; +) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '文件表'; -- ---------------------------- -- Records of infra_file_content -- ---------------------------- BEGIN; -INSERT INTO `infra_file_content` (`id`, `config_id`, `path`, `content`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1, 4, '143fb0617e11454a8b73dfaaaf429c51.jpg', 0xFFD8FFE000104A46494600010100000100010000FFDB0043000302020302020303030304030304050805050404050A070706080C0A0C0C0B0A0B0B0D0E12100D0E110E0B0B1016101113141515150C0F171816141812141514FFDB00430103040405040509050509140D0B0D1414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414FFC20011080102010203011100021101031101FFC4001E00000301010101010101010000000000000008090701060A02040503FFC4001C0101000203010101000000000000000000000105020406070308FFDA000C03010002100310000000AA6000000000000000000000000000000000070000000000E81C3A70E8001C03A0700000E8001C2401808000FF000BF9808017F8E12007F8C00A0200040102BE0120C0000BFC000708045D03033802AA794029412BC69C0DFC9B206005261020356037F37E1551D33CB1AA1160BFC00070804553201017F4554D50A002A86AA4582FE0800D51164AA66503FE74CA48B22A85FD1551561552A98AB17F8000E1008AA640202FE8AA8AB00FF0BF98097F490007AB12D2D2920C0DF8F564AC2FE8AA8AB0AA954C558BFC00070804553003013CA0AA9AB1540F2A45A3CA95409B27953CB173C55474CF2C4593CB173C4047F80E9208FA27000384FF0032C387406A0CA8D58554D50D5895A6563526A66A82B06546565A61553541AA1013A0700AAA0000004FE37F03002809E449B22AA5D0303384023572E79F3B250030003CA973C6089FE2026FC3002025FE0003F22FE7CEC9AB9E58B9E6A6795030037F18227F9C26C8E913687E8A504303D48FE9BF916874874C6089FC4863E9E8000E1008CAC7F440C7F4E08195407FC4006A8404E9C1A932A1AA22D1AA0D39AA8AB8FE99492B8BFC708045FE000384023033D494A04A8CB0CA0FA261812401E5C7F8DF095A57F2400EA88115E885E3542585A530037F182384022FF0001C20115F0C00A02791303384023572A808794FCF0666B0E8F062D2B32107EC9B23A66A679724015FCC00D4C9B47D3D0001C201169CCA86B0CA0404E92ACAA62AC5F13FA4FF0033E3965D84EBBF58CCFE4D5B671FF2C44C8B03566563FA2AC6AA5501023A5540003F22FE4D93531D303003001582E79164BE50FEA463B41BD9EF975F7FD2DB5FD2F595FBE75D57FC0991F2754009583545262178D51498F5C0007E45FC8B45CF22C9AB0FF1BE1810AA9368A8312CC516DE535BBDEBA973F7DD6D7647E5FD2B29EC9C8FA0FBC4B2CB19AE55315601FE17F26B9400C00FA27000384FF22C0D58D48FE8808FF1014B4A4AD1C786F9C8DB79BF1DEDBC6DD53FBFACDCF1FF001F41FF0027D57C5D84EC6A13EDAC72C3533541AA101032C32A32B3E944000E1200754408C00B4A6006003FC60007874379C6DAFE7F2EFA09F58C5FACAFD4F98DE553F4BF11437B2A4C1A41164D4CAA640203E9E89B26A6501000384022FF001941EA480C3A44DA1FA2BF9D10F1C6A5D9FF002FCEEE7F92B36330DEC3D671B65FC5EE9C96CBD0E9C1437F2BF8BF01EA8CB0C0490057F2948001C2010FE9961958AB0FE0155055055CFF00B4CB59187FA6CB4BC59A4C69713FEB44FEFE9094C01FF2018FE9AA116C7F4E1D2AA0001F917F241969CCACCA495E7AA3E89C9567AB024095EC5D0FEE1EE1A610F10601FE382043FA6FE06006005800003F22FE7961562AA1E449B26A650127F1218F225531561FD32C1A910235326D1F49879522C8FE8810FE9404E1008BFC000709FE2B065635007040CFA503840335632B1A835332B32C2A899512B4D58D50554CB07F0E954C08045FE0003848015837F37F3D41960D48951BF9218FA4C30337C3D719392BCA4C4831FD35635422C0AA9D1803D480FE9404000FC8BF9E58000D509AC6FE745FCC046A46A8F522585272178FF0BF8FF120CC0CFA4C3CA9164BA048527F9F55000070804354006566A85532561C035432B1AA1AA1543551023803FC6544AD2D399512B4AA64AD1A82AA8001C20115F090605531562AA115C09FE5283D58969EA400AA6749046FE55022C801818E91A98E98C10001C201154C80405FD1553CA0EA9008AFE2025CF3CA8809EAC9583023A43A64832D31EA895A30070D588B27963E9E8000E1008B4E20203542AA55422C13FCA002AC5A52568D48AB8AA1400D50AA64021AA32B2D39C10032C1A732B2808001C2010001E5874CAA87CAB9D18032C37C1FD26C95F4E1BE9E549AE6025A62181EA47F85FC7F8C00408BFC000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007FFC4004210000003060209020503030203090000000607080004051415160917010203111318195785253810202147671226272829464175223739303142505160616383FFDA0008010100011200FF00C8F7B6F6DEDBDB7B6F6DEDBDB7B6FF008EFF00868D3A34FCBBDBF568F8FEAD0DBDB7B6F6DFF32F05E27A12CABC740D070E28A1B86C8CAB97545539DCD6EA8AA73B9ADD5154E7735BAA2A9CEE6B614EA84CE5279A398C26B8A8B4B9065E0BC4F4259578E81A0E1C514370D919572EA8AA73B9ADD5154E7735BAA2A9CEE6FC5782F13D09655E3A0683871450DC364655C97919E27265278E4640F89D18470C91947DC2995099CA4B3433184D715169721F2F545539DCD6EA88A73B98C830CF139CC93C0E321844EB22389CF4DBEAF233C4E4CA4F1C8C81F13A308E192328FBD5114E7731BAA2A9CEE6B7545539DCD6EA8AA73B9ADD5154E7737E6C51BDF599BE318D0344324C0122631194528E1C86F0A69F7AA2263EE5B75444C7DCC6C51BD8999BE31B032FBD9E1197820E3D0E955E3A190380F5A0DC4A4655F50720E3D09655E06190C40F450DC367A69F4F154658A6EA2E6309ADDAD71E41950A5D335671E82638C9C0CDE05C09256951A542A88B259C450989C2704D781902495A54170A84BC6726CCD1CC70CDB95AA5C8319EBCC8B2607513070C4714611C378534E49752E99A8C4F40C9C671866CF2E03735558D62ACA80B152795F97026B8A8B549F62BD061E8738121A310681EB21C8971655F550AA22C967114262709C135E064092569505E974A73B66DD2E94E76CD92EA5D335189E81938CE30CD9E5C06E6AAB1AC55D50962A4F2BF2E44D71516A93EC839789164B250030346238A288E1B3D34E58A37B13337C636065F7B3C2319EBCC8B2607513070C4714611C378534E5D51131F73188D54458A92ADE5C09AE2A2F027DB146F7D666F8CF9B146F7D666F8C6C51BD8A19BE33E38A37B13337C636067F7B3C232A0C55F96C3D04C5C6575C74595F52FA32E4437CE7593B86D675B53AC9708DE5B48B0D1735AB8A8B35EA785CFBEA2CFC9B6ED1B99506151CC91E82631B346DCAD4B7A62A223799222C4C5CD6ADDAD4AFA9AE4437C98593BC6B78DCB3AD85CFB142CFC9B25DC29F96C3D03463668DC74599F4CD1BB737D195111BCC9116262E6B56ED6A57D4D72A1BE4C2C9DE36BC6E59DF8628DEC4CCDF18D819FDECF08D8A2FBEA337C67C3033FBD9E11B146F7D666F8CF9B146F7D666F8C6C51BD8999BE33E38A37B13337C636067F7B3C23628DEFACCDF18DD5154E7735B0A754267293CD1CC6135C545A5C832F05E27A12CABC740D070E28A1B86C8CAB96171EFACB3F26DFF7EAB2F05E27A12CABC740D070E28A1B86C8CAB920E5E27A1D2ABC0C0D188E2B41B894F4D396397F64FCDB15EBCCF4260090D0703471460E4378B2AE4BC8CF1393293C723207C4E8C238648CA3EF544539DCC6EA8AA73B9AC839789E874AAF030346238AD06E253D34E58E67D93F37F0C51BD8999BE31B033FBD9E11B146F7D666F8CF86067F7B3C23628DEFACCDF19F3628DEFACCDF18DD51131F731BAA2263EE6375444C7DCC65E0BC48B3A5280E81A0E1C5684712919572C0CFEF67846C51BDF599BE3192EA5D335189E81938CE30CD9E5C06E6AAB1A23551962A4AB797226B8A8BC09F633D799164C0EA260E188E28C2386F0A69C8CF4187A13004898C46407A30721BC29A7D2352D99CA46B797219B8A8BC09F64BAA88B2462450689C38C4D679901A9AAAC14CF4187A13004898C46407A30721BC29A7D2392E19CA42B797219B868BC19F6340AE131303B89838650CA308E1BC29A72C51BD8999BE31B032FBD9E118CF5E6459303A898386238A308E1BC29A72C51BD8999BE3188D4BA66A91ADE5C866E2A2F027D8D02B84C4C0EE260E194328C2386F0A69CB146F62666F8C6C29D509629B33473184D6ED6A9720DD51131F731BAA2263EE6375444C9DCB65E467860E655E391903E27590E44A4651F7E554185473267A098C6CD1B72B52BE9BD0CBF3637433FCD8DD0CBF3637432FCD8C8650D72617B7EF5BC6E592654185473267A098C6CD1B72B52BE9B8A27B14337C636067F7B7C232A0C29F9923D04C63668DB95A96F4CC51BD8A19BE3190D2E4E4C2F6DE0ABC2E59265447973247A098C6A2DBD5A95F4C5438AC732645898B9CAEB72B52BEA781A7DEDF08CA830A8E64CF41318D9A36E56A5BD355062AFCC9916262E72BADCAD4AFA92195C9C985EDFB2AF0B96459511E5CC89E82631A8B6ED6A57D33145F62866F8C6C0CFEF6F84654185473267A098C6CD1B72B52DE9AA888DE6488B131735AB76B52BEA5D0D3F3637432FCD8DD0CFF0036B7434FCD8DD0CBF36FFD862B0A84CE4DB96197226B76B5549F64186789CE649E07190C2275911C4E7A6DF57919E27265278E4640F89D18470C91947DC2995099CA4B3433184D715169721F0340AD0C9CE0489838650BAC07225C29A725CBA7A6D595CBA7F1DDE73D5D6EA8AA73B9AC6815A1939C0913070CA17580E44B8534E5D2ED31F6D1BA5DA63ED9FC08D54466A6DADE5C89ADDAD7027D90619E273992781C643089D6447139E9B7D6C2992F162A4F34731833715169720CBC8AF0C132ABC720D07C328C1C8648CA3919EBCCF439C0913070C871590E44B8534E446AA33393756F2E44D6ED6B833EC830CF139CC93C0E321844EB22389CF4DBEB62B0A88CE4D995F97226B76B5549F6EA8AA73B9AC839789E874AAF030346238AD06E253D34E58ABAA133936657E5C89ADDAD5527DBAA2A9CEE6FCBBF768D3A74FF00A319EBCC8B2607513070C4714611C378534E4C46A5D33548D6F2E43371517813EC6815C262607713070CA194611C378534E5D51131F73188D54858A91ADE5C89AE2A2F027D8CF5E6459303A898386238A308E1BC29A725E45789CE649E390683E195911C4E4651CB0A74BE66A6CCD1CC60CDBB5AA5C86933D799164C0EA260E188E28C2386F0A69C9B1574BA67292CAFCB90CDC545AA4FB25D54459231228344E1C626B3CC80D4D5560A830CF0C132ABC0E321844E8C1C864F4DBEAE5FEE476572E7FC8965CF5798D02B84C4C0EE260E194328C2386F0A69C90720E3D09655E06190C40F450DC367A69F4F15445926DA2E6309ADDAD71E4197919E18399578E4640F89D64391291947DE974A73B66D853A5E33935E68E63866DCAD52E418CF5E6459303A898386238A308E1BC29A7233D061E84C01226311901E8C1C86F0A69F7034FBDBE118CF5E6459303A898386238A308E1BC29A726C5612F19CA4B2C32E43371516A93EC6815C262607713070CA194611C378534E5F2E28BEFA8CDF18C9708DE648F40D1735AB76B535EA5F4C183F31664B2A23CB9923D04C63516DDAD4AFA6F432FCD8DFF45FFCC5992CA88F2E648F41318D45B76B32BE9897B157E64CF40D17395D6E56A67D4F768FD2CA830A8E648F41318D9A36E56A5BD31511E5CB69162631A8B7151657D33AE57E136E46BA927F5197B65D5E9FE35D0CBF36B21A435C98DEDFBDAF1B96499506151CC99E82631B346DCAD4AFA6AA23CB96D22C4C63516E2A2CAFA6AE35CBCE7D93FB2ACEB6A7592F614FCC99161A31B346DDAD4CFA625EC55F9933D0345C6575B95A9AF525CAB93931B27F655E372CEB7233D493FA8CBDB2EEF4FF001A54446F32245898B9AD5BD5A95F5343286B930BDBF7ADE172C8B628BEFA8CDF19F0DDA1B145F7D66778CF9B146F7D666F8C62B8D1131303B860C41B14A308E1BC5957D3C55199AA468B98C26B8A8BC790641C8388B3A528018643103D6847129E9A7DEA8AA73B9AC792A333949D1731C4D71D178F21F02BD061164C0EA1A310701E8C2386F1655F7768D1ABB99782F13D09655E3A0683871450DC364655C92EAA2335671E819270E3135E05C0926AAB05E97698FB68C5715A19260090D0703617470E4378B2AE4839789E874AAF030346238AD06E253D34E5BBE9B99782F13D09655E3A0683871450DC364655CB146F62666F8C6C2992F162A4B34331833715169720C5715A19260090D0703617470E4378B2AE585C7BEB2CFC9B6397F64FCDB15EBCCF4260090D0703471460E4378B2AE4BC8CF1393293C723207C4E8C238648CA3EE14EA80CD5279A398C26B8A8B4B90D067A0C22CE71D44C623103D644712E14D3EFC3146F7D666F8CF9B146F7D666F8C65E45789CE649E390683E195911C4E4651CB0A64BC6726DCD0CC60CDBB5AA5C87C0D0344324C0122631194528E1C86F0A69F7AA2263EE5B75444C7DCCF8118974CE5255BCB80CDC545E04FB25D54459231228344E1C626B3CC80D4D5560B07C2C14ABFC4DD9D36E0476856C36DAFF00A35DF50C22F7446EE22CD4BC35C58FE21929C651D860061479CE2330DFC711A833E4625FF5B8F44F05F73442DD13C19DCE10B270275C13992E1D2EDC222F91974834C70DFB6D137777D96BED36BA769B3D9EAE8DFADAF8A82663254D6C8ADD72CC3B73EA422A73BA52EAA12C91891219270E31359E6386A6AAB05418678609955E07190C227460E4327A6DF572E8EA496572E7FC8965CF57992EAA22C9189141A270E31359E6406A6AAB055E0BC48B3A5280E81A0E1C5684712919572DCC839789164B250030346238A288E1B3D34E49752E99A8C4F40C9C671866CF2E03735558D2E5FEE4B6572E7FC8965CF5798D02B84C4C0EE260E194328C2386F0A69CBE5C517DF519BE319511E5CB71162631A8B7151657D310D2E4E73AF6FD95675B523F054446F32445098B9AD5BD5A95F53E867F9B5BA19FE6DF86067F7B3C23628BEFA8CDF18CFF00FAB5DD769A9A9AFA767ADADA75767A35F63B2D4D86CF46CF67ABA353535746ED1AA288FBB85035158D3D7EA9587BAED5EF6AC994EF8A1DA1A103C4760BA81E8DC1E2FB686BCB83E3EEC21EE9B77979DAEA6C361B1D4D3B4DA6D4A050702394482F83C19D5FB61B40EED1DF46B6DB733A3B6AC39E1F75767A74E8D8EB69D5DB68D9AA0C2A39933CC4C63668DB95A95F4CFAB21A5C9C98DEDBC1578DCB24CA88F2E648F41318D45B7AB52BE99D0CBF3632E4435C98D95FBD6F1B967592F614FCC91161A31B346DCAD4D7A62A223799222C4C5CD6ADEAD4AFA9FF00D187F31664B7235D497FA8DBDB2EEF4FF1AF9376FD1A7469633D06116738EA26311881EB2238970A69F52EAA2335671E819270E3135E05C0926AAB055CBFDB6ACAE5CFF8EAF49EAF320C33C4E7324F038C86113AC88E273D36FABC8CF1393293C723207C4E8C238648CA3EE14EA84CE5259A398E26B8A8B4B9065E0BC4F4259578E81A0E1C514370D91957241857860E655E07068C219590E44E7A6DC88D4BA5926DADE5C866DDAD7027DB146F7D666F8C67AD3F4FFF004D9B6FFA31FE3672D806A260972D8ED622258FC35E1DF62EB037B1D02A3A237B0DE80EEDDDE2FB7D8EDD850361D98908B523A1C82B8439EF69B3A8C4137C2E16F8231D8ADDF6BB2D488C45E7610FDBB96E67AFA6D1E74FFF0056CD9772F23D09655A390703471460DC364655CBA5DA63ED9B74BB4C7DB36E97698FB66DD5154E773590CE9EA4B7B7317FC8965C8D098AE2B4324C0121A0E06C2E8E1C86F1655CBAA2A9CEE6B219D3D496F6E62FF912CB91A1315C5686498024341C0D85D1C390DE2CAB97C9BF768D3A74FF00A319EBCC8B2607513070C4714611C378534E4830CF0C132ABC0E321844E8C1C864F4DBE91AA88B25235BCB9135C545E04FB628DEFACCDF18C9752E99A8C4F40C9C671866CF2E03735558D75444C7DCB62B8D10C9CE04868C41B14AC07225C5957DEA8898FB98CB9B4F524B2B973FE44B2E7ABAC6815C262607713070CA194611C378534E58297D0AF33BFDE9C1A04788E824696C204614B3A3BBDED3F4E9D905841B1354C7797F7A803F8D611187E717E7A763FE1AE645449E2C6D9EA43352201C88BF6D2181C2A41B1F7D154076C03DBC2F650FD83B6BBB8DE16338BC38BE0D9A0E8F1BE3908D9687989B0C94582804F102768ABDBF6BBCC69CE7DCB640B1F408CD0E6A08434FD5283BDEA6ED8BCAED41A7A1D2AB872310681EB21B8948CABEB6067F7B3C23628DEFACCDF18DD2E94E76CDB0A74BC6726CCD1CC60CDBB5AA5C832F041C7A1D2ABC74320701EB41B8948CABEB614CA84B14D99A398C26B76B54B9065E467860E655E391903E27590E44A4651F7E554185473247A098C6CD1B72B52DE99F56434B97930BDFF64DE372C937235D493FA8DBDB2EEF4FF1A54446F32245898B9AD5BD5A95F53E86BF9B592E11BCB69161A2E6B5715166BD492E11BCC91E81A2E6B56ED6A6BD4D0D21BE4C2F6FDED78DCB24D8A2FBEB337C6360A1FF002C4CEFF7A7065B503DABFC6A0FA8EBB5D7D8BEC503F157275DB13C58D0800198840C42FB078BE873D9ED767148AC3A3FB533A18268A06844328C425E9F364F5108480A3E25026CE1B121088A030578D9EBEF098049D8EC2843A1DDFB61AAED06D4D8EBBB6D98322E108C2000009BD43363B77A09C43650D866C36F1B8A244493128A4621CEF1E7D0942F8921D72BF09B2A0C2A396C22C4C63668DC74595F4DC0CFEF6F84654185473267A098C6CD1B72B52BE9AA88F2E5B48B1318D45B8A8B2BE9BD733F09B75CDFC24CA830A7E5B08B1318D9A371D1657D310D21BE73AF6FDED675B524CA888DE5B4F4131735AB8A8B2BEA7F2AF05E27A12CABC740D070E28A1B86C8CAB974BB4C7DB36C55D2F1629B32BF2E4336ED6AA93EC57AF33D098024341C0D1C518390DE2CAB92F233C4E4CA4F1C8C81F13A308E192328FB853AA133949668E6389AE2A2D2E419782F13D09655E3A0683871450DC364655C8AF418459303A868C41C07A308E1BC5957DC5595099C9B32BF2E04D6E56AA93EC9752E964B388A0D1C671866F03204935558D609FF00F2C4CDFF007B70654AE9BF685AC4765AFB39A7314EC7535765A9A346AE8DDA3468D1A3FF004DDF4D3F4DFF00FC010F37DD018D47D1A429EF61AFADB6D7D4D47D0B8A21A31826C22D09DAEBEDDC36FBF87B40E47A22FCAD42C1C0FB83DED76F05143CEDA29AE62806046784A361513B954E031376D9EC1F1D3A5DA64EDA3628DEC4CCDF18C462A23393656F2E04D6ED6B813EDD5154E7735B146F62666F8CF89A056864E70244C1C3285D603912E14D392E5D3D36ECAE5CFF008EAF49EAF325D4BA592CE22834719C619BC0C8124D55635F2E28DEFACCDF19F03C5511649BA8B98C25B76B5C79062B8D10C9CE04868C41B14AC07225C5957D418678609955E07190C227460E4327A6DF572FF723B2B973FE44B2E7ABCC6815C262607713070CA194611C378534E4839071E84B2AF030C86207A286E1B3D34FBA3E1861A76311368087AE263076DCDBBFC49D1EDDB40AC030B183EC31F1FF0067ADB57886EB6D35DD74EB95FB2FAF0DF75F57469FF4DA15EF3BFF00E07ED9E9D568DA628BBB461F63213106D431117DD7D3B47BD9B881044E90F77D47ED4D9BDBE6AECF5746DB6A98837B370DA98D16DBB8EA6C226F82678D8ED36BB6DAEA6D36EFBABABADA35B4EA6AECF5759B143F7D065F8C641C838F425957818643103D14370D9E9A7DDFA3F4EF633D799164C0EA260E188E28C2386F0A69C8AF5E6459CE3A868381C38AC88E25C595723C5521629BA8B98C26B76B5C7906EA8898FB98CBC17891674A501D0341C38AD08E25232AE5B99072F122C964A006068C4714511C367A69CBE5C517DF519BE3192F62AFCC99E81A2E32BADCAD4D7A96397F64FCDB25EC56396C22C345CE575C7459AF534B846F3247A068B9AD5BB5A9AF53FA60C3F98B325B91AEA4BFD465ED9777A7F8D6E65CAB97930B2B4595785CB3ADD737F09B4331BB707B89EC3651727B6EEB0AD7D3B9EB6900C4353DC51C364F0EE6B383B6CB5F46FE07500203BB61E6191D4110006DEE3E2114384260EE9FA38EF9CFF901DDB0F3034E9088FC38E91E0F89DC22D077BFD7C07CD617C335F67AFABB18BBBEA6BEB7FE2856DF51EF4EAEC1CF5769ACEDFAB89B67A53F854732479894C6CD1B72B32BE9A97B157E64CF40D17195D6E56A6BD4B7E8D1A37696C513DF5999E3192F614FCB61E81A31B346E3A2CCFA62E5435CE7595FBDACEB6A7595111BCB69E8262E6B57151657D4FA197E6C6E869F9B1BA197E6CF9776FD1A7469633D06116738EA26311881EB2238970A69F70B8F7D659F9363C52E162A4A8B98E19B8A8BC7906E97698FB66CA852E9648C48A131C64E066CF320352B4A8D1E2A90CE52345CC6135C545E3C8315EBCCF4260090D0703471460E4378B2AE4D8E67D93F36C8390711674A50030C86207AD08E253D34FABC1071164B2501D0C81C07A288E1B232AFBFAB4B20F416461D49440E3318826B024894F4D3E25650C602C53EC30501BB1FBACBB11CD5520F8AAA5D2C935E57E5C86A815AAA4FB618900717E43A5B6DB6DB1DFAFAF526D40C43B534EFD0EFA37B62A2A60CA4CB95FA0B5125B75AAA4FB7545539DCD6C2E3DF5967E4DB1575446726CCAFCB9135BB5AAA4FB25D4BA592CE22834719C619BC0C8124D55635D5154E7735B0A754267293CD1CC7135C745A5C8319E8308B39C7513188C40F5911C4B8534FABC8CF1393293C723207C4E8C238648CA3EE14EA84CE5259A398E26B8A8B4B9065E0BC4F4259578E81A0E1C514370D919572F937EED1A74E9FF4633D799164C0EA260E188E28C2386F0A69CB146F62666F8C6C0CBEF6784F81A068864980244C62328A51C390DE14D3EAE5D1D492CAE5CFF916CB9EAF325D54459231228344E1C626B3CC80D4D5560AD8AC25E3394965865C866E2A2D527D8D02B84C4C0EE260E194328C2386F0A69C9B033FBD9E11B146F7D666F8C6542A88B259C450989C2704D781902495A54150D7F6DABDB98CFE3ABCE4682DD51131F73192EA5D335189E81938CE30CD9E5C06E6AAB1A5CBFDC96CAE5CFF00912CB9EAF31A057098981DC4C1C3286518470DE14D391A068864980244C62328A51C390DE14D3E91AA88B15235BD05C89AE2A2F067DB146F7D666F8C6542A88B259C450989C2704D781902495A5417A5CA9CED9B25D54459231228344E1C626B3CC80D4D5560BF0C51BDF599BE33E654185473247A098C6CD1B72B52DE98A83157E64C8B1317195D6E56A57D490D2E4E4BEF7FD9578DCB22DD737F09B73C9D493FA72B272EAF4FF25FA60C3F98B3259511E5CC91E82631A8B6F56A57D337B7D1B145F7D66778C6541853F2D845898C6CD1B8E8B2BE9886972725F7BEE055E372C937235D497FA8DBDB2EEF4FF1A4BD853F2DA7A068C6CD1B8E8B33E998E57D93F36C97B0A8E64C8B0D18D9A36E56A6BD315111BCC8916262E6B56F56A57D4D0D21BE4C6F6DE36BC6E5926C517DF599BE3195062B1CC9916262E72BADCAD4AFA9E067F7B7C23628DEFACCDF18C970F2E5B4F40D18D45B8A8B35E99D733F09B7237D493FA8CBDB2EEF4FF1ADEDBF46ED2D8A2FBEA337C67CCBC1789E84B2AF1D0341C38A286E1B232AE4830AF0C1CCABC0E0D18432B21C89CF4DB962AE97CB14DB95F97219B76B5549F641C8388B3A528018643103D6847129E9A7D542974B246245098E327033679901A95A54690D7F725BDB98CFE45B324682DD2ED31F6CD9072F13D0E955E06068C4715A0DC4A7A69CB1575426726CCAFCB8135BB5AAA4FB1A068898E71DC4C62328A5644712E14D3E9A056864E70244C1C3285D603912E14D3974BC4C9DB462B8AD0C93004868381B0BA38721BC5957263C92E962A4A8B98C19B8A8BC7906542A88CD4627A0989C2704D679701B95A54157919E27265278E4640F89D18470C91947DEA88A73B98C9752E964B388A0D1C671866F03204935558D74BB4C7DB362352E1629B6B797019B76B5C09F6C51BDF599BE33E1A34FE9FAE862BD799E84C0121A0E068E28C1C86F1655CBAA2A9CEE6B7545539DCD64BA974B259C45068E338C3378190249AAAC6BE4DFBB469D3A7FD18CF5E6459303A898386238A308E1BC29A72EA8898FB98DD51131F731BAA2263EE6375444C7DCC623551962A4AB797226B8A8BC09F65E0838F43A5578E8640E03D68371291957D542A88B259C450989C2704D781902495A54170A74BC6726CCD1CC60CDBB5AA5C832F041C7A1D2ABC74320701EB41B8948CABEE171EFACB3F26D8E67D93F36D85C7B132CFC9B2F22BC4E7324F1C8341F0CAC88E272328E4863FB6DDEBCC5FF001DDE7234262B8D10C9CE04868C41B14AC07225C5957DE974A73B66D853A5E33936668E63066DDAD52E4197820E3D0E955E3A190380F5A0DC4A4655F57915E27399278E41A0F865644713919472E976A73B68C6815C262607713070CA194611C378534E4681A2192600913188CA29470E4378534FA46AA22C548D6F417226B8A8BC19F6C51BDF599BE318D0344324C0122631194528E1C86F0A69F715854258A92CB0CB9135C545AA4FFCF8A2FBEA337C637432FCD8DD0CFF0036B7432FCD8CA830A8E5B08B1318D9A371D1657D37032FBD9E11B737235D3737A8CBD7316CBFF1AEB97F84DBAE6FE1264BD85472D87A068C6CD1B8E8B35E9B8E67D93F36D85CFB142CFC9B7D197221AE73ECADC36B3EDA9E64B846F2DA45868B9AD5C5459AF52EB9BF84DBAE5FE136EB9BF8499511E5CB71162631A8B7151657D310D2E4E73AF6D164D9F6D493628BEFACCEF18CA888DE6488B131735AB76B52BEA48690D72637B7EF6BC6E5926C517DF599DE31B144F62866F8C643686B9CFBDB78DACEB6A49BA197E6DF9B146F7D666F8C65E46789C9949E391903E274611C324651F7AA229CEE637545539DCD6C51BD8999BE31B032FBD9E13E09755119AB38F40C9387189AF02E049355582E2AE978B14DB95F97219B76B5549FF820E5E27A1D2ABC0C0D188E2B41B894F4D396397F64FCDB15EBCCF4260090D0703471460E4378B2AE5D5154E7735BAA2A9CEE6B7545539DCD6E97698FB66DD2ED3276D197915E18265578E41A0F86518390C9194724BAA88CD59C7A0649C38C4D78170249AAAC148C4BA58A6DADE5C866DDAD7027DB146F7D666F8C6EA8AA73B9ADD5114E77318D03444C738EE263119452B2238970A69F52EAA2335671E819270E3135E05C0926AAB055CBFDB6ACAE5CFF008EAF49EAF320C33C4E7324F038C86113AC88E273D36FBF2E28DEFACCDF18D8A37B13337C67C7146F62666F8C6C0CBEF678465E0838F43A5578E8640E03D68371291957DC51BD8999BE31B468DEC839789164B250030346238A288E1B3D34E4830CF0C132ABC0E321844E8C1C864F4DBE91AA88B15215BCBA135C545E04FB19EBCC8B2607513070C4714611C378534E4839071E84B2AF030C86207A286E1B3D34FB8E67D93F37F0418678609955E07190C227460E4327A6DF572FF723B2B973FE45B2E7ABCC830AF1393293C0E0D184328C23864F4DB96171EFACB3F26C78AA22C537513418C26B76B5C69062B8D10C9CE04868C41B14AC07225C5957D41C838F425957818643103D14370D9E9A7DC55D2F19CA4F2BF2E43371516A93EC975511648C48A0D1387189ACF32035355582E28DEC4CCDF18C46A5D33548D6F2E43371517813EC6815C262607713070CA194611C378534E5F2E28DEFACCDF18CA888DE6488B131735AB76B52BEA5D0CBF36B7432FCDAD8A2FB14337C636065F7B3C236E65418ABF32645898B9CAEB72B52BEA4C97B0A7E6488B0D18D9A36E56A6BD312E11BCC91E81A2E6B56ED6A6BD490D21AE4C6F6FDED78DCB24D8A27BEB333C6375CDFC24CB9572739F64E8B2ACFB6A7BE0A830A7E5B08B1318D9A371D165BD33033FBDBE11BE8D85C7BEB2CFC9B6397F64FCDB25EC56396C22C345CE575C74599F53FA37D3732A0C2A39923D04C63668DB95A96F4CE793A92FF004E564E5DDE9FE4A8690D72617BFEF6BC6E5926541853F3247A098C6CD1B72B52BE9BF2E28DEFACCDF18DD5154E7735BAA2A9CEE6B7545539DCD633D799E873812260E190E2B21C8970A69CB032FBD9E13E3A34FE9FAE862BD799E84C0121A0E068E28C1C86F1655C8AE3444C4C0EE183106C528C2386F1655F7AA229CEE6325D4BA592CE22834719C619BC0C8124D55634830AF0C1CCABC0E0D18432B21C89CF4DB974BB4C9DB46E97698FB66C6815A1939C0913070CA17580E44B8534E44725C2C53756F2E4336ED6B813ECBC1789E84B2AF1D0341C38A286E1B232AE585C7BEB2CFC9B1E2974B252545CC60CDC545E3C832F22BC304CAAF1C8341F0CA3072192328E5D5154E7735B0A754267293CD1CC6135C545A5C832F05E27A12CABC740D070E28A1B86C8CAB915E8308B260750D188380F4611C378B2AFB8ABAA133936657E5C09ADCAD5527DBAA2A9CEE6FF00EE7FFFC4003E10000102050106030703040004070000000203130001041114150512212232331085D4162023346394E4313541245161624260718206305281B1B3D1FFDA0008010100133F00FF0091349A05DB7281054F9D5408F899C681B2FD34681B2FD34681B2FD34681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C681B2FD34681B2FD34681B2FD378E9340BB6E5020A9F3AA811F13386125DB72BD048F9151209DC0CE5C46302969597B2DCEC2417BB41EEE81B2FD34681B2FD3430920E375F509072242212B0004B80C3092EDB95E8247C8A8904EE0672E231A06CBF4D1A06CBF4D1A06CBF4D1A06CBF4D1A06CBF4DEF795D2463AABB6E2A09072242473B9984B80CED1A06D4F4D1A06D4F4D1E69491F7F1AB5020E37408247C8AAE272B1846AD40BB6E502E907224B91F1338C0AAAA7996DDEC2476B3A1D519F4B43938F4A952ADF06A954960B2C82A1CE11815543938F549552DF1AA924910B2282A7CE719F4B54F3396EF6153B59D08D22BD76DC4C150E7490209DC0C27C0A33E96BB1B22955A547E0D2AAAAC77597483902302AA9597B11AEFA417BB471ABD020E36A9A47C8AAE272B181CB88C605550E4E3D52554B7C6AA492442C8A0A9F39C6BFB2FD4C6BFB2FD4C67D2D7636452AB4A8FC1A555558EEB2E907204605552B2F6237DF482F768E349AF5DB72BD75439D24083A0C23CD2923EFE348AF5DB71305439D24082770309F028D036A7A68C0AAA565E71AEFA417BB47D378F2BA4F7BCAE923CCE93C7CD2923EFE35FC579EA5497ED629DACEDBABC349CEC8C863EBA5B9BAC46262BCF552ABF6B7CED67777AA71E5957E1A06532CD2A48777282F76AFD318994CB35492FDADF0BDDADDEA8D27071B1D8FACAEFEF3F1E67571A062BCF52AA877728ED676FD3E38994CB35492FDADF0BDDADDEA8D27071B1D8FACAEFEF3FE1E69491F7F1E594BE1F7F1E5749EF795D2479A5278F9A5247DFC795D24681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C795D5F869340BB6E5020A9F3AA811F1338D2681071BA05D50E749013E0611F611A4502EDB8A9AA7CEAA0473B999CF8943092EDB95E8247C8A8904EE0672E231A06CBF4D1A06CBF4D1A4D020E3740BAA1CE92027C0C23EC3C3CD2923EFE3CAE93C3EFE3CAE93DEF2BA48D036A7A68D036A7A68D036A7A68D26BD071BAF4153E755010E8038FBF8F2BA48CFA5AEC6C8A556951F834AAAAB1DD65D20E408C0AAA565E71BEFA417BB47D378D22BD76DC4C150E7490209DC0C27C0A357A05DB71504839125C8E7733097018CFA5A565E71BEFAA17BB47D378C0AAAEC6C8AA56A91F8D4A92A89DD15D23E438D5E8176DC54120E4497239DCCC25C06275F4B4ACBCE37DF542F7694E9BC3E92EDB890AA1CE91104EE0613E053B479A5247DFC6915EBB6E260A873A48104EE0613E051E694913AFA5A565E71BEFAA17BB4A74DE1F4976DC48550E748882770309F029DA3CD292302AAA9E672DDEC2476B3A11A06D4F4D1A06D4F4D1A06D4F4D0C2A838DD02091F22A2272B181CB88FBDA06532CD2A48777282F76AFD31ECA7E6C7B29F9B1ECA7E6C7B29F9B1A4E0E3E3E47D7577F79F8D032996695243BB9417BB57E98F33A58FBF8D032996695243BB9417BB57E98F33A48D57071B1F23E82BBFBCFC65E532CD2A48777702F76B7BA651AFE532CD524BF6B142F76ADD51F7F1A06532CD2A48777282F76AFD31AFE532CD524BF6B142F76ADD51AB60E363E47D0577F79F8CBCA659A5490EEEE05EED6F74CA3CCE963EFE340CA659A5490EEE505EED5FA631329966A925FB5BE17BB56EA947B29F9B1ECA7E6C7B29F9B1ECA7E6C7B29F9BFF91814B54F3388DF7D23B59D3861241C6EBEA120E44844256000970186125DB72BD048F9151209DC0CE5C46302969597B2DCEC2417BB41E190AA0E36A82A1CE9109CAC6984F814AF1FBA6662318DF3CFB7B994BF6ED7DF8D0365FA68C855071B54150E74884E5634C27C0A578D7F6A7A98D7F6A7A9F0C0A5AA79971BEFA476B3A7D30C24838DD7D4241C890884AC0012E03E19F554ACBD96E76150BDDA087D55DB7281054F9D52239DCCCE7C4A348A041C6D505439D2404E563009F028C0A5AA79971BEFA476B3A7D30C24838DD7D4241C890884AC0012E03E1814B54F3388D77D23B59D38D0365FA68D2681071BA05D50E749013E0611814B54F3388DF7D23B59D38D0365FA6F7B48AF5DB71305439D24082770309F02F0CFA5A565E71BEFAA17BB47D3787D25DB71215439D22209DC0C27C0A768D036A7A68C0AAA565E71BEFA417BB47D378D22BD76DC4C150E7490209DC0C27C0A1F49071BAF4153E754842560039F128CFA5AA799CB77B0A9DACE846915EBB6E260A873A48104EE0613E05E19F4B4ACBD88D77D50BDDA38C0AAAEC6C8AA56A91F8D4A92A89DD15D23E4386155DB7282A120E44848E7733097018FDAF0F2D8C6F9E65CDFC45FA2F6DC87D25DB71215439D22209DC0C27C0A768D5A8176DCA05D20E449723E2671815554F32DB9D848ED6743AAD0C2A838DD02091F22A2272B181CB88C6BFB2FD4C67D2D53CCE5BBD854ED6742348AF5DB71305439D24082770309F028D5E8176DC54120E4497239DCCC25C063EFE348AF5DB71305439D24082770309F02F0CFA5A565EC46FBEA85EED1C3E92EDB890AA1CE91104EE0613E053B7BDE594B18994CB34AAAFDADF0BDDAB754A3F63D3B4FFB975CCFFF004B3519794CB34A921DDDC0BDDADEE9947B29F9B1FB1E9DA7FDCBAE67FF00A59A8CBCA659A5490EEEE05EED5FA651AFE532CD2AABF6B142F76ADD5E1A06532CD2A48777282F76AFD31978AF3D54921DDDC3B59DDEE99C7B57F851A56A98789FD0FCCBC8B9BF8AE76E56DFB47B29F9B1A4E0E3E3E47D7577F79F8D032996695243BB9417BB57E98CBC579EAA490EEEE1EED9DDEE99C6AD9D9390C7D14B737588D0329966A9543BB9417BB57E98D7F299669555FB58A17BB56EA8D5B071F1D8FA0AEFEF3F1A56A98789FD07CCBE8B9BF8AE76E56DFB4626532CD524BF6B7C2F76ADD51A4E0E363E47D7577F79F8F2CA5F1F2CA4F7BCAE92184976DC48D23E4544827703397119DA3029695979B73B0905EED27D578D5ABD071BAF5D20E449710E8008D0365FA68C0A5A565E6DDEC2417BB41D57F0D5EBD76DC4CD23E4557209DC0CE5C47C349A05DB7281054F9D5408F899C6052D0E4E3D2AB548FC6A5492582CB2091F21C6BFB53D4C642ABB6E2A6A9F3AA4473B9A853E253B469340838DD02EA873A4809F030F0D268176DCA04153E755023E2671E694912AFAAA565ECB73B0A85EED04642ABB6E2A6A9F3AA4473B9A853E253B4795D5C7D8469140BB6E2A6A9F3AA811CEE6673E250C24BB6E57A091F22A2413B819CB88C6052D2B2F65BBD8482F7682357AF41C6D304839125C42560009701F1F2BA4F7BCAE921F49071BAF4153E754842560039F128CFA5AA799CB73B0A9DACE87863AABB6E2A09072242473B9984B80CED1A06D4F4D1A06D4F4DE19F4B4ACBCE35DF542F768FA6F181555D8D9154AD523F1A9525513BA2BA47C87157B7681943FDCDA58CED2FF0003384A8184E98E9DFE12B19DEEFC536CC71306699343AA76BDDA8D1C234708A8A59A6A28F54AABCEE3295A569AB68248E5294BFCCED19F4A836F623567950BDDA38C0AAAEC6C8AA56A91F8D4A92A89DD15D23E5386155DB7282A120E44848E7733097018FDAF0F2D8C6F9D65CDFC55FB77B46055576364552B548FC6A549544EE8AE91F21C6935E838DD7A0A9F3AA8087401F86935EBB6E57AEA873A48107418467D2D7636452AB4A8FC1A555558EEB2E9072047ED78796C637CEB2E6FE2AFDBBDB721F4976DC48550E748882770309F029DBDEF2CA58CBC579EAA490EEEE1DACEEF74CE356CEC8C8C8FA096E6EB1E18994CB35492FDADF0BDDAB754A3D94FCD8F653F37C3EFE3CB29607F51DE9CA5797F995E252E128095E7B8984CA7697FD250139948252909A73BCF8CEE2769CF85E72BCA568527610194AF39CE73FE2528AC49B1AA496099A6AA72FD6425295E5BD294ED69DBC3FE10995E45BB2FE25398DEDFDE739FF31A06532CD2A48777282F76AFD3E1AAE0E363E47D0577F79F8CBCA659A5490EEEE05EED6F74CA3D94FCD8D27071F1D8FAEAEFEF3F1A06532CD52A8777282F76AFD318994CB35492FDADF0BDDADDEA95AF1FB1E9DA7FDCBAE677FA59A8D2B54C3C4FE83E65E45CDFC573B636DFB7BDABD7A0E3698241C892E212B0004B80C6052D0E4E3D2AB548FC6A5492582CB2091F21C7EE99988C637CF3CDEE65AFDBB5F7E1849071BAFA84839121109580025C06184976DCAF4123E4544827703397118C0A5A565ECB73B0905EED0469340BB6E5020A9F3AA811F13387D541C6E82A150E74884E563009F028CFAAAA79971BEFAA76B3A7D368F2BA48FF00BE5E14E52963266049E42E5796E2729CE76FE4A72B0CA73BDB6A3DBE330A74D2B727F1C853BDE7FACB84AD3BECDDB2A2AF2025BC694913404A523DDDC9F35B7665C62F27524E9A46204A87EA247350E72BFEA0DF87FDC51A4502EDB94082A7CEAA047D671AFED4F531AFED4F531AFED4F531A06CBF4D1FB5E1E5BF93F22C39BF8A8772F6DC8C85576DC54D53E75488E77350A7C4A768D0365FA68FDAF0F2DFC9F9161CDFC543B97B6E4642ABB6E2A6A9F3AA4473B9A853E253B7BDA457AEDB8982A1CE920413B8184F81430AAEDB941509072242473B9984B80C605552B2F38DF7D20BDDA3E9BC795D2467D2D7636452AB4A8FC1A555558EEB2E907204681B53D3463AA838DAA691F22A2272B1A652E2328D036A7A68FDAF0F2D8C6F9E61CDFC55FB77B6E43E92EDB890AA1CE91104EE0613E053B78274229A28A467314574AA24A94D407268A4523009DD4BDA366A96651AA56A12A62A8DD9DD8A646986649CA7BB335EE5095E68D32B4AD492A84D39DC46EF148A5294A45619CE2A7E67682CAA6446AA15339B9F0F978EF5AE56B5A2946432DABB384A725F78385F7921782FD256B4E5C6F41B36A2B0954256B9FC202E1CC30D1A7BF3150C4B94E522E1319CBF48D5E81071BA04123E455713E0607E1F7F1E57491AFECBF5319F4B54F3396E76153B59D08D5A81071BA04123E455713958C3C302AAA9E672DCEC2476B3A10C2A838DD02091F22A2272B181CB88FBDA06532CD2A48777282F76AFD3E1AB60E363E47D1577F79F8D2B54C3C4FE83E65E45CDFC573B636DFB4626532CD524BF6B7C2F76ADD51ECA7E6C6262BCF552ABF6B7CF76CEDBAA718994CB34AAAFDADF0BDDADDEA94693838F8F91F5D5DFDE7E3CB297C03F8AA40A9EB11FFE838A0009112469A736493504C4C39653B14A7394F8CA70B8802C549319A694C3993414BDF7E4090CA5212E6B95EE9D624CA03322DD4896107A616DD9CC1DB7198F4C02929A6B23309837219719CA729FE9394B8452593ACAE5123ABA6911D42A5BA92130A4524729094CAD149564926A27906DA6F12739F2818DCB723DABFC28D0315E7AA9243BB9476B3B7E98FBF8D032996695243BB9417BB57E98CBC579EAA490EEEE1EED9DDEE99C7B57F851ED5FE146818AF3D54921DDCA3B59DBF4C6939D919191F5D2DCDD6231315E7A9525FB5BE76B3B6EA9FBDA4D02EDB94082A7CEAA047C4CE35FDA9EA633EAAA9E6711AEFAA76B3A71A4502EDB8A9AA7CEAA0473B999CF8943092EDB95E8247C8A8904EE0672E231814B4ACBD96E76120BDDA08D268176DCA04153E755023E2671ABD7AEDB899A47C8AAE413B819CB88C6052D53CCE235DF48ED674E33EAA87271EA95A547E0D2AA92216450483903C1CDD3553569D748E432FF008AD23DF9CBFF00485E25FA47F78D8FB357A9A79C84B7484E49C8C933039184E45FAEE6F42889A339DA769F298C8A5C65FCCA10E2E20B564D6DF9CA529EE8260B29729CE579A96943CA22E86FCE76DF4C84A5C65FC4E51AFED3F531E69491814B54F32E35DF48ED674FA6D1A06CBF4D1E6949E390AA0E36A82A1CE9109CAC6984F814AF1FBA6662318DF3CF37B994BF6ED7DF8CFAAA1C9C7AA56951F834AAA4885914120E40F7BCAE93C25415554F32DB9D848ED6743AAD18EAA0E36A9A47C8A889CAC6994B88CA185576DCA0A84839121239DCCC25C063F6BC3CB631BE799737F117E8BDB721F4976DC48550E748882770309F029DA356A05DB728174839125C8F899F8E75354EFA412B1CEE8A8768DEE09998EE914A5FA6F6EDC653FE244504129FFF009049CE53FF00E611B2F475273B5CCE9D496EC8F965720984E7C6F38A619260676E2421329CC653FED79DBFBC4E9C4159A69269260332971294B74A728FED3BCE769FFED394E3CAE92356A05DB728174839125C8F899F86915EBB6E260A873A48104EE0613E051A457A0E3699AA7CEAA0212B001CF8946055553CCB6E76123B59D0EA8D036A7A68D26BD071BAF4153E755010E803F0D26BD76DCAF5D50E749020E830F7BCB29635FCA659A5557ED6285EED5BAA3EC235FC579EAA557ED629DACEDBAA313299669555FB5BE17BB56EA8FD8F4ED3FEE5D733BFD2CD4695AA61E27F41F32F22E6FE2B9DB95B7EDE1AB60E363B1F415DFDE7E3DABFC28A5FFC432A951BFF0009952848E7FE37E51B4692A13552FF005B4C061A5E2A1153713DE3101BDA7FC910CA195A29D05260A6E19015AF3FE084A509D31CE729FF007E33B5FF00EB0B4AC7507C39A7C25FDA5FC4BF494A5294A51A06532CD2A48777282F76AFD31AFE532CD2AABF6B142F76ADD5E1E59491A062BCF52AA877728ED676FD31A4E7646431F5D2DCDD6231315E7A9525FB5BE76B3BBBD538F653F363D94FCD8F653F37DED5EBD071B4C120E4497109580025C063CAEAE33EAA95979B77B0A85EED0755E35FDA9EA633EAABB1B22A92A55BE0D52AAA2774575439C23029695979B73B0905EED0755E348A05DB715354F9D5408E773339F12F0FB08D5ABD071BAF5D20E449710E8008D5ABD76DCAF4123E455720E833F0D5EB9071BAF5D20E449610958023029A85FC7A55AA91F8D4C9A6A85964122E0713AFA9AA799C46BBCA1DACE9C799D5786052D53CCE235DF48ED674E340D97E9A3CAEAE30296A9E6711AEFA476B3A719F5543938F54AD2A3F069554910B228241C811A06CBF4D1814B4ACBD96EF6120BDDA08D5EBD071B4C120E4497109580025C06184976DCAF4123E4544827703397118C0A5A565ECB73B0905EED0469340BB6E5020A9F3AA811F133F7B48AF5DB71305439D24082770309F028F34A48FBFF0C75576DC54120E44848E7733097019DA3F6BC3CB631BE799737F157EDDEDB9181555D8D9154AD523F1A9525513BA2BA47C87E19F4B4ACBD88DF7D50BDDA387D25DB71215439D22209DC0C27C0A76F0FBF8F2BA48C0AAA1C9C7AA4AA96F8D54924885914153E738FDD33311FC9F9179BDCCA43B96BEFC681B53D3467D2D7636452AB4A8FC1A555558EEB2E9072047ED78796C637CEB2E6FE2AFDBBDB721F4976DC48550E748882770309F029DA31D55DB71504839121239DCCC25C067689D05552B2F38DF7D20BDDA3E9BC795D24605550E4E3D52554B7C6AA492442C8A0A9F39C6BDB33D4C6055576364552B548FC6A549544EE8AE91F21F8F95D27BDA06532CD2A48777282F76AFD31AFE532CD524BF6B142F76ADD51AB60E363E47D1577F79F8F6AFF0A355D530F13FAEF96651737F15BEE4ADBF78FD8F4ED3FEE5D733BFD2CD465E532CD2A48777702F76B7BA65E3E59491A062BCF5524877728ED676FD31AAE0E363E47D1577F79F8D2B54C3C4FE83E65E45CDFC573B72B6FDA340C579EA5550EEE51DACEDFA63EC2340CA659AA550EEE505EED5FA631329966A925FB5BE17BB56EA8D27071F1F23EBABBFBCFC79652C6BF94CB35492FDAC50BDDAB7547DFC795D2465E2BCF52AA877770ED6777BA671ED5FE14695AA61E27F41F32F22E6FE2B9DB95B7EDE3E594BEF69340BB6E5020A9F3AA811F13387D541C6E82A150E74884E563009F028CFAAAA799C46FBEA9DACE9C6AD5E838DD7AE907224B887400467D557636455254AB7C1AA55544EE8AEA873847ED78796FE4FC8B2E6FE2A1DCBDA35FDA9EA6349A041C6E8175439D2404F81846052D53CCE237DF48ED674E1849071B48520E4484425604C25C06578C855071B54150E74884E5634C27C0A578D7F6A7A98C85576DC54D53E75488E77350A7C4A76F0CFAAA565E6DDEC2A17BB41D578C0A5AEC6C8A54AA96F8D5492AB1DD65D53E7386125DB72BD048F9151209DC0CE5C46340D97E9A33EAA87271EA95A547E0D2AA9221645048390235FDA9EA633EAAA9E65C6BBEA9DACE9F4C795D278E9140BB6E2A6A9F3AA811CEE6673E251A06CBF4D1A06CBF4D19F5543938F54AD2A3F069554910B228241C81EF6915EBB6E260A873A48104EE0613E051A06D4F4D1A06D4F4D1A06D4F4D1A06D4F4D181554ACBCE35DF482F768FA6F1AB5020E37408247C8AAE272B184605550E4E3D52554B7C6AA492442C8A0A9F39C67D2D53CCE5B9D854ED6742356A041C6E81048F9155C4E56308F2BAB8FB08F34AB87D241C6EBD054F9D521095800E7C4A3F74CCC47F27E45F6F73290EE5AFBF18EAA0E36A9A47C8A889CAC6994B88CA35FD97EA633E96A9E672DCEC2A76B3A11AB5020E37408247C8AAE272B1843E920E375E82A7CEA9084AC0073E251AFECBF530FA4BB6E242A873A44413B8184F814ED18EAAEDB8A8241C89091CEE6612E033B44E82AA95979C6FBE905EED1F4DE3CAE9231D55DB71504839121239DCCC25C067689D05552B2F6237DF482F768FDFF002CA58F653F363D94FCD8F653F36340C579EAA490EEE51DACEDFA63EFFC34AD2F332FFA1F997966F7329CED947B57F851ED5FE146818AF3D4AAA1DDCA3B59DBF4C7D84799D5F86939D9190C7D74B737588C4C579EAA557ED6F9EED9DB754E3DABFC28F6AFF0A3DABFC28CBC579EAA490EEEE1DACEEF74CE355CEC9C8C8FA096E6EB11E594918994CB35492FDADF0DEBB56EA94695838D8F91F5D5DFDE7E3CB2923CCE9634ACEC9C8C8FAC96E6EB11ECA7E6FBDE57490C24BB6E57A091F22A2413B819CB88C681B2FD34681B2FD3479A5247DFF86052D0E4E3D2AB548FC6A5492582CB2091F21C67D5553CCE235DF54ED674FC349A041C6E8175439D2404F81847D8469140BB6E2A6A9F3AA811CEE6673E251A06CBF4D1A06CBF4D1A06CBF4D1AFED4F531AFED4F530FAABB6E5020A9F3AA4473B999CF8946052D0E4E3D2AB548FC6A5492582CB2091F21C67D5553CCB8D77D53B59D3E9B4795D24681B2FD34681B2FD3430920E3690A41C890884AC0984B80CAF1814B43938F4AAD523F1A9524960B2C8247C871FBA6662318DF3CF37B996BF6ED7DF861241C6EBEA120E448442560009701F7BCAE923CD293C7CD2923EFE356A041C6E81048F9155C4E56308F34A4F0D26BD76DCAF5D50E749020E83086155DB7282A120E44848E77330970189D05552B2EB8DF7D20BDDA3E9BC6915EBB6E260A873A48104EE0613E051AB502EDB940BA41C892E47C4CE3EC3C185576DCA0A84839121239DCCC25C063F6BC3CB631BE799737F117EDDEDB90FA4BB6E57D42A1CE91104EE0613E051E575712A0AAAA7996DCEC2476B3A9F55A31D541C6D5348F915113958D329711946AD40BB6E502E907224B91F1338CFA5A565EC46FBEA85EED1C6055576364552B548FC6A549544EE8AE91F21C79A5244EBE9695979C6FBEA85EED29D3787D25DB71215439D22209DC0C27C0A76F7BCAE9231329966A925FB5BE1BD76ADD528F653F363D94FCD8F33A58FBFF0D7F29966A925FB58A17BB56EAF0D0329966A9543BB9417BB57E98C4CA659A5557ED6F85EED6EF54A34AC1C6C7C8FAEAEFEF3F1E59491ED5FE146AB9D9390C7D04B73758F0D0315E7AA9243BB9476B3B7E98FBFF0F2BAB8FB08D7F15E7AA955FB58A76B3B6EAF1D032996695243BB9417BB57E98D5754C3C4FEBFE59945CDFC56FB92B6FDE349C1C7C7C8FACAEFEF3F1A06532CD2A48777282F76AFD3EF795D24681B2FD34681B2FD34681B2FD3469140838DAA0A873A4809CAC6013E051F7FEE69140BB6E2A6A9F3AA811CEE6673E250C24BB6E24691F22A2413B819CB88CED1A06CCF4D19F5543938F54AD2A3F069554910B228241C810FAA838DD0542A1CE9109CAC6013E051AFED4F531AFED4F53190AA0E36A82A1CE9109CAC6984F814AF13AFAAAA79971BEFAA76B3A7D368D268176DCA04153E755023E2671E575719F554ACBCDB9D8542F7683AAF0FAABB6E5020A9F3AA4473B999CF894681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C6AF5EBB6E26691F22AB904EE0672E231814B54F3388D77D23B59D38D0365FA6FF99FFFC4002A11000103030205040203000000000000000100020304051106211213314051101422413280162442FFDA0008010201013F00FD9A073E83708641EFA59046325433897A2924118C950CC25E9DEEDD15DEB22A6A77F1EE55B756B2DF172A66F555FAA5B5748EE546412B4C81EC83B8B2E3E9F8F74767A75496CE42A3823ADAA2F937C7D2BD5AA8DF3B1EE6630BD8521A511F00030AD956EB55D1F0039612B9E00C94C7878EE88CABEC8200C7F8475355D1D710C3B29EF02BA2CCB2E0A9357CD08E40391E54B7685E1B237F2F2BDC3EB18C847FA54C0B58223F5DD67016A767F4DEEF0A42E3212A9C1126241B2ABB232439A5F1F6A4824A69431EAC25B253C2E3F41746E3BAE87215C6DCDB93381C765268280E785E9FA065CE5922FE3B5B147CB90712A8D2570E6F1C4CC0565A534B42D63BAAC671DD0F8EC5608DC2F92C1F2B87EC84785FB2D9BF00BA7EDDFF00FFC400251100010401040104030000000000000000010002030411051221403210224180144261FFDA0008010301013F00FB76D6A73709A139B8EEF2AA40F95E24F85269DF907785069E18FDC5CAFEDDFC0F407B4D4C8B729849523DA154B53161084AF7BF20AB359F356DC5A830A23B43C9513FAAB518B8DC151D335FC555A518707CA15FB94DF4042C1CA6E222F47DDDAF95A77364350FE27709B69CDF6BC26B848DE15AE1CF4381DAC65413188E426EB2F09BAD1F9085F8F3951EA9106E15B977BF211E5BDA6AC64AC05C2E10217921F6EFFFD9, '1', '2022-03-16 21:51:33', '1', '2022-03-16 21:51:33', b'0'); -INSERT INTO `infra_file_content` (`id`, `config_id`, `path`, `content`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (2, 4, 'e34bbc550bb8491bb64f804d71048799.jpg', 0xFFD8FFE000104A46494600010100000100010000FFDB0043000302020302020303030304030304050805050404050A070706080C0A0C0C0B0A0B0B0D0E12100D0E110E0B0B1016101113141515150C0F171816141812141514FFDB00430103040405040509050509140D0B0D1414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414FFC20011080102010203011100021101031101FFC4001E00000301010101010101010000000000000008090701060A02040503FFC4001C0101000203010101000000000000000000000105020406070308FFDA000C03010002100310000000AA6000000000000000000000000000000000070000000000E81C3A70E8001C03A0700000E8001C2401808000FF000BF9808017F8E12007F8C00A0200040102BE0120C0000BFC000708045D03033802AA794029412BC69C0DFC9B206005261020356037F37E1551D33CB1AA1160BFC00070804553201017F4554D50A002A86AA4582FE0800D51164AA66503FE74CA48B22A85FD1551561552A98AB17F8000E1008AA640202FE8AA8AB00FF0BF98097F490007AB12D2D2920C0DF8F564AC2FE8AA8AB0AA954C558BFC00070804553003013CA0AA9AB1540F2A45A3CA95409B27953CB173C55474CF2C4593CB173C4047F80E9208FA27000384FF0032C387406A0CA8D58554D50D5895A6563526A66A82B06546565A61553541AA1013A0700AAA0000004FE37F03002809E449B22AA5D0303384023572E79F3B250030003CA973C6089FE2026FC3002025FE0003F22FE7CEC9AB9E58B9E6A6795030037F18227F9C26C8E913687E8A504303D48FE9BF916874874C6089FC4863E9E8000E1008CAC7F440C7F4E08195407FC4006A8404E9C1A932A1AA22D1AA0D39AA8AB8FE99492B8BFC708045FE000384023033D494A04A8CB0CA0FA261812401E5C7F8DF095A57F2400EA88115E885E3542585A530037F182384022FF0001C20115F0C00A02791303384023572A808794FCF0666B0E8F062D2B32107EC9B23A66A679724015FCC00D4C9B47D3D0001C201169CCA86B0CA0404E92ACAA62AC5F13FA4FF0033E3965D84EBBF58CCFE4D5B671FF2C44C8B03566563FA2AC6AA5501023A5540003F22FE4D93531D303003001582E79164BE50FEA463B41BD9EF975F7FD2DB5FD2F595FBE75D57FC0991F2754009583545262178D51498F5C0007E45FC8B45CF22C9AB0FF1BE1810AA9368A8312CC516DE535BBDEBA973F7DD6D7647E5FD2B29EC9C8FA0FBC4B2CB19AE55315601FE17F26B9400C00FA27000384FF22C0D58D48FE8808FF1014B4A4AD1C786F9C8DB79BF1DEDBC6DD53FBFACDCF1FF001F41FF0027D57C5D84EC6A13EDAC72C3533541AA101032C32A32B3E944000E1200754408C00B4A6006003FC60007874379C6DAFE7F2EFA09F58C5FACAFD4F98DE553F4BF11437B2A4C1A41164D4CAA640203E9E89B26A6501000384022FF001941EA480C3A44DA1FA2BF9D10F1C6A5D9FF002FCEEE7F92B36330DEC3D671B65FC5EE9C96CBD0E9C1437F2BF8BF01EA8CB0C0490057F2948001C2010FE9961958AB0FE0155055055CFF00B4CB59187FA6CB4BC59A4C69713FEB44FEFE9094C01FF2018FE9AA116C7F4E1D2AA0001F917F241969CCACCA495E7AA3E89C9567AB024095EC5D0FEE1EE1A610F10601FE382043FA6FE06006005800003F22FE7961562AA1E449B26A650127F1218F225531561FD32C1A910235326D1F49879522C8FE8810FE9404E1008BFC000709FE2B065635007040CFA503840335632B1A835332B32C2A899512B4D58D50554CB07F0E954C08045FE0003848015837F37F3D41960D48951BF9218FA4C30337C3D719392BCA4C4831FD35635422C0AA9D1803D480FE9404000FC8BF9E58000D509AC6FE745FCC046A46A8F522585272178FF0BF8FF120CC0CFA4C3CA9164BA048527F9F55000070804354006566A85532561C035432B1AA1AA1543551023803FC6544AD2D399512B4AA64AD1A82AA8001C20115F090605531562AA115C09FE5283D58969EA400AA6749046FE55022C801818E91A98E98C10001C201154C80405FD1553CA0EA9008AFE2025CF3CA8809EAC9583023A43A64832D31EA895A30070D588B27963E9E8000E1008B4E20203542AA55422C13FCA002AC5A52568D48AB8AA1400D50AA64021AA32B2D39C10032C1A732B2808001C2010001E5874CAA87CAB9D18032C37C1FD26C95F4E1BE9E549AE6025A62181EA47F85FC7F8C00408BFC000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007FFC4004210000003060209020503030203090000000607080004051415160917010203111318195785253810202147671226272829464175223739303142505160616383FFDA0008010100011200FF00C8F7B6F6DEDBDB7B6F6DEDBDB7B6FF008EFF00868D3A34FCBBDBF568F8FEAD0DBDB7B6F6DFF32F05E27A12CABC740D070E28A1B86C8CAB97545539DCD6EA8AA73B9ADD5154E7735BAA2A9CEE6B614EA84CE5279A398C26B8A8B4B9065E0BC4F4259578E81A0E1C514370D919572EA8AA73B9ADD5154E7735BAA2A9CEE6FC5782F13D09655E3A0683871450DC364655C97919E27265278E4640F89D18470C91947DC2995099CA4B3433184D715169721F2F545539DCD6EA88A73B98C830CF139CC93C0E321844EB22389CF4DBEAF233C4E4CA4F1C8C81F13A308E192328FBD5114E7731BAA2A9CEE6B7545539DCD6EA8AA73B9ADD5154E7737E6C51BDF599BE318D0344324C0122631194528E1C86F0A69F7AA2263EE5B75444C7DCC6C51BD8999BE31B032FBD9E1197820E3D0E955E3A190380F5A0DC4A4655F50720E3D09655E06190C40F450DC367A69F4F154658A6EA2E6309ADDAD71E41950A5D335671E82638C9C0CDE05C09256951A542A88B259C450989C2704D781902495A54170A84BC6726CCD1CC70CDB95AA5C8319EBCC8B2607513070C4714611C378534E49752E99A8C4F40C9C671866CF2E03735558D62ACA80B152795F97026B8A8B549F62BD061E8738121A310681EB21C8971655F550AA22C967114262709C135E064092569505E974A73B66DD2E94E76CD92EA5D335189E81938CE30CD9E5C06E6AAB1AC55D50962A4F2BF2E44D71516A93EC839789164B250030346238A288E1B3D34E58A37B13337C636065F7B3C2319EBCC8B2607513070C4714611C378534E5D51131F73188D54458A92ADE5C09AE2A2F027DB146F7D666F8CF9B146F7D666F8C6C51BD8A19BE33E38A37B13337C636067F7B3C232A0C55F96C3D04C5C6575C74595F52FA32E4437CE7593B86D675B53AC9708DE5B48B0D1735AB8A8B35EA785CFBEA2CFC9B6ED1B99506151CC91E82631B346DCAD4B7A62A223799222C4C5CD6ADDAD4AFA9AE4437C98593BC6B78DCB3AD85CFB142CFC9B25DC29F96C3D03463668DC74599F4CD1BB737D195111BCC9116262E6B56ED6A57D4D72A1BE4C2C9DE36BC6E59DF8628DEC4CCDF18D819FDECF08D8A2FBEA337C67C3033FBD9E11B146F7D666F8CF9B146F7D666F8C6C51BD8999BE33E38A37B13337C636067F7B3C23628DEFACCDF18DD5154E7735B0A754267293CD1CC6135C545A5C832F05E27A12CABC740D070E28A1B86C8CAB96171EFACB3F26DFF7EAB2F05E27A12CABC740D070E28A1B86C8CAB920E5E27A1D2ABC0C0D188E2B41B894F4D396397F64FCDB15EBCCF4260090D0703471460E4378B2AE4BC8CF1393293C723207C4E8C238648CA3EF544539DCC6EA8AA73B9AC839789E874AAF030346238AD06E253D34E58E67D93F37F0C51BD8999BE31B033FBD9E11B146F7D666F8CF86067F7B3C23628DEFACCDF19F3628DEFACCDF18DD51131F731BAA2263EE6375444C7DCC65E0BC48B3A5280E81A0E1C5684712919572C0CFEF67846C51BDF599BE3192EA5D335189E81938CE30CD9E5C06E6AAB1A23551962A4AB797226B8A8BC09F633D799164C0EA260E188E28C2386F0A69C8CF4187A13004898C46407A30721BC29A7D2352D99CA46B797219B8A8BC09F64BAA88B2462450689C38C4D679901A9AAAC14CF4187A13004898C46407A30721BC29A7D2392E19CA42B797219B868BC19F6340AE131303B89838650CA308E1BC29A72C51BD8999BE31B032FBD9E118CF5E6459303A898386238A308E1BC29A72C51BD8999BE3188D4BA66A91ADE5C866E2A2F027D8D02B84C4C0EE260E194328C2386F0A69CB146F62666F8C6C29D509629B33473184D6ED6A9720DD51131F731BAA2263EE6375444C9DCB65E467860E655E391903E27590E44A4651F7E554185473267A098C6CD1B72B52BE9BD0CBF3637433FCD8DD0CBF3637432FCD8C8650D72617B7EF5BC6E592654185473267A098C6CD1B72B52BE9B8A27B14337C636067F7B7C232A0C29F9923D04C63668DB95A96F4CC51BD8A19BE3190D2E4E4C2F6DE0ABC2E59265447973247A098C6A2DBD5A95F4C5438AC732645898B9CAEB72B52BEA781A7DEDF08CA830A8E64CF41318D9A36E56A5BD355062AFCC9916262E72BADCAD4AFA92195C9C985EDFB2AF0B96459511E5CC89E82631A8B6ED6A57D33145F62866F8C6C0CFEF6F84654185473267A098C6CD1B72B52DE9AA888DE6488B131735AB76B52BEA5D0D3F3637432FCD8DD0CFF0036B7434FCD8DD0CBF36FFD862B0A84CE4DB96197226B76B5549F64186789CE649E07190C2275911C4E7A6DF57919E27265278E4640F89D18470C91947DC2995099CA4B3433184D715169721F0340AD0C9CE0489838650BAC07225C29A725CBA7A6D595CBA7F1DDE73D5D6EA8AA73B9AC6815A1939C0913070CA17580E44B8534E5D2ED31F6D1BA5DA63ED9FC08D54466A6DADE5C89ADDAD7027D90619E273992781C643089D6447139E9B7D6C2992F162A4F34731833715169720CBC8AF0C132ABC720D07C328C1C8648CA3919EBCCF439C0913070C871590E44B8534E446AA33393756F2E44D6ED6B833EC830CF139CC93C0E321844EB22389CF4DBEB62B0A88CE4D995F97226B76B5549F6EA8AA73B9AC839789E874AAF030346238AD06E253D34E58ABAA133936657E5C89ADDAD5527DBAA2A9CEE6FCBBF768D3A74FF00A319EBCC8B2607513070C4714611C378534E4C46A5D33548D6F2E43371517813EC6815C262607713070CA194611C378534E5D51131F73188D54858A91ADE5C89AE2A2F027D8CF5E6459303A898386238A308E1BC29A725E45789CE649E390683E195911C4E4651CB0A74BE66A6CCD1CC60CDBB5AA5C86933D799164C0EA260E188E28C2386F0A69C9B1574BA67292CAFCB90CDC545AA4FB25D54459231228344E1C626B3CC80D4D5560A830CF0C132ABC0E321844E8C1C864F4DBEAE5FEE476572E7FC8965CF5798D02B84C4C0EE260E194328C2386F0A69C90720E3D09655E06190C40F450DC367A69F4F15445926DA2E6309ADDAD71E4197919E18399578E4640F89D64391291947DE974A73B66D853A5E33935E68E63866DCAD52E418CF5E6459303A898386238A308E1BC29A7233D061E84C01226311901E8C1C86F0A69F7034FBDBE118CF5E6459303A898386238A308E1BC29A726C5612F19CA4B2C32E43371516A93EC6815C262607713070CA194611C378534E5F2E28BEFA8CDF18C9708DE648F40D1735AB76B535EA5F4C183F31664B2A23CB9923D04C63516DDAD4AFA6F432FCD8DFF45FFCC5992CA88F2E648F41318D45B76B32BE9897B157E64CF40D17395D6E56A67D4F768FD2CA830A8E648F41318D9A36E56A5BD31511E5CB69162631A8B7151657D33AE57E136E46BA927F5197B65D5E9FE35D0CBF36B21A435C98DEDFBDAF1B96499506151CC99E82631B346DCAD4AFA6AA23CB96D22C4C63516E2A2CAFA6AE35CBCE7D93FB2ACEB6A7592F614FCC99161A31B346DDAD4CFA625EC55F9933D0345C6575B95A9AF525CAB93931B27F655E372CEB7233D493FA8CBDB2EEF4FF001A54446F32245898B9AD5BD5A95F5343286B930BDBF7ADE172C8B628BEFA8CDF19F0DDA1B145F7D66778CF9B146F7D666F8C62B8D1131303B860C41B14A308E1BC5957D3C55199AA468B98C26B8A8BC790641C8388B3A528018643103D6847129E9A7DEA8AA73B9AC792A333949D1731C4D71D178F21F02BD061164C0EA1A310701E8C2386F1655F7768D1ABB99782F13D09655E3A0683871450DC364655C92EAA2335671E819270E3135E05C0926AAB05E97698FB68C5715A19260090D0703617470E4378B2AE4839789E874AAF030346238AD06E253D34E5BBE9B99782F13D09655E3A0683871450DC364655CB146F62666F8C6C2992F162A4B34331833715169720C5715A19260090D0703617470E4378B2AE585C7BEB2CFC9B6397F64FCDB15EBCCF4260090D0703471460E4378B2AE4BC8CF1393293C723207C4E8C238648CA3EE14EA80CD5279A398C26B8A8B4B90D067A0C22CE71D44C623103D644712E14D3EFC3146F7D666F8CF9B146F7D666F8C65E45789CE649E390683E195911C4E4651CB0A64BC6726DCD0CC60CDBB5AA5C87C0D0344324C0122631194528E1C86F0A69F7AA2263EE5B75444C7DCCF8118974CE5255BCB80CDC545E04FB25D54459231228344E1C626B3CC80D4D5560B07C2C14ABFC4DD9D36E0476856C36DAFF00A35DF50C22F7446EE22CD4BC35C58FE21929C651D860061479CE2330DFC711A833E4625FF5B8F44F05F73442DD13C19DCE10B270275C13992E1D2EDC222F91974834C70DFB6D137777D96BED36BA769B3D9EAE8DFADAF8A82663254D6C8ADD72CC3B73EA422A73BA52EAA12C91891219270E31359E6386A6AAB05418678609955E07190C227460E4327A6DF572E8EA496572E7FC8965CF57992EAA22C9189141A270E31359E6406A6AAB055E0BC48B3A5280E81A0E1C5684712919572DCC839789164B250030346238A288E1B3D34E49752E99A8C4F40C9C671866CF2E03735558D2E5FEE4B6572E7FC8965CF5798D02B84C4C0EE260E194328C2386F0A69CBE5C517DF519BE319511E5CB71162631A8B7151657D310D2E4E73AF6FD95675B523F054446F32445098B9AD5BD5A95F53E867F9B5BA19FE6DF86067F7B3C23628BEFA8CDF18CFF00FAB5DD769A9A9AFA767ADADA75767A35F63B2D4D86CF46CF67ABA353535746ED1AA288FBB85035158D3D7EA9587BAED5EF6AC994EF8A1DA1A103C4760BA81E8DC1E2FB686BCB83E3EEC21EE9B77979DAEA6C361B1D4D3B4DA6D4A050702394482F83C19D5FB61B40EED1DF46B6DB733A3B6AC39E1F75767A74E8D8EB69D5DB68D9AA0C2A39933CC4C63668DB95A95F4CFAB21A5C9C98DEDBC1578DCB24CA88F2E648F41318D45B7AB52BE99D0CBF3632E4435C98D95FBD6F1B967592F614FCC91161A31B346DCAD4D7A62A223799222C4C5CD6ADEAD4AFA9FF00D187F31664B7235D497FA8DBDB2EEF4FF1AF9376FD1A7469633D06116738EA26311881EB2238970A69F52EAA2335671E819270E3135E05C0926AAB055CBFDB6ACAE5CFF8EAF49EAF320C33C4E7324F038C86113AC88E273D36FABC8CF1393293C723207C4E8C238648CA3EE14EA84CE5259A398E26B8A8B4B9065E0BC4F4259578E81A0E1C514370D91957241857860E655E07068C219590E44E7A6DC88D4BA5926DADE5C866DDAD7027DB146F7D666F8C67AD3F4FFF004D9B6FFA31FE3672D806A260972D8ED622258FC35E1DF62EB037B1D02A3A237B0DE80EEDDDE2FB7D8EDD850361D98908B523A1C82B8439EF69B3A8C4137C2E16F8231D8ADDF6BB2D488C45E7610FDBB96E67AFA6D1E74FFF0056CD9772F23D09655A390703471460DC364655CBA5DA63ED9B74BB4C7DB36E97698FB66DD5154E773590CE9EA4B7B7317FC8965C8D098AE2B4324C0121A0E06C2E8E1C86F1655CBAA2A9CEE6B219D3D496F6E62FF912CB91A1315C5686498024341C0D85D1C390DE2CAB97C9BF768D3A74FF00A319EBCC8B2607513070C4714611C378534E4830CF0C132ABC0E321844E8C1C864F4DBE91AA88B25235BCB9135C545E04FB628DEFACCDF18C9752E99A8C4F40C9C671866CF2E03735558D75444C7DCB62B8D10C9CE04868C41B14AC07225C5957DEA8898FB98CB9B4F524B2B973FE44B2E7ABAC6815C262607713070CA194611C378534E58297D0AF33BFDE9C1A04788E824696C204614B3A3BBDED3F4E9D905841B1354C7797F7A803F8D611187E717E7A763FE1AE645449E2C6D9EA43352201C88BF6D2181C2A41B1F7D154076C03DBC2F650FD83B6BBB8DE16338BC38BE0D9A0E8F1BE3908D9687989B0C94582804F102768ABDBF6BBCC69CE7DCB640B1F408CD0E6A08434FD5283BDEA6ED8BCAED41A7A1D2AB872310681EB21B8948CABEB6067F7B3C23628DEFACCDF18DD2E94E76CDB0A74BC6726CCD1CC60CDBB5AA5C832F041C7A1D2ABC74320701EB41B8948CABEB614CA84B14D99A398C26B76B54B9065E467860E655E391903E27590E44A4651F7E554185473247A098C6CD1B72B52DE99F56434B97930BDFF64DE372C937235D493FA8DBDB2EEF4FF1A54446F32245898B9AD5BD5A95F53E86BF9B592E11BCB69161A2E6B5715166BD492E11BCC91E81A2E6B56ED6A6BD4D0D21BE4C2F6FDED78DCB24D8A2FBEB337C6360A1FF002C4CEFF7A7065B503DABFC6A0FA8EBB5D7D8BEC503F157275DB13C58D0800198840C42FB078BE873D9ED767148AC3A3FB533A18268A06844328C425E9F364F5108480A3E25026CE1B121088A030578D9EBEF098049D8EC2843A1DDFB61AAED06D4D8EBBB6D98322E108C2000009BD43363B77A09C43650D866C36F1B8A244493128A4621CEF1E7D0942F8921D72BF09B2A0C2A396C22C4C63668DC74595F4DC0CFEF6F84654185473267A098C6CD1B72B52BE9AA88F2E5B48B1318D45B8A8B2BE9BD733F09B75CDFC24CA830A7E5B08B1318D9A371D1657D310D21BE73AF6FDED675B524CA888DE5B4F4131735AB8A8B2BEA7F2AF05E27A12CABC740D070E28A1B86C8CAB974BB4C7DB36C55D2F1629B32BF2E4336ED6AA93EC57AF33D098024341C0D1C518390DE2CAB92F233C4E4CA4F1C8C81F13A308E192328FB853AA133949668E6389AE2A2D2E419782F13D09655E3A0683871450DC364655C8AF418459303A868C41C07A308E1BC5957DC5595099C9B32BF2E04D6E56AA93EC9752E964B388A0D1C671866F03204935558D609FF00F2C4CDFF007B70654AE9BF685AC4765AFB39A7314EC7535765A9A346AE8DDA3468D1A3FF004DDF4D3F4DFF00FC010F37DD018D47D1A429EF61AFADB6D7D4D47D0B8A21A31826C22D09DAEBEDDC36FBF87B40E47A22FCAD42C1C0FB83DED76F05143CEDA29AE62806046784A361513B954E031376D9EC1F1D3A5DA64EDA3628DEC4CCDF18C462A23393656F2E04D6ED6B813EDD5154E7735B146F62666F8CF89A056864E70244C1C3285D603912E14D392E5D3D36ECAE5CFF008EAF49EAF325D4BA592CE22834719C619BC0C8124D55635F2E28DEFACCDF19F03C5511649BA8B98C25B76B5C79062B8D10C9CE04868C41B14AC07225C5957D418678609955E07190C227460E4327A6DF572FF723B2B973FE44B2E7ABCC6815C262607713070CA194611C378534E4839071E84B2AF030C86207A286E1B3D34FBA3E1861A76311368087AE263076DCDBBFC49D1EDDB40AC030B183EC31F1FF0067ADB57886EB6D35DD74EB95FB2FAF0DF75F57469FF4DA15EF3BFF00E07ED9E9D568DA628BBB461F63213106D431117DD7D3B47BD9B881044E90F77D47ED4D9BDBE6AECF5746DB6A98837B370DA98D16DBB8EA6C226F82678D8ED36BB6DAEA6D36EFBABABADA35B4EA6AECF5759B143F7D065F8C641C838F425957818643103D14370D9E9A7DDFA3F4EF633D799164C0EA260E188E28C2386F0A69C8AF5E6459CE3A868381C38AC88E25C595723C5521629BA8B98C26B76B5C7906EA8898FB98CBC17891674A501D0341C38AD08E25232AE5B99072F122C964A006068C4714511C367A69CBE5C517DF519BE3192F62AFCC99E81A2E32BADCAD4D7A96397F64FCDB25EC56396C22C345CE575C7459AF534B846F3247A068B9AD5BB5A9AF53FA60C3F98B325B91AEA4BFD465ED9777A7F8D6E65CAB97930B2B4595785CB3ADD737F09B4331BB707B89EC3651727B6EEB0AD7D3B9EB6900C4353DC51C364F0EE6B383B6CB5F46FE07500203BB61E6191D4110006DEE3E2114384260EE9FA38EF9CFF901DDB0F3034E9088FC38E91E0F89DC22D077BFD7C07CD617C335F67AFABB18BBBEA6BEB7FE2856DF51EF4EAEC1CF5769ACEDFAB89B67A53F854732479894C6CD1B72B32BE9A97B157E64CF40D17195D6E56A6BD4B7E8D1A37696C513DF5999E3192F614FCB61E81A31B346E3A2CCFA62E5435CE7595FBDACEB6A7595111BCB69E8262E6B57151657D4FA197E6C6E869F9B1BA197E6CF9776FD1A7469633D06116738EA26311881EB2238970A69F70B8F7D659F9363C52E162A4A8B98E19B8A8BC7906E97698FB66CA852E9648C48A131C64E066CF320352B4A8D1E2A90CE52345CC6135C545E3C8315EBCCF4260090D0703471460E4378B2AE4D8E67D93F36C8390711674A50030C86207AD08E253D34FABC1071164B2501D0C81C07A288E1B232AFBFAB4B20F416461D49440E3318826B024894F4D3E25650C602C53EC30501BB1FBACBB11CD5520F8AAA5D2C935E57E5C86A815AAA4FB618900717E43A5B6DB6DB1DFAFAF526D40C43B534EFD0EFA37B62A2A60CA4CB95FA0B5125B75AAA4FB7545539DCD6C2E3DF5967E4DB1575446726CCAFCB9135BB5AAA4FB25D4BA592CE22834719C619BC0C8124D55635D5154E7735B0A754267293CD1CC7135C745A5C8319E8308B39C7513188C40F5911C4B8534FABC8CF1393293C723207C4E8C238648CA3EE14EA84CE5259A398E26B8A8B4B9065E0BC4F4259578E81A0E1C514370D919572F937EED1A74E9FF4633D799164C0EA260E188E28C2386F0A69CB146F62666F8C6C0CBEF6784F81A068864980244C62328A51C390DE14D3EAE5D1D492CAE5CFF916CB9EAF325D54459231228344E1C626B3CC80D4D5560AD8AC25E3394965865C866E2A2D527D8D02B84C4C0EE260E194328C2386F0A69C9B033FBD9E11B146F7D666F8C6542A88B259C450989C2704D781902495A54150D7F6DABDB98CFE3ABCE4682DD51131F73192EA5D335189E81938CE30CD9E5C06E6AAB1A5CBFDC96CAE5CFF00912CB9EAF31A057098981DC4C1C3286518470DE14D391A068864980244C62328A51C390DE14D3E91AA88B15235BD05C89AE2A2F067DB146F7D666F8C6542A88B259C450989C2704D781902495A5417A5CA9CED9B25D54459231228344E1C626B3CC80D4D5560BF0C51BDF599BE33E654185473247A098C6CD1B72B52DE98A83157E64C8B1317195D6E56A57D490D2E4E4BEF7FD9578DCB22DD737F09B73C9D493FA72B272EAF4FF25FA60C3F98B3259511E5CC91E82631A8B6F56A57D337B7D1B145F7D66778C6541853F2D845898C6CD1B8E8B2BE9886972725F7BEE055E372C937235D497FA8DBDB2EEF4FF1A4BD853F2DA7A068C6CD1B8E8B33E998E57D93F36C97B0A8E64C8B0D18D9A36E56A6BD315111BCC8916262E6B56F56A57D4D0D21BE4C6F6DE36BC6E5926C517DF599BE3195062B1CC9916262E72BADCAD4AFA9E067F7B7C23628DEFACCDF18C970F2E5B4F40D18D45B8A8B35E99D733F09B7237D493FA8CBDB2EEF4FF1ADEDBF46ED2D8A2FBEA337C67CCBC1789E84B2AF1D0341C38A286E1B232AE4830AF0C1CCABC0E0D18432B21C89CF4DB962AE97CB14DB95F97219B76B5549F641C8388B3A528018643103D6847129E9A7D542974B246245098E327033679901A95A54690D7F725BDB98CFE45B324682DD2ED31F6CD9072F13D0E955E06068C4715A0DC4A7A69CB1575426726CCAFCB8135BB5AAA4FB1A068898E71DC4C62328A5644712E14D3E9A056864E70244C1C3285D603912E14D3974BC4C9DB462B8AD0C93004868381B0BA38721BC5957263C92E962A4A8B98C19B8A8BC7906542A88CD4627A0989C2704D679701B95A54157919E27265278E4640F89D18470C91947DEA88A73B98C9752E964B388A0D1C671866F03204935558D74BB4C7DB362352E1629B6B797019B76B5C09F6C51BDF599BE33E1A34FE9FAE862BD799E84C0121A0E068E28C1C86F1655CBAA2A9CEE6B7545539DCD64BA974B259C45068E338C3378190249AAAC6BE4DFBB469D3A7FD18CF5E6459303A898386238A308E1BC29A72EA8898FB98DD51131F731BAA2263EE6375444C7DCC623551962A4AB797226B8A8BC09F65E0838F43A5578E8640E03D68371291957D542A88B259C450989C2704D781902495A54170A74BC6726CCD1CC60CDBB5AA5C832F041C7A1D2ABC74320701EB41B8948CABEE171EFACB3F26D8E67D93F36D85C7B132CFC9B2F22BC4E7324F1C8341F0CAC88E272328E4863FB6DDEBCC5FF001DDE7234262B8D10C9CE04868C41B14AC07225C5957DE974A73B66D853A5E33936668E63066DDAD52E4197820E3D0E955E3A190380F5A0DC4A4655F57915E27399278E41A0F865644713919472E976A73B68C6815C262607713070CA194611C378534E4681A2192600913188CA29470E4378534FA46AA22C548D6F417226B8A8BC19F6C51BDF599BE318D0344324C0122631194528E1C86F0A69F715854258A92CB0CB9135C545AA4FFCF8A2FBEA337C637432FCD8DD0CFF0036B7432FCD8CA830A8E5B08B1318D9A371D1657D37032FBD9E11B737235D3737A8CBD7316CBFF1AEB97F84DBAE6FE1264BD85472D87A068C6CD1B8E8B35E9B8E67D93F36D85CFB142CFC9B7D197221AE73ECADC36B3EDA9E64B846F2DA45868B9AD5C5459AF52EB9BF84DBAE5FE136EB9BF8499511E5CB71162631A8B7151657D310D2E4E73AF6D164D9F6D493628BEFACCEF18CA888DE6488B131735AB76B52BEA48690D72637B7EF6BC6E5926C517DF599DE31B144F62866F8C643686B9CFBDB78DACEB6A49BA197E6DF9B146F7D666F8C65E46789C9949E391903E274611C324651F7AA229CEE637545539DCD6C51BD8999BE31B032FBD9E13E09755119AB38F40C9387189AF02E049355582E2AE978B14DB95F97219B76B5549FF820E5E27A1D2ABC0C0D188E2B41B894F4D396397F64FCDB15EBCCF4260090D0703471460E4378B2AE5D5154E7735BAA2A9CEE6B7545539DCD6E97698FB66DD2ED3276D197915E18265578E41A0F86518390C9194724BAA88CD59C7A0649C38C4D78170249AAAC148C4BA58A6DADE5C866DDAD7027DB146F7D666F8C6EA8AA73B9ADD5114E77318D03444C738EE263119452B2238970A69F52EAA2335671E819270E3135E05C0926AAB055CBFDB6ACAE5CFF008EAF49EAF320C33C4E7324F038C86113AC88E273D36FBF2E28DEFACCDF18D8A37B13337C67C7146F62666F8C6C0CBEF678465E0838F43A5578E8640E03D68371291957DC51BD8999BE31B468DEC839789164B250030346238A288E1B3D34E4830CF0C132ABC0E321844E8C1C864F4DBE91AA88B15215BCBA135C545E04FB19EBCC8B2607513070C4714611C378534E4839071E84B2AF030C86207A286E1B3D34FB8E67D93F37F0418678609955E07190C227460E4327A6DF572FF723B2B973FE45B2E7ABCC830AF1393293C0E0D184328C23864F4DB96171EFACB3F26C78AA22C537513418C26B76B5C69062B8D10C9CE04868C41B14AC07225C5957D41C838F425957818643103D14370D9E9A7DC55D2F19CA4F2BF2E43371516A93EC975511648C48A0D1387189ACF32035355582E28DEC4CCDF18C46A5D33548D6F2E43371517813EC6815C262607713070CA194611C378534E5F2E28DEFACCDF18CA888DE6488B131735AB76B52BEA5D0CBF36B7432FCDAD8A2FB14337C636065F7B3C236E65418ABF32645898B9CAEB72B52BEA4C97B0A7E6488B0D18D9A36E56A6BD312E11BCC91E81A2E6B56ED6A6BD490D21AE4C6F6FDED78DCB24D8A27BEB333C6375CDFC24CB9572739F64E8B2ACFB6A7BE0A830A7E5B08B1318D9A371D165BD33033FBDBE11BE8D85C7BEB2CFC9B6397F64FCDB25EC56396C22C345CE575C74599F53FA37D3732A0C2A39923D04C63668DB95A96F4CE793A92FF004E564E5DDE9FE4A8690D72617BFEF6BC6E5926541853F3247A098C6CD1B72B52BE9BF2E28DEFACCDF18DD5154E7735BAA2A9CEE6B7545539DCD633D799E873812260E190E2B21C8970A69CB032FBD9E13E3A34FE9FAE862BD799E84C0121A0E068E28C1C86F1655C8AE3444C4C0EE183106C528C2386F1655F7AA229CEE6325D4BA592CE22834719C619BC0C8124D55634830AF0C1CCABC0E0D18432B21C89CF4DB974BB4C9DB46E97698FB66C6815A1939C0913070CA17580E44B8534E44725C2C53756F2E4336ED6B813ECBC1789E84B2AF1D0341C38A286E1B232AE585C7BEB2CFC9B1E2974B252545CC60CDC545E3C832F22BC304CAAF1C8341F0CA3072192328E5D5154E7735B0A754267293CD1CC6135C545A5C832F05E27A12CABC740D070E28A1B86C8CAB915E8308B260750D188380F4611C378B2AFB8ABAA133936657E5C09ADCAD5527DBAA2A9CEE6FF00EE7FFFC4003E10000102050106030703040004070000000203130001041114150512212232331085D4162023346394E4313541245161624260718206305281B1B3D1FFDA0008010100133F00FF0091349A05DB7281054F9D5408F899C681B2FD34681B2FD34681B2FD34681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C681B2FD34681B2FD34681B2FD378E9340BB6E5020A9F3AA811F13386125DB72BD048F9151209DC0CE5C46302969597B2DCEC2417BB41EEE81B2FD34681B2FD3430920E375F509072242212B0004B80C3092EDB95E8247C8A8904EE0672E231A06CBF4D1A06CBF4D1A06CBF4D1A06CBF4D1A06CBF4DEF795D2463AABB6E2A09072242473B9984B80CED1A06D4F4D1A06D4F4D1E69491F7F1AB5020E37408247C8AAE272B1846AD40BB6E502E907224B91F1338C0AAAA7996DDEC2476B3A1D519F4B43938F4A952ADF06A954960B2C82A1CE11815543938F549552DF1AA924910B2282A7CE719F4B54F3396EF6153B59D08D22BD76DC4C150E7490209DC0C27C0A33E96BB1B22955A547E0D2AAAAC77597483902302AA9597B11AEFA417BB471ABD020E36A9A47C8AAE272B181CB88C605550E4E3D52554B7C6AA492442C8A0A9F39C6BFB2FD4C6BFB2FD4C67D2D7636452AB4A8FC1A555558EEB2E907204605552B2F6237DF482F768E349AF5DB72BD75439D24083A0C23CD2923EFE348AF5DB71305439D24082770309F028D036A7A68C0AAA565E71AEFA417BB47D378F2BA4F7BCAE923CCE93C7CD2923EFE35FC579EA5497ED629DACEDBABC349CEC8C863EBA5B9BAC46262BCF552ABF6B7CED67777AA71E5957E1A06532CD2A48777282F76AFD318994CB35492FDADF0BDDADDEA8D27071B1D8FACAEFEF3F1E67571A062BCF52AA877728ED676FD3E38994CB35492FDADF0BDDADDEA8D27071B1D8FACAEFEF3FE1E69491F7F1E594BE1F7F1E5749EF795D2479A5278F9A5247DFC795D24681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C795D5F869340BB6E5020A9F3AA811F1338D2681071BA05D50E749013E0611F611A4502EDB8A9AA7CEAA0473B999CF8943092EDB95E8247C8A8904EE0672E231A06CBF4D1A06CBF4D1A4D020E3740BAA1CE92027C0C23EC3C3CD2923EFE3CAE93C3EFE3CAE93DEF2BA48D036A7A68D036A7A68D036A7A68D26BD071BAF4153E755010E8038FBF8F2BA48CFA5AEC6C8A556951F834AAAAB1DD65D20E408C0AAA565E71BEFA417BB47D378D22BD76DC4C150E7490209DC0C27C0A357A05DB71504839125C8E7733097018CFA5A565E71BEFAA17BB47D378C0AAAEC6C8AA56A91F8D4A92A89DD15D23E438D5E8176DC54120E4497239DCCC25C06275F4B4ACBCE37DF542F7694E9BC3E92EDB890AA1CE91104EE0613E053B479A5247DFC6915EBB6E260A873A48104EE0613E051E694913AFA5A565E71BEFAA17BB4A74DE1F4976DC48550E748882770309F029DA3CD292302AAA9E672DDEC2476B3A11A06D4F4D1A06D4F4D1A06D4F4D0C2A838DD02091F22A2272B181CB88FBDA06532CD2A48777282F76AFD31ECA7E6C7B29F9B1ECA7E6C7B29F9B1A4E0E3E3E47D7577F79F8D032996695243BB9417BB57E98F33A58FBF8D032996695243BB9417BB57E98F33A48D57071B1F23E82BBFBCFC65E532CD2A48777702F76B7BA651AFE532CD524BF6B142F76ADD51F7F1A06532CD2A48777282F76AFD31AFE532CD524BF6B142F76ADD51AB60E363E47D0577F79F8CBCA659A5490EEEE05EED6F74CA3CCE963EFE340CA659A5490EEE505EED5FA631329966A925FB5BE17BB56EA947B29F9B1ECA7E6C7B29F9B1ECA7E6C7B29F9BFF91814B54F3388DF7D23B59D3861241C6EBEA120E44844256000970186125DB72BD048F9151209DC0CE5C46302969597B2DCEC2417BB41E190AA0E36A82A1CE9109CAC6984F814AF1FBA6662318DF3CFB7B994BF6ED7DF8D0365FA68C855071B54150E74884E5634C27C0A578D7F6A7A98D7F6A7A9F0C0A5AA79971BEFA476B3A7D30C24838DD7D4241C890884AC0012E03E19F554ACBD96E76150BDDA087D55DB7281054F9D52239DCCCE7C4A348A041C6D505439D2404E563009F028C0A5AA79971BEFA476B3A7D30C24838DD7D4241C890884AC0012E03E1814B54F3388D77D23B59D38D0365FA68D2681071BA05D50E749013E0611814B54F3388DF7D23B59D38D0365FA6F7B48AF5DB71305439D24082770309F02F0CFA5A565E71BEFAA17BB47D3787D25DB71215439D22209DC0C27C0A768D036A7A68C0AAA565E71BEFA417BB47D378D22BD76DC4C150E7490209DC0C27C0A1F49071BAF4153E754842560039F128CFA5AA799CB77B0A9DACE846915EBB6E260A873A48104EE0613E05E19F4B4ACBD88D77D50BDDA38C0AAAEC6C8AA56A91F8D4A92A89DD15D23E4386155DB7282A120E44848E7733097018FDAF0F2D8C6F9E65CDFC45FA2F6DC87D25DB71215439D22209DC0C27C0A768D5A8176DCA05D20E449723E2671815554F32DB9D848ED6743AAD0C2A838DD02091F22A2272B181CB88C6BFB2FD4C67D2D53CCE5BBD854ED6742348AF5DB71305439D24082770309F028D5E8176DC54120E4497239DCCC25C063EFE348AF5DB71305439D24082770309F02F0CFA5A565EC46FBEA85EED1C3E92EDB890AA1CE91104EE0613E053B7BDE594B18994CB34AAAFDADF0BDDAB754A3F63D3B4FFB975CCFFF004B3519794CB34A921DDDC0BDDADEE9947B29F9B1FB1E9DA7FDCBAE67FF00A59A8CBCA659A5490EEEE05EED5FA651AFE532CD2AABF6B142F76ADD5E1A06532CD2A48777282F76AFD31978AF3D54921DDDC3B59DDEE99C7B57F851A56A98789FD0FCCBC8B9BF8AE76E56DFB47B29F9B1A4E0E3E3E47D7577F79F8D032996695243BB9417BB57E98CBC579EAA490EEEE1EED9DDEE99C6AD9D9390C7D14B737588D0329966A9543BB9417BB57E98D7F299669555FB58A17BB56EA8D5B071F1D8FA0AEFEF3F1A56A98789FD07CCBE8B9BF8AE76E56DFB4626532CD524BF6B7C2F76ADD51A4E0E363E47D7577F79F8F2CA5F1F2CA4F7BCAE92184976DC48D23E4544827703397119DA3029695979B73B0905EED27D578D5ABD071BAF5D20E449710E8008D0365FA68C0A5A565E6DDEC2417BB41D57F0D5EBD76DC4CD23E4557209DC0CE5C47C349A05DB7281054F9D5408F899C6052D0E4E3D2AB548FC6A5492582CB2091F21C6BFB53D4C642ABB6E2A6A9F3AA4473B9A853E253B469340838DD02EA873A4809F030F0D268176DCA04153E755023E2671E694912AFAAA565ECB73B0A85EED04642ABB6E2A6A9F3AA4473B9A853E253B4795D5C7D8469140BB6E2A6A9F3AA811CEE6673E250C24BB6E57A091F22A2413B819CB88C6052D2B2F65BBD8482F7682357AF41C6D304839125C42560009701F1F2BA4F7BCAE921F49071BAF4153E754842560039F128CFA5AA799CB73B0A9DACE87863AABB6E2A09072242473B9984B80CED1A06D4F4D1A06D4F4DE19F4B4ACBCE35DF542F768FA6F181555D8D9154AD523F1A9525513BA2BA47C87157B7681943FDCDA58CED2FF0003384A8184E98E9DFE12B19DEEFC536CC71306699343AA76BDDA8D1C234708A8A59A6A28F54AABCEE3295A569AB68248E5294BFCCED19F4A836F623567950BDDA38C0AAAEC6C8AA56A91F8D4A92A89DD15D23E5386155DB7282A120E44848E7733097018FDAF0F2D8C6F9D65CDFC55FB77B46055576364552B548FC6A549544EE8AE91F21C6935E838DD7A0A9F3AA8087401F86935EBB6E57AEA873A48107418467D2D7636452AB4A8FC1A555558EEB2E9072047ED78796C637CEB2E6FE2AFDBBDB721F4976DC48550E748882770309F029DBDEF2CA58CBC579EAA490EEEE1DACEEF74CE356CEC8C8C8FA096E6EB1E18994CB35492FDADF0BDDAB754A3D94FCD8F653F37C3EFE3CB29607F51DE9CA5797F995E252E128095E7B8984CA7697FD250139948252909A73BCF8CEE2769CF85E72BCA568527610194AF39CE73FE2528AC49B1AA496099A6AA72FD6425295E5BD294ED69DBC3FE10995E45BB2FE25398DEDFDE739FF31A06532CD2A48777282F76AFD3E1AAE0E363E47D0577F79F8CBCA659A5490EEEE05EED6F74CA3D94FCD8D27071F1D8FAEAEFEF3F1A06532CD52A8777282F76AFD318994CB35492FDADF0BDDADDEA95AF1FB1E9DA7FDCBAE677FA59A8D2B54C3C4FE83E65E45CDFC573B636DFB7BDABD7A0E3698241C892E212B0004B80C6052D0E4E3D2AB548FC6A5492582CB2091F21C7EE99988C637CF3CDEE65AFDBB5F7E1849071BAFA84839121109580025C06184976DCAF4123E4544827703397118C0A5A565ECB73B0905EED0469340BB6E5020A9F3AA811F13387D541C6E82A150E74884E563009F028CFAAAA79971BEFAA76B3A7D368F2BA48FF00BE5E14E52963266049E42E5796E2729CE76FE4A72B0CA73BDB6A3DBE330A74D2B727F1C853BDE7FACB84AD3BECDDB2A2AF2025BC694913404A523DDDC9F35B7665C62F27524E9A46204A87EA247350E72BFEA0DF87FDC51A4502EDB94082A7CEAA047D671AFED4F531AFED4F531AFED4F531A06CBF4D1FB5E1E5BF93F22C39BF8A8772F6DC8C85576DC54D53E75488E77350A7C4A768D0365FA68FDAF0F2DFC9F9161CDFC543B97B6E4642ABB6E2A6A9F3AA4473B9A853E253B7BDA457AEDB8982A1CE920413B8184F81430AAEDB941509072242473B9984B80C605552B2F38DF7D20BDDA3E9BC795D2467D2D7636452AB4A8FC1A555558EEB2E907204681B53D3463AA838DAA691F22A2272B1A652E2328D036A7A68FDAF0F2D8C6F9E61CDFC55FB77B6E43E92EDB890AA1CE91104EE0613E053B78274229A28A467314574AA24A94D407268A4523009DD4BDA366A96651AA56A12A62A8DD9DD8A646986649CA7BB335EE5095E68D32B4AD492A84D39DC46EF148A5294A45619CE2A7E67682CAA6446AA15339B9F0F978EF5AE56B5A2946432DABB384A725F78385F7921782FD256B4E5C6F41B36A2B0954256B9FC202E1CC30D1A7BF3150C4B94E522E1319CBF48D5E81071BA04123E455713E0607E1F7F1E57491AFECBF5319F4B54F3396E76153B59D08D5A81071BA04123E455713958C3C302AAA9E672DCEC2476B3A10C2A838DD02091F22A2272B181CB88FBDA06532CD2A48777282F76AFD3E1AB60E363E47D1577F79F8D2B54C3C4FE83E65E45CDFC573B636DFB4626532CD524BF6B7C2F76ADD51ECA7E6C6262BCF552ABF6B7CF76CEDBAA718994CB34AAAFDADF0BDDADDEA94693838F8F91F5D5DFDE7E3CB297C03F8AA40A9EB11FFE838A0009112469A736493504C4C39653B14A7394F8CA70B8802C549319A694C3993414BDF7E4090CA5212E6B95EE9D624CA03322DD4896107A616DD9CC1DB7198F4C02929A6B23309837219719CA729FE9394B8452593ACAE5123ABA6911D42A5BA92130A4524729094CAD149564926A27906DA6F12739F2818DCB723DABFC28D0315E7AA9243BB9476B3B7E98FBF8D032996695243BB9417BB57E98CBC579EAA490EEEE1EED9DDEE99C7B57F851ED5FE146818AF3D54921DDCA3B59DBF4C6939D919191F5D2DCDD6231315E7A9525FB5BE76B3B6EA9FBDA4D02EDB94082A7CEAA047C4CE35FDA9EA633EAAA9E6711AEFAA76B3A71A4502EDB8A9AA7CEAA0473B999CF8943092EDB95E8247C8A8904EE0672E231814B4ACBD96E76120BDDA08D268176DCA04153E755023E2671ABD7AEDB899A47C8AAE413B819CB88C6052D53CCE235DF48ED674E33EAA87271EA95A547E0D2AA92216450483903C1CDD3553569D748E432FF008AD23DF9CBFF00485E25FA47F78D8FB357A9A79C84B7484E49C8C933039184E45FAEE6F42889A339DA769F298C8A5C65FCCA10E2E20B564D6DF9CA529EE8260B29729CE579A96943CA22E86FCE76DF4C84A5C65FC4E51AFED3F531E69491814B54F32E35DF48ED674FA6D1A06CBF4D1E6949E390AA0E36A82A1CE9109CAC6984F814AF1FBA6662318DF3CF37B994BF6ED7DF8CFAAA1C9C7AA56951F834AAA4885914120E40F7BCAE93C25415554F32DB9D848ED6743AAD18EAA0E36A9A47C8A889CAC6994B88CA185576DCA0A84839121239DCCC25C063F6BC3CB631BE799737F117E8BDB721F4976DC48550E748882770309F029DA356A05DB728174839125C8F899F8E75354EFA412B1CEE8A8768DEE09998EE914A5FA6F6EDC653FE244504129FFF009049CE53FF00E611B2F475273B5CCE9D496EC8F965720984E7C6F38A619260676E2421329CC653FED79DBFBC4E9C4159A69269260332971294B74A728FED3BCE769FFED394E3CAE92356A05DB728174839125C8F899F86915EBB6E260A873A48104EE0613E051A457A0E3699AA7CEAA0212B001CF8946055553CCB6E76123B59D0EA8D036A7A68D26BD071BAF4153E755010E803F0D26BD76DCAF5D50E749020E830F7BCB29635FCA659A5557ED6285EED5BAA3EC235FC579EAA557ED629DACEDBAA313299669555FB5BE17BB56EA8FD8F4ED3FEE5D733BFD2CD4695AA61E27F41F32F22E6FE2B9DB95B7EDE1AB60E363B1F415DFDE7E3DABFC28A5FFC432A951BFF0009952848E7FE37E51B4692A13552FF005B4C061A5E2A1153713DE3101BDA7FC910CA195A29D05260A6E19015AF3FE084A509D31CE729FF007E33B5FF00EB0B4AC7507C39A7C25FDA5FC4BF494A5294A51A06532CD2A48777282F76AFD31AFE532CD2AABF6B142F76ADD5E1E59491A062BCF52AA877728ED676FD31A4E7646431F5D2DCDD6231315E7A9525FB5BE76B3BBBD538F653F363D94FCD8F653F37DED5EBD071B4C120E4497109580025C063CAEAE33EAA95979B77B0A85EED0755E35FDA9EA633EAABB1B22A92A55BE0D52AAA2774575439C23029695979B73B0905EED0755E348A05DB715354F9D5408E773339F12F0FB08D5ABD071BAF5D20E449710E8008D5ABD76DCAF4123E455720E833F0D5EB9071BAF5D20E449610958023029A85FC7A55AA91F8D4C9A6A85964122E0713AFA9AA799C46BBCA1DACE9C799D5786052D53CCE235DF48ED674E340D97E9A3CAEAE30296A9E6711AEFA476B3A719F5543938F54AD2A3F069554910B228241C811A06CBF4D1814B4ACBD96EF6120BDDA08D5EBD071B4C120E4497109580025C06184976DCAF4123E4544827703397118C0A5A565ECB73B0905EED0469340BB6E5020A9F3AA811F133F7B48AF5DB71305439D24082770309F028F34A48FBFF0C75576DC54120E44848E7733097019DA3F6BC3CB631BE799737F157EDDEDB9181555D8D9154AD523F1A9525513BA2BA47C87E19F4B4ACBD88DF7D50BDDA387D25DB71215439D22209DC0C27C0A76F0FBF8F2BA48C0AAA1C9C7AA4AA96F8D54924885914153E738FDD33311FC9F9179BDCCA43B96BEFC681B53D3467D2D7636452AB4A8FC1A555558EEB2E9072047ED78796C637CEB2E6FE2AFDBBDB721F4976DC48550E748882770309F029DA31D55DB71504839121239DCCC25C067689D05552B2F38DF7D20BDDA3E9BC795D24605550E4E3D52554B7C6AA492442C8A0A9F39C6BDB33D4C6055576364552B548FC6A549544EE8AE91F21F8F95D27BDA06532CD2A48777282F76AFD31AFE532CD524BF6B142F76ADD51AB60E363E47D1577F79F8F6AFF0A355D530F13FAEF96651737F15BEE4ADBF78FD8F4ED3FEE5D733BFD2CD465E532CD2A48777702F76B7BA65E3E59491A062BCF5524877728ED676FD31AAE0E363E47D1577F79F8D2B54C3C4FE83E65E45CDFC573B72B6FDA340C579EA5550EEE51DACEDFA63EC2340CA659AA550EEE505EED5FA631329966A925FB5BE17BB56EA8D27071F1F23EBABBFBCFC79652C6BF94CB35492FDAC50BDDAB7547DFC795D2465E2BCF52AA877770ED6777BA671ED5FE14695AA61E27F41F32F22E6FE2B9DB95B7EDE3E594BEF69340BB6E5020A9F3AA811F13387D541C6E82A150E74884E563009F028CFAAAA799C46FBEA9DACE9C6AD5E838DD7AE907224B887400467D557636455254AB7C1AA55544EE8AEA873847ED78796FE4FC8B2E6FE2A1DCBDA35FDA9EA6349A041C6E8175439D2404F81846052D53CCE237DF48ED674E1849071B48520E4484425604C25C06578C855071B54150E74884E5634C27C0A578D7F6A7A98C85576DC54D53E75488E77350A7C4A76F0CFAAA565E6DDEC2A17BB41D578C0A5AEC6C8A54AA96F8D5492AB1DD65D53E7386125DB72BD048F9151209DC0CE5C46340D97E9A33EAA87271EA95A547E0D2AA9221645048390235FDA9EA633EAAA9E65C6BBEA9DACE9F4C795D278E9140BB6E2A6A9F3AA811CEE6673E251A06CBF4D1A06CBF4D19F5543938F54AD2A3F069554910B228241C81EF6915EBB6E260A873A48104EE0613E051A06D4F4D1A06D4F4D1A06D4F4D1A06D4F4D181554ACBCE35DF482F768FA6F1AB5020E37408247C8AAE272B184605550E4E3D52554B7C6AA492442C8A0A9F39C67D2D53CCE5B9D854ED6742356A041C6E81048F9155C4E56308F2BAB8FB08F34AB87D241C6EBD054F9D521095800E7C4A3F74CCC47F27E45F6F73290EE5AFBF18EAA0E36A9A47C8A889CAC6994B88CA35FD97EA633E96A9E672DCEC2A76B3A11AB5020E37408247C8AAE272B1843E920E375E82A7CEA9084AC0073E251AFECBF530FA4BB6E242A873A44413B8184F814ED18EAAEDB8A8241C89091CEE6612E033B44E82AA95979C6FBE905EED1F4DE3CAE9231D55DB71504839121239DCCC25C067689D05552B2F6237DF482F768FDFF002CA58F653F363D94FCD8F653F36340C579EAA490EEE51DACEDFA63EFFC34AD2F332FFA1F997966F7329CED947B57F851ED5FE146818AF3D4AAA1DDCA3B59DBF4C7D84799D5F86939D9190C7D74B737588C4C579EAA557ED6F9EED9DB754E3DABFC28F6AFF0A3DABFC28CBC579EAA490EEEE1DACEEF74CE355CEC9C8C8FA096E6EB11E594918994CB35492FDADF0DEBB56EA94695838D8F91F5D5DFDE7E3CB2923CCE9634ACEC9C8C8FAC96E6EB11ECA7E6FBDE57490C24BB6E57A091F22A2413B819CB88C681B2FD34681B2FD3479A5247DFF86052D0E4E3D2AB548FC6A5492582CB2091F21C67D5553CCE235DF54ED674FC349A041C6E8175439D2404F81847D8469140BB6E2A6A9F3AA811CEE6673E251A06CBF4D1A06CBF4D1A06CBF4D1AFED4F531AFED4F530FAABB6E5020A9F3AA4473B999CF8946052D0E4E3D2AB548FC6A5492582CB2091F21C67D5553CCB8D77D53B59D3E9B4795D24681B2FD34681B2FD3430920E3690A41C890884AC0984B80CAF1814B43938F4AAD523F1A9524960B2C8247C871FBA6662318DF3CF37B996BF6ED7DF861241C6EBEA120E448442560009701F7BCAE923CD293C7CD2923EFE356A041C6E81048F9155C4E56308F34A4F0D26BD76DCAF5D50E749020E83086155DB7282A120E44848E77330970189D05552B2EB8DF7D20BDDA3E9BC6915EBB6E260A873A48104EE0613E051AB502EDB940BA41C892E47C4CE3EC3C185576DCA0A84839121239DCCC25C063F6BC3CB631BE799737F117EDDEDB90FA4BB6E57D42A1CE91104EE0613E051E575712A0AAAA7996DCEC2476B3A9F55A31D541C6D5348F915113958D329711946AD40BB6E502E907224B91F1338CFA5A565EC46FBEA85EED1C6055576364552B548FC6A549544EE8AE91F21C79A5244EBE9695979C6FBEA85EED29D3787D25DB71215439D22209DC0C27C0A76F7BCAE9231329966A925FB5BE1BD76ADD528F653F363D94FCD8F33A58FBFF0D7F29966A925FB58A17BB56EAF0D0329966A9543BB9417BB57E98C4CA659A5557ED6F85EED6EF54A34AC1C6C7C8FAEAEFEF3F1E59491ED5FE146AB9D9390C7D04B73758F0D0315E7AA9243BB9476B3B7E98FBFF0F2BAB8FB08D7F15E7AA955FB58A76B3B6EAF1D032996695243BB9417BB57E98D5754C3C4FEBFE59945CDFC56FB92B6FDE349C1C7C7C8FACAEFEF3F1A06532CD2A48777282F76AFD3EF795D24681B2FD34681B2FD34681B2FD3469140838DAA0A873A4809CAC6013E051F7FEE69140BB6E2A6A9F3AA811CEE6673E250C24BB6E24691F22A2413B819CB88CED1A06CCF4D19F5543938F54AD2A3F069554910B228241C810FAA838DD0542A1CE9109CAC6013E051AFED4F531AFED4F53190AA0E36A82A1CE9109CAC6984F814AF13AFAAAA79971BEFAA76B3A7D368D268176DCA04153E755023E2671E575719F554ACBCDB9D8542F7683AAF0FAABB6E5020A9F3AA4473B999CF894681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C6AF5EBB6E26691F22AB904EE0672E231814B54F3388D77D23B59D38D0365FA6FF99FFFC4002A11000103030205040203000000000000000100020304051106211213314051101422413280162442FFDA0008010201013F00FD9A073E83708641EFA59046325433897A2924118C950CC25E9DEEDD15DEB22A6A77F1EE55B756B2DF172A66F555FAA5B5748EE546412B4C81EC83B8B2E3E9F8F74767A75496CE42A3823ADAA2F937C7D2BD5AA8DF3B1EE6630BD8521A511F00030AD956EB55D1F0039612B9E00C94C7878EE88CABEC8200C7F8475355D1D710C3B29EF02BA2CCB2E0A9357CD08E40391E54B7685E1B237F2F2BDC3EB18C847FA54C0B58223F5DD67016A767F4DEEF0A42E3212A9C1126241B2ABB232439A5F1F6A4824A69431EAC25B253C2E3F41746E3BAE87215C6DCDB93381C765268280E785E9FA065CE5922FE3B5B147CB90712A8D2570E6F1C4CC0565A534B42D63BAAC671DD0F8EC5608DC2F92C1F2B87EC84785FB2D9BF00BA7EDDFF00FFC400251100010401040104030000000000000000010002030411051221403210224180144261FFDA0008010301013F00FB76D6A73709A139B8EEF2AA40F95E24F85269DF907785069E18FDC5CAFEDDFC0F407B4D4C8B729849523DA154B53161084AF7BF20AB359F356DC5A830A23B43C9513FAAB518B8DC151D335FC555A518707CA15FB94DF4042C1CA6E222F47DDDAF95A77364350FE27709B69CDF6BC26B848DE15AE1CF4381DAC65413188E426EB2F09BAD1F9085F8F3951EA9106E15B977BF211E5BDA6AC64AC05C2E10217921F6EFFFD9, '1', '2022-03-16 21:51:37', '1', '2022-03-16 21:51:37', b'0'); -INSERT INTO `infra_file_content` (`id`, `config_id`, `path`, `content`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (3, 4, 'e9b5fa3c7dbf4a4f96f5568c5eb34f3c.jpg', 0xFFD8FFE000104A46494600010100000100010000FFDB0043000302020302020303030304030304050805050404050A070706080C0A0C0C0B0A0B0B0D0E12100D0E110E0B0B1016101113141515150C0F171816141812141514FFDB00430103040405040509050509140D0B0D1414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414FFC20011080102010203011100021101031101FFC4001E00000301010101010101010000000000000008090701060A02040503FFC4001C0101000203010101000000000000000000000105020406070308FFDA000C03010002100310000000AA6000000000000000000000000000000000070000000000E81C3A70E8001C03A0700000E8001C2401808000FF000BF9808017F8E12007F8C00A0200040102BE0120C0000BFC000708045D03033802AA794029412BC69C0DFC9B206005261020356037F37E1551D33CB1AA1160BFC00070804553201017F4554D50A002A86AA4582FE0800D51164AA66503FE74CA48B22A85FD1551561552A98AB17F8000E1008AA640202FE8AA8AB00FF0BF98097F490007AB12D2D2920C0DF8F564AC2FE8AA8AB0AA954C558BFC00070804553003013CA0AA9AB1540F2A45A3CA95409B27953CB173C55474CF2C4593CB173C4047F80E9208FA27000384FF0032C387406A0CA8D58554D50D5895A6563526A66A82B06546565A61553541AA1013A0700AAA0000004FE37F03002809E449B22AA5D0303384023572E79F3B250030003CA973C6089FE2026FC3002025FE0003F22FE7CEC9AB9E58B9E6A6795030037F18227F9C26C8E913687E8A504303D48FE9BF916874874C6089FC4863E9E8000E1008CAC7F440C7F4E08195407FC4006A8404E9C1A932A1AA22D1AA0D39AA8AB8FE99492B8BFC708045FE000384023033D494A04A8CB0CA0FA261812401E5C7F8DF095A57F2400EA88115E885E3542585A530037F182384022FF0001C20115F0C00A02791303384023572A808794FCF0666B0E8F062D2B32107EC9B23A66A679724015FCC00D4C9B47D3D0001C201169CCA86B0CA0404E92ACAA62AC5F13FA4FF0033E3965D84EBBF58CCFE4D5B671FF2C44C8B03566563FA2AC6AA5501023A5540003F22FE4D93531D303003001582E79164BE50FEA463B41BD9EF975F7FD2DB5FD2F595FBE75D57FC0991F2754009583545262178D51498F5C0007E45FC8B45CF22C9AB0FF1BE1810AA9368A8312CC516DE535BBDEBA973F7DD6D7647E5FD2B29EC9C8FA0FBC4B2CB19AE55315601FE17F26B9400C00FA27000384FF22C0D58D48FE8808FF1014B4A4AD1C786F9C8DB79BF1DEDBC6DD53FBFACDCF1FF001F41FF0027D57C5D84EC6A13EDAC72C3533541AA101032C32A32B3E944000E1200754408C00B4A6006003FC60007874379C6DAFE7F2EFA09F58C5FACAFD4F98DE553F4BF11437B2A4C1A41164D4CAA640203E9E89B26A6501000384022FF001941EA480C3A44DA1FA2BF9D10F1C6A5D9FF002FCEEE7F92B36330DEC3D671B65FC5EE9C96CBD0E9C1437F2BF8BF01EA8CB0C0490057F2948001C2010FE9961958AB0FE0155055055CFF00B4CB59187FA6CB4BC59A4C69713FEB44FEFE9094C01FF2018FE9AA116C7F4E1D2AA0001F917F241969CCACCA495E7AA3E89C9567AB024095EC5D0FEE1EE1A610F10601FE382043FA6FE06006005800003F22FE7961562AA1E449B26A650127F1218F225531561FD32C1A910235326D1F49879522C8FE8810FE9404E1008BFC000709FE2B065635007040CFA503840335632B1A835332B32C2A899512B4D58D50554CB07F0E954C08045FE0003848015837F37F3D41960D48951BF9218FA4C30337C3D719392BCA4C4831FD35635422C0AA9D1803D480FE9404000FC8BF9E58000D509AC6FE745FCC046A46A8F522585272178FF0BF8FF120CC0CFA4C3CA9164BA048527F9F55000070804354006566A85532561C035432B1AA1AA1543551023803FC6544AD2D399512B4AA64AD1A82AA8001C20115F090605531562AA115C09FE5283D58969EA400AA6749046FE55022C801818E91A98E98C10001C201154C80405FD1553CA0EA9008AFE2025CF3CA8809EAC9583023A43A64832D31EA895A30070D588B27963E9E8000E1008B4E20203542AA55422C13FCA002AC5A52568D48AB8AA1400D50AA64021AA32B2D39C10032C1A732B2808001C2010001E5874CAA87CAB9D18032C37C1FD26C95F4E1BE9E549AE6025A62181EA47F85FC7F8C00408BFC000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007FFC4004210000003060209020503030203090000000607080004051415160917010203111318195785253810202147671226272829464175223739303142505160616383FFDA0008010100011200FF00C8F7B6F6DEDBDB7B6F6DEDBDB7B6FF008EFF00868D3A34FCBBDBF568F8FEAD0DBDB7B6F6DFF32F05E27A12CABC740D070E28A1B86C8CAB97545539DCD6EA8AA73B9ADD5154E7735BAA2A9CEE6B614EA84CE5279A398C26B8A8B4B9065E0BC4F4259578E81A0E1C514370D919572EA8AA73B9ADD5154E7735BAA2A9CEE6FC5782F13D09655E3A0683871450DC364655C97919E27265278E4640F89D18470C91947DC2995099CA4B3433184D715169721F2F545539DCD6EA88A73B98C830CF139CC93C0E321844EB22389CF4DBEAF233C4E4CA4F1C8C81F13A308E192328FBD5114E7731BAA2A9CEE6B7545539DCD6EA8AA73B9ADD5154E7737E6C51BDF599BE318D0344324C0122631194528E1C86F0A69F7AA2263EE5B75444C7DCC6C51BD8999BE31B032FBD9E1197820E3D0E955E3A190380F5A0DC4A4655F50720E3D09655E06190C40F450DC367A69F4F154658A6EA2E6309ADDAD71E41950A5D335671E82638C9C0CDE05C09256951A542A88B259C450989C2704D781902495A54170A84BC6726CCD1CC70CDB95AA5C8319EBCC8B2607513070C4714611C378534E49752E99A8C4F40C9C671866CF2E03735558D62ACA80B152795F97026B8A8B549F62BD061E8738121A310681EB21C8971655F550AA22C967114262709C135E064092569505E974A73B66DD2E94E76CD92EA5D335189E81938CE30CD9E5C06E6AAB1AC55D50962A4F2BF2E44D71516A93EC839789164B250030346238A288E1B3D34E58A37B13337C636065F7B3C2319EBCC8B2607513070C4714611C378534E5D51131F73188D54458A92ADE5C09AE2A2F027DB146F7D666F8CF9B146F7D666F8C6C51BD8A19BE33E38A37B13337C636067F7B3C232A0C55F96C3D04C5C6575C74595F52FA32E4437CE7593B86D675B53AC9708DE5B48B0D1735AB8A8B35EA785CFBEA2CFC9B6ED1B99506151CC91E82631B346DCAD4B7A62A223799222C4C5CD6ADDAD4AFA9AE4437C98593BC6B78DCB3AD85CFB142CFC9B25DC29F96C3D03463668DC74599F4CD1BB737D195111BCC9116262E6B56ED6A57D4D72A1BE4C2C9DE36BC6E59DF8628DEC4CCDF18D819FDECF08D8A2FBEA337C67C3033FBD9E11B146F7D666F8CF9B146F7D666F8C6C51BD8999BE33E38A37B13337C636067F7B3C23628DEFACCDF18DD5154E7735B0A754267293CD1CC6135C545A5C832F05E27A12CABC740D070E28A1B86C8CAB96171EFACB3F26DFF7EAB2F05E27A12CABC740D070E28A1B86C8CAB920E5E27A1D2ABC0C0D188E2B41B894F4D396397F64FCDB15EBCCF4260090D0703471460E4378B2AE4BC8CF1393293C723207C4E8C238648CA3EF544539DCC6EA8AA73B9AC839789E874AAF030346238AD06E253D34E58E67D93F37F0C51BD8999BE31B033FBD9E11B146F7D666F8CF86067F7B3C23628DEFACCDF19F3628DEFACCDF18DD51131F731BAA2263EE6375444C7DCC65E0BC48B3A5280E81A0E1C5684712919572C0CFEF67846C51BDF599BE3192EA5D335189E81938CE30CD9E5C06E6AAB1A23551962A4AB797226B8A8BC09F633D799164C0EA260E188E28C2386F0A69C8CF4187A13004898C46407A30721BC29A7D2352D99CA46B797219B8A8BC09F64BAA88B2462450689C38C4D679901A9AAAC14CF4187A13004898C46407A30721BC29A7D2392E19CA42B797219B868BC19F6340AE131303B89838650CA308E1BC29A72C51BD8999BE31B032FBD9E118CF5E6459303A898386238A308E1BC29A72C51BD8999BE3188D4BA66A91ADE5C866E2A2F027D8D02B84C4C0EE260E194328C2386F0A69CB146F62666F8C6C29D509629B33473184D6ED6A9720DD51131F731BAA2263EE6375444C9DCB65E467860E655E391903E27590E44A4651F7E554185473267A098C6CD1B72B52BE9BD0CBF3637433FCD8DD0CBF3637432FCD8C8650D72617B7EF5BC6E592654185473267A098C6CD1B72B52BE9B8A27B14337C636067F7B7C232A0C29F9923D04C63668DB95A96F4CC51BD8A19BE3190D2E4E4C2F6DE0ABC2E59265447973247A098C6A2DBD5A95F4C5438AC732645898B9CAEB72B52BEA781A7DEDF08CA830A8E64CF41318D9A36E56A5BD355062AFCC9916262E72BADCAD4AFA92195C9C985EDFB2AF0B96459511E5CC89E82631A8B6ED6A57D33145F62866F8C6C0CFEF6F84654185473267A098C6CD1B72B52DE9AA888DE6488B131735AB76B52BEA5D0D3F3637432FCD8DD0CFF0036B7434FCD8DD0CBF36FFD862B0A84CE4DB96197226B76B5549F64186789CE649E07190C2275911C4E7A6DF57919E27265278E4640F89D18470C91947DC2995099CA4B3433184D715169721F0340AD0C9CE0489838650BAC07225C29A725CBA7A6D595CBA7F1DDE73D5D6EA8AA73B9AC6815A1939C0913070CA17580E44B8534E5D2ED31F6D1BA5DA63ED9FC08D54466A6DADE5C89ADDAD7027D90619E273992781C643089D6447139E9B7D6C2992F162A4F34731833715169720CBC8AF0C132ABC720D07C328C1C8648CA3919EBCCF439C0913070C871590E44B8534E446AA33393756F2E44D6ED6B833EC830CF139CC93C0E321844EB22389CF4DBEB62B0A88CE4D995F97226B76B5549F6EA8AA73B9AC839789E874AAF030346238AD06E253D34E58ABAA133936657E5C89ADDAD5527DBAA2A9CEE6FCBBF768D3A74FF00A319EBCC8B2607513070C4714611C378534E4C46A5D33548D6F2E43371517813EC6815C262607713070CA194611C378534E5D51131F73188D54858A91ADE5C89AE2A2F027D8CF5E6459303A898386238A308E1BC29A725E45789CE649E390683E195911C4E4651CB0A74BE66A6CCD1CC60CDBB5AA5C86933D799164C0EA260E188E28C2386F0A69C9B1574BA67292CAFCB90CDC545AA4FB25D54459231228344E1C626B3CC80D4D5560A830CF0C132ABC0E321844E8C1C864F4DBEAE5FEE476572E7FC8965CF5798D02B84C4C0EE260E194328C2386F0A69C90720E3D09655E06190C40F450DC367A69F4F15445926DA2E6309ADDAD71E4197919E18399578E4640F89D64391291947DE974A73B66D853A5E33935E68E63866DCAD52E418CF5E6459303A898386238A308E1BC29A7233D061E84C01226311901E8C1C86F0A69F7034FBDBE118CF5E6459303A898386238A308E1BC29A726C5612F19CA4B2C32E43371516A93EC6815C262607713070CA194611C378534E5F2E28BEFA8CDF18C9708DE648F40D1735AB76B535EA5F4C183F31664B2A23CB9923D04C63516DDAD4AFA6F432FCD8DFF45FFCC5992CA88F2E648F41318D45B76B32BE9897B157E64CF40D17395D6E56A67D4F768FD2CA830A8E648F41318D9A36E56A5BD31511E5CB69162631A8B7151657D33AE57E136E46BA927F5197B65D5E9FE35D0CBF36B21A435C98DEDFBDAF1B96499506151CC99E82631B346DCAD4AFA6AA23CB96D22C4C63516E2A2CAFA6AE35CBCE7D93FB2ACEB6A7592F614FCC99161A31B346DDAD4CFA625EC55F9933D0345C6575B95A9AF525CAB93931B27F655E372CEB7233D493FA8CBDB2EEF4FF001A54446F32245898B9AD5BD5A95F5343286B930BDBF7ADE172C8B628BEFA8CDF19F0DDA1B145F7D66778CF9B146F7D666F8C62B8D1131303B860C41B14A308E1BC5957D3C55199AA468B98C26B8A8BC790641C8388B3A528018643103D6847129E9A7DEA8AA73B9AC792A333949D1731C4D71D178F21F02BD061164C0EA1A310701E8C2386F1655F7768D1ABB99782F13D09655E3A0683871450DC364655C92EAA2335671E819270E3135E05C0926AAB05E97698FB68C5715A19260090D0703617470E4378B2AE4839789E874AAF030346238AD06E253D34E5BBE9B99782F13D09655E3A0683871450DC364655CB146F62666F8C6C2992F162A4B34331833715169720C5715A19260090D0703617470E4378B2AE585C7BEB2CFC9B6397F64FCDB15EBCCF4260090D0703471460E4378B2AE4BC8CF1393293C723207C4E8C238648CA3EE14EA80CD5279A398C26B8A8B4B90D067A0C22CE71D44C623103D644712E14D3EFC3146F7D666F8CF9B146F7D666F8C65E45789CE649E390683E195911C4E4651CB0A64BC6726DCD0CC60CDBB5AA5C87C0D0344324C0122631194528E1C86F0A69F7AA2263EE5B75444C7DCCF8118974CE5255BCB80CDC545E04FB25D54459231228344E1C626B3CC80D4D5560B07C2C14ABFC4DD9D36E0476856C36DAFF00A35DF50C22F7446EE22CD4BC35C58FE21929C651D860061479CE2330DFC711A833E4625FF5B8F44F05F73442DD13C19DCE10B270275C13992E1D2EDC222F91974834C70DFB6D137777D96BED36BA769B3D9EAE8DFADAF8A82663254D6C8ADD72CC3B73EA422A73BA52EAA12C91891219270E31359E6386A6AAB05418678609955E07190C227460E4327A6DF572E8EA496572E7FC8965CF57992EAA22C9189141A270E31359E6406A6AAB055E0BC48B3A5280E81A0E1C5684712919572DCC839789164B250030346238A288E1B3D34E49752E99A8C4F40C9C671866CF2E03735558D2E5FEE4B6572E7FC8965CF5798D02B84C4C0EE260E194328C2386F0A69CBE5C517DF519BE319511E5CB71162631A8B7151657D310D2E4E73AF6FD95675B523F054446F32445098B9AD5BD5A95F53E867F9B5BA19FE6DF86067F7B3C23628BEFA8CDF18CFF00FAB5DD769A9A9AFA767ADADA75767A35F63B2D4D86CF46CF67ABA353535746ED1AA288FBB85035158D3D7EA9587BAED5EF6AC994EF8A1DA1A103C4760BA81E8DC1E2FB686BCB83E3EEC21EE9B77979DAEA6C361B1D4D3B4DA6D4A050702394482F83C19D5FB61B40EED1DF46B6DB733A3B6AC39E1F75767A74E8D8EB69D5DB68D9AA0C2A39933CC4C63668DB95A95F4CFAB21A5C9C98DEDBC1578DCB24CA88F2E648F41318D45B7AB52BE99D0CBF3632E4435C98D95FBD6F1B967592F614FCC91161A31B346DCAD4D7A62A223799222C4C5CD6ADEAD4AFA9FF00D187F31664B7235D497FA8DBDB2EEF4FF1AF9376FD1A7469633D06116738EA26311881EB2238970A69F52EAA2335671E819270E3135E05C0926AAB055CBFDB6ACAE5CFF8EAF49EAF320C33C4E7324F038C86113AC88E273D36FABC8CF1393293C723207C4E8C238648CA3EE14EA84CE5259A398E26B8A8B4B9065E0BC4F4259578E81A0E1C514370D91957241857860E655E07068C219590E44E7A6DC88D4BA5926DADE5C866DDAD7027DB146F7D666F8C67AD3F4FFF004D9B6FFA31FE3672D806A260972D8ED622258FC35E1DF62EB037B1D02A3A237B0DE80EEDDDE2FB7D8EDD850361D98908B523A1C82B8439EF69B3A8C4137C2E16F8231D8ADDF6BB2D488C45E7610FDBB96E67AFA6D1E74FFF0056CD9772F23D09655A390703471460DC364655CBA5DA63ED9B74BB4C7DB36E97698FB66DD5154E773590CE9EA4B7B7317FC8965C8D098AE2B4324C0121A0E06C2E8E1C86F1655CBAA2A9CEE6B219D3D496F6E62FF912CB91A1315C5686498024341C0D85D1C390DE2CAB97C9BF768D3A74FF00A319EBCC8B2607513070C4714611C378534E4830CF0C132ABC0E321844E8C1C864F4DBE91AA88B25235BCB9135C545E04FB628DEFACCDF18C9752E99A8C4F40C9C671866CF2E03735558D75444C7DCB62B8D10C9CE04868C41B14AC07225C5957DEA8898FB98CB9B4F524B2B973FE44B2E7ABAC6815C262607713070CA194611C378534E58297D0AF33BFDE9C1A04788E824696C204614B3A3BBDED3F4E9D905841B1354C7797F7A803F8D611187E717E7A763FE1AE645449E2C6D9EA43352201C88BF6D2181C2A41B1F7D154076C03DBC2F650FD83B6BBB8DE16338BC38BE0D9A0E8F1BE3908D9687989B0C94582804F102768ABDBF6BBCC69CE7DCB640B1F408CD0E6A08434FD5283BDEA6ED8BCAED41A7A1D2AB872310681EB21B8948CABEB6067F7B3C23628DEFACCDF18DD2E94E76CDB0A74BC6726CCD1CC60CDBB5AA5C832F041C7A1D2ABC74320701EB41B8948CABEB614CA84B14D99A398C26B76B54B9065E467860E655E391903E27590E44A4651F7E554185473247A098C6CD1B72B52DE99F56434B97930BDFF64DE372C937235D493FA8DBDB2EEF4FF1A54446F32245898B9AD5BD5A95F53E86BF9B592E11BCB69161A2E6B5715166BD492E11BCC91E81A2E6B56ED6A6BD4D0D21BE4C2F6FDED78DCB24D8A2FBEB337C6360A1FF002C4CEFF7A7065B503DABFC6A0FA8EBB5D7D8BEC503F157275DB13C58D0800198840C42FB078BE873D9ED767148AC3A3FB533A18268A06844328C425E9F364F5108480A3E25026CE1B121088A030578D9EBEF098049D8EC2843A1DDFB61AAED06D4D8EBBB6D98322E108C2000009BD43363B77A09C43650D866C36F1B8A244493128A4621CEF1E7D0942F8921D72BF09B2A0C2A396C22C4C63668DC74595F4DC0CFEF6F84654185473267A098C6CD1B72B52BE9AA88F2E5B48B1318D45B8A8B2BE9BD733F09B75CDFC24CA830A7E5B08B1318D9A371D1657D310D21BE73AF6FDED675B524CA888DE5B4F4131735AB8A8B2BEA7F2AF05E27A12CABC740D070E28A1B86C8CAB974BB4C7DB36C55D2F1629B32BF2E4336ED6AA93EC57AF33D098024341C0D1C518390DE2CAB92F233C4E4CA4F1C8C81F13A308E192328FB853AA133949668E6389AE2A2D2E419782F13D09655E3A0683871450DC364655C8AF418459303A868C41C07A308E1BC5957DC5595099C9B32BF2E04D6E56AA93EC9752E964B388A0D1C671866F03204935558D609FF00F2C4CDFF007B70654AE9BF685AC4765AFB39A7314EC7535765A9A346AE8DDA3468D1A3FF004DDF4D3F4DFF00FC010F37DD018D47D1A429EF61AFADB6D7D4D47D0B8A21A31826C22D09DAEBEDDC36FBF87B40E47A22FCAD42C1C0FB83DED76F05143CEDA29AE62806046784A361513B954E031376D9EC1F1D3A5DA64EDA3628DEC4CCDF18C462A23393656F2E04D6ED6B813EDD5154E7735B146F62666F8CF89A056864E70244C1C3285D603912E14D392E5D3D36ECAE5CFF008EAF49EAF325D4BA592CE22834719C619BC0C8124D55635F2E28DEFACCDF19F03C5511649BA8B98C25B76B5C79062B8D10C9CE04868C41B14AC07225C5957D418678609955E07190C227460E4327A6DF572FF723B2B973FE44B2E7ABCC6815C262607713070CA194611C378534E4839071E84B2AF030C86207A286E1B3D34FBA3E1861A76311368087AE263076DCDBBFC49D1EDDB40AC030B183EC31F1FF0067ADB57886EB6D35DD74EB95FB2FAF0DF75F57469FF4DA15EF3BFF00E07ED9E9D568DA628BBB461F63213106D431117DD7D3B47BD9B881044E90F77D47ED4D9BDBE6AECF5746DB6A98837B370DA98D16DBB8EA6C226F82678D8ED36BB6DAEA6D36EFBABABADA35B4EA6AECF5759B143F7D065F8C641C838F425957818643103D14370D9E9A7DDFA3F4EF633D799164C0EA260E188E28C2386F0A69C8AF5E6459CE3A868381C38AC88E25C595723C5521629BA8B98C26B76B5C7906EA8898FB98CBC17891674A501D0341C38AD08E25232AE5B99072F122C964A006068C4714511C367A69CBE5C517DF519BE3192F62AFCC99E81A2E32BADCAD4D7A96397F64FCDB25EC56396C22C345CE575C7459AF534B846F3247A068B9AD5BB5A9AF53FA60C3F98B325B91AEA4BFD465ED9777A7F8D6E65CAB97930B2B4595785CB3ADD737F09B4331BB707B89EC3651727B6EEB0AD7D3B9EB6900C4353DC51C364F0EE6B383B6CB5F46FE07500203BB61E6191D4110006DEE3E2114384260EE9FA38EF9CFF901DDB0F3034E9088FC38E91E0F89DC22D077BFD7C07CD617C335F67AFABB18BBBEA6BEB7FE2856DF51EF4EAEC1CF5769ACEDFAB89B67A53F854732479894C6CD1B72B32BE9A97B157E64CF40D17195D6E56A6BD4B7E8D1A37696C513DF5999E3192F614FCB61E81A31B346E3A2CCFA62E5435CE7595FBDACEB6A7595111BCB69E8262E6B57151657D4FA197E6C6E869F9B1BA197E6CF9776FD1A7469633D06116738EA26311881EB2238970A69F70B8F7D659F9363C52E162A4A8B98E19B8A8BC7906E97698FB66CA852E9648C48A131C64E066CF320352B4A8D1E2A90CE52345CC6135C545E3C8315EBCCF4260090D0703471460E4378B2AE4D8E67D93F36C8390711674A50030C86207AD08E253D34FABC1071164B2501D0C81C07A288E1B232AFBFAB4B20F416461D49440E3318826B024894F4D3E25650C602C53EC30501BB1FBACBB11CD5520F8AAA5D2C935E57E5C86A815AAA4FB618900717E43A5B6DB6DB1DFAFAF526D40C43B534EFD0EFA37B62A2A60CA4CB95FA0B5125B75AAA4FB7545539DCD6C2E3DF5967E4DB1575446726CCAFCB9135BB5AAA4FB25D4BA592CE22834719C619BC0C8124D55635D5154E7735B0A754267293CD1CC7135C745A5C8319E8308B39C7513188C40F5911C4B8534FABC8CF1393293C723207C4E8C238648CA3EE14EA84CE5259A398E26B8A8B4B9065E0BC4F4259578E81A0E1C514370D919572F937EED1A74E9FF4633D799164C0EA260E188E28C2386F0A69CB146F62666F8C6C0CBEF6784F81A068864980244C62328A51C390DE14D3EAE5D1D492CAE5CFF916CB9EAF325D54459231228344E1C626B3CC80D4D5560AD8AC25E3394965865C866E2A2D527D8D02B84C4C0EE260E194328C2386F0A69C9B033FBD9E11B146F7D666F8C6542A88B259C450989C2704D781902495A54150D7F6DABDB98CFE3ABCE4682DD51131F73192EA5D335189E81938CE30CD9E5C06E6AAB1A5CBFDC96CAE5CFF00912CB9EAF31A057098981DC4C1C3286518470DE14D391A068864980244C62328A51C390DE14D3E91AA88B15235BD05C89AE2A2F067DB146F7D666F8C6542A88B259C450989C2704D781902495A5417A5CA9CED9B25D54459231228344E1C626B3CC80D4D5560BF0C51BDF599BE33E654185473247A098C6CD1B72B52DE98A83157E64C8B1317195D6E56A57D490D2E4E4BEF7FD9578DCB22DD737F09B73C9D493FA72B272EAF4FF25FA60C3F98B3259511E5CC91E82631A8B6F56A57D337B7D1B145F7D66778C6541853F2D845898C6CD1B8E8B2BE9886972725F7BEE055E372C937235D497FA8DBDB2EEF4FF1A4BD853F2DA7A068C6CD1B8E8B33E998E57D93F36C97B0A8E64C8B0D18D9A36E56A6BD315111BCC8916262E6B56F56A57D4D0D21BE4C6F6DE36BC6E5926C517DF599BE3195062B1CC9916262E72BADCAD4AFA9E067F7B7C23628DEFACCDF18C970F2E5B4F40D18D45B8A8B35E99D733F09B7237D493FA8CBDB2EEF4FF1ADEDBF46ED2D8A2FBEA337C67CCBC1789E84B2AF1D0341C38A286E1B232AE4830AF0C1CCABC0E0D18432B21C89CF4DB962AE97CB14DB95F97219B76B5549F641C8388B3A528018643103D6847129E9A7D542974B246245098E327033679901A95A54690D7F725BDB98CFE45B324682DD2ED31F6CD9072F13D0E955E06068C4715A0DC4A7A69CB1575426726CCAFCB8135BB5AAA4FB1A068898E71DC4C62328A5644712E14D3E9A056864E70244C1C3285D603912E14D3974BC4C9DB462B8AD0C93004868381B0BA38721BC5957263C92E962A4A8B98C19B8A8BC7906542A88CD4627A0989C2704D679701B95A54157919E27265278E4640F89D18470C91947DEA88A73B98C9752E964B388A0D1C671866F03204935558D74BB4C7DB362352E1629B6B797019B76B5C09F6C51BDF599BE33E1A34FE9FAE862BD799E84C0121A0E068E28C1C86F1655CBAA2A9CEE6B7545539DCD64BA974B259C45068E338C3378190249AAAC6BE4DFBB469D3A7FD18CF5E6459303A898386238A308E1BC29A72EA8898FB98DD51131F731BAA2263EE6375444C7DCC623551962A4AB797226B8A8BC09F65E0838F43A5578E8640E03D68371291957D542A88B259C450989C2704D781902495A54170A74BC6726CCD1CC60CDBB5AA5C832F041C7A1D2ABC74320701EB41B8948CABEE171EFACB3F26D8E67D93F36D85C7B132CFC9B2F22BC4E7324F1C8341F0CAC88E272328E4863FB6DDEBCC5FF001DDE7234262B8D10C9CE04868C41B14AC07225C5957DE974A73B66D853A5E33936668E63066DDAD52E4197820E3D0E955E3A190380F5A0DC4A4655F57915E27399278E41A0F865644713919472E976A73B68C6815C262607713070CA194611C378534E4681A2192600913188CA29470E4378534FA46AA22C548D6F417226B8A8BC19F6C51BDF599BE318D0344324C0122631194528E1C86F0A69F715854258A92CB0CB9135C545AA4FFCF8A2FBEA337C637432FCD8DD0CFF0036B7432FCD8CA830A8E5B08B1318D9A371D1657D37032FBD9E11B737235D3737A8CBD7316CBFF1AEB97F84DBAE6FE1264BD85472D87A068C6CD1B8E8B35E9B8E67D93F36D85CFB142CFC9B7D197221AE73ECADC36B3EDA9E64B846F2DA45868B9AD5C5459AF52EB9BF84DBAE5FE136EB9BF8499511E5CB71162631A8B7151657D310D2E4E73AF6D164D9F6D493628BEFACCEF18CA888DE6488B131735AB76B52BEA48690D72637B7EF6BC6E5926C517DF599DE31B144F62866F8C643686B9CFBDB78DACEB6A49BA197E6DF9B146F7D666F8C65E46789C9949E391903E274611C324651F7AA229CEE637545539DCD6C51BD8999BE31B032FBD9E13E09755119AB38F40C9387189AF02E049355582E2AE978B14DB95F97219B76B5549FF820E5E27A1D2ABC0C0D188E2B41B894F4D396397F64FCDB15EBCCF4260090D0703471460E4378B2AE5D5154E7735BAA2A9CEE6B7545539DCD6E97698FB66DD2ED3276D197915E18265578E41A0F86518390C9194724BAA88CD59C7A0649C38C4D78170249AAAC148C4BA58A6DADE5C866DDAD7027DB146F7D666F8C6EA8AA73B9ADD5114E77318D03444C738EE263119452B2238970A69F52EAA2335671E819270E3135E05C0926AAB055CBFDB6ACAE5CFF008EAF49EAF320C33C4E7324F038C86113AC88E273D36FBF2E28DEFACCDF18D8A37B13337C67C7146F62666F8C6C0CBEF678465E0838F43A5578E8640E03D68371291957DC51BD8999BE31B468DEC839789164B250030346238A288E1B3D34E4830CF0C132ABC0E321844E8C1C864F4DBE91AA88B15215BCBA135C545E04FB19EBCC8B2607513070C4714611C378534E4839071E84B2AF030C86207A286E1B3D34FB8E67D93F37F0418678609955E07190C227460E4327A6DF572FF723B2B973FE45B2E7ABCC830AF1393293C0E0D184328C23864F4DB96171EFACB3F26C78AA22C537513418C26B76B5C69062B8D10C9CE04868C41B14AC07225C5957D41C838F425957818643103D14370D9E9A7DC55D2F19CA4F2BF2E43371516A93EC975511648C48A0D1387189ACF32035355582E28DEC4CCDF18C46A5D33548D6F2E43371517813EC6815C262607713070CA194611C378534E5F2E28DEFACCDF18CA888DE6488B131735AB76B52BEA5D0CBF36B7432FCDAD8A2FB14337C636065F7B3C236E65418ABF32645898B9CAEB72B52BEA4C97B0A7E6488B0D18D9A36E56A6BD312E11BCC91E81A2E6B56ED6A6BD490D21AE4C6F6FDED78DCB24D8A27BEB333C6375CDFC24CB9572739F64E8B2ACFB6A7BE0A830A7E5B08B1318D9A371D165BD33033FBDBE11BE8D85C7BEB2CFC9B6397F64FCDB25EC56396C22C345CE575C74599F53FA37D3732A0C2A39923D04C63668DB95A96F4CE793A92FF004E564E5DDE9FE4A8690D72617BFEF6BC6E5926541853F3247A098C6CD1B72B52BE9BF2E28DEFACCDF18DD5154E7735BAA2A9CEE6B7545539DCD633D799E873812260E190E2B21C8970A69CB032FBD9E13E3A34FE9FAE862BD799E84C0121A0E068E28C1C86F1655C8AE3444C4C0EE183106C528C2386F1655F7AA229CEE6325D4BA592CE22834719C619BC0C8124D55634830AF0C1CCABC0E0D18432B21C89CF4DB974BB4C9DB46E97698FB66C6815A1939C0913070CA17580E44B8534E44725C2C53756F2E4336ED6B813ECBC1789E84B2AF1D0341C38A286E1B232AE585C7BEB2CFC9B1E2974B252545CC60CDC545E3C832F22BC304CAAF1C8341F0CA3072192328E5D5154E7735B0A754267293CD1CC6135C545A5C832F05E27A12CABC740D070E28A1B86C8CAB915E8308B260750D188380F4611C378B2AFB8ABAA133936657E5C09ADCAD5527DBAA2A9CEE6FF00EE7FFFC4003E10000102050106030703040004070000000203130001041114150512212232331085D4162023346394E4313541245161624260718206305281B1B3D1FFDA0008010100133F00FF0091349A05DB7281054F9D5408F899C681B2FD34681B2FD34681B2FD34681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C681B2FD34681B2FD34681B2FD378E9340BB6E5020A9F3AA811F13386125DB72BD048F9151209DC0CE5C46302969597B2DCEC2417BB41EEE81B2FD34681B2FD3430920E375F509072242212B0004B80C3092EDB95E8247C8A8904EE0672E231A06CBF4D1A06CBF4D1A06CBF4D1A06CBF4D1A06CBF4DEF795D2463AABB6E2A09072242473B9984B80CED1A06D4F4D1A06D4F4D1E69491F7F1AB5020E37408247C8AAE272B1846AD40BB6E502E907224B91F1338C0AAAA7996DDEC2476B3A1D519F4B43938F4A952ADF06A954960B2C82A1CE11815543938F549552DF1AA924910B2282A7CE719F4B54F3396EF6153B59D08D22BD76DC4C150E7490209DC0C27C0A33E96BB1B22955A547E0D2AAAAC77597483902302AA9597B11AEFA417BB471ABD020E36A9A47C8AAE272B181CB88C605550E4E3D52554B7C6AA492442C8A0A9F39C6BFB2FD4C6BFB2FD4C67D2D7636452AB4A8FC1A555558EEB2E907204605552B2F6237DF482F768E349AF5DB72BD75439D24083A0C23CD2923EFE348AF5DB71305439D24082770309F028D036A7A68C0AAA565E71AEFA417BB47D378F2BA4F7BCAE923CCE93C7CD2923EFE35FC579EA5497ED629DACEDBABC349CEC8C863EBA5B9BAC46262BCF552ABF6B7CED67777AA71E5957E1A06532CD2A48777282F76AFD318994CB35492FDADF0BDDADDEA8D27071B1D8FACAEFEF3F1E67571A062BCF52AA877728ED676FD3E38994CB35492FDADF0BDDADDEA8D27071B1D8FACAEFEF3FE1E69491F7F1E594BE1F7F1E5749EF795D2479A5278F9A5247DFC795D24681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C795D5F869340BB6E5020A9F3AA811F1338D2681071BA05D50E749013E0611F611A4502EDB8A9AA7CEAA0473B999CF8943092EDB95E8247C8A8904EE0672E231A06CBF4D1A06CBF4D1A4D020E3740BAA1CE92027C0C23EC3C3CD2923EFE3CAE93C3EFE3CAE93DEF2BA48D036A7A68D036A7A68D036A7A68D26BD071BAF4153E755010E8038FBF8F2BA48CFA5AEC6C8A556951F834AAAAB1DD65D20E408C0AAA565E71BEFA417BB47D378D22BD76DC4C150E7490209DC0C27C0A357A05DB71504839125C8E7733097018CFA5A565E71BEFAA17BB47D378C0AAAEC6C8AA56A91F8D4A92A89DD15D23E438D5E8176DC54120E4497239DCCC25C06275F4B4ACBCE37DF542F7694E9BC3E92EDB890AA1CE91104EE0613E053B479A5247DFC6915EBB6E260A873A48104EE0613E051E694913AFA5A565E71BEFAA17BB4A74DE1F4976DC48550E748882770309F029DA3CD292302AAA9E672DDEC2476B3A11A06D4F4D1A06D4F4D1A06D4F4D0C2A838DD02091F22A2272B181CB88FBDA06532CD2A48777282F76AFD31ECA7E6C7B29F9B1ECA7E6C7B29F9B1A4E0E3E3E47D7577F79F8D032996695243BB9417BB57E98F33A58FBF8D032996695243BB9417BB57E98F33A48D57071B1F23E82BBFBCFC65E532CD2A48777702F76B7BA651AFE532CD524BF6B142F76ADD51F7F1A06532CD2A48777282F76AFD31AFE532CD524BF6B142F76ADD51AB60E363E47D0577F79F8CBCA659A5490EEEE05EED6F74CA3CCE963EFE340CA659A5490EEE505EED5FA631329966A925FB5BE17BB56EA947B29F9B1ECA7E6C7B29F9B1ECA7E6C7B29F9BFF91814B54F3388DF7D23B59D3861241C6EBEA120E44844256000970186125DB72BD048F9151209DC0CE5C46302969597B2DCEC2417BB41E190AA0E36A82A1CE9109CAC6984F814AF1FBA6662318DF3CFB7B994BF6ED7DF8D0365FA68C855071B54150E74884E5634C27C0A578D7F6A7A98D7F6A7A9F0C0A5AA79971BEFA476B3A7D30C24838DD7D4241C890884AC0012E03E19F554ACBD96E76150BDDA087D55DB7281054F9D52239DCCCE7C4A348A041C6D505439D2404E563009F028C0A5AA79971BEFA476B3A7D30C24838DD7D4241C890884AC0012E03E1814B54F3388D77D23B59D38D0365FA68D2681071BA05D50E749013E0611814B54F3388DF7D23B59D38D0365FA6F7B48AF5DB71305439D24082770309F02F0CFA5A565E71BEFAA17BB47D3787D25DB71215439D22209DC0C27C0A768D036A7A68C0AAA565E71BEFA417BB47D378D22BD76DC4C150E7490209DC0C27C0A1F49071BAF4153E754842560039F128CFA5AA799CB77B0A9DACE846915EBB6E260A873A48104EE0613E05E19F4B4ACBD88D77D50BDDA38C0AAAEC6C8AA56A91F8D4A92A89DD15D23E4386155DB7282A120E44848E7733097018FDAF0F2D8C6F9E65CDFC45FA2F6DC87D25DB71215439D22209DC0C27C0A768D5A8176DCA05D20E449723E2671815554F32DB9D848ED6743AAD0C2A838DD02091F22A2272B181CB88C6BFB2FD4C67D2D53CCE5BBD854ED6742348AF5DB71305439D24082770309F028D5E8176DC54120E4497239DCCC25C063EFE348AF5DB71305439D24082770309F02F0CFA5A565EC46FBEA85EED1C3E92EDB890AA1CE91104EE0613E053B7BDE594B18994CB34AAAFDADF0BDDAB754A3F63D3B4FFB975CCFFF004B3519794CB34A921DDDC0BDDADEE9947B29F9B1FB1E9DA7FDCBAE67FF00A59A8CBCA659A5490EEEE05EED5FA651AFE532CD2AABF6B142F76ADD5E1A06532CD2A48777282F76AFD31978AF3D54921DDDC3B59DDEE99C7B57F851A56A98789FD0FCCBC8B9BF8AE76E56DFB47B29F9B1A4E0E3E3E47D7577F79F8D032996695243BB9417BB57E98CBC579EAA490EEEE1EED9DDEE99C6AD9D9390C7D14B737588D0329966A9543BB9417BB57E98D7F299669555FB58A17BB56EA8D5B071F1D8FA0AEFEF3F1A56A98789FD07CCBE8B9BF8AE76E56DFB4626532CD524BF6B7C2F76ADD51A4E0E363E47D7577F79F8F2CA5F1F2CA4F7BCAE92184976DC48D23E4544827703397119DA3029695979B73B0905EED27D578D5ABD071BAF5D20E449710E8008D0365FA68C0A5A565E6DDEC2417BB41D57F0D5EBD76DC4CD23E4557209DC0CE5C47C349A05DB7281054F9D5408F899C6052D0E4E3D2AB548FC6A5492582CB2091F21C6BFB53D4C642ABB6E2A6A9F3AA4473B9A853E253B469340838DD02EA873A4809F030F0D268176DCA04153E755023E2671E694912AFAAA565ECB73B0A85EED04642ABB6E2A6A9F3AA4473B9A853E253B4795D5C7D8469140BB6E2A6A9F3AA811CEE6673E250C24BB6E57A091F22A2413B819CB88C6052D2B2F65BBD8482F7682357AF41C6D304839125C42560009701F1F2BA4F7BCAE921F49071BAF4153E754842560039F128CFA5AA799CB73B0A9DACE87863AABB6E2A09072242473B9984B80CED1A06D4F4D1A06D4F4DE19F4B4ACBCE35DF542F768FA6F181555D8D9154AD523F1A9525513BA2BA47C87157B7681943FDCDA58CED2FF0003384A8184E98E9DFE12B19DEEFC536CC71306699343AA76BDDA8D1C234708A8A59A6A28F54AABCEE3295A569AB68248E5294BFCCED19F4A836F623567950BDDA38C0AAAEC6C8AA56A91F8D4A92A89DD15D23E5386155DB7282A120E44848E7733097018FDAF0F2D8C6F9D65CDFC55FB77B46055576364552B548FC6A549544EE8AE91F21C6935E838DD7A0A9F3AA8087401F86935EBB6E57AEA873A48107418467D2D7636452AB4A8FC1A555558EEB2E9072047ED78796C637CEB2E6FE2AFDBBDB721F4976DC48550E748882770309F029DBDEF2CA58CBC579EAA490EEEE1DACEEF74CE356CEC8C8C8FA096E6EB1E18994CB35492FDADF0BDDAB754A3D94FCD8F653F37C3EFE3CB29607F51DE9CA5797F995E252E128095E7B8984CA7697FD250139948252909A73BCF8CEE2769CF85E72BCA568527610194AF39CE73FE2528AC49B1AA496099A6AA72FD6425295E5BD294ED69DBC3FE10995E45BB2FE25398DEDFDE739FF31A06532CD2A48777282F76AFD3E1AAE0E363E47D0577F79F8CBCA659A5490EEEE05EED6F74CA3D94FCD8D27071F1D8FAEAEFEF3F1A06532CD52A8777282F76AFD318994CB35492FDADF0BDDADDEA95AF1FB1E9DA7FDCBAE677FA59A8D2B54C3C4FE83E65E45CDFC573B636DFB7BDABD7A0E3698241C892E212B0004B80C6052D0E4E3D2AB548FC6A5492582CB2091F21C7EE99988C637CF3CDEE65AFDBB5F7E1849071BAFA84839121109580025C06184976DCAF4123E4544827703397118C0A5A565ECB73B0905EED0469340BB6E5020A9F3AA811F13387D541C6E82A150E74884E563009F028CFAAAA79971BEFAA76B3A7D368F2BA48FF00BE5E14E52963266049E42E5796E2729CE76FE4A72B0CA73BDB6A3DBE330A74D2B727F1C853BDE7FACB84AD3BECDDB2A2AF2025BC694913404A523DDDC9F35B7665C62F27524E9A46204A87EA247350E72BFEA0DF87FDC51A4502EDB94082A7CEAA047D671AFED4F531AFED4F531AFED4F531A06CBF4D1FB5E1E5BF93F22C39BF8A8772F6DC8C85576DC54D53E75488E77350A7C4A768D0365FA68FDAF0F2DFC9F9161CDFC543B97B6E4642ABB6E2A6A9F3AA4473B9A853E253B7BDA457AEDB8982A1CE920413B8184F81430AAEDB941509072242473B9984B80C605552B2F38DF7D20BDDA3E9BC795D2467D2D7636452AB4A8FC1A555558EEB2E907204681B53D3463AA838DAA691F22A2272B1A652E2328D036A7A68FDAF0F2D8C6F9E61CDFC55FB77B6E43E92EDB890AA1CE91104EE0613E053B78274229A28A467314574AA24A94D407268A4523009DD4BDA366A96651AA56A12A62A8DD9DD8A646986649CA7BB335EE5095E68D32B4AD492A84D39DC46EF148A5294A45619CE2A7E67682CAA6446AA15339B9F0F978EF5AE56B5A2946432DABB384A725F78385F7921782FD256B4E5C6F41B36A2B0954256B9FC202E1CC30D1A7BF3150C4B94E522E1319CBF48D5E81071BA04123E455713E0607E1F7F1E57491AFECBF5319F4B54F3396E76153B59D08D5A81071BA04123E455713958C3C302AAA9E672DCEC2476B3A10C2A838DD02091F22A2272B181CB88FBDA06532CD2A48777282F76AFD3E1AB60E363E47D1577F79F8D2B54C3C4FE83E65E45CDFC573B636DFB4626532CD524BF6B7C2F76ADD51ECA7E6C6262BCF552ABF6B7CF76CEDBAA718994CB34AAAFDADF0BDDADDEA94693838F8F91F5D5DFDE7E3CB297C03F8AA40A9EB11FFE838A0009112469A736493504C4C39653B14A7394F8CA70B8802C549319A694C3993414BDF7E4090CA5212E6B95EE9D624CA03322DD4896107A616DD9CC1DB7198F4C02929A6B23309837219719CA729FE9394B8452593ACAE5123ABA6911D42A5BA92130A4524729094CAD149564926A27906DA6F12739F2818DCB723DABFC28D0315E7AA9243BB9476B3B7E98FBF8D032996695243BB9417BB57E98CBC579EAA490EEEE1EED9DDEE99C7B57F851ED5FE146818AF3D54921DDCA3B59DBF4C6939D919191F5D2DCDD6231315E7A9525FB5BE76B3B6EA9FBDA4D02EDB94082A7CEAA047C4CE35FDA9EA633EAAA9E6711AEFAA76B3A71A4502EDB8A9AA7CEAA0473B999CF8943092EDB95E8247C8A8904EE0672E231814B4ACBD96E76120BDDA08D268176DCA04153E755023E2671ABD7AEDB899A47C8AAE413B819CB88C6052D53CCE235DF48ED674E33EAA87271EA95A547E0D2AA92216450483903C1CDD3553569D748E432FF008AD23DF9CBFF00485E25FA47F78D8FB357A9A79C84B7484E49C8C933039184E45FAEE6F42889A339DA769F298C8A5C65FCCA10E2E20B564D6DF9CA529EE8260B29729CE579A96943CA22E86FCE76DF4C84A5C65FC4E51AFED3F531E69491814B54F32E35DF48ED674FA6D1A06CBF4D1E6949E390AA0E36A82A1CE9109CAC6984F814AF1FBA6662318DF3CF37B994BF6ED7DF8CFAAA1C9C7AA56951F834AAA4885914120E40F7BCAE93C25415554F32DB9D848ED6743AAD18EAA0E36A9A47C8A889CAC6994B88CA185576DCA0A84839121239DCCC25C063F6BC3CB631BE799737F117E8BDB721F4976DC48550E748882770309F029DA356A05DB728174839125C8F899F8E75354EFA412B1CEE8A8768DEE09998EE914A5FA6F6EDC653FE244504129FFF009049CE53FF00E611B2F475273B5CCE9D496EC8F965720984E7C6F38A619260676E2421329CC653FED79DBFBC4E9C4159A69269260332971294B74A728FED3BCE769FFED394E3CAE92356A05DB728174839125C8F899F86915EBB6E260A873A48104EE0613E051A457A0E3699AA7CEAA0212B001CF8946055553CCB6E76123B59D0EA8D036A7A68D26BD071BAF4153E755010E803F0D26BD76DCAF5D50E749020E830F7BCB29635FCA659A5557ED6285EED5BAA3EC235FC579EAA557ED629DACEDBAA313299669555FB5BE17BB56EA8FD8F4ED3FEE5D733BFD2CD4695AA61E27F41F32F22E6FE2B9DB95B7EDE1AB60E363B1F415DFDE7E3DABFC28A5FFC432A951BFF0009952848E7FE37E51B4692A13552FF005B4C061A5E2A1153713DE3101BDA7FC910CA195A29D05260A6E19015AF3FE084A509D31CE729FF007E33B5FF00EB0B4AC7507C39A7C25FDA5FC4BF494A5294A51A06532CD2A48777282F76AFD31AFE532CD2AABF6B142F76ADD5E1E59491A062BCF52AA877728ED676FD31A4E7646431F5D2DCDD6231315E7A9525FB5BE76B3BBBD538F653F363D94FCD8F653F37DED5EBD071B4C120E4497109580025C063CAEAE33EAA95979B77B0A85EED0755E35FDA9EA633EAABB1B22A92A55BE0D52AAA2774575439C23029695979B73B0905EED0755E348A05DB715354F9D5408E773339F12F0FB08D5ABD071BAF5D20E449710E8008D5ABD76DCAF4123E455720E833F0D5EB9071BAF5D20E449610958023029A85FC7A55AA91F8D4C9A6A85964122E0713AFA9AA799C46BBCA1DACE9C799D5786052D53CCE235DF48ED674E340D97E9A3CAEAE30296A9E6711AEFA476B3A719F5543938F54AD2A3F069554910B228241C811A06CBF4D1814B4ACBD96EF6120BDDA08D5EBD071B4C120E4497109580025C06184976DCAF4123E4544827703397118C0A5A565ECB73B0905EED0469340BB6E5020A9F3AA811F133F7B48AF5DB71305439D24082770309F028F34A48FBFF0C75576DC54120E44848E7733097019DA3F6BC3CB631BE799737F157EDDEDB9181555D8D9154AD523F1A9525513BA2BA47C87E19F4B4ACBD88DF7D50BDDA387D25DB71215439D22209DC0C27C0A76F0FBF8F2BA48C0AAA1C9C7AA4AA96F8D54924885914153E738FDD33311FC9F9179BDCCA43B96BEFC681B53D3467D2D7636452AB4A8FC1A555558EEB2E9072047ED78796C637CEB2E6FE2AFDBBDB721F4976DC48550E748882770309F029DA31D55DB71504839121239DCCC25C067689D05552B2F38DF7D20BDDA3E9BC795D24605550E4E3D52554B7C6AA492442C8A0A9F39C6BDB33D4C6055576364552B548FC6A549544EE8AE91F21F8F95D27BDA06532CD2A48777282F76AFD31AFE532CD524BF6B142F76ADD51AB60E363E47D1577F79F8F6AFF0A355D530F13FAEF96651737F15BEE4ADBF78FD8F4ED3FEE5D733BFD2CD465E532CD2A48777702F76B7BA65E3E59491A062BCF5524877728ED676FD31AAE0E363E47D1577F79F8D2B54C3C4FE83E65E45CDFC573B72B6FDA340C579EA5550EEE51DACEDFA63EC2340CA659AA550EEE505EED5FA631329966A925FB5BE17BB56EA8D27071F1F23EBABBFBCFC79652C6BF94CB35492FDAC50BDDAB7547DFC795D2465E2BCF52AA877770ED6777BA671ED5FE14695AA61E27F41F32F22E6FE2B9DB95B7EDE3E594BEF69340BB6E5020A9F3AA811F13387D541C6E82A150E74884E563009F028CFAAAA799C46FBEA9DACE9C6AD5E838DD7AE907224B887400467D557636455254AB7C1AA55544EE8AEA873847ED78796FE4FC8B2E6FE2A1DCBDA35FDA9EA6349A041C6E8175439D2404F81846052D53CCE237DF48ED674E1849071B48520E4484425604C25C06578C855071B54150E74884E5634C27C0A578D7F6A7A98C85576DC54D53E75488E77350A7C4A76F0CFAAA565E6DDEC2A17BB41D578C0A5AEC6C8A54AA96F8D5492AB1DD65D53E7386125DB72BD048F9151209DC0CE5C46340D97E9A33EAA87271EA95A547E0D2AA9221645048390235FDA9EA633EAAA9E65C6BBEA9DACE9F4C795D278E9140BB6E2A6A9F3AA811CEE6673E251A06CBF4D1A06CBF4D19F5543938F54AD2A3F069554910B228241C81EF6915EBB6E260A873A48104EE0613E051A06D4F4D1A06D4F4D1A06D4F4D1A06D4F4D181554ACBCE35DF482F768FA6F1AB5020E37408247C8AAE272B184605550E4E3D52554B7C6AA492442C8A0A9F39C67D2D53CCE5B9D854ED6742356A041C6E81048F9155C4E56308F2BAB8FB08F34AB87D241C6EBD054F9D521095800E7C4A3F74CCC47F27E45F6F73290EE5AFBF18EAA0E36A9A47C8A889CAC6994B88CA35FD97EA633E96A9E672DCEC2A76B3A11AB5020E37408247C8AAE272B1843E920E375E82A7CEA9084AC0073E251AFECBF530FA4BB6E242A873A44413B8184F814ED18EAAEDB8A8241C89091CEE6612E033B44E82AA95979C6FBE905EED1F4DE3CAE9231D55DB71504839121239DCCC25C067689D05552B2F6237DF482F768FDFF002CA58F653F363D94FCD8F653F36340C579EAA490EEE51DACEDFA63EFFC34AD2F332FFA1F997966F7329CED947B57F851ED5FE146818AF3D4AAA1DDCA3B59DBF4C7D84799D5F86939D9190C7D74B737588C4C579EAA557ED6F9EED9DB754E3DABFC28F6AFF0A3DABFC28CBC579EAA490EEEE1DACEEF74CE355CEC9C8C8FA096E6EB11E594918994CB35492FDADF0DEBB56EA94695838D8F91F5D5DFDE7E3CB2923CCE9634ACEC9C8C8FAC96E6EB11ECA7E6FBDE57490C24BB6E57A091F22A2413B819CB88C681B2FD34681B2FD3479A5247DFF86052D0E4E3D2AB548FC6A5492582CB2091F21C67D5553CCE235DF54ED674FC349A041C6E8175439D2404F81847D8469140BB6E2A6A9F3AA811CEE6673E251A06CBF4D1A06CBF4D1A06CBF4D1AFED4F531AFED4F530FAABB6E5020A9F3AA4473B999CF8946052D0E4E3D2AB548FC6A5492582CB2091F21C67D5553CCB8D77D53B59D3E9B4795D24681B2FD34681B2FD3430920E3690A41C890884AC0984B80CAF1814B43938F4AAD523F1A9524960B2C8247C871FBA6662318DF3CF37B996BF6ED7DF861241C6EBEA120E448442560009701F7BCAE923CD293C7CD2923EFE356A041C6E81048F9155C4E56308F34A4F0D26BD76DCAF5D50E749020E83086155DB7282A120E44848E77330970189D05552B2EB8DF7D20BDDA3E9BC6915EBB6E260A873A48104EE0613E051AB502EDB940BA41C892E47C4CE3EC3C185576DCA0A84839121239DCCC25C063F6BC3CB631BE799737F117EDDEDB90FA4BB6E57D42A1CE91104EE0613E051E575712A0AAAA7996DCEC2476B3A9F55A31D541C6D5348F915113958D329711946AD40BB6E502E907224B91F1338CFA5A565EC46FBEA85EED1C6055576364552B548FC6A549544EE8AE91F21C79A5244EBE9695979C6FBEA85EED29D3787D25DB71215439D22209DC0C27C0A76F7BCAE9231329966A925FB5BE1BD76ADD528F653F363D94FCD8F33A58FBFF0D7F29966A925FB58A17BB56EAF0D0329966A9543BB9417BB57E98C4CA659A5557ED6F85EED6EF54A34AC1C6C7C8FAEAEFEF3F1E59491ED5FE146AB9D9390C7D04B73758F0D0315E7AA9243BB9476B3B7E98FBFF0F2BAB8FB08D7F15E7AA955FB58A76B3B6EAF1D032996695243BB9417BB57E98D5754C3C4FEBFE59945CDFC56FB92B6FDE349C1C7C7C8FACAEFEF3F1A06532CD2A48777282F76AFD3EF795D24681B2FD34681B2FD34681B2FD3469140838DAA0A873A4809CAC6013E051F7FEE69140BB6E2A6A9F3AA811CEE6673E250C24BB6E24691F22A2413B819CB88CED1A06CCF4D19F5543938F54AD2A3F069554910B228241C810FAA838DD0542A1CE9109CAC6013E051AFED4F531AFED4F53190AA0E36A82A1CE9109CAC6984F814AF13AFAAAA79971BEFAA76B3A7D368D268176DCA04153E755023E2671E575719F554ACBCDB9D8542F7683AAF0FAABB6E5020A9F3AA4473B999CF894681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C6AF5EBB6E26691F22AB904EE0672E231814B54F3388D77D23B59D38D0365FA6FF99FFFC4002A11000103030205040203000000000000000100020304051106211213314051101422413280162442FFDA0008010201013F00FD9A073E83708641EFA59046325433897A2924118C950CC25E9DEEDD15DEB22A6A77F1EE55B756B2DF172A66F555FAA5B5748EE546412B4C81EC83B8B2E3E9F8F74767A75496CE42A3823ADAA2F937C7D2BD5AA8DF3B1EE6630BD8521A511F00030AD956EB55D1F0039612B9E00C94C7878EE88CABEC8200C7F8475355D1D710C3B29EF02BA2CCB2E0A9357CD08E40391E54B7685E1B237F2F2BDC3EB18C847FA54C0B58223F5DD67016A767F4DEEF0A42E3212A9C1126241B2ABB232439A5F1F6A4824A69431EAC25B253C2E3F41746E3BAE87215C6DCDB93381C765268280E785E9FA065CE5922FE3B5B147CB90712A8D2570E6F1C4CC0565A534B42D63BAAC671DD0F8EC5608DC2F92C1F2B87EC84785FB2D9BF00BA7EDDFF00FFC400251100010401040104030000000000000000010002030411051221403210224180144261FFDA0008010301013F00FB76D6A73709A139B8EEF2AA40F95E24F85269DF907785069E18FDC5CAFEDDFC0F407B4D4C8B729849523DA154B53161084AF7BF20AB359F356DC5A830A23B43C9513FAAB518B8DC151D335FC555A518707CA15FB94DF4042C1CA6E222F47DDDAF95A77364350FE27709B69CDF6BC26B848DE15AE1CF4381DAC65413188E426EB2F09BAD1F9085F8F3951EA9106E15B977BF211E5BDA6AC64AC05C2E10217921F6EFFFD9, '1', '2022-03-16 21:51:49', '1', '2022-03-16 21:51:49', b'0'); -INSERT INTO `infra_file_content` (`id`, `config_id`, `path`, `content`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (4, 4, 'a408952f4db5433b83a275df444b7467.jpg', 0xFFD8FFE000104A46494600010100000100010000FFDB0043000302020302020303030304030304050805050404050A070706080C0A0C0C0B0A0B0B0D0E12100D0E110E0B0B1016101113141515150C0F171816141812141514FFDB00430103040405040509050509140D0B0D1414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414FFC20011080102010203011100021101031101FFC4001E00000301010101010101010000000000000008090701060A02040503FFC4001C0101000203010101000000000000000000000105020406070308FFDA000C03010002100310000000AA6000000000000000000000000000000000070000000000E81C3A70E8001C03A0700000E8001C2401808000FF000BF9808017F8E12007F8C00A0200040102BE0120C0000BFC000708045D03033802AA794029412BC69C0DFC9B206005261020356037F37E1551D33CB1AA1160BFC00070804553201017F4554D50A002A86AA4582FE0800D51164AA66503FE74CA48B22A85FD1551561552A98AB17F8000E1008AA640202FE8AA8AB00FF0BF98097F490007AB12D2D2920C0DF8F564AC2FE8AA8AB0AA954C558BFC00070804553003013CA0AA9AB1540F2A45A3CA95409B27953CB173C55474CF2C4593CB173C4047F80E9208FA27000384FF0032C387406A0CA8D58554D50D5895A6563526A66A82B06546565A61553541AA1013A0700AAA0000004FE37F03002809E449B22AA5D0303384023572E79F3B250030003CA973C6089FE2026FC3002025FE0003F22FE7CEC9AB9E58B9E6A6795030037F18227F9C26C8E913687E8A504303D48FE9BF916874874C6089FC4863E9E8000E1008CAC7F440C7F4E08195407FC4006A8404E9C1A932A1AA22D1AA0D39AA8AB8FE99492B8BFC708045FE000384023033D494A04A8CB0CA0FA261812401E5C7F8DF095A57F2400EA88115E885E3542585A530037F182384022FF0001C20115F0C00A02791303384023572A808794FCF0666B0E8F062D2B32107EC9B23A66A679724015FCC00D4C9B47D3D0001C201169CCA86B0CA0404E92ACAA62AC5F13FA4FF0033E3965D84EBBF58CCFE4D5B671FF2C44C8B03566563FA2AC6AA5501023A5540003F22FE4D93531D303003001582E79164BE50FEA463B41BD9EF975F7FD2DB5FD2F595FBE75D57FC0991F2754009583545262178D51498F5C0007E45FC8B45CF22C9AB0FF1BE1810AA9368A8312CC516DE535BBDEBA973F7DD6D7647E5FD2B29EC9C8FA0FBC4B2CB19AE55315601FE17F26B9400C00FA27000384FF22C0D58D48FE8808FF1014B4A4AD1C786F9C8DB79BF1DEDBC6DD53FBFACDCF1FF001F41FF0027D57C5D84EC6A13EDAC72C3533541AA101032C32A32B3E944000E1200754408C00B4A6006003FC60007874379C6DAFE7F2EFA09F58C5FACAFD4F98DE553F4BF11437B2A4C1A41164D4CAA640203E9E89B26A6501000384022FF001941EA480C3A44DA1FA2BF9D10F1C6A5D9FF002FCEEE7F92B36330DEC3D671B65FC5EE9C96CBD0E9C1437F2BF8BF01EA8CB0C0490057F2948001C2010FE9961958AB0FE0155055055CFF00B4CB59187FA6CB4BC59A4C69713FEB44FEFE9094C01FF2018FE9AA116C7F4E1D2AA0001F917F241969CCACCA495E7AA3E89C9567AB024095EC5D0FEE1EE1A610F10601FE382043FA6FE06006005800003F22FE7961562AA1E449B26A650127F1218F225531561FD32C1A910235326D1F49879522C8FE8810FE9404E1008BFC000709FE2B065635007040CFA503840335632B1A835332B32C2A899512B4D58D50554CB07F0E954C08045FE0003848015837F37F3D41960D48951BF9218FA4C30337C3D719392BCA4C4831FD35635422C0AA9D1803D480FE9404000FC8BF9E58000D509AC6FE745FCC046A46A8F522585272178FF0BF8FF120CC0CFA4C3CA9164BA048527F9F55000070804354006566A85532561C035432B1AA1AA1543551023803FC6544AD2D399512B4AA64AD1A82AA8001C20115F090605531562AA115C09FE5283D58969EA400AA6749046FE55022C801818E91A98E98C10001C201154C80405FD1553CA0EA9008AFE2025CF3CA8809EAC9583023A43A64832D31EA895A30070D588B27963E9E8000E1008B4E20203542AA55422C13FCA002AC5A52568D48AB8AA1400D50AA64021AA32B2D39C10032C1A732B2808001C2010001E5874CAA87CAB9D18032C37C1FD26C95F4E1BE9E549AE6025A62181EA47F85FC7F8C00408BFC000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007FFC4004210000003060209020503030203090000000607080004051415160917010203111318195785253810202147671226272829464175223739303142505160616383FFDA0008010100011200FF00C8F7B6F6DEDBDB7B6F6DEDBDB7B6FF008EFF00868D3A34FCBBDBF568F8FEAD0DBDB7B6F6DFF32F05E27A12CABC740D070E28A1B86C8CAB97545539DCD6EA8AA73B9ADD5154E7735BAA2A9CEE6B614EA84CE5279A398C26B8A8B4B9065E0BC4F4259578E81A0E1C514370D919572EA8AA73B9ADD5154E7735BAA2A9CEE6FC5782F13D09655E3A0683871450DC364655C97919E27265278E4640F89D18470C91947DC2995099CA4B3433184D715169721F2F545539DCD6EA88A73B98C830CF139CC93C0E321844EB22389CF4DBEAF233C4E4CA4F1C8C81F13A308E192328FBD5114E7731BAA2A9CEE6B7545539DCD6EA8AA73B9ADD5154E7737E6C51BDF599BE318D0344324C0122631194528E1C86F0A69F7AA2263EE5B75444C7DCC6C51BD8999BE31B032FBD9E1197820E3D0E955E3A190380F5A0DC4A4655F50720E3D09655E06190C40F450DC367A69F4F154658A6EA2E6309ADDAD71E41950A5D335671E82638C9C0CDE05C09256951A542A88B259C450989C2704D781902495A54170A84BC6726CCD1CC70CDB95AA5C8319EBCC8B2607513070C4714611C378534E49752E99A8C4F40C9C671866CF2E03735558D62ACA80B152795F97026B8A8B549F62BD061E8738121A310681EB21C8971655F550AA22C967114262709C135E064092569505E974A73B66DD2E94E76CD92EA5D335189E81938CE30CD9E5C06E6AAB1AC55D50962A4F2BF2E44D71516A93EC839789164B250030346238A288E1B3D34E58A37B13337C636065F7B3C2319EBCC8B2607513070C4714611C378534E5D51131F73188D54458A92ADE5C09AE2A2F027DB146F7D666F8CF9B146F7D666F8C6C51BD8A19BE33E38A37B13337C636067F7B3C232A0C55F96C3D04C5C6575C74595F52FA32E4437CE7593B86D675B53AC9708DE5B48B0D1735AB8A8B35EA785CFBEA2CFC9B6ED1B99506151CC91E82631B346DCAD4B7A62A223799222C4C5CD6ADDAD4AFA9AE4437C98593BC6B78DCB3AD85CFB142CFC9B25DC29F96C3D03463668DC74599F4CD1BB737D195111BCC9116262E6B56ED6A57D4D72A1BE4C2C9DE36BC6E59DF8628DEC4CCDF18D819FDECF08D8A2FBEA337C67C3033FBD9E11B146F7D666F8CF9B146F7D666F8C6C51BD8999BE33E38A37B13337C636067F7B3C23628DEFACCDF18DD5154E7735B0A754267293CD1CC6135C545A5C832F05E27A12CABC740D070E28A1B86C8CAB96171EFACB3F26DFF7EAB2F05E27A12CABC740D070E28A1B86C8CAB920E5E27A1D2ABC0C0D188E2B41B894F4D396397F64FCDB15EBCCF4260090D0703471460E4378B2AE4BC8CF1393293C723207C4E8C238648CA3EF544539DCC6EA8AA73B9AC839789E874AAF030346238AD06E253D34E58E67D93F37F0C51BD8999BE31B033FBD9E11B146F7D666F8CF86067F7B3C23628DEFACCDF19F3628DEFACCDF18DD51131F731BAA2263EE6375444C7DCC65E0BC48B3A5280E81A0E1C5684712919572C0CFEF67846C51BDF599BE3192EA5D335189E81938CE30CD9E5C06E6AAB1A23551962A4AB797226B8A8BC09F633D799164C0EA260E188E28C2386F0A69C8CF4187A13004898C46407A30721BC29A7D2352D99CA46B797219B8A8BC09F64BAA88B2462450689C38C4D679901A9AAAC14CF4187A13004898C46407A30721BC29A7D2392E19CA42B797219B868BC19F6340AE131303B89838650CA308E1BC29A72C51BD8999BE31B032FBD9E118CF5E6459303A898386238A308E1BC29A72C51BD8999BE3188D4BA66A91ADE5C866E2A2F027D8D02B84C4C0EE260E194328C2386F0A69CB146F62666F8C6C29D509629B33473184D6ED6A9720DD51131F731BAA2263EE6375444C9DCB65E467860E655E391903E27590E44A4651F7E554185473267A098C6CD1B72B52BE9BD0CBF3637433FCD8DD0CBF3637432FCD8C8650D72617B7EF5BC6E592654185473267A098C6CD1B72B52BE9B8A27B14337C636067F7B7C232A0C29F9923D04C63668DB95A96F4CC51BD8A19BE3190D2E4E4C2F6DE0ABC2E59265447973247A098C6A2DBD5A95F4C5438AC732645898B9CAEB72B52BEA781A7DEDF08CA830A8E64CF41318D9A36E56A5BD355062AFCC9916262E72BADCAD4AFA92195C9C985EDFB2AF0B96459511E5CC89E82631A8B6ED6A57D33145F62866F8C6C0CFEF6F84654185473267A098C6CD1B72B52DE9AA888DE6488B131735AB76B52BEA5D0D3F3637432FCD8DD0CFF0036B7434FCD8DD0CBF36FFD862B0A84CE4DB96197226B76B5549F64186789CE649E07190C2275911C4E7A6DF57919E27265278E4640F89D18470C91947DC2995099CA4B3433184D715169721F0340AD0C9CE0489838650BAC07225C29A725CBA7A6D595CBA7F1DDE73D5D6EA8AA73B9AC6815A1939C0913070CA17580E44B8534E5D2ED31F6D1BA5DA63ED9FC08D54466A6DADE5C89ADDAD7027D90619E273992781C643089D6447139E9B7D6C2992F162A4F34731833715169720CBC8AF0C132ABC720D07C328C1C8648CA3919EBCCF439C0913070C871590E44B8534E446AA33393756F2E44D6ED6B833EC830CF139CC93C0E321844EB22389CF4DBEB62B0A88CE4D995F97226B76B5549F6EA8AA73B9AC839789E874AAF030346238AD06E253D34E58ABAA133936657E5C89ADDAD5527DBAA2A9CEE6FCBBF768D3A74FF00A319EBCC8B2607513070C4714611C378534E4C46A5D33548D6F2E43371517813EC6815C262607713070CA194611C378534E5D51131F73188D54858A91ADE5C89AE2A2F027D8CF5E6459303A898386238A308E1BC29A725E45789CE649E390683E195911C4E4651CB0A74BE66A6CCD1CC60CDBB5AA5C86933D799164C0EA260E188E28C2386F0A69C9B1574BA67292CAFCB90CDC545AA4FB25D54459231228344E1C626B3CC80D4D5560A830CF0C132ABC0E321844E8C1C864F4DBEAE5FEE476572E7FC8965CF5798D02B84C4C0EE260E194328C2386F0A69C90720E3D09655E06190C40F450DC367A69F4F15445926DA2E6309ADDAD71E4197919E18399578E4640F89D64391291947DE974A73B66D853A5E33935E68E63866DCAD52E418CF5E6459303A898386238A308E1BC29A7233D061E84C01226311901E8C1C86F0A69F7034FBDBE118CF5E6459303A898386238A308E1BC29A726C5612F19CA4B2C32E43371516A93EC6815C262607713070CA194611C378534E5F2E28BEFA8CDF18C9708DE648F40D1735AB76B535EA5F4C183F31664B2A23CB9923D04C63516DDAD4AFA6F432FCD8DFF45FFCC5992CA88F2E648F41318D45B76B32BE9897B157E64CF40D17395D6E56A67D4F768FD2CA830A8E648F41318D9A36E56A5BD31511E5CB69162631A8B7151657D33AE57E136E46BA927F5197B65D5E9FE35D0CBF36B21A435C98DEDFBDAF1B96499506151CC99E82631B346DCAD4AFA6AA23CB96D22C4C63516E2A2CAFA6AE35CBCE7D93FB2ACEB6A7592F614FCC99161A31B346DDAD4CFA625EC55F9933D0345C6575B95A9AF525CAB93931B27F655E372CEB7233D493FA8CBDB2EEF4FF001A54446F32245898B9AD5BD5A95F5343286B930BDBF7ADE172C8B628BEFA8CDF19F0DDA1B145F7D66778CF9B146F7D666F8C62B8D1131303B860C41B14A308E1BC5957D3C55199AA468B98C26B8A8BC790641C8388B3A528018643103D6847129E9A7DEA8AA73B9AC792A333949D1731C4D71D178F21F02BD061164C0EA1A310701E8C2386F1655F7768D1ABB99782F13D09655E3A0683871450DC364655C92EAA2335671E819270E3135E05C0926AAB05E97698FB68C5715A19260090D0703617470E4378B2AE4839789E874AAF030346238AD06E253D34E5BBE9B99782F13D09655E3A0683871450DC364655CB146F62666F8C6C2992F162A4B34331833715169720C5715A19260090D0703617470E4378B2AE585C7BEB2CFC9B6397F64FCDB15EBCCF4260090D0703471460E4378B2AE4BC8CF1393293C723207C4E8C238648CA3EE14EA80CD5279A398C26B8A8B4B90D067A0C22CE71D44C623103D644712E14D3EFC3146F7D666F8CF9B146F7D666F8C65E45789CE649E390683E195911C4E4651CB0A64BC6726DCD0CC60CDBB5AA5C87C0D0344324C0122631194528E1C86F0A69F7AA2263EE5B75444C7DCCF8118974CE5255BCB80CDC545E04FB25D54459231228344E1C626B3CC80D4D5560B07C2C14ABFC4DD9D36E0476856C36DAFF00A35DF50C22F7446EE22CD4BC35C58FE21929C651D860061479CE2330DFC711A833E4625FF5B8F44F05F73442DD13C19DCE10B270275C13992E1D2EDC222F91974834C70DFB6D137777D96BED36BA769B3D9EAE8DFADAF8A82663254D6C8ADD72CC3B73EA422A73BA52EAA12C91891219270E31359E6386A6AAB05418678609955E07190C227460E4327A6DF572E8EA496572E7FC8965CF57992EAA22C9189141A270E31359E6406A6AAB055E0BC48B3A5280E81A0E1C5684712919572DCC839789164B250030346238A288E1B3D34E49752E99A8C4F40C9C671866CF2E03735558D2E5FEE4B6572E7FC8965CF5798D02B84C4C0EE260E194328C2386F0A69CBE5C517DF519BE319511E5CB71162631A8B7151657D310D2E4E73AF6FD95675B523F054446F32445098B9AD5BD5A95F53E867F9B5BA19FE6DF86067F7B3C23628BEFA8CDF18CFF00FAB5DD769A9A9AFA767ADADA75767A35F63B2D4D86CF46CF67ABA353535746ED1AA288FBB85035158D3D7EA9587BAED5EF6AC994EF8A1DA1A103C4760BA81E8DC1E2FB686BCB83E3EEC21EE9B77979DAEA6C361B1D4D3B4DA6D4A050702394482F83C19D5FB61B40EED1DF46B6DB733A3B6AC39E1F75767A74E8D8EB69D5DB68D9AA0C2A39933CC4C63668DB95A95F4CFAB21A5C9C98DEDBC1578DCB24CA88F2E648F41318D45B7AB52BE99D0CBF3632E4435C98D95FBD6F1B967592F614FCC91161A31B346DCAD4D7A62A223799222C4C5CD6ADEAD4AFA9FF00D187F31664B7235D497FA8DBDB2EEF4FF1AF9376FD1A7469633D06116738EA26311881EB2238970A69F52EAA2335671E819270E3135E05C0926AAB055CBFDB6ACAE5CFF8EAF49EAF320C33C4E7324F038C86113AC88E273D36FABC8CF1393293C723207C4E8C238648CA3EE14EA84CE5259A398E26B8A8B4B9065E0BC4F4259578E81A0E1C514370D91957241857860E655E07068C219590E44E7A6DC88D4BA5926DADE5C866DDAD7027DB146F7D666F8C67AD3F4FFF004D9B6FFA31FE3672D806A260972D8ED622258FC35E1DF62EB037B1D02A3A237B0DE80EEDDDE2FB7D8EDD850361D98908B523A1C82B8439EF69B3A8C4137C2E16F8231D8ADDF6BB2D488C45E7610FDBB96E67AFA6D1E74FFF0056CD9772F23D09655A390703471460DC364655CBA5DA63ED9B74BB4C7DB36E97698FB66DD5154E773590CE9EA4B7B7317FC8965C8D098AE2B4324C0121A0E06C2E8E1C86F1655CBAA2A9CEE6B219D3D496F6E62FF912CB91A1315C5686498024341C0D85D1C390DE2CAB97C9BF768D3A74FF00A319EBCC8B2607513070C4714611C378534E4830CF0C132ABC0E321844E8C1C864F4DBE91AA88B25235BCB9135C545E04FB628DEFACCDF18C9752E99A8C4F40C9C671866CF2E03735558D75444C7DCB62B8D10C9CE04868C41B14AC07225C5957DEA8898FB98CB9B4F524B2B973FE44B2E7ABAC6815C262607713070CA194611C378534E58297D0AF33BFDE9C1A04788E824696C204614B3A3BBDED3F4E9D905841B1354C7797F7A803F8D611187E717E7A763FE1AE645449E2C6D9EA43352201C88BF6D2181C2A41B1F7D154076C03DBC2F650FD83B6BBB8DE16338BC38BE0D9A0E8F1BE3908D9687989B0C94582804F102768ABDBF6BBCC69CE7DCB640B1F408CD0E6A08434FD5283BDEA6ED8BCAED41A7A1D2AB872310681EB21B8948CABEB6067F7B3C23628DEFACCDF18DD2E94E76CDB0A74BC6726CCD1CC60CDBB5AA5C832F041C7A1D2ABC74320701EB41B8948CABEB614CA84B14D99A398C26B76B54B9065E467860E655E391903E27590E44A4651F7E554185473247A098C6CD1B72B52DE99F56434B97930BDFF64DE372C937235D493FA8DBDB2EEF4FF1A54446F32245898B9AD5BD5A95F53E86BF9B592E11BCB69161A2E6B5715166BD492E11BCC91E81A2E6B56ED6A6BD4D0D21BE4C2F6FDED78DCB24D8A2FBEB337C6360A1FF002C4CEFF7A7065B503DABFC6A0FA8EBB5D7D8BEC503F157275DB13C58D0800198840C42FB078BE873D9ED767148AC3A3FB533A18268A06844328C425E9F364F5108480A3E25026CE1B121088A030578D9EBEF098049D8EC2843A1DDFB61AAED06D4D8EBBB6D98322E108C2000009BD43363B77A09C43650D866C36F1B8A244493128A4621CEF1E7D0942F8921D72BF09B2A0C2A396C22C4C63668DC74595F4DC0CFEF6F84654185473267A098C6CD1B72B52BE9AA88F2E5B48B1318D45B8A8B2BE9BD733F09B75CDFC24CA830A7E5B08B1318D9A371D1657D310D21BE73AF6FDED675B524CA888DE5B4F4131735AB8A8B2BEA7F2AF05E27A12CABC740D070E28A1B86C8CAB974BB4C7DB36C55D2F1629B32BF2E4336ED6AA93EC57AF33D098024341C0D1C518390DE2CAB92F233C4E4CA4F1C8C81F13A308E192328FB853AA133949668E6389AE2A2D2E419782F13D09655E3A0683871450DC364655C8AF418459303A868C41C07A308E1BC5957DC5595099C9B32BF2E04D6E56AA93EC9752E964B388A0D1C671866F03204935558D609FF00F2C4CDFF007B70654AE9BF685AC4765AFB39A7314EC7535765A9A346AE8DDA3468D1A3FF004DDF4D3F4DFF00FC010F37DD018D47D1A429EF61AFADB6D7D4D47D0B8A21A31826C22D09DAEBEDDC36FBF87B40E47A22FCAD42C1C0FB83DED76F05143CEDA29AE62806046784A361513B954E031376D9EC1F1D3A5DA64EDA3628DEC4CCDF18C462A23393656F2E04D6ED6B813EDD5154E7735B146F62666F8CF89A056864E70244C1C3285D603912E14D392E5D3D36ECAE5CFF008EAF49EAF325D4BA592CE22834719C619BC0C8124D55635F2E28DEFACCDF19F03C5511649BA8B98C25B76B5C79062B8D10C9CE04868C41B14AC07225C5957D418678609955E07190C227460E4327A6DF572FF723B2B973FE44B2E7ABCC6815C262607713070CA194611C378534E4839071E84B2AF030C86207A286E1B3D34FBA3E1861A76311368087AE263076DCDBBFC49D1EDDB40AC030B183EC31F1FF0067ADB57886EB6D35DD74EB95FB2FAF0DF75F57469FF4DA15EF3BFF00E07ED9E9D568DA628BBB461F63213106D431117DD7D3B47BD9B881044E90F77D47ED4D9BDBE6AECF5746DB6A98837B370DA98D16DBB8EA6C226F82678D8ED36BB6DAEA6D36EFBABABADA35B4EA6AECF5759B143F7D065F8C641C838F425957818643103D14370D9E9A7DDFA3F4EF633D799164C0EA260E188E28C2386F0A69C8AF5E6459CE3A868381C38AC88E25C595723C5521629BA8B98C26B76B5C7906EA8898FB98CBC17891674A501D0341C38AD08E25232AE5B99072F122C964A006068C4714511C367A69CBE5C517DF519BE3192F62AFCC99E81A2E32BADCAD4D7A96397F64FCDB25EC56396C22C345CE575C7459AF534B846F3247A068B9AD5BB5A9AF53FA60C3F98B325B91AEA4BFD465ED9777A7F8D6E65CAB97930B2B4595785CB3ADD737F09B4331BB707B89EC3651727B6EEB0AD7D3B9EB6900C4353DC51C364F0EE6B383B6CB5F46FE07500203BB61E6191D4110006DEE3E2114384260EE9FA38EF9CFF901DDB0F3034E9088FC38E91E0F89DC22D077BFD7C07CD617C335F67AFABB18BBBEA6BEB7FE2856DF51EF4EAEC1CF5769ACEDFAB89B67A53F854732479894C6CD1B72B32BE9A97B157E64CF40D17195D6E56A6BD4B7E8D1A37696C513DF5999E3192F614FCB61E81A31B346E3A2CCFA62E5435CE7595FBDACEB6A7595111BCB69E8262E6B57151657D4FA197E6C6E869F9B1BA197E6CF9776FD1A7469633D06116738EA26311881EB2238970A69F70B8F7D659F9363C52E162A4A8B98E19B8A8BC7906E97698FB66CA852E9648C48A131C64E066CF320352B4A8D1E2A90CE52345CC6135C545E3C8315EBCCF4260090D0703471460E4378B2AE4D8E67D93F36C8390711674A50030C86207AD08E253D34FABC1071164B2501D0C81C07A288E1B232AFBFAB4B20F416461D49440E3318826B024894F4D3E25650C602C53EC30501BB1FBACBB11CD5520F8AAA5D2C935E57E5C86A815AAA4FB618900717E43A5B6DB6DB1DFAFAF526D40C43B534EFD0EFA37B62A2A60CA4CB95FA0B5125B75AAA4FB7545539DCD6C2E3DF5967E4DB1575446726CCAFCB9135BB5AAA4FB25D4BA592CE22834719C619BC0C8124D55635D5154E7735B0A754267293CD1CC7135C745A5C8319E8308B39C7513188C40F5911C4B8534FABC8CF1393293C723207C4E8C238648CA3EE14EA84CE5259A398E26B8A8B4B9065E0BC4F4259578E81A0E1C514370D919572F937EED1A74E9FF4633D799164C0EA260E188E28C2386F0A69CB146F62666F8C6C0CBEF6784F81A068864980244C62328A51C390DE14D3EAE5D1D492CAE5CFF916CB9EAF325D54459231228344E1C626B3CC80D4D5560AD8AC25E3394965865C866E2A2D527D8D02B84C4C0EE260E194328C2386F0A69C9B033FBD9E11B146F7D666F8C6542A88B259C450989C2704D781902495A54150D7F6DABDB98CFE3ABCE4682DD51131F73192EA5D335189E81938CE30CD9E5C06E6AAB1A5CBFDC96CAE5CFF00912CB9EAF31A057098981DC4C1C3286518470DE14D391A068864980244C62328A51C390DE14D3E91AA88B15235BD05C89AE2A2F067DB146F7D666F8C6542A88B259C450989C2704D781902495A5417A5CA9CED9B25D54459231228344E1C626B3CC80D4D5560BF0C51BDF599BE33E654185473247A098C6CD1B72B52DE98A83157E64C8B1317195D6E56A57D490D2E4E4BEF7FD9578DCB22DD737F09B73C9D493FA72B272EAF4FF25FA60C3F98B3259511E5CC91E82631A8B6F56A57D337B7D1B145F7D66778C6541853F2D845898C6CD1B8E8B2BE9886972725F7BEE055E372C937235D497FA8DBDB2EEF4FF1A4BD853F2DA7A068C6CD1B8E8B33E998E57D93F36C97B0A8E64C8B0D18D9A36E56A6BD315111BCC8916262E6B56F56A57D4D0D21BE4C6F6DE36BC6E5926C517DF599BE3195062B1CC9916262E72BADCAD4AFA9E067F7B7C23628DEFACCDF18C970F2E5B4F40D18D45B8A8B35E99D733F09B7237D493FA8CBDB2EEF4FF1ADEDBF46ED2D8A2FBEA337C67CCBC1789E84B2AF1D0341C38A286E1B232AE4830AF0C1CCABC0E0D18432B21C89CF4DB962AE97CB14DB95F97219B76B5549F641C8388B3A528018643103D6847129E9A7D542974B246245098E327033679901A95A54690D7F725BDB98CFE45B324682DD2ED31F6CD9072F13D0E955E06068C4715A0DC4A7A69CB1575426726CCAFCB8135BB5AAA4FB1A068898E71DC4C62328A5644712E14D3E9A056864E70244C1C3285D603912E14D3974BC4C9DB462B8AD0C93004868381B0BA38721BC5957263C92E962A4A8B98C19B8A8BC7906542A88CD4627A0989C2704D679701B95A54157919E27265278E4640F89D18470C91947DEA88A73B98C9752E964B388A0D1C671866F03204935558D74BB4C7DB362352E1629B6B797019B76B5C09F6C51BDF599BE33E1A34FE9FAE862BD799E84C0121A0E068E28C1C86F1655CBAA2A9CEE6B7545539DCD64BA974B259C45068E338C3378190249AAAC6BE4DFBB469D3A7FD18CF5E6459303A898386238A308E1BC29A72EA8898FB98DD51131F731BAA2263EE6375444C7DCC623551962A4AB797226B8A8BC09F65E0838F43A5578E8640E03D68371291957D542A88B259C450989C2704D781902495A54170A74BC6726CCD1CC60CDBB5AA5C832F041C7A1D2ABC74320701EB41B8948CABEE171EFACB3F26D8E67D93F36D85C7B132CFC9B2F22BC4E7324F1C8341F0CAC88E272328E4863FB6DDEBCC5FF001DDE7234262B8D10C9CE04868C41B14AC07225C5957DE974A73B66D853A5E33936668E63066DDAD52E4197820E3D0E955E3A190380F5A0DC4A4655F57915E27399278E41A0F865644713919472E976A73B68C6815C262607713070CA194611C378534E4681A2192600913188CA29470E4378534FA46AA22C548D6F417226B8A8BC19F6C51BDF599BE318D0344324C0122631194528E1C86F0A69F715854258A92CB0CB9135C545AA4FFCF8A2FBEA337C637432FCD8DD0CFF0036B7432FCD8CA830A8E5B08B1318D9A371D1657D37032FBD9E11B737235D3737A8CBD7316CBFF1AEB97F84DBAE6FE1264BD85472D87A068C6CD1B8E8B35E9B8E67D93F36D85CFB142CFC9B7D197221AE73ECADC36B3EDA9E64B846F2DA45868B9AD5C5459AF52EB9BF84DBAE5FE136EB9BF8499511E5CB71162631A8B7151657D310D2E4E73AF6D164D9F6D493628BEFACCEF18CA888DE6488B131735AB76B52BEA48690D72637B7EF6BC6E5926C517DF599DE31B144F62866F8C643686B9CFBDB78DACEB6A49BA197E6DF9B146F7D666F8C65E46789C9949E391903E274611C324651F7AA229CEE637545539DCD6C51BD8999BE31B032FBD9E13E09755119AB38F40C9387189AF02E049355582E2AE978B14DB95F97219B76B5549FF820E5E27A1D2ABC0C0D188E2B41B894F4D396397F64FCDB15EBCCF4260090D0703471460E4378B2AE5D5154E7735BAA2A9CEE6B7545539DCD6E97698FB66DD2ED3276D197915E18265578E41A0F86518390C9194724BAA88CD59C7A0649C38C4D78170249AAAC148C4BA58A6DADE5C866DDAD7027DB146F7D666F8C6EA8AA73B9ADD5114E77318D03444C738EE263119452B2238970A69F52EAA2335671E819270E3135E05C0926AAB055CBFDB6ACAE5CFF008EAF49EAF320C33C4E7324F038C86113AC88E273D36FBF2E28DEFACCDF18D8A37B13337C67C7146F62666F8C6C0CBEF678465E0838F43A5578E8640E03D68371291957DC51BD8999BE31B468DEC839789164B250030346238A288E1B3D34E4830CF0C132ABC0E321844E8C1C864F4DBE91AA88B15215BCBA135C545E04FB19EBCC8B2607513070C4714611C378534E4839071E84B2AF030C86207A286E1B3D34FB8E67D93F37F0418678609955E07190C227460E4327A6DF572FF723B2B973FE45B2E7ABCC830AF1393293C0E0D184328C23864F4DB96171EFACB3F26C78AA22C537513418C26B76B5C69062B8D10C9CE04868C41B14AC07225C5957D41C838F425957818643103D14370D9E9A7DC55D2F19CA4F2BF2E43371516A93EC975511648C48A0D1387189ACF32035355582E28DEC4CCDF18C46A5D33548D6F2E43371517813EC6815C262607713070CA194611C378534E5F2E28DEFACCDF18CA888DE6488B131735AB76B52BEA5D0CBF36B7432FCDAD8A2FB14337C636065F7B3C236E65418ABF32645898B9CAEB72B52BEA4C97B0A7E6488B0D18D9A36E56A6BD312E11BCC91E81A2E6B56ED6A6BD490D21AE4C6F6FDED78DCB24D8A27BEB333C6375CDFC24CB9572739F64E8B2ACFB6A7BE0A830A7E5B08B1318D9A371D165BD33033FBDBE11BE8D85C7BEB2CFC9B6397F64FCDB25EC56396C22C345CE575C74599F53FA37D3732A0C2A39923D04C63668DB95A96F4CE793A92FF004E564E5DDE9FE4A8690D72617BFEF6BC6E5926541853F3247A098C6CD1B72B52BE9BF2E28DEFACCDF18DD5154E7735BAA2A9CEE6B7545539DCD633D799E873812260E190E2B21C8970A69CB032FBD9E13E3A34FE9FAE862BD799E84C0121A0E068E28C1C86F1655C8AE3444C4C0EE183106C528C2386F1655F7AA229CEE6325D4BA592CE22834719C619BC0C8124D55634830AF0C1CCABC0E0D18432B21C89CF4DB974BB4C9DB46E97698FB66C6815A1939C0913070CA17580E44B8534E44725C2C53756F2E4336ED6B813ECBC1789E84B2AF1D0341C38A286E1B232AE585C7BEB2CFC9B1E2974B252545CC60CDC545E3C832F22BC304CAAF1C8341F0CA3072192328E5D5154E7735B0A754267293CD1CC6135C545A5C832F05E27A12CABC740D070E28A1B86C8CAB915E8308B260750D188380F4611C378B2AFB8ABAA133936657E5C09ADCAD5527DBAA2A9CEE6FF00EE7FFFC4003E10000102050106030703040004070000000203130001041114150512212232331085D4162023346394E4313541245161624260718206305281B1B3D1FFDA0008010100133F00FF0091349A05DB7281054F9D5408F899C681B2FD34681B2FD34681B2FD34681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C681B2FD34681B2FD34681B2FD378E9340BB6E5020A9F3AA811F13386125DB72BD048F9151209DC0CE5C46302969597B2DCEC2417BB41EEE81B2FD34681B2FD3430920E375F509072242212B0004B80C3092EDB95E8247C8A8904EE0672E231A06CBF4D1A06CBF4D1A06CBF4D1A06CBF4D1A06CBF4DEF795D2463AABB6E2A09072242473B9984B80CED1A06D4F4D1A06D4F4D1E69491F7F1AB5020E37408247C8AAE272B1846AD40BB6E502E907224B91F1338C0AAAA7996DDEC2476B3A1D519F4B43938F4A952ADF06A954960B2C82A1CE11815543938F549552DF1AA924910B2282A7CE719F4B54F3396EF6153B59D08D22BD76DC4C150E7490209DC0C27C0A33E96BB1B22955A547E0D2AAAAC77597483902302AA9597B11AEFA417BB471ABD020E36A9A47C8AAE272B181CB88C605550E4E3D52554B7C6AA492442C8A0A9F39C6BFB2FD4C6BFB2FD4C67D2D7636452AB4A8FC1A555558EEB2E907204605552B2F6237DF482F768E349AF5DB72BD75439D24083A0C23CD2923EFE348AF5DB71305439D24082770309F028D036A7A68C0AAA565E71AEFA417BB47D378F2BA4F7BCAE923CCE93C7CD2923EFE35FC579EA5497ED629DACEDBABC349CEC8C863EBA5B9BAC46262BCF552ABF6B7CED67777AA71E5957E1A06532CD2A48777282F76AFD318994CB35492FDADF0BDDADDEA8D27071B1D8FACAEFEF3F1E67571A062BCF52AA877728ED676FD3E38994CB35492FDADF0BDDADDEA8D27071B1D8FACAEFEF3FE1E69491F7F1E594BE1F7F1E5749EF795D2479A5278F9A5247DFC795D24681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C795D5F869340BB6E5020A9F3AA811F1338D2681071BA05D50E749013E0611F611A4502EDB8A9AA7CEAA0473B999CF8943092EDB95E8247C8A8904EE0672E231A06CBF4D1A06CBF4D1A4D020E3740BAA1CE92027C0C23EC3C3CD2923EFE3CAE93C3EFE3CAE93DEF2BA48D036A7A68D036A7A68D036A7A68D26BD071BAF4153E755010E8038FBF8F2BA48CFA5AEC6C8A556951F834AAAAB1DD65D20E408C0AAA565E71BEFA417BB47D378D22BD76DC4C150E7490209DC0C27C0A357A05DB71504839125C8E7733097018CFA5A565E71BEFAA17BB47D378C0AAAEC6C8AA56A91F8D4A92A89DD15D23E438D5E8176DC54120E4497239DCCC25C06275F4B4ACBCE37DF542F7694E9BC3E92EDB890AA1CE91104EE0613E053B479A5247DFC6915EBB6E260A873A48104EE0613E051E694913AFA5A565E71BEFAA17BB4A74DE1F4976DC48550E748882770309F029DA3CD292302AAA9E672DDEC2476B3A11A06D4F4D1A06D4F4D1A06D4F4D0C2A838DD02091F22A2272B181CB88FBDA06532CD2A48777282F76AFD31ECA7E6C7B29F9B1ECA7E6C7B29F9B1A4E0E3E3E47D7577F79F8D032996695243BB9417BB57E98F33A58FBF8D032996695243BB9417BB57E98F33A48D57071B1F23E82BBFBCFC65E532CD2A48777702F76B7BA651AFE532CD524BF6B142F76ADD51F7F1A06532CD2A48777282F76AFD31AFE532CD524BF6B142F76ADD51AB60E363E47D0577F79F8CBCA659A5490EEEE05EED6F74CA3CCE963EFE340CA659A5490EEE505EED5FA631329966A925FB5BE17BB56EA947B29F9B1ECA7E6C7B29F9B1ECA7E6C7B29F9BFF91814B54F3388DF7D23B59D3861241C6EBEA120E44844256000970186125DB72BD048F9151209DC0CE5C46302969597B2DCEC2417BB41E190AA0E36A82A1CE9109CAC6984F814AF1FBA6662318DF3CFB7B994BF6ED7DF8D0365FA68C855071B54150E74884E5634C27C0A578D7F6A7A98D7F6A7A9F0C0A5AA79971BEFA476B3A7D30C24838DD7D4241C890884AC0012E03E19F554ACBD96E76150BDDA087D55DB7281054F9D52239DCCCE7C4A348A041C6D505439D2404E563009F028C0A5AA79971BEFA476B3A7D30C24838DD7D4241C890884AC0012E03E1814B54F3388D77D23B59D38D0365FA68D2681071BA05D50E749013E0611814B54F3388DF7D23B59D38D0365FA6F7B48AF5DB71305439D24082770309F02F0CFA5A565E71BEFAA17BB47D3787D25DB71215439D22209DC0C27C0A768D036A7A68C0AAA565E71BEFA417BB47D378D22BD76DC4C150E7490209DC0C27C0A1F49071BAF4153E754842560039F128CFA5AA799CB77B0A9DACE846915EBB6E260A873A48104EE0613E05E19F4B4ACBD88D77D50BDDA38C0AAAEC6C8AA56A91F8D4A92A89DD15D23E4386155DB7282A120E44848E7733097018FDAF0F2D8C6F9E65CDFC45FA2F6DC87D25DB71215439D22209DC0C27C0A768D5A8176DCA05D20E449723E2671815554F32DB9D848ED6743AAD0C2A838DD02091F22A2272B181CB88C6BFB2FD4C67D2D53CCE5BBD854ED6742348AF5DB71305439D24082770309F028D5E8176DC54120E4497239DCCC25C063EFE348AF5DB71305439D24082770309F02F0CFA5A565EC46FBEA85EED1C3E92EDB890AA1CE91104EE0613E053B7BDE594B18994CB34AAAFDADF0BDDAB754A3F63D3B4FFB975CCFFF004B3519794CB34A921DDDC0BDDADEE9947B29F9B1FB1E9DA7FDCBAE67FF00A59A8CBCA659A5490EEEE05EED5FA651AFE532CD2AABF6B142F76ADD5E1A06532CD2A48777282F76AFD31978AF3D54921DDDC3B59DDEE99C7B57F851A56A98789FD0FCCBC8B9BF8AE76E56DFB47B29F9B1A4E0E3E3E47D7577F79F8D032996695243BB9417BB57E98CBC579EAA490EEEE1EED9DDEE99C6AD9D9390C7D14B737588D0329966A9543BB9417BB57E98D7F299669555FB58A17BB56EA8D5B071F1D8FA0AEFEF3F1A56A98789FD07CCBE8B9BF8AE76E56DFB4626532CD524BF6B7C2F76ADD51A4E0E363E47D7577F79F8F2CA5F1F2CA4F7BCAE92184976DC48D23E4544827703397119DA3029695979B73B0905EED27D578D5ABD071BAF5D20E449710E8008D0365FA68C0A5A565E6DDEC2417BB41D57F0D5EBD76DC4CD23E4557209DC0CE5C47C349A05DB7281054F9D5408F899C6052D0E4E3D2AB548FC6A5492582CB2091F21C6BFB53D4C642ABB6E2A6A9F3AA4473B9A853E253B469340838DD02EA873A4809F030F0D268176DCA04153E755023E2671E694912AFAAA565ECB73B0A85EED04642ABB6E2A6A9F3AA4473B9A853E253B4795D5C7D8469140BB6E2A6A9F3AA811CEE6673E250C24BB6E57A091F22A2413B819CB88C6052D2B2F65BBD8482F7682357AF41C6D304839125C42560009701F1F2BA4F7BCAE921F49071BAF4153E754842560039F128CFA5AA799CB73B0A9DACE87863AABB6E2A09072242473B9984B80CED1A06D4F4D1A06D4F4DE19F4B4ACBCE35DF542F768FA6F181555D8D9154AD523F1A9525513BA2BA47C87157B7681943FDCDA58CED2FF0003384A8184E98E9DFE12B19DEEFC536CC71306699343AA76BDDA8D1C234708A8A59A6A28F54AABCEE3295A569AB68248E5294BFCCED19F4A836F623567950BDDA38C0AAAEC6C8AA56A91F8D4A92A89DD15D23E5386155DB7282A120E44848E7733097018FDAF0F2D8C6F9D65CDFC55FB77B46055576364552B548FC6A549544EE8AE91F21C6935E838DD7A0A9F3AA8087401F86935EBB6E57AEA873A48107418467D2D7636452AB4A8FC1A555558EEB2E9072047ED78796C637CEB2E6FE2AFDBBDB721F4976DC48550E748882770309F029DBDEF2CA58CBC579EAA490EEEE1DACEEF74CE356CEC8C8C8FA096E6EB1E18994CB35492FDADF0BDDAB754A3D94FCD8F653F37C3EFE3CB29607F51DE9CA5797F995E252E128095E7B8984CA7697FD250139948252909A73BCF8CEE2769CF85E72BCA568527610194AF39CE73FE2528AC49B1AA496099A6AA72FD6425295E5BD294ED69DBC3FE10995E45BB2FE25398DEDFDE739FF31A06532CD2A48777282F76AFD3E1AAE0E363E47D0577F79F8CBCA659A5490EEEE05EED6F74CA3D94FCD8D27071F1D8FAEAEFEF3F1A06532CD52A8777282F76AFD318994CB35492FDADF0BDDADDEA95AF1FB1E9DA7FDCBAE677FA59A8D2B54C3C4FE83E65E45CDFC573B636DFB7BDABD7A0E3698241C892E212B0004B80C6052D0E4E3D2AB548FC6A5492582CB2091F21C7EE99988C637CF3CDEE65AFDBB5F7E1849071BAFA84839121109580025C06184976DCAF4123E4544827703397118C0A5A565ECB73B0905EED0469340BB6E5020A9F3AA811F13387D541C6E82A150E74884E563009F028CFAAAA79971BEFAA76B3A7D368F2BA48FF00BE5E14E52963266049E42E5796E2729CE76FE4A72B0CA73BDB6A3DBE330A74D2B727F1C853BDE7FACB84AD3BECDDB2A2AF2025BC694913404A523DDDC9F35B7665C62F27524E9A46204A87EA247350E72BFEA0DF87FDC51A4502EDB94082A7CEAA047D671AFED4F531AFED4F531AFED4F531A06CBF4D1FB5E1E5BF93F22C39BF8A8772F6DC8C85576DC54D53E75488E77350A7C4A768D0365FA68FDAF0F2DFC9F9161CDFC543B97B6E4642ABB6E2A6A9F3AA4473B9A853E253B7BDA457AEDB8982A1CE920413B8184F81430AAEDB941509072242473B9984B80C605552B2F38DF7D20BDDA3E9BC795D2467D2D7636452AB4A8FC1A555558EEB2E907204681B53D3463AA838DAA691F22A2272B1A652E2328D036A7A68FDAF0F2D8C6F9E61CDFC55FB77B6E43E92EDB890AA1CE91104EE0613E053B78274229A28A467314574AA24A94D407268A4523009DD4BDA366A96651AA56A12A62A8DD9DD8A646986649CA7BB335EE5095E68D32B4AD492A84D39DC46EF148A5294A45619CE2A7E67682CAA6446AA15339B9F0F978EF5AE56B5A2946432DABB384A725F78385F7921782FD256B4E5C6F41B36A2B0954256B9FC202E1CC30D1A7BF3150C4B94E522E1319CBF48D5E81071BA04123E455713E0607E1F7F1E57491AFECBF5319F4B54F3396E76153B59D08D5A81071BA04123E455713958C3C302AAA9E672DCEC2476B3A10C2A838DD02091F22A2272B181CB88FBDA06532CD2A48777282F76AFD3E1AB60E363E47D1577F79F8D2B54C3C4FE83E65E45CDFC573B636DFB4626532CD524BF6B7C2F76ADD51ECA7E6C6262BCF552ABF6B7CF76CEDBAA718994CB34AAAFDADF0BDDADDEA94693838F8F91F5D5DFDE7E3CB297C03F8AA40A9EB11FFE838A0009112469A736493504C4C39653B14A7394F8CA70B8802C549319A694C3993414BDF7E4090CA5212E6B95EE9D624CA03322DD4896107A616DD9CC1DB7198F4C02929A6B23309837219719CA729FE9394B8452593ACAE5123ABA6911D42A5BA92130A4524729094CAD149564926A27906DA6F12739F2818DCB723DABFC28D0315E7AA9243BB9476B3B7E98FBF8D032996695243BB9417BB57E98CBC579EAA490EEEE1EED9DDEE99C7B57F851ED5FE146818AF3D54921DDCA3B59DBF4C6939D919191F5D2DCDD6231315E7A9525FB5BE76B3B6EA9FBDA4D02EDB94082A7CEAA047C4CE35FDA9EA633EAAA9E6711AEFAA76B3A71A4502EDB8A9AA7CEAA0473B999CF8943092EDB95E8247C8A8904EE0672E231814B4ACBD96E76120BDDA08D268176DCA04153E755023E2671ABD7AEDB899A47C8AAE413B819CB88C6052D53CCE235DF48ED674E33EAA87271EA95A547E0D2AA92216450483903C1CDD3553569D748E432FF008AD23DF9CBFF00485E25FA47F78D8FB357A9A79C84B7484E49C8C933039184E45FAEE6F42889A339DA769F298C8A5C65FCCA10E2E20B564D6DF9CA529EE8260B29729CE579A96943CA22E86FCE76DF4C84A5C65FC4E51AFED3F531E69491814B54F32E35DF48ED674FA6D1A06CBF4D1E6949E390AA0E36A82A1CE9109CAC6984F814AF1FBA6662318DF3CF37B994BF6ED7DF8CFAAA1C9C7AA56951F834AAA4885914120E40F7BCAE93C25415554F32DB9D848ED6743AAD18EAA0E36A9A47C8A889CAC6994B88CA185576DCA0A84839121239DCCC25C063F6BC3CB631BE799737F117E8BDB721F4976DC48550E748882770309F029DA356A05DB728174839125C8F899F8E75354EFA412B1CEE8A8768DEE09998EE914A5FA6F6EDC653FE244504129FFF009049CE53FF00E611B2F475273B5CCE9D496EC8F965720984E7C6F38A619260676E2421329CC653FED79DBFBC4E9C4159A69269260332971294B74A728FED3BCE769FFED394E3CAE92356A05DB728174839125C8F899F86915EBB6E260A873A48104EE0613E051A457A0E3699AA7CEAA0212B001CF8946055553CCB6E76123B59D0EA8D036A7A68D26BD071BAF4153E755010E803F0D26BD76DCAF5D50E749020E830F7BCB29635FCA659A5557ED6285EED5BAA3EC235FC579EAA557ED629DACEDBAA313299669555FB5BE17BB56EA8FD8F4ED3FEE5D733BFD2CD4695AA61E27F41F32F22E6FE2B9DB95B7EDE1AB60E363B1F415DFDE7E3DABFC28A5FFC432A951BFF0009952848E7FE37E51B4692A13552FF005B4C061A5E2A1153713DE3101BDA7FC910CA195A29D05260A6E19015AF3FE084A509D31CE729FF007E33B5FF00EB0B4AC7507C39A7C25FDA5FC4BF494A5294A51A06532CD2A48777282F76AFD31AFE532CD2AABF6B142F76ADD5E1E59491A062BCF52AA877728ED676FD31A4E7646431F5D2DCDD6231315E7A9525FB5BE76B3BBBD538F653F363D94FCD8F653F37DED5EBD071B4C120E4497109580025C063CAEAE33EAA95979B77B0A85EED0755E35FDA9EA633EAABB1B22A92A55BE0D52AAA2774575439C23029695979B73B0905EED0755E348A05DB715354F9D5408E773339F12F0FB08D5ABD071BAF5D20E449710E8008D5ABD76DCAF4123E455720E833F0D5EB9071BAF5D20E449610958023029A85FC7A55AA91F8D4C9A6A85964122E0713AFA9AA799C46BBCA1DACE9C799D5786052D53CCE235DF48ED674E340D97E9A3CAEAE30296A9E6711AEFA476B3A719F5543938F54AD2A3F069554910B228241C811A06CBF4D1814B4ACBD96EF6120BDDA08D5EBD071B4C120E4497109580025C06184976DCAF4123E4544827703397118C0A5A565ECB73B0905EED0469340BB6E5020A9F3AA811F133F7B48AF5DB71305439D24082770309F028F34A48FBFF0C75576DC54120E44848E7733097019DA3F6BC3CB631BE799737F157EDDEDB9181555D8D9154AD523F1A9525513BA2BA47C87E19F4B4ACBD88DF7D50BDDA387D25DB71215439D22209DC0C27C0A76F0FBF8F2BA48C0AAA1C9C7AA4AA96F8D54924885914153E738FDD33311FC9F9179BDCCA43B96BEFC681B53D3467D2D7636452AB4A8FC1A555558EEB2E9072047ED78796C637CEB2E6FE2AFDBBDB721F4976DC48550E748882770309F029DA31D55DB71504839121239DCCC25C067689D05552B2F38DF7D20BDDA3E9BC795D24605550E4E3D52554B7C6AA492442C8A0A9F39C6BDB33D4C6055576364552B548FC6A549544EE8AE91F21F8F95D27BDA06532CD2A48777282F76AFD31AFE532CD524BF6B142F76ADD51AB60E363E47D1577F79F8F6AFF0A355D530F13FAEF96651737F15BEE4ADBF78FD8F4ED3FEE5D733BFD2CD465E532CD2A48777702F76B7BA65E3E59491A062BCF5524877728ED676FD31AAE0E363E47D1577F79F8D2B54C3C4FE83E65E45CDFC573B72B6FDA340C579EA5550EEE51DACEDFA63EC2340CA659AA550EEE505EED5FA631329966A925FB5BE17BB56EA8D27071F1F23EBABBFBCFC79652C6BF94CB35492FDAC50BDDAB7547DFC795D2465E2BCF52AA877770ED6777BA671ED5FE14695AA61E27F41F32F22E6FE2B9DB95B7EDE3E594BEF69340BB6E5020A9F3AA811F13387D541C6E82A150E74884E563009F028CFAAAA799C46FBEA9DACE9C6AD5E838DD7AE907224B887400467D557636455254AB7C1AA55544EE8AEA873847ED78796FE4FC8B2E6FE2A1DCBDA35FDA9EA6349A041C6E8175439D2404F81846052D53CCE237DF48ED674E1849071B48520E4484425604C25C06578C855071B54150E74884E5634C27C0A578D7F6A7A98C85576DC54D53E75488E77350A7C4A76F0CFAAA565E6DDEC2A17BB41D578C0A5AEC6C8A54AA96F8D5492AB1DD65D53E7386125DB72BD048F9151209DC0CE5C46340D97E9A33EAA87271EA95A547E0D2AA9221645048390235FDA9EA633EAAA9E65C6BBEA9DACE9F4C795D278E9140BB6E2A6A9F3AA811CEE6673E251A06CBF4D1A06CBF4D19F5543938F54AD2A3F069554910B228241C81EF6915EBB6E260A873A48104EE0613E051A06D4F4D1A06D4F4D1A06D4F4D1A06D4F4D181554ACBCE35DF482F768FA6F1AB5020E37408247C8AAE272B184605550E4E3D52554B7C6AA492442C8A0A9F39C67D2D53CCE5B9D854ED6742356A041C6E81048F9155C4E56308F2BAB8FB08F34AB87D241C6EBD054F9D521095800E7C4A3F74CCC47F27E45F6F73290EE5AFBF18EAA0E36A9A47C8A889CAC6994B88CA35FD97EA633E96A9E672DCEC2A76B3A11AB5020E37408247C8AAE272B1843E920E375E82A7CEA9084AC0073E251AFECBF530FA4BB6E242A873A44413B8184F814ED18EAAEDB8A8241C89091CEE6612E033B44E82AA95979C6FBE905EED1F4DE3CAE9231D55DB71504839121239DCCC25C067689D05552B2F6237DF482F768FDFF002CA58F653F363D94FCD8F653F36340C579EAA490EEE51DACEDFA63EFFC34AD2F332FFA1F997966F7329CED947B57F851ED5FE146818AF3D4AAA1DDCA3B59DBF4C7D84799D5F86939D9190C7D74B737588C4C579EAA557ED6F9EED9DB754E3DABFC28F6AFF0A3DABFC28CBC579EAA490EEEE1DACEEF74CE355CEC9C8C8FA096E6EB11E594918994CB35492FDADF0DEBB56EA94695838D8F91F5D5DFDE7E3CB2923CCE9634ACEC9C8C8FAC96E6EB11ECA7E6FBDE57490C24BB6E57A091F22A2413B819CB88C681B2FD34681B2FD3479A5247DFF86052D0E4E3D2AB548FC6A5492582CB2091F21C67D5553CCE235DF54ED674FC349A041C6E8175439D2404F81847D8469140BB6E2A6A9F3AA811CEE6673E251A06CBF4D1A06CBF4D1A06CBF4D1AFED4F531AFED4F530FAABB6E5020A9F3AA4473B999CF8946052D0E4E3D2AB548FC6A5492582CB2091F21C67D5553CCB8D77D53B59D3E9B4795D24681B2FD34681B2FD3430920E3690A41C890884AC0984B80CAF1814B43938F4AAD523F1A9524960B2C8247C871FBA6662318DF3CF37B996BF6ED7DF861241C6EBEA120E448442560009701F7BCAE923CD293C7CD2923EFE356A041C6E81048F9155C4E56308F34A4F0D26BD76DCAF5D50E749020E83086155DB7282A120E44848E77330970189D05552B2EB8DF7D20BDDA3E9BC6915EBB6E260A873A48104EE0613E051AB502EDB940BA41C892E47C4CE3EC3C185576DCA0A84839121239DCCC25C063F6BC3CB631BE799737F117EDDEDB90FA4BB6E57D42A1CE91104EE0613E051E575712A0AAAA7996DCEC2476B3A9F55A31D541C6D5348F915113958D329711946AD40BB6E502E907224B91F1338CFA5A565EC46FBEA85EED1C6055576364552B548FC6A549544EE8AE91F21C79A5244EBE9695979C6FBEA85EED29D3787D25DB71215439D22209DC0C27C0A76F7BCAE9231329966A925FB5BE1BD76ADD528F653F363D94FCD8F33A58FBFF0D7F29966A925FB58A17BB56EAF0D0329966A9543BB9417BB57E98C4CA659A5557ED6F85EED6EF54A34AC1C6C7C8FAEAEFEF3F1E59491ED5FE146AB9D9390C7D04B73758F0D0315E7AA9243BB9476B3B7E98FBFF0F2BAB8FB08D7F15E7AA955FB58A76B3B6EAF1D032996695243BB9417BB57E98D5754C3C4FEBFE59945CDFC56FB92B6FDE349C1C7C7C8FACAEFEF3F1A06532CD2A48777282F76AFD3EF795D24681B2FD34681B2FD34681B2FD3469140838DAA0A873A4809CAC6013E051F7FEE69140BB6E2A6A9F3AA811CEE6673E250C24BB6E24691F22A2413B819CB88CED1A06CCF4D19F5543938F54AD2A3F069554910B228241C810FAA838DD0542A1CE9109CAC6013E051AFED4F531AFED4F53190AA0E36A82A1CE9109CAC6984F814AF13AFAAAA79971BEFAA76B3A7D368D268176DCA04153E755023E2671E575719F554ACBCDB9D8542F7683AAF0FAABB6E5020A9F3AA4473B999CF894681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C6AF5EBB6E26691F22AB904EE0672E231814B54F3388D77D23B59D38D0365FA6FF99FFFC4002A11000103030205040203000000000000000100020304051106211213314051101422413280162442FFDA0008010201013F00FD9A073E83708641EFA59046325433897A2924118C950CC25E9DEEDD15DEB22A6A77F1EE55B756B2DF172A66F555FAA5B5748EE546412B4C81EC83B8B2E3E9F8F74767A75496CE42A3823ADAA2F937C7D2BD5AA8DF3B1EE6630BD8521A511F00030AD956EB55D1F0039612B9E00C94C7878EE88CABEC8200C7F8475355D1D710C3B29EF02BA2CCB2E0A9357CD08E40391E54B7685E1B237F2F2BDC3EB18C847FA54C0B58223F5DD67016A767F4DEEF0A42E3212A9C1126241B2ABB232439A5F1F6A4824A69431EAC25B253C2E3F41746E3BAE87215C6DCDB93381C765268280E785E9FA065CE5922FE3B5B147CB90712A8D2570E6F1C4CC0565A534B42D63BAAC671DD0F8EC5608DC2F92C1F2B87EC84785FB2D9BF00BA7EDDFF00FFC400251100010401040104030000000000000000010002030411051221403210224180144261FFDA0008010301013F00FB76D6A73709A139B8EEF2AA40F95E24F85269DF907785069E18FDC5CAFEDDFC0F407B4D4C8B729849523DA154B53161084AF7BF20AB359F356DC5A830A23B43C9513FAAB518B8DC151D335FC555A518707CA15FB94DF4042C1CA6E222F47DDDAF95A77364350FE27709B69CDF6BC26B848DE15AE1CF4381DAC65413188E426EB2F09BAD1F9085F8F3951EA9106E15B977BF211E5BDA6AC64AC05C2E10217921F6EFFFD9, '1', '2022-03-16 22:15:46', '1', '2022-03-16 22:15:46', b'0'); -INSERT INTO `infra_file_content` (`id`, `config_id`, `path`, `content`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5, 4, '0d9be64ab8674344b236df60f4c39b62.jpg', 0xFFD8FFE000104A46494600010100000100010000FFDB0043000302020302020303030304030304050805050404050A070706080C0A0C0C0B0A0B0B0D0E12100D0E110E0B0B1016101113141515150C0F171816141812141514FFDB00430103040405040509050509140D0B0D1414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414FFC20011080102010203011100021101031101FFC4001E00000301010101010101010000000000000008090701060A02040503FFC4001C0101000203010101000000000000000000000105020406070308FFDA000C03010002100310000000AA6000000000000000000000000000000000070000000000E81C3A70E8001C03A0700000E8001C2401808000FF000BF9808017F8E12007F8C00A0200040102BE0120C0000BFC000708045D03033802AA794029412BC69C0DFC9B206005261020356037F37E1551D33CB1AA1160BFC00070804553201017F4554D50A002A86AA4582FE0800D51164AA66503FE74CA48B22A85FD1551561552A98AB17F8000E1008AA640202FE8AA8AB00FF0BF98097F490007AB12D2D2920C0DF8F564AC2FE8AA8AB0AA954C558BFC00070804553003013CA0AA9AB1540F2A45A3CA95409B27953CB173C55474CF2C4593CB173C4047F80E9208FA27000384FF0032C387406A0CA8D58554D50D5895A6563526A66A82B06546565A61553541AA1013A0700AAA0000004FE37F03002809E449B22AA5D0303384023572E79F3B250030003CA973C6089FE2026FC3002025FE0003F22FE7CEC9AB9E58B9E6A6795030037F18227F9C26C8E913687E8A504303D48FE9BF916874874C6089FC4863E9E8000E1008CAC7F440C7F4E08195407FC4006A8404E9C1A932A1AA22D1AA0D39AA8AB8FE99492B8BFC708045FE000384023033D494A04A8CB0CA0FA261812401E5C7F8DF095A57F2400EA88115E885E3542585A530037F182384022FF0001C20115F0C00A02791303384023572A808794FCF0666B0E8F062D2B32107EC9B23A66A679724015FCC00D4C9B47D3D0001C201169CCA86B0CA0404E92ACAA62AC5F13FA4FF0033E3965D84EBBF58CCFE4D5B671FF2C44C8B03566563FA2AC6AA5501023A5540003F22FE4D93531D303003001582E79164BE50FEA463B41BD9EF975F7FD2DB5FD2F595FBE75D57FC0991F2754009583545262178D51498F5C0007E45FC8B45CF22C9AB0FF1BE1810AA9368A8312CC516DE535BBDEBA973F7DD6D7647E5FD2B29EC9C8FA0FBC4B2CB19AE55315601FE17F26B9400C00FA27000384FF22C0D58D48FE8808FF1014B4A4AD1C786F9C8DB79BF1DEDBC6DD53FBFACDCF1FF001F41FF0027D57C5D84EC6A13EDAC72C3533541AA101032C32A32B3E944000E1200754408C00B4A6006003FC60007874379C6DAFE7F2EFA09F58C5FACAFD4F98DE553F4BF11437B2A4C1A41164D4CAA640203E9E89B26A6501000384022FF001941EA480C3A44DA1FA2BF9D10F1C6A5D9FF002FCEEE7F92B36330DEC3D671B65FC5EE9C96CBD0E9C1437F2BF8BF01EA8CB0C0490057F2948001C2010FE9961958AB0FE0155055055CFF00B4CB59187FA6CB4BC59A4C69713FEB44FEFE9094C01FF2018FE9AA116C7F4E1D2AA0001F917F241969CCACCA495E7AA3E89C9567AB024095EC5D0FEE1EE1A610F10601FE382043FA6FE06006005800003F22FE7961562AA1E449B26A650127F1218F225531561FD32C1A910235326D1F49879522C8FE8810FE9404E1008BFC000709FE2B065635007040CFA503840335632B1A835332B32C2A899512B4D58D50554CB07F0E954C08045FE0003848015837F37F3D41960D48951BF9218FA4C30337C3D719392BCA4C4831FD35635422C0AA9D1803D480FE9404000FC8BF9E58000D509AC6FE745FCC046A46A8F522585272178FF0BF8FF120CC0CFA4C3CA9164BA048527F9F55000070804354006566A85532561C035432B1AA1AA1543551023803FC6544AD2D399512B4AA64AD1A82AA8001C20115F090605531562AA115C09FE5283D58969EA400AA6749046FE55022C801818E91A98E98C10001C201154C80405FD1553CA0EA9008AFE2025CF3CA8809EAC9583023A43A64832D31EA895A30070D588B27963E9E8000E1008B4E20203542AA55422C13FCA002AC5A52568D48AB8AA1400D50AA64021AA32B2D39C10032C1A732B2808001C2010001E5874CAA87CAB9D18032C37C1FD26C95F4E1BE9E549AE6025A62181EA47F85FC7F8C00408BFC000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007FFC4004210000003060209020503030203090000000607080004051415160917010203111318195785253810202147671226272829464175223739303142505160616383FFDA0008010100011200FF00C8F7B6F6DEDBDB7B6F6DEDBDB7B6FF008EFF00868D3A34FCBBDBF568F8FEAD0DBDB7B6F6DFF32F05E27A12CABC740D070E28A1B86C8CAB97545539DCD6EA8AA73B9ADD5154E7735BAA2A9CEE6B614EA84CE5279A398C26B8A8B4B9065E0BC4F4259578E81A0E1C514370D919572EA8AA73B9ADD5154E7735BAA2A9CEE6FC5782F13D09655E3A0683871450DC364655C97919E27265278E4640F89D18470C91947DC2995099CA4B3433184D715169721F2F545539DCD6EA88A73B98C830CF139CC93C0E321844EB22389CF4DBEAF233C4E4CA4F1C8C81F13A308E192328FBD5114E7731BAA2A9CEE6B7545539DCD6EA8AA73B9ADD5154E7737E6C51BDF599BE318D0344324C0122631194528E1C86F0A69F7AA2263EE5B75444C7DCC6C51BD8999BE31B032FBD9E1197820E3D0E955E3A190380F5A0DC4A4655F50720E3D09655E06190C40F450DC367A69F4F154658A6EA2E6309ADDAD71E41950A5D335671E82638C9C0CDE05C09256951A542A88B259C450989C2704D781902495A54170A84BC6726CCD1CC70CDB95AA5C8319EBCC8B2607513070C4714611C378534E49752E99A8C4F40C9C671866CF2E03735558D62ACA80B152795F97026B8A8B549F62BD061E8738121A310681EB21C8971655F550AA22C967114262709C135E064092569505E974A73B66DD2E94E76CD92EA5D335189E81938CE30CD9E5C06E6AAB1AC55D50962A4F2BF2E44D71516A93EC839789164B250030346238A288E1B3D34E58A37B13337C636065F7B3C2319EBCC8B2607513070C4714611C378534E5D51131F73188D54458A92ADE5C09AE2A2F027DB146F7D666F8CF9B146F7D666F8C6C51BD8A19BE33E38A37B13337C636067F7B3C232A0C55F96C3D04C5C6575C74595F52FA32E4437CE7593B86D675B53AC9708DE5B48B0D1735AB8A8B35EA785CFBEA2CFC9B6ED1B99506151CC91E82631B346DCAD4B7A62A223799222C4C5CD6ADDAD4AFA9AE4437C98593BC6B78DCB3AD85CFB142CFC9B25DC29F96C3D03463668DC74599F4CD1BB737D195111BCC9116262E6B56ED6A57D4D72A1BE4C2C9DE36BC6E59DF8628DEC4CCDF18D819FDECF08D8A2FBEA337C67C3033FBD9E11B146F7D666F8CF9B146F7D666F8C6C51BD8999BE33E38A37B13337C636067F7B3C23628DEFACCDF18DD5154E7735B0A754267293CD1CC6135C545A5C832F05E27A12CABC740D070E28A1B86C8CAB96171EFACB3F26DFF7EAB2F05E27A12CABC740D070E28A1B86C8CAB920E5E27A1D2ABC0C0D188E2B41B894F4D396397F64FCDB15EBCCF4260090D0703471460E4378B2AE4BC8CF1393293C723207C4E8C238648CA3EF544539DCC6EA8AA73B9AC839789E874AAF030346238AD06E253D34E58E67D93F37F0C51BD8999BE31B033FBD9E11B146F7D666F8CF86067F7B3C23628DEFACCDF19F3628DEFACCDF18DD51131F731BAA2263EE6375444C7DCC65E0BC48B3A5280E81A0E1C5684712919572C0CFEF67846C51BDF599BE3192EA5D335189E81938CE30CD9E5C06E6AAB1A23551962A4AB797226B8A8BC09F633D799164C0EA260E188E28C2386F0A69C8CF4187A13004898C46407A30721BC29A7D2352D99CA46B797219B8A8BC09F64BAA88B2462450689C38C4D679901A9AAAC14CF4187A13004898C46407A30721BC29A7D2392E19CA42B797219B868BC19F6340AE131303B89838650CA308E1BC29A72C51BD8999BE31B032FBD9E118CF5E6459303A898386238A308E1BC29A72C51BD8999BE3188D4BA66A91ADE5C866E2A2F027D8D02B84C4C0EE260E194328C2386F0A69CB146F62666F8C6C29D509629B33473184D6ED6A9720DD51131F731BAA2263EE6375444C9DCB65E467860E655E391903E27590E44A4651F7E554185473267A098C6CD1B72B52BE9BD0CBF3637433FCD8DD0CBF3637432FCD8C8650D72617B7EF5BC6E592654185473267A098C6CD1B72B52BE9B8A27B14337C636067F7B7C232A0C29F9923D04C63668DB95A96F4CC51BD8A19BE3190D2E4E4C2F6DE0ABC2E59265447973247A098C6A2DBD5A95F4C5438AC732645898B9CAEB72B52BEA781A7DEDF08CA830A8E64CF41318D9A36E56A5BD355062AFCC9916262E72BADCAD4AFA92195C9C985EDFB2AF0B96459511E5CC89E82631A8B6ED6A57D33145F62866F8C6C0CFEF6F84654185473267A098C6CD1B72B52DE9AA888DE6488B131735AB76B52BEA5D0D3F3637432FCD8DD0CFF0036B7434FCD8DD0CBF36FFD862B0A84CE4DB96197226B76B5549F64186789CE649E07190C2275911C4E7A6DF57919E27265278E4640F89D18470C91947DC2995099CA4B3433184D715169721F0340AD0C9CE0489838650BAC07225C29A725CBA7A6D595CBA7F1DDE73D5D6EA8AA73B9AC6815A1939C0913070CA17580E44B8534E5D2ED31F6D1BA5DA63ED9FC08D54466A6DADE5C89ADDAD7027D90619E273992781C643089D6447139E9B7D6C2992F162A4F34731833715169720CBC8AF0C132ABC720D07C328C1C8648CA3919EBCCF439C0913070C871590E44B8534E446AA33393756F2E44D6ED6B833EC830CF139CC93C0E321844EB22389CF4DBEB62B0A88CE4D995F97226B76B5549F6EA8AA73B9AC839789E874AAF030346238AD06E253D34E58ABAA133936657E5C89ADDAD5527DBAA2A9CEE6FCBBF768D3A74FF00A319EBCC8B2607513070C4714611C378534E4C46A5D33548D6F2E43371517813EC6815C262607713070CA194611C378534E5D51131F73188D54858A91ADE5C89AE2A2F027D8CF5E6459303A898386238A308E1BC29A725E45789CE649E390683E195911C4E4651CB0A74BE66A6CCD1CC60CDBB5AA5C86933D799164C0EA260E188E28C2386F0A69C9B1574BA67292CAFCB90CDC545AA4FB25D54459231228344E1C626B3CC80D4D5560A830CF0C132ABC0E321844E8C1C864F4DBEAE5FEE476572E7FC8965CF5798D02B84C4C0EE260E194328C2386F0A69C90720E3D09655E06190C40F450DC367A69F4F15445926DA2E6309ADDAD71E4197919E18399578E4640F89D64391291947DE974A73B66D853A5E33935E68E63866DCAD52E418CF5E6459303A898386238A308E1BC29A7233D061E84C01226311901E8C1C86F0A69F7034FBDBE118CF5E6459303A898386238A308E1BC29A726C5612F19CA4B2C32E43371516A93EC6815C262607713070CA194611C378534E5F2E28BEFA8CDF18C9708DE648F40D1735AB76B535EA5F4C183F31664B2A23CB9923D04C63516DDAD4AFA6F432FCD8DFF45FFCC5992CA88F2E648F41318D45B76B32BE9897B157E64CF40D17395D6E56A67D4F768FD2CA830A8E648F41318D9A36E56A5BD31511E5CB69162631A8B7151657D33AE57E136E46BA927F5197B65D5E9FE35D0CBF36B21A435C98DEDFBDAF1B96499506151CC99E82631B346DCAD4AFA6AA23CB96D22C4C63516E2A2CAFA6AE35CBCE7D93FB2ACEB6A7592F614FCC99161A31B346DDAD4CFA625EC55F9933D0345C6575B95A9AF525CAB93931B27F655E372CEB7233D493FA8CBDB2EEF4FF001A54446F32245898B9AD5BD5A95F5343286B930BDBF7ADE172C8B628BEFA8CDF19F0DDA1B145F7D66778CF9B146F7D666F8C62B8D1131303B860C41B14A308E1BC5957D3C55199AA468B98C26B8A8BC790641C8388B3A528018643103D6847129E9A7DEA8AA73B9AC792A333949D1731C4D71D178F21F02BD061164C0EA1A310701E8C2386F1655F7768D1ABB99782F13D09655E3A0683871450DC364655C92EAA2335671E819270E3135E05C0926AAB05E97698FB68C5715A19260090D0703617470E4378B2AE4839789E874AAF030346238AD06E253D34E5BBE9B99782F13D09655E3A0683871450DC364655CB146F62666F8C6C2992F162A4B34331833715169720C5715A19260090D0703617470E4378B2AE585C7BEB2CFC9B6397F64FCDB15EBCCF4260090D0703471460E4378B2AE4BC8CF1393293C723207C4E8C238648CA3EE14EA80CD5279A398C26B8A8B4B90D067A0C22CE71D44C623103D644712E14D3EFC3146F7D666F8CF9B146F7D666F8C65E45789CE649E390683E195911C4E4651CB0A64BC6726DCD0CC60CDBB5AA5C87C0D0344324C0122631194528E1C86F0A69F7AA2263EE5B75444C7DCCF8118974CE5255BCB80CDC545E04FB25D54459231228344E1C626B3CC80D4D5560B07C2C14ABFC4DD9D36E0476856C36DAFF00A35DF50C22F7446EE22CD4BC35C58FE21929C651D860061479CE2330DFC711A833E4625FF5B8F44F05F73442DD13C19DCE10B270275C13992E1D2EDC222F91974834C70DFB6D137777D96BED36BA769B3D9EAE8DFADAF8A82663254D6C8ADD72CC3B73EA422A73BA52EAA12C91891219270E31359E6386A6AAB05418678609955E07190C227460E4327A6DF572E8EA496572E7FC8965CF57992EAA22C9189141A270E31359E6406A6AAB055E0BC48B3A5280E81A0E1C5684712919572DCC839789164B250030346238A288E1B3D34E49752E99A8C4F40C9C671866CF2E03735558D2E5FEE4B6572E7FC8965CF5798D02B84C4C0EE260E194328C2386F0A69CBE5C517DF519BE319511E5CB71162631A8B7151657D310D2E4E73AF6FD95675B523F054446F32445098B9AD5BD5A95F53E867F9B5BA19FE6DF86067F7B3C23628BEFA8CDF18CFF00FAB5DD769A9A9AFA767ADADA75767A35F63B2D4D86CF46CF67ABA353535746ED1AA288FBB85035158D3D7EA9587BAED5EF6AC994EF8A1DA1A103C4760BA81E8DC1E2FB686BCB83E3EEC21EE9B77979DAEA6C361B1D4D3B4DA6D4A050702394482F83C19D5FB61B40EED1DF46B6DB733A3B6AC39E1F75767A74E8D8EB69D5DB68D9AA0C2A39933CC4C63668DB95A95F4CFAB21A5C9C98DEDBC1578DCB24CA88F2E648F41318D45B7AB52BE99D0CBF3632E4435C98D95FBD6F1B967592F614FCC91161A31B346DCAD4D7A62A223799222C4C5CD6ADEAD4AFA9FF00D187F31664B7235D497FA8DBDB2EEF4FF1AF9376FD1A7469633D06116738EA26311881EB2238970A69F52EAA2335671E819270E3135E05C0926AAB055CBFDB6ACAE5CFF8EAF49EAF320C33C4E7324F038C86113AC88E273D36FABC8CF1393293C723207C4E8C238648CA3EE14EA84CE5259A398E26B8A8B4B9065E0BC4F4259578E81A0E1C514370D91957241857860E655E07068C219590E44E7A6DC88D4BA5926DADE5C866DDAD7027DB146F7D666F8C67AD3F4FFF004D9B6FFA31FE3672D806A260972D8ED622258FC35E1DF62EB037B1D02A3A237B0DE80EEDDDE2FB7D8EDD850361D98908B523A1C82B8439EF69B3A8C4137C2E16F8231D8ADDF6BB2D488C45E7610FDBB96E67AFA6D1E74FFF0056CD9772F23D09655A390703471460DC364655CBA5DA63ED9B74BB4C7DB36E97698FB66DD5154E773590CE9EA4B7B7317FC8965C8D098AE2B4324C0121A0E06C2E8E1C86F1655CBAA2A9CEE6B219D3D496F6E62FF912CB91A1315C5686498024341C0D85D1C390DE2CAB97C9BF768D3A74FF00A319EBCC8B2607513070C4714611C378534E4830CF0C132ABC0E321844E8C1C864F4DBE91AA88B25235BCB9135C545E04FB628DEFACCDF18C9752E99A8C4F40C9C671866CF2E03735558D75444C7DCB62B8D10C9CE04868C41B14AC07225C5957DEA8898FB98CB9B4F524B2B973FE44B2E7ABAC6815C262607713070CA194611C378534E58297D0AF33BFDE9C1A04788E824696C204614B3A3BBDED3F4E9D905841B1354C7797F7A803F8D611187E717E7A763FE1AE645449E2C6D9EA43352201C88BF6D2181C2A41B1F7D154076C03DBC2F650FD83B6BBB8DE16338BC38BE0D9A0E8F1BE3908D9687989B0C94582804F102768ABDBF6BBCC69CE7DCB640B1F408CD0E6A08434FD5283BDEA6ED8BCAED41A7A1D2AB872310681EB21B8948CABEB6067F7B3C23628DEFACCDF18DD2E94E76CDB0A74BC6726CCD1CC60CDBB5AA5C832F041C7A1D2ABC74320701EB41B8948CABEB614CA84B14D99A398C26B76B54B9065E467860E655E391903E27590E44A4651F7E554185473247A098C6CD1B72B52DE99F56434B97930BDFF64DE372C937235D493FA8DBDB2EEF4FF1A54446F32245898B9AD5BD5A95F53E86BF9B592E11BCB69161A2E6B5715166BD492E11BCC91E81A2E6B56ED6A6BD4D0D21BE4C2F6FDED78DCB24D8A2FBEB337C6360A1FF002C4CEFF7A7065B503DABFC6A0FA8EBB5D7D8BEC503F157275DB13C58D0800198840C42FB078BE873D9ED767148AC3A3FB533A18268A06844328C425E9F364F5108480A3E25026CE1B121088A030578D9EBEF098049D8EC2843A1DDFB61AAED06D4D8EBBB6D98322E108C2000009BD43363B77A09C43650D866C36F1B8A244493128A4621CEF1E7D0942F8921D72BF09B2A0C2A396C22C4C63668DC74595F4DC0CFEF6F84654185473267A098C6CD1B72B52BE9AA88F2E5B48B1318D45B8A8B2BE9BD733F09B75CDFC24CA830A7E5B08B1318D9A371D1657D310D21BE73AF6FDED675B524CA888DE5B4F4131735AB8A8B2BEA7F2AF05E27A12CABC740D070E28A1B86C8CAB974BB4C7DB36C55D2F1629B32BF2E4336ED6AA93EC57AF33D098024341C0D1C518390DE2CAB92F233C4E4CA4F1C8C81F13A308E192328FB853AA133949668E6389AE2A2D2E419782F13D09655E3A0683871450DC364655C8AF418459303A868C41C07A308E1BC5957DC5595099C9B32BF2E04D6E56AA93EC9752E964B388A0D1C671866F03204935558D609FF00F2C4CDFF007B70654AE9BF685AC4765AFB39A7314EC7535765A9A346AE8DDA3468D1A3FF004DDF4D3F4DFF00FC010F37DD018D47D1A429EF61AFADB6D7D4D47D0B8A21A31826C22D09DAEBEDDC36FBF87B40E47A22FCAD42C1C0FB83DED76F05143CEDA29AE62806046784A361513B954E031376D9EC1F1D3A5DA64EDA3628DEC4CCDF18C462A23393656F2E04D6ED6B813EDD5154E7735B146F62666F8CF89A056864E70244C1C3285D603912E14D392E5D3D36ECAE5CFF008EAF49EAF325D4BA592CE22834719C619BC0C8124D55635F2E28DEFACCDF19F03C5511649BA8B98C25B76B5C79062B8D10C9CE04868C41B14AC07225C5957D418678609955E07190C227460E4327A6DF572FF723B2B973FE44B2E7ABCC6815C262607713070CA194611C378534E4839071E84B2AF030C86207A286E1B3D34FBA3E1861A76311368087AE263076DCDBBFC49D1EDDB40AC030B183EC31F1FF0067ADB57886EB6D35DD74EB95FB2FAF0DF75F57469FF4DA15EF3BFF00E07ED9E9D568DA628BBB461F63213106D431117DD7D3B47BD9B881044E90F77D47ED4D9BDBE6AECF5746DB6A98837B370DA98D16DBB8EA6C226F82678D8ED36BB6DAEA6D36EFBABABADA35B4EA6AECF5759B143F7D065F8C641C838F425957818643103D14370D9E9A7DDFA3F4EF633D799164C0EA260E188E28C2386F0A69C8AF5E6459CE3A868381C38AC88E25C595723C5521629BA8B98C26B76B5C7906EA8898FB98CBC17891674A501D0341C38AD08E25232AE5B99072F122C964A006068C4714511C367A69CBE5C517DF519BE3192F62AFCC99E81A2E32BADCAD4D7A96397F64FCDB25EC56396C22C345CE575C7459AF534B846F3247A068B9AD5BB5A9AF53FA60C3F98B325B91AEA4BFD465ED9777A7F8D6E65CAB97930B2B4595785CB3ADD737F09B4331BB707B89EC3651727B6EEB0AD7D3B9EB6900C4353DC51C364F0EE6B383B6CB5F46FE07500203BB61E6191D4110006DEE3E2114384260EE9FA38EF9CFF901DDB0F3034E9088FC38E91E0F89DC22D077BFD7C07CD617C335F67AFABB18BBBEA6BEB7FE2856DF51EF4EAEC1CF5769ACEDFAB89B67A53F854732479894C6CD1B72B32BE9A97B157E64CF40D17195D6E56A6BD4B7E8D1A37696C513DF5999E3192F614FCB61E81A31B346E3A2CCFA62E5435CE7595FBDACEB6A7595111BCB69E8262E6B57151657D4FA197E6C6E869F9B1BA197E6CF9776FD1A7469633D06116738EA26311881EB2238970A69F70B8F7D659F9363C52E162A4A8B98E19B8A8BC7906E97698FB66CA852E9648C48A131C64E066CF320352B4A8D1E2A90CE52345CC6135C545E3C8315EBCCF4260090D0703471460E4378B2AE4D8E67D93F36C8390711674A50030C86207AD08E253D34FABC1071164B2501D0C81C07A288E1B232AFBFAB4B20F416461D49440E3318826B024894F4D3E25650C602C53EC30501BB1FBACBB11CD5520F8AAA5D2C935E57E5C86A815AAA4FB618900717E43A5B6DB6DB1DFAFAF526D40C43B534EFD0EFA37B62A2A60CA4CB95FA0B5125B75AAA4FB7545539DCD6C2E3DF5967E4DB1575446726CCAFCB9135BB5AAA4FB25D4BA592CE22834719C619BC0C8124D55635D5154E7735B0A754267293CD1CC7135C745A5C8319E8308B39C7513188C40F5911C4B8534FABC8CF1393293C723207C4E8C238648CA3EE14EA84CE5259A398E26B8A8B4B9065E0BC4F4259578E81A0E1C514370D919572F937EED1A74E9FF4633D799164C0EA260E188E28C2386F0A69CB146F62666F8C6C0CBEF6784F81A068864980244C62328A51C390DE14D3EAE5D1D492CAE5CFF916CB9EAF325D54459231228344E1C626B3CC80D4D5560AD8AC25E3394965865C866E2A2D527D8D02B84C4C0EE260E194328C2386F0A69C9B033FBD9E11B146F7D666F8C6542A88B259C450989C2704D781902495A54150D7F6DABDB98CFE3ABCE4682DD51131F73192EA5D335189E81938CE30CD9E5C06E6AAB1A5CBFDC96CAE5CFF00912CB9EAF31A057098981DC4C1C3286518470DE14D391A068864980244C62328A51C390DE14D3E91AA88B15235BD05C89AE2A2F067DB146F7D666F8C6542A88B259C450989C2704D781902495A5417A5CA9CED9B25D54459231228344E1C626B3CC80D4D5560BF0C51BDF599BE33E654185473247A098C6CD1B72B52DE98A83157E64C8B1317195D6E56A57D490D2E4E4BEF7FD9578DCB22DD737F09B73C9D493FA72B272EAF4FF25FA60C3F98B3259511E5CC91E82631A8B6F56A57D337B7D1B145F7D66778C6541853F2D845898C6CD1B8E8B2BE9886972725F7BEE055E372C937235D497FA8DBDB2EEF4FF1A4BD853F2DA7A068C6CD1B8E8B33E998E57D93F36C97B0A8E64C8B0D18D9A36E56A6BD315111BCC8916262E6B56F56A57D4D0D21BE4C6F6DE36BC6E5926C517DF599BE3195062B1CC9916262E72BADCAD4AFA9E067F7B7C23628DEFACCDF18C970F2E5B4F40D18D45B8A8B35E99D733F09B7237D493FA8CBDB2EEF4FF1ADEDBF46ED2D8A2FBEA337C67CCBC1789E84B2AF1D0341C38A286E1B232AE4830AF0C1CCABC0E0D18432B21C89CF4DB962AE97CB14DB95F97219B76B5549F641C8388B3A528018643103D6847129E9A7D542974B246245098E327033679901A95A54690D7F725BDB98CFE45B324682DD2ED31F6CD9072F13D0E955E06068C4715A0DC4A7A69CB1575426726CCAFCB8135BB5AAA4FB1A068898E71DC4C62328A5644712E14D3E9A056864E70244C1C3285D603912E14D3974BC4C9DB462B8AD0C93004868381B0BA38721BC5957263C92E962A4A8B98C19B8A8BC7906542A88CD4627A0989C2704D679701B95A54157919E27265278E4640F89D18470C91947DEA88A73B98C9752E964B388A0D1C671866F03204935558D74BB4C7DB362352E1629B6B797019B76B5C09F6C51BDF599BE33E1A34FE9FAE862BD799E84C0121A0E068E28C1C86F1655CBAA2A9CEE6B7545539DCD64BA974B259C45068E338C3378190249AAAC6BE4DFBB469D3A7FD18CF5E6459303A898386238A308E1BC29A72EA8898FB98DD51131F731BAA2263EE6375444C7DCC623551962A4AB797226B8A8BC09F65E0838F43A5578E8640E03D68371291957D542A88B259C450989C2704D781902495A54170A74BC6726CCD1CC60CDBB5AA5C832F041C7A1D2ABC74320701EB41B8948CABEE171EFACB3F26D8E67D93F36D85C7B132CFC9B2F22BC4E7324F1C8341F0CAC88E272328E4863FB6DDEBCC5FF001DDE7234262B8D10C9CE04868C41B14AC07225C5957DE974A73B66D853A5E33936668E63066DDAD52E4197820E3D0E955E3A190380F5A0DC4A4655F57915E27399278E41A0F865644713919472E976A73B68C6815C262607713070CA194611C378534E4681A2192600913188CA29470E4378534FA46AA22C548D6F417226B8A8BC19F6C51BDF599BE318D0344324C0122631194528E1C86F0A69F715854258A92CB0CB9135C545AA4FFCF8A2FBEA337C637432FCD8DD0CFF0036B7432FCD8CA830A8E5B08B1318D9A371D1657D37032FBD9E11B737235D3737A8CBD7316CBFF1AEB97F84DBAE6FE1264BD85472D87A068C6CD1B8E8B35E9B8E67D93F36D85CFB142CFC9B7D197221AE73ECADC36B3EDA9E64B846F2DA45868B9AD5C5459AF52EB9BF84DBAE5FE136EB9BF8499511E5CB71162631A8B7151657D310D2E4E73AF6D164D9F6D493628BEFACCEF18CA888DE6488B131735AB76B52BEA48690D72637B7EF6BC6E5926C517DF599DE31B144F62866F8C643686B9CFBDB78DACEB6A49BA197E6DF9B146F7D666F8C65E46789C9949E391903E274611C324651F7AA229CEE637545539DCD6C51BD8999BE31B032FBD9E13E09755119AB38F40C9387189AF02E049355582E2AE978B14DB95F97219B76B5549FF820E5E27A1D2ABC0C0D188E2B41B894F4D396397F64FCDB15EBCCF4260090D0703471460E4378B2AE5D5154E7735BAA2A9CEE6B7545539DCD6E97698FB66DD2ED3276D197915E18265578E41A0F86518390C9194724BAA88CD59C7A0649C38C4D78170249AAAC148C4BA58A6DADE5C866DDAD7027DB146F7D666F8C6EA8AA73B9ADD5114E77318D03444C738EE263119452B2238970A69F52EAA2335671E819270E3135E05C0926AAB055CBFDB6ACAE5CFF008EAF49EAF320C33C4E7324F038C86113AC88E273D36FBF2E28DEFACCDF18D8A37B13337C67C7146F62666F8C6C0CBEF678465E0838F43A5578E8640E03D68371291957DC51BD8999BE31B468DEC839789164B250030346238A288E1B3D34E4830CF0C132ABC0E321844E8C1C864F4DBE91AA88B15215BCBA135C545E04FB19EBCC8B2607513070C4714611C378534E4839071E84B2AF030C86207A286E1B3D34FB8E67D93F37F0418678609955E07190C227460E4327A6DF572FF723B2B973FE45B2E7ABCC830AF1393293C0E0D184328C23864F4DB96171EFACB3F26C78AA22C537513418C26B76B5C69062B8D10C9CE04868C41B14AC07225C5957D41C838F425957818643103D14370D9E9A7DC55D2F19CA4F2BF2E43371516A93EC975511648C48A0D1387189ACF32035355582E28DEC4CCDF18C46A5D33548D6F2E43371517813EC6815C262607713070CA194611C378534E5F2E28DEFACCDF18CA888DE6488B131735AB76B52BEA5D0CBF36B7432FCDAD8A2FB14337C636065F7B3C236E65418ABF32645898B9CAEB72B52BEA4C97B0A7E6488B0D18D9A36E56A6BD312E11BCC91E81A2E6B56ED6A6BD490D21AE4C6F6FDED78DCB24D8A27BEB333C6375CDFC24CB9572739F64E8B2ACFB6A7BE0A830A7E5B08B1318D9A371D165BD33033FBDBE11BE8D85C7BEB2CFC9B6397F64FCDB25EC56396C22C345CE575C74599F53FA37D3732A0C2A39923D04C63668DB95A96F4CE793A92FF004E564E5DDE9FE4A8690D72617BFEF6BC6E5926541853F3247A098C6CD1B72B52BE9BF2E28DEFACCDF18DD5154E7735BAA2A9CEE6B7545539DCD633D799E873812260E190E2B21C8970A69CB032FBD9E13E3A34FE9FAE862BD799E84C0121A0E068E28C1C86F1655C8AE3444C4C0EE183106C528C2386F1655F7AA229CEE6325D4BA592CE22834719C619BC0C8124D55634830AF0C1CCABC0E0D18432B21C89CF4DB974BB4C9DB46E97698FB66C6815A1939C0913070CA17580E44B8534E44725C2C53756F2E4336ED6B813ECBC1789E84B2AF1D0341C38A286E1B232AE585C7BEB2CFC9B1E2974B252545CC60CDC545E3C832F22BC304CAAF1C8341F0CA3072192328E5D5154E7735B0A754267293CD1CC6135C545A5C832F05E27A12CABC740D070E28A1B86C8CAB915E8308B260750D188380F4611C378B2AFB8ABAA133936657E5C09ADCAD5527DBAA2A9CEE6FF00EE7FFFC4003E10000102050106030703040004070000000203130001041114150512212232331085D4162023346394E4313541245161624260718206305281B1B3D1FFDA0008010100133F00FF0091349A05DB7281054F9D5408F899C681B2FD34681B2FD34681B2FD34681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C681B2FD34681B2FD34681B2FD378E9340BB6E5020A9F3AA811F13386125DB72BD048F9151209DC0CE5C46302969597B2DCEC2417BB41EEE81B2FD34681B2FD3430920E375F509072242212B0004B80C3092EDB95E8247C8A8904EE0672E231A06CBF4D1A06CBF4D1A06CBF4D1A06CBF4D1A06CBF4DEF795D2463AABB6E2A09072242473B9984B80CED1A06D4F4D1A06D4F4D1E69491F7F1AB5020E37408247C8AAE272B1846AD40BB6E502E907224B91F1338C0AAAA7996DDEC2476B3A1D519F4B43938F4A952ADF06A954960B2C82A1CE11815543938F549552DF1AA924910B2282A7CE719F4B54F3396EF6153B59D08D22BD76DC4C150E7490209DC0C27C0A33E96BB1B22955A547E0D2AAAAC77597483902302AA9597B11AEFA417BB471ABD020E36A9A47C8AAE272B181CB88C605550E4E3D52554B7C6AA492442C8A0A9F39C6BFB2FD4C6BFB2FD4C67D2D7636452AB4A8FC1A555558EEB2E907204605552B2F6237DF482F768E349AF5DB72BD75439D24083A0C23CD2923EFE348AF5DB71305439D24082770309F028D036A7A68C0AAA565E71AEFA417BB47D378F2BA4F7BCAE923CCE93C7CD2923EFE35FC579EA5497ED629DACEDBABC349CEC8C863EBA5B9BAC46262BCF552ABF6B7CED67777AA71E5957E1A06532CD2A48777282F76AFD318994CB35492FDADF0BDDADDEA8D27071B1D8FACAEFEF3F1E67571A062BCF52AA877728ED676FD3E38994CB35492FDADF0BDDADDEA8D27071B1D8FACAEFEF3FE1E69491F7F1E594BE1F7F1E5749EF795D2479A5278F9A5247DFC795D24681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C795D5F869340BB6E5020A9F3AA811F1338D2681071BA05D50E749013E0611F611A4502EDB8A9AA7CEAA0473B999CF8943092EDB95E8247C8A8904EE0672E231A06CBF4D1A06CBF4D1A4D020E3740BAA1CE92027C0C23EC3C3CD2923EFE3CAE93C3EFE3CAE93DEF2BA48D036A7A68D036A7A68D036A7A68D26BD071BAF4153E755010E8038FBF8F2BA48CFA5AEC6C8A556951F834AAAAB1DD65D20E408C0AAA565E71BEFA417BB47D378D22BD76DC4C150E7490209DC0C27C0A357A05DB71504839125C8E7733097018CFA5A565E71BEFAA17BB47D378C0AAAEC6C8AA56A91F8D4A92A89DD15D23E438D5E8176DC54120E4497239DCCC25C06275F4B4ACBCE37DF542F7694E9BC3E92EDB890AA1CE91104EE0613E053B479A5247DFC6915EBB6E260A873A48104EE0613E051E694913AFA5A565E71BEFAA17BB4A74DE1F4976DC48550E748882770309F029DA3CD292302AAA9E672DDEC2476B3A11A06D4F4D1A06D4F4D1A06D4F4D0C2A838DD02091F22A2272B181CB88FBDA06532CD2A48777282F76AFD31ECA7E6C7B29F9B1ECA7E6C7B29F9B1A4E0E3E3E47D7577F79F8D032996695243BB9417BB57E98F33A58FBF8D032996695243BB9417BB57E98F33A48D57071B1F23E82BBFBCFC65E532CD2A48777702F76B7BA651AFE532CD524BF6B142F76ADD51F7F1A06532CD2A48777282F76AFD31AFE532CD524BF6B142F76ADD51AB60E363E47D0577F79F8CBCA659A5490EEEE05EED6F74CA3CCE963EFE340CA659A5490EEE505EED5FA631329966A925FB5BE17BB56EA947B29F9B1ECA7E6C7B29F9B1ECA7E6C7B29F9BFF91814B54F3388DF7D23B59D3861241C6EBEA120E44844256000970186125DB72BD048F9151209DC0CE5C46302969597B2DCEC2417BB41E190AA0E36A82A1CE9109CAC6984F814AF1FBA6662318DF3CFB7B994BF6ED7DF8D0365FA68C855071B54150E74884E5634C27C0A578D7F6A7A98D7F6A7A9F0C0A5AA79971BEFA476B3A7D30C24838DD7D4241C890884AC0012E03E19F554ACBD96E76150BDDA087D55DB7281054F9D52239DCCCE7C4A348A041C6D505439D2404E563009F028C0A5AA79971BEFA476B3A7D30C24838DD7D4241C890884AC0012E03E1814B54F3388D77D23B59D38D0365FA68D2681071BA05D50E749013E0611814B54F3388DF7D23B59D38D0365FA6F7B48AF5DB71305439D24082770309F02F0CFA5A565E71BEFAA17BB47D3787D25DB71215439D22209DC0C27C0A768D036A7A68C0AAA565E71BEFA417BB47D378D22BD76DC4C150E7490209DC0C27C0A1F49071BAF4153E754842560039F128CFA5AA799CB77B0A9DACE846915EBB6E260A873A48104EE0613E05E19F4B4ACBD88D77D50BDDA38C0AAAEC6C8AA56A91F8D4A92A89DD15D23E4386155DB7282A120E44848E7733097018FDAF0F2D8C6F9E65CDFC45FA2F6DC87D25DB71215439D22209DC0C27C0A768D5A8176DCA05D20E449723E2671815554F32DB9D848ED6743AAD0C2A838DD02091F22A2272B181CB88C6BFB2FD4C67D2D53CCE5BBD854ED6742348AF5DB71305439D24082770309F028D5E8176DC54120E4497239DCCC25C063EFE348AF5DB71305439D24082770309F02F0CFA5A565EC46FBEA85EED1C3E92EDB890AA1CE91104EE0613E053B7BDE594B18994CB34AAAFDADF0BDDAB754A3F63D3B4FFB975CCFFF004B3519794CB34A921DDDC0BDDADEE9947B29F9B1FB1E9DA7FDCBAE67FF00A59A8CBCA659A5490EEEE05EED5FA651AFE532CD2AABF6B142F76ADD5E1A06532CD2A48777282F76AFD31978AF3D54921DDDC3B59DDEE99C7B57F851A56A98789FD0FCCBC8B9BF8AE76E56DFB47B29F9B1A4E0E3E3E47D7577F79F8D032996695243BB9417BB57E98CBC579EAA490EEEE1EED9DDEE99C6AD9D9390C7D14B737588D0329966A9543BB9417BB57E98D7F299669555FB58A17BB56EA8D5B071F1D8FA0AEFEF3F1A56A98789FD07CCBE8B9BF8AE76E56DFB4626532CD524BF6B7C2F76ADD51A4E0E363E47D7577F79F8F2CA5F1F2CA4F7BCAE92184976DC48D23E4544827703397119DA3029695979B73B0905EED27D578D5ABD071BAF5D20E449710E8008D0365FA68C0A5A565E6DDEC2417BB41D57F0D5EBD76DC4CD23E4557209DC0CE5C47C349A05DB7281054F9D5408F899C6052D0E4E3D2AB548FC6A5492582CB2091F21C6BFB53D4C642ABB6E2A6A9F3AA4473B9A853E253B469340838DD02EA873A4809F030F0D268176DCA04153E755023E2671E694912AFAAA565ECB73B0A85EED04642ABB6E2A6A9F3AA4473B9A853E253B4795D5C7D8469140BB6E2A6A9F3AA811CEE6673E250C24BB6E57A091F22A2413B819CB88C6052D2B2F65BBD8482F7682357AF41C6D304839125C42560009701F1F2BA4F7BCAE921F49071BAF4153E754842560039F128CFA5AA799CB73B0A9DACE87863AABB6E2A09072242473B9984B80CED1A06D4F4D1A06D4F4DE19F4B4ACBCE35DF542F768FA6F181555D8D9154AD523F1A9525513BA2BA47C87157B7681943FDCDA58CED2FF0003384A8184E98E9DFE12B19DEEFC536CC71306699343AA76BDDA8D1C234708A8A59A6A28F54AABCEE3295A569AB68248E5294BFCCED19F4A836F623567950BDDA38C0AAAEC6C8AA56A91F8D4A92A89DD15D23E5386155DB7282A120E44848E7733097018FDAF0F2D8C6F9D65CDFC55FB77B46055576364552B548FC6A549544EE8AE91F21C6935E838DD7A0A9F3AA8087401F86935EBB6E57AEA873A48107418467D2D7636452AB4A8FC1A555558EEB2E9072047ED78796C637CEB2E6FE2AFDBBDB721F4976DC48550E748882770309F029DBDEF2CA58CBC579EAA490EEEE1DACEEF74CE356CEC8C8C8FA096E6EB1E18994CB35492FDADF0BDDAB754A3D94FCD8F653F37C3EFE3CB29607F51DE9CA5797F995E252E128095E7B8984CA7697FD250139948252909A73BCF8CEE2769CF85E72BCA568527610194AF39CE73FE2528AC49B1AA496099A6AA72FD6425295E5BD294ED69DBC3FE10995E45BB2FE25398DEDFDE739FF31A06532CD2A48777282F76AFD3E1AAE0E363E47D0577F79F8CBCA659A5490EEEE05EED6F74CA3D94FCD8D27071F1D8FAEAEFEF3F1A06532CD52A8777282F76AFD318994CB35492FDADF0BDDADDEA95AF1FB1E9DA7FDCBAE677FA59A8D2B54C3C4FE83E65E45CDFC573B636DFB7BDABD7A0E3698241C892E212B0004B80C6052D0E4E3D2AB548FC6A5492582CB2091F21C7EE99988C637CF3CDEE65AFDBB5F7E1849071BAFA84839121109580025C06184976DCAF4123E4544827703397118C0A5A565ECB73B0905EED0469340BB6E5020A9F3AA811F13387D541C6E82A150E74884E563009F028CFAAAA79971BEFAA76B3A7D368F2BA48FF00BE5E14E52963266049E42E5796E2729CE76FE4A72B0CA73BDB6A3DBE330A74D2B727F1C853BDE7FACB84AD3BECDDB2A2AF2025BC694913404A523DDDC9F35B7665C62F27524E9A46204A87EA247350E72BFEA0DF87FDC51A4502EDB94082A7CEAA047D671AFED4F531AFED4F531AFED4F531A06CBF4D1FB5E1E5BF93F22C39BF8A8772F6DC8C85576DC54D53E75488E77350A7C4A768D0365FA68FDAF0F2DFC9F9161CDFC543B97B6E4642ABB6E2A6A9F3AA4473B9A853E253B7BDA457AEDB8982A1CE920413B8184F81430AAEDB941509072242473B9984B80C605552B2F38DF7D20BDDA3E9BC795D2467D2D7636452AB4A8FC1A555558EEB2E907204681B53D3463AA838DAA691F22A2272B1A652E2328D036A7A68FDAF0F2D8C6F9E61CDFC55FB77B6E43E92EDB890AA1CE91104EE0613E053B78274229A28A467314574AA24A94D407268A4523009DD4BDA366A96651AA56A12A62A8DD9DD8A646986649CA7BB335EE5095E68D32B4AD492A84D39DC46EF148A5294A45619CE2A7E67682CAA6446AA15339B9F0F978EF5AE56B5A2946432DABB384A725F78385F7921782FD256B4E5C6F41B36A2B0954256B9FC202E1CC30D1A7BF3150C4B94E522E1319CBF48D5E81071BA04123E455713E0607E1F7F1E57491AFECBF5319F4B54F3396E76153B59D08D5A81071BA04123E455713958C3C302AAA9E672DCEC2476B3A10C2A838DD02091F22A2272B181CB88FBDA06532CD2A48777282F76AFD3E1AB60E363E47D1577F79F8D2B54C3C4FE83E65E45CDFC573B636DFB4626532CD524BF6B7C2F76ADD51ECA7E6C6262BCF552ABF6B7CF76CEDBAA718994CB34AAAFDADF0BDDADDEA94693838F8F91F5D5DFDE7E3CB297C03F8AA40A9EB11FFE838A0009112469A736493504C4C39653B14A7394F8CA70B8802C549319A694C3993414BDF7E4090CA5212E6B95EE9D624CA03322DD4896107A616DD9CC1DB7198F4C02929A6B23309837219719CA729FE9394B8452593ACAE5123ABA6911D42A5BA92130A4524729094CAD149564926A27906DA6F12739F2818DCB723DABFC28D0315E7AA9243BB9476B3B7E98FBF8D032996695243BB9417BB57E98CBC579EAA490EEEE1EED9DDEE99C7B57F851ED5FE146818AF3D54921DDCA3B59DBF4C6939D919191F5D2DCDD6231315E7A9525FB5BE76B3B6EA9FBDA4D02EDB94082A7CEAA047C4CE35FDA9EA633EAAA9E6711AEFAA76B3A71A4502EDB8A9AA7CEAA0473B999CF8943092EDB95E8247C8A8904EE0672E231814B4ACBD96E76120BDDA08D268176DCA04153E755023E2671ABD7AEDB899A47C8AAE413B819CB88C6052D53CCE235DF48ED674E33EAA87271EA95A547E0D2AA92216450483903C1CDD3553569D748E432FF008AD23DF9CBFF00485E25FA47F78D8FB357A9A79C84B7484E49C8C933039184E45FAEE6F42889A339DA769F298C8A5C65FCCA10E2E20B564D6DF9CA529EE8260B29729CE579A96943CA22E86FCE76DF4C84A5C65FC4E51AFED3F531E69491814B54F32E35DF48ED674FA6D1A06CBF4D1E6949E390AA0E36A82A1CE9109CAC6984F814AF1FBA6662318DF3CF37B994BF6ED7DF8CFAAA1C9C7AA56951F834AAA4885914120E40F7BCAE93C25415554F32DB9D848ED6743AAD18EAA0E36A9A47C8A889CAC6994B88CA185576DCA0A84839121239DCCC25C063F6BC3CB631BE799737F117E8BDB721F4976DC48550E748882770309F029DA356A05DB728174839125C8F899F8E75354EFA412B1CEE8A8768DEE09998EE914A5FA6F6EDC653FE244504129FFF009049CE53FF00E611B2F475273B5CCE9D496EC8F965720984E7C6F38A619260676E2421329CC653FED79DBFBC4E9C4159A69269260332971294B74A728FED3BCE769FFED394E3CAE92356A05DB728174839125C8F899F86915EBB6E260A873A48104EE0613E051A457A0E3699AA7CEAA0212B001CF8946055553CCB6E76123B59D0EA8D036A7A68D26BD071BAF4153E755010E803F0D26BD76DCAF5D50E749020E830F7BCB29635FCA659A5557ED6285EED5BAA3EC235FC579EAA557ED629DACEDBAA313299669555FB5BE17BB56EA8FD8F4ED3FEE5D733BFD2CD4695AA61E27F41F32F22E6FE2B9DB95B7EDE1AB60E363B1F415DFDE7E3DABFC28A5FFC432A951BFF0009952848E7FE37E51B4692A13552FF005B4C061A5E2A1153713DE3101BDA7FC910CA195A29D05260A6E19015AF3FE084A509D31CE729FF007E33B5FF00EB0B4AC7507C39A7C25FDA5FC4BF494A5294A51A06532CD2A48777282F76AFD31AFE532CD2AABF6B142F76ADD5E1E59491A062BCF52AA877728ED676FD31A4E7646431F5D2DCDD6231315E7A9525FB5BE76B3BBBD538F653F363D94FCD8F653F37DED5EBD071B4C120E4497109580025C063CAEAE33EAA95979B77B0A85EED0755E35FDA9EA633EAABB1B22A92A55BE0D52AAA2774575439C23029695979B73B0905EED0755E348A05DB715354F9D5408E773339F12F0FB08D5ABD071BAF5D20E449710E8008D5ABD76DCAF4123E455720E833F0D5EB9071BAF5D20E449610958023029A85FC7A55AA91F8D4C9A6A85964122E0713AFA9AA799C46BBCA1DACE9C799D5786052D53CCE235DF48ED674E340D97E9A3CAEAE30296A9E6711AEFA476B3A719F5543938F54AD2A3F069554910B228241C811A06CBF4D1814B4ACBD96EF6120BDDA08D5EBD071B4C120E4497109580025C06184976DCAF4123E4544827703397118C0A5A565ECB73B0905EED0469340BB6E5020A9F3AA811F133F7B48AF5DB71305439D24082770309F028F34A48FBFF0C75576DC54120E44848E7733097019DA3F6BC3CB631BE799737F157EDDEDB9181555D8D9154AD523F1A9525513BA2BA47C87E19F4B4ACBD88DF7D50BDDA387D25DB71215439D22209DC0C27C0A76F0FBF8F2BA48C0AAA1C9C7AA4AA96F8D54924885914153E738FDD33311FC9F9179BDCCA43B96BEFC681B53D3467D2D7636452AB4A8FC1A555558EEB2E9072047ED78796C637CEB2E6FE2AFDBBDB721F4976DC48550E748882770309F029DA31D55DB71504839121239DCCC25C067689D05552B2F38DF7D20BDDA3E9BC795D24605550E4E3D52554B7C6AA492442C8A0A9F39C6BDB33D4C6055576364552B548FC6A549544EE8AE91F21F8F95D27BDA06532CD2A48777282F76AFD31AFE532CD524BF6B142F76ADD51AB60E363E47D1577F79F8F6AFF0A355D530F13FAEF96651737F15BEE4ADBF78FD8F4ED3FEE5D733BFD2CD465E532CD2A48777702F76B7BA65E3E59491A062BCF5524877728ED676FD31AAE0E363E47D1577F79F8D2B54C3C4FE83E65E45CDFC573B72B6FDA340C579EA5550EEE51DACEDFA63EC2340CA659AA550EEE505EED5FA631329966A925FB5BE17BB56EA8D27071F1F23EBABBFBCFC79652C6BF94CB35492FDAC50BDDAB7547DFC795D2465E2BCF52AA877770ED6777BA671ED5FE14695AA61E27F41F32F22E6FE2B9DB95B7EDE3E594BEF69340BB6E5020A9F3AA811F13387D541C6E82A150E74884E563009F028CFAAAA799C46FBEA9DACE9C6AD5E838DD7AE907224B887400467D557636455254AB7C1AA55544EE8AEA873847ED78796FE4FC8B2E6FE2A1DCBDA35FDA9EA6349A041C6E8175439D2404F81846052D53CCE237DF48ED674E1849071B48520E4484425604C25C06578C855071B54150E74884E5634C27C0A578D7F6A7A98C85576DC54D53E75488E77350A7C4A76F0CFAAA565E6DDEC2A17BB41D578C0A5AEC6C8A54AA96F8D5492AB1DD65D53E7386125DB72BD048F9151209DC0CE5C46340D97E9A33EAA87271EA95A547E0D2AA9221645048390235FDA9EA633EAAA9E65C6BBEA9DACE9F4C795D278E9140BB6E2A6A9F3AA811CEE6673E251A06CBF4D1A06CBF4D19F5543938F54AD2A3F069554910B228241C81EF6915EBB6E260A873A48104EE0613E051A06D4F4D1A06D4F4D1A06D4F4D1A06D4F4D181554ACBCE35DF482F768FA6F1AB5020E37408247C8AAE272B184605550E4E3D52554B7C6AA492442C8A0A9F39C67D2D53CCE5B9D854ED6742356A041C6E81048F9155C4E56308F2BAB8FB08F34AB87D241C6EBD054F9D521095800E7C4A3F74CCC47F27E45F6F73290EE5AFBF18EAA0E36A9A47C8A889CAC6994B88CA35FD97EA633E96A9E672DCEC2A76B3A11AB5020E37408247C8AAE272B1843E920E375E82A7CEA9084AC0073E251AFECBF530FA4BB6E242A873A44413B8184F814ED18EAAEDB8A8241C89091CEE6612E033B44E82AA95979C6FBE905EED1F4DE3CAE9231D55DB71504839121239DCCC25C067689D05552B2F6237DF482F768FDFF002CA58F653F363D94FCD8F653F36340C579EAA490EEE51DACEDFA63EFFC34AD2F332FFA1F997966F7329CED947B57F851ED5FE146818AF3D4AAA1DDCA3B59DBF4C7D84799D5F86939D9190C7D74B737588C4C579EAA557ED6F9EED9DB754E3DABFC28F6AFF0A3DABFC28CBC579EAA490EEEE1DACEEF74CE355CEC9C8C8FA096E6EB11E594918994CB35492FDADF0DEBB56EA94695838D8F91F5D5DFDE7E3CB2923CCE9634ACEC9C8C8FAC96E6EB11ECA7E6FBDE57490C24BB6E57A091F22A2413B819CB88C681B2FD34681B2FD3479A5247DFF86052D0E4E3D2AB548FC6A5492582CB2091F21C67D5553CCE235DF54ED674FC349A041C6E8175439D2404F81847D8469140BB6E2A6A9F3AA811CEE6673E251A06CBF4D1A06CBF4D1A06CBF4D1AFED4F531AFED4F530FAABB6E5020A9F3AA4473B999CF8946052D0E4E3D2AB548FC6A5492582CB2091F21C67D5553CCB8D77D53B59D3E9B4795D24681B2FD34681B2FD3430920E3690A41C890884AC0984B80CAF1814B43938F4AAD523F1A9524960B2C8247C871FBA6662318DF3CF37B996BF6ED7DF861241C6EBEA120E448442560009701F7BCAE923CD293C7CD2923EFE356A041C6E81048F9155C4E56308F34A4F0D26BD76DCAF5D50E749020E83086155DB7282A120E44848E77330970189D05552B2EB8DF7D20BDDA3E9BC6915EBB6E260A873A48104EE0613E051AB502EDB940BA41C892E47C4CE3EC3C185576DCA0A84839121239DCCC25C063F6BC3CB631BE799737F117EDDEDB90FA4BB6E57D42A1CE91104EE0613E051E575712A0AAAA7996DCEC2476B3A9F55A31D541C6D5348F915113958D329711946AD40BB6E502E907224B91F1338CFA5A565EC46FBEA85EED1C6055576364552B548FC6A549544EE8AE91F21C79A5244EBE9695979C6FBEA85EED29D3787D25DB71215439D22209DC0C27C0A76F7BCAE9231329966A925FB5BE1BD76ADD528F653F363D94FCD8F33A58FBFF0D7F29966A925FB58A17BB56EAF0D0329966A9543BB9417BB57E98C4CA659A5557ED6F85EED6EF54A34AC1C6C7C8FAEAEFEF3F1E59491ED5FE146AB9D9390C7D04B73758F0D0315E7AA9243BB9476B3B7E98FBFF0F2BAB8FB08D7F15E7AA955FB58A76B3B6EAF1D032996695243BB9417BB57E98D5754C3C4FEBFE59945CDFC56FB92B6FDE349C1C7C7C8FACAEFEF3F1A06532CD2A48777282F76AFD3EF795D24681B2FD34681B2FD34681B2FD3469140838DAA0A873A4809CAC6013E051F7FEE69140BB6E2A6A9F3AA811CEE6673E250C24BB6E24691F22A2413B819CB88CED1A06CCF4D19F5543938F54AD2A3F069554910B228241C810FAA838DD0542A1CE9109CAC6013E051AFED4F531AFED4F53190AA0E36A82A1CE9109CAC6984F814AF13AFAAAA79971BEFAA76B3A7D368D268176DCA04153E755023E2671E575719F554ACBCDB9D8542F7683AAF0FAABB6E5020A9F3AA4473B999CF894681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C6AF5EBB6E26691F22AB904EE0672E231814B54F3388D77D23B59D38D0365FA6FF99FFFC4002A11000103030205040203000000000000000100020304051106211213314051101422413280162442FFDA0008010201013F00FD9A073E83708641EFA59046325433897A2924118C950CC25E9DEEDD15DEB22A6A77F1EE55B756B2DF172A66F555FAA5B5748EE546412B4C81EC83B8B2E3E9F8F74767A75496CE42A3823ADAA2F937C7D2BD5AA8DF3B1EE6630BD8521A511F00030AD956EB55D1F0039612B9E00C94C7878EE88CABEC8200C7F8475355D1D710C3B29EF02BA2CCB2E0A9357CD08E40391E54B7685E1B237F2F2BDC3EB18C847FA54C0B58223F5DD67016A767F4DEEF0A42E3212A9C1126241B2ABB232439A5F1F6A4824A69431EAC25B253C2E3F41746E3BAE87215C6DCDB93381C765268280E785E9FA065CE5922FE3B5B147CB90712A8D2570E6F1C4CC0565A534B42D63BAAC671DD0F8EC5608DC2F92C1F2B87EC84785FB2D9BF00BA7EDDFF00FFC400251100010401040104030000000000000000010002030411051221403210224180144261FFDA0008010301013F00FB76D6A73709A139B8EEF2AA40F95E24F85269DF907785069E18FDC5CAFEDDFC0F407B4D4C8B729849523DA154B53161084AF7BF20AB359F356DC5A830A23B43C9513FAAB518B8DC151D335FC555A518707CA15FB94DF4042C1CA6E222F47DDDAF95A77364350FE27709B69CDF6BC26B848DE15AE1CF4381DAC65413188E426EB2F09BAD1F9085F8F3951EA9106E15B977BF211E5BDA6AC64AC05C2E10217921F6EFFFD9, '1', '2022-03-16 22:19:44', '1', '2022-03-16 22:19:44', b'0'); -INSERT INTO `infra_file_content` (`id`, `config_id`, `path`, `content`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (6, 4, '822aebded6e6414e912534c6091771a4.jpg', 0xFFD8FFE000104A46494600010100000100010000FFDB0043000302020302020303030304030304050805050404050A070706080C0A0C0C0B0A0B0B0D0E12100D0E110E0B0B1016101113141515150C0F171816141812141514FFDB00430103040405040509050509140D0B0D1414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414FFC20011080102010203011100021101031101FFC4001E00000301010101010101010000000000000008090701060A02040503FFC4001C0101000203010101000000000000000000000105020406070308FFDA000C03010002100310000000AA6000000000000000000000000000000000070000000000E81C3A70E8001C03A0700000E8001C2401808000FF000BF9808017F8E12007F8C00A0200040102BE0120C0000BFC000708045D03033802AA794029412BC69C0DFC9B206005261020356037F37E1551D33CB1AA1160BFC00070804553201017F4554D50A002A86AA4582FE0800D51164AA66503FE74CA48B22A85FD1551561552A98AB17F8000E1008AA640202FE8AA8AB00FF0BF98097F490007AB12D2D2920C0DF8F564AC2FE8AA8AB0AA954C558BFC00070804553003013CA0AA9AB1540F2A45A3CA95409B27953CB173C55474CF2C4593CB173C4047F80E9208FA27000384FF0032C387406A0CA8D58554D50D5895A6563526A66A82B06546565A61553541AA1013A0700AAA0000004FE37F03002809E449B22AA5D0303384023572E79F3B250030003CA973C6089FE2026FC3002025FE0003F22FE7CEC9AB9E58B9E6A6795030037F18227F9C26C8E913687E8A504303D48FE9BF916874874C6089FC4863E9E8000E1008CAC7F440C7F4E08195407FC4006A8404E9C1A932A1AA22D1AA0D39AA8AB8FE99492B8BFC708045FE000384023033D494A04A8CB0CA0FA261812401E5C7F8DF095A57F2400EA88115E885E3542585A530037F182384022FF0001C20115F0C00A02791303384023572A808794FCF0666B0E8F062D2B32107EC9B23A66A679724015FCC00D4C9B47D3D0001C201169CCA86B0CA0404E92ACAA62AC5F13FA4FF0033E3965D84EBBF58CCFE4D5B671FF2C44C8B03566563FA2AC6AA5501023A5540003F22FE4D93531D303003001582E79164BE50FEA463B41BD9EF975F7FD2DB5FD2F595FBE75D57FC0991F2754009583545262178D51498F5C0007E45FC8B45CF22C9AB0FF1BE1810AA9368A8312CC516DE535BBDEBA973F7DD6D7647E5FD2B29EC9C8FA0FBC4B2CB19AE55315601FE17F26B9400C00FA27000384FF22C0D58D48FE8808FF1014B4A4AD1C786F9C8DB79BF1DEDBC6DD53FBFACDCF1FF001F41FF0027D57C5D84EC6A13EDAC72C3533541AA101032C32A32B3E944000E1200754408C00B4A6006003FC60007874379C6DAFE7F2EFA09F58C5FACAFD4F98DE553F4BF11437B2A4C1A41164D4CAA640203E9E89B26A6501000384022FF001941EA480C3A44DA1FA2BF9D10F1C6A5D9FF002FCEEE7F92B36330DEC3D671B65FC5EE9C96CBD0E9C1437F2BF8BF01EA8CB0C0490057F2948001C2010FE9961958AB0FE0155055055CFF00B4CB59187FA6CB4BC59A4C69713FEB44FEFE9094C01FF2018FE9AA116C7F4E1D2AA0001F917F241969CCACCA495E7AA3E89C9567AB024095EC5D0FEE1EE1A610F10601FE382043FA6FE06006005800003F22FE7961562AA1E449B26A650127F1218F225531561FD32C1A910235326D1F49879522C8FE8810FE9404E1008BFC000709FE2B065635007040CFA503840335632B1A835332B32C2A899512B4D58D50554CB07F0E954C08045FE0003848015837F37F3D41960D48951BF9218FA4C30337C3D719392BCA4C4831FD35635422C0AA9D1803D480FE9404000FC8BF9E58000D509AC6FE745FCC046A46A8F522585272178FF0BF8FF120CC0CFA4C3CA9164BA048527F9F55000070804354006566A85532561C035432B1AA1AA1543551023803FC6544AD2D399512B4AA64AD1A82AA8001C20115F090605531562AA115C09FE5283D58969EA400AA6749046FE55022C801818E91A98E98C10001C201154C80405FD1553CA0EA9008AFE2025CF3CA8809EAC9583023A43A64832D31EA895A30070D588B27963E9E8000E1008B4E20203542AA55422C13FCA002AC5A52568D48AB8AA1400D50AA64021AA32B2D39C10032C1A732B2808001C2010001E5874CAA87CAB9D18032C37C1FD26C95F4E1BE9E549AE6025A62181EA47F85FC7F8C00408BFC000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007FFC4004210000003060209020503030203090000000607080004051415160917010203111318195785253810202147671226272829464175223739303142505160616383FFDA0008010100011200FF00C8F7B6F6DEDBDB7B6F6DEDBDB7B6FF008EFF00868D3A34FCBBDBF568F8FEAD0DBDB7B6F6DFF32F05E27A12CABC740D070E28A1B86C8CAB97545539DCD6EA8AA73B9ADD5154E7735BAA2A9CEE6B614EA84CE5279A398C26B8A8B4B9065E0BC4F4259578E81A0E1C514370D919572EA8AA73B9ADD5154E7735BAA2A9CEE6FC5782F13D09655E3A0683871450DC364655C97919E27265278E4640F89D18470C91947DC2995099CA4B3433184D715169721F2F545539DCD6EA88A73B98C830CF139CC93C0E321844EB22389CF4DBEAF233C4E4CA4F1C8C81F13A308E192328FBD5114E7731BAA2A9CEE6B7545539DCD6EA8AA73B9ADD5154E7737E6C51BDF599BE318D0344324C0122631194528E1C86F0A69F7AA2263EE5B75444C7DCC6C51BD8999BE31B032FBD9E1197820E3D0E955E3A190380F5A0DC4A4655F50720E3D09655E06190C40F450DC367A69F4F154658A6EA2E6309ADDAD71E41950A5D335671E82638C9C0CDE05C09256951A542A88B259C450989C2704D781902495A54170A84BC6726CCD1CC70CDB95AA5C8319EBCC8B2607513070C4714611C378534E49752E99A8C4F40C9C671866CF2E03735558D62ACA80B152795F97026B8A8B549F62BD061E8738121A310681EB21C8971655F550AA22C967114262709C135E064092569505E974A73B66DD2E94E76CD92EA5D335189E81938CE30CD9E5C06E6AAB1AC55D50962A4F2BF2E44D71516A93EC839789164B250030346238A288E1B3D34E58A37B13337C636065F7B3C2319EBCC8B2607513070C4714611C378534E5D51131F73188D54458A92ADE5C09AE2A2F027DB146F7D666F8CF9B146F7D666F8C6C51BD8A19BE33E38A37B13337C636067F7B3C232A0C55F96C3D04C5C6575C74595F52FA32E4437CE7593B86D675B53AC9708DE5B48B0D1735AB8A8B35EA785CFBEA2CFC9B6ED1B99506151CC91E82631B346DCAD4B7A62A223799222C4C5CD6ADDAD4AFA9AE4437C98593BC6B78DCB3AD85CFB142CFC9B25DC29F96C3D03463668DC74599F4CD1BB737D195111BCC9116262E6B56ED6A57D4D72A1BE4C2C9DE36BC6E59DF8628DEC4CCDF18D819FDECF08D8A2FBEA337C67C3033FBD9E11B146F7D666F8CF9B146F7D666F8C6C51BD8999BE33E38A37B13337C636067F7B3C23628DEFACCDF18DD5154E7735B0A754267293CD1CC6135C545A5C832F05E27A12CABC740D070E28A1B86C8CAB96171EFACB3F26DFF7EAB2F05E27A12CABC740D070E28A1B86C8CAB920E5E27A1D2ABC0C0D188E2B41B894F4D396397F64FCDB15EBCCF4260090D0703471460E4378B2AE4BC8CF1393293C723207C4E8C238648CA3EF544539DCC6EA8AA73B9AC839789E874AAF030346238AD06E253D34E58E67D93F37F0C51BD8999BE31B033FBD9E11B146F7D666F8CF86067F7B3C23628DEFACCDF19F3628DEFACCDF18DD51131F731BAA2263EE6375444C7DCC65E0BC48B3A5280E81A0E1C5684712919572C0CFEF67846C51BDF599BE3192EA5D335189E81938CE30CD9E5C06E6AAB1A23551962A4AB797226B8A8BC09F633D799164C0EA260E188E28C2386F0A69C8CF4187A13004898C46407A30721BC29A7D2352D99CA46B797219B8A8BC09F64BAA88B2462450689C38C4D679901A9AAAC14CF4187A13004898C46407A30721BC29A7D2392E19CA42B797219B868BC19F6340AE131303B89838650CA308E1BC29A72C51BD8999BE31B032FBD9E118CF5E6459303A898386238A308E1BC29A72C51BD8999BE3188D4BA66A91ADE5C866E2A2F027D8D02B84C4C0EE260E194328C2386F0A69CB146F62666F8C6C29D509629B33473184D6ED6A9720DD51131F731BAA2263EE6375444C9DCB65E467860E655E391903E27590E44A4651F7E554185473267A098C6CD1B72B52BE9BD0CBF3637433FCD8DD0CBF3637432FCD8C8650D72617B7EF5BC6E592654185473267A098C6CD1B72B52BE9B8A27B14337C636067F7B7C232A0C29F9923D04C63668DB95A96F4CC51BD8A19BE3190D2E4E4C2F6DE0ABC2E59265447973247A098C6A2DBD5A95F4C5438AC732645898B9CAEB72B52BEA781A7DEDF08CA830A8E64CF41318D9A36E56A5BD355062AFCC9916262E72BADCAD4AFA92195C9C985EDFB2AF0B96459511E5CC89E82631A8B6ED6A57D33145F62866F8C6C0CFEF6F84654185473267A098C6CD1B72B52DE9AA888DE6488B131735AB76B52BEA5D0D3F3637432FCD8DD0CFF0036B7434FCD8DD0CBF36FFD862B0A84CE4DB96197226B76B5549F64186789CE649E07190C2275911C4E7A6DF57919E27265278E4640F89D18470C91947DC2995099CA4B3433184D715169721F0340AD0C9CE0489838650BAC07225C29A725CBA7A6D595CBA7F1DDE73D5D6EA8AA73B9AC6815A1939C0913070CA17580E44B8534E5D2ED31F6D1BA5DA63ED9FC08D54466A6DADE5C89ADDAD7027D90619E273992781C643089D6447139E9B7D6C2992F162A4F34731833715169720CBC8AF0C132ABC720D07C328C1C8648CA3919EBCCF439C0913070C871590E44B8534E446AA33393756F2E44D6ED6B833EC830CF139CC93C0E321844EB22389CF4DBEB62B0A88CE4D995F97226B76B5549F6EA8AA73B9AC839789E874AAF030346238AD06E253D34E58ABAA133936657E5C89ADDAD5527DBAA2A9CEE6FCBBF768D3A74FF00A319EBCC8B2607513070C4714611C378534E4C46A5D33548D6F2E43371517813EC6815C262607713070CA194611C378534E5D51131F73188D54858A91ADE5C89AE2A2F027D8CF5E6459303A898386238A308E1BC29A725E45789CE649E390683E195911C4E4651CB0A74BE66A6CCD1CC60CDBB5AA5C86933D799164C0EA260E188E28C2386F0A69C9B1574BA67292CAFCB90CDC545AA4FB25D54459231228344E1C626B3CC80D4D5560A830CF0C132ABC0E321844E8C1C864F4DBEAE5FEE476572E7FC8965CF5798D02B84C4C0EE260E194328C2386F0A69C90720E3D09655E06190C40F450DC367A69F4F15445926DA2E6309ADDAD71E4197919E18399578E4640F89D64391291947DE974A73B66D853A5E33935E68E63866DCAD52E418CF5E6459303A898386238A308E1BC29A7233D061E84C01226311901E8C1C86F0A69F7034FBDBE118CF5E6459303A898386238A308E1BC29A726C5612F19CA4B2C32E43371516A93EC6815C262607713070CA194611C378534E5F2E28BEFA8CDF18C9708DE648F40D1735AB76B535EA5F4C183F31664B2A23CB9923D04C63516DDAD4AFA6F432FCD8DFF45FFCC5992CA88F2E648F41318D45B76B32BE9897B157E64CF40D17395D6E56A67D4F768FD2CA830A8E648F41318D9A36E56A5BD31511E5CB69162631A8B7151657D33AE57E136E46BA927F5197B65D5E9FE35D0CBF36B21A435C98DEDFBDAF1B96499506151CC99E82631B346DCAD4AFA6AA23CB96D22C4C63516E2A2CAFA6AE35CBCE7D93FB2ACEB6A7592F614FCC99161A31B346DDAD4CFA625EC55F9933D0345C6575B95A9AF525CAB93931B27F655E372CEB7233D493FA8CBDB2EEF4FF001A54446F32245898B9AD5BD5A95F5343286B930BDBF7ADE172C8B628BEFA8CDF19F0DDA1B145F7D66778CF9B146F7D666F8C62B8D1131303B860C41B14A308E1BC5957D3C55199AA468B98C26B8A8BC790641C8388B3A528018643103D6847129E9A7DEA8AA73B9AC792A333949D1731C4D71D178F21F02BD061164C0EA1A310701E8C2386F1655F7768D1ABB99782F13D09655E3A0683871450DC364655C92EAA2335671E819270E3135E05C0926AAB05E97698FB68C5715A19260090D0703617470E4378B2AE4839789E874AAF030346238AD06E253D34E5BBE9B99782F13D09655E3A0683871450DC364655CB146F62666F8C6C2992F162A4B34331833715169720C5715A19260090D0703617470E4378B2AE585C7BEB2CFC9B6397F64FCDB15EBCCF4260090D0703471460E4378B2AE4BC8CF1393293C723207C4E8C238648CA3EE14EA80CD5279A398C26B8A8B4B90D067A0C22CE71D44C623103D644712E14D3EFC3146F7D666F8CF9B146F7D666F8C65E45789CE649E390683E195911C4E4651CB0A64BC6726DCD0CC60CDBB5AA5C87C0D0344324C0122631194528E1C86F0A69F7AA2263EE5B75444C7DCCF8118974CE5255BCB80CDC545E04FB25D54459231228344E1C626B3CC80D4D5560B07C2C14ABFC4DD9D36E0476856C36DAFF00A35DF50C22F7446EE22CD4BC35C58FE21929C651D860061479CE2330DFC711A833E4625FF5B8F44F05F73442DD13C19DCE10B270275C13992E1D2EDC222F91974834C70DFB6D137777D96BED36BA769B3D9EAE8DFADAF8A82663254D6C8ADD72CC3B73EA422A73BA52EAA12C91891219270E31359E6386A6AAB05418678609955E07190C227460E4327A6DF572E8EA496572E7FC8965CF57992EAA22C9189141A270E31359E6406A6AAB055E0BC48B3A5280E81A0E1C5684712919572DCC839789164B250030346238A288E1B3D34E49752E99A8C4F40C9C671866CF2E03735558D2E5FEE4B6572E7FC8965CF5798D02B84C4C0EE260E194328C2386F0A69CBE5C517DF519BE319511E5CB71162631A8B7151657D310D2E4E73AF6FD95675B523F054446F32445098B9AD5BD5A95F53E867F9B5BA19FE6DF86067F7B3C23628BEFA8CDF18CFF00FAB5DD769A9A9AFA767ADADA75767A35F63B2D4D86CF46CF67ABA353535746ED1AA288FBB85035158D3D7EA9587BAED5EF6AC994EF8A1DA1A103C4760BA81E8DC1E2FB686BCB83E3EEC21EE9B77979DAEA6C361B1D4D3B4DA6D4A050702394482F83C19D5FB61B40EED1DF46B6DB733A3B6AC39E1F75767A74E8D8EB69D5DB68D9AA0C2A39933CC4C63668DB95A95F4CFAB21A5C9C98DEDBC1578DCB24CA88F2E648F41318D45B7AB52BE99D0CBF3632E4435C98D95FBD6F1B967592F614FCC91161A31B346DCAD4D7A62A223799222C4C5CD6ADEAD4AFA9FF00D187F31664B7235D497FA8DBDB2EEF4FF1AF9376FD1A7469633D06116738EA26311881EB2238970A69F52EAA2335671E819270E3135E05C0926AAB055CBFDB6ACAE5CFF8EAF49EAF320C33C4E7324F038C86113AC88E273D36FABC8CF1393293C723207C4E8C238648CA3EE14EA84CE5259A398E26B8A8B4B9065E0BC4F4259578E81A0E1C514370D91957241857860E655E07068C219590E44E7A6DC88D4BA5926DADE5C866DDAD7027DB146F7D666F8C67AD3F4FFF004D9B6FFA31FE3672D806A260972D8ED622258FC35E1DF62EB037B1D02A3A237B0DE80EEDDDE2FB7D8EDD850361D98908B523A1C82B8439EF69B3A8C4137C2E16F8231D8ADDF6BB2D488C45E7610FDBB96E67AFA6D1E74FFF0056CD9772F23D09655A390703471460DC364655CBA5DA63ED9B74BB4C7DB36E97698FB66DD5154E773590CE9EA4B7B7317FC8965C8D098AE2B4324C0121A0E06C2E8E1C86F1655CBAA2A9CEE6B219D3D496F6E62FF912CB91A1315C5686498024341C0D85D1C390DE2CAB97C9BF768D3A74FF00A319EBCC8B2607513070C4714611C378534E4830CF0C132ABC0E321844E8C1C864F4DBE91AA88B25235BCB9135C545E04FB628DEFACCDF18C9752E99A8C4F40C9C671866CF2E03735558D75444C7DCB62B8D10C9CE04868C41B14AC07225C5957DEA8898FB98CB9B4F524B2B973FE44B2E7ABAC6815C262607713070CA194611C378534E58297D0AF33BFDE9C1A04788E824696C204614B3A3BBDED3F4E9D905841B1354C7797F7A803F8D611187E717E7A763FE1AE645449E2C6D9EA43352201C88BF6D2181C2A41B1F7D154076C03DBC2F650FD83B6BBB8DE16338BC38BE0D9A0E8F1BE3908D9687989B0C94582804F102768ABDBF6BBCC69CE7DCB640B1F408CD0E6A08434FD5283BDEA6ED8BCAED41A7A1D2AB872310681EB21B8948CABEB6067F7B3C23628DEFACCDF18DD2E94E76CDB0A74BC6726CCD1CC60CDBB5AA5C832F041C7A1D2ABC74320701EB41B8948CABEB614CA84B14D99A398C26B76B54B9065E467860E655E391903E27590E44A4651F7E554185473247A098C6CD1B72B52DE99F56434B97930BDFF64DE372C937235D493FA8DBDB2EEF4FF1A54446F32245898B9AD5BD5A95F53E86BF9B592E11BCB69161A2E6B5715166BD492E11BCC91E81A2E6B56ED6A6BD4D0D21BE4C2F6FDED78DCB24D8A2FBEB337C6360A1FF002C4CEFF7A7065B503DABFC6A0FA8EBB5D7D8BEC503F157275DB13C58D0800198840C42FB078BE873D9ED767148AC3A3FB533A18268A06844328C425E9F364F5108480A3E25026CE1B121088A030578D9EBEF098049D8EC2843A1DDFB61AAED06D4D8EBBB6D98322E108C2000009BD43363B77A09C43650D866C36F1B8A244493128A4621CEF1E7D0942F8921D72BF09B2A0C2A396C22C4C63668DC74595F4DC0CFEF6F84654185473267A098C6CD1B72B52BE9AA88F2E5B48B1318D45B8A8B2BE9BD733F09B75CDFC24CA830A7E5B08B1318D9A371D1657D310D21BE73AF6FDED675B524CA888DE5B4F4131735AB8A8B2BEA7F2AF05E27A12CABC740D070E28A1B86C8CAB974BB4C7DB36C55D2F1629B32BF2E4336ED6AA93EC57AF33D098024341C0D1C518390DE2CAB92F233C4E4CA4F1C8C81F13A308E192328FB853AA133949668E6389AE2A2D2E419782F13D09655E3A0683871450DC364655C8AF418459303A868C41C07A308E1BC5957DC5595099C9B32BF2E04D6E56AA93EC9752E964B388A0D1C671866F03204935558D609FF00F2C4CDFF007B70654AE9BF685AC4765AFB39A7314EC7535765A9A346AE8DDA3468D1A3FF004DDF4D3F4DFF00FC010F37DD018D47D1A429EF61AFADB6D7D4D47D0B8A21A31826C22D09DAEBEDDC36FBF87B40E47A22FCAD42C1C0FB83DED76F05143CEDA29AE62806046784A361513B954E031376D9EC1F1D3A5DA64EDA3628DEC4CCDF18C462A23393656F2E04D6ED6B813EDD5154E7735B146F62666F8CF89A056864E70244C1C3285D603912E14D392E5D3D36ECAE5CFF008EAF49EAF325D4BA592CE22834719C619BC0C8124D55635F2E28DEFACCDF19F03C5511649BA8B98C25B76B5C79062B8D10C9CE04868C41B14AC07225C5957D418678609955E07190C227460E4327A6DF572FF723B2B973FE44B2E7ABCC6815C262607713070CA194611C378534E4839071E84B2AF030C86207A286E1B3D34FBA3E1861A76311368087AE263076DCDBBFC49D1EDDB40AC030B183EC31F1FF0067ADB57886EB6D35DD74EB95FB2FAF0DF75F57469FF4DA15EF3BFF00E07ED9E9D568DA628BBB461F63213106D431117DD7D3B47BD9B881044E90F77D47ED4D9BDBE6AECF5746DB6A98837B370DA98D16DBB8EA6C226F82678D8ED36BB6DAEA6D36EFBABABADA35B4EA6AECF5759B143F7D065F8C641C838F425957818643103D14370D9E9A7DDFA3F4EF633D799164C0EA260E188E28C2386F0A69C8AF5E6459CE3A868381C38AC88E25C595723C5521629BA8B98C26B76B5C7906EA8898FB98CBC17891674A501D0341C38AD08E25232AE5B99072F122C964A006068C4714511C367A69CBE5C517DF519BE3192F62AFCC99E81A2E32BADCAD4D7A96397F64FCDB25EC56396C22C345CE575C7459AF534B846F3247A068B9AD5BB5A9AF53FA60C3F98B325B91AEA4BFD465ED9777A7F8D6E65CAB97930B2B4595785CB3ADD737F09B4331BB707B89EC3651727B6EEB0AD7D3B9EB6900C4353DC51C364F0EE6B383B6CB5F46FE07500203BB61E6191D4110006DEE3E2114384260EE9FA38EF9CFF901DDB0F3034E9088FC38E91E0F89DC22D077BFD7C07CD617C335F67AFABB18BBBEA6BEB7FE2856DF51EF4EAEC1CF5769ACEDFAB89B67A53F854732479894C6CD1B72B32BE9A97B157E64CF40D17195D6E56A6BD4B7E8D1A37696C513DF5999E3192F614FCB61E81A31B346E3A2CCFA62E5435CE7595FBDACEB6A7595111BCB69E8262E6B57151657D4FA197E6C6E869F9B1BA197E6CF9776FD1A7469633D06116738EA26311881EB2238970A69F70B8F7D659F9363C52E162A4A8B98E19B8A8BC7906E97698FB66CA852E9648C48A131C64E066CF320352B4A8D1E2A90CE52345CC6135C545E3C8315EBCCF4260090D0703471460E4378B2AE4D8E67D93F36C8390711674A50030C86207AD08E253D34FABC1071164B2501D0C81C07A288E1B232AFBFAB4B20F416461D49440E3318826B024894F4D3E25650C602C53EC30501BB1FBACBB11CD5520F8AAA5D2C935E57E5C86A815AAA4FB618900717E43A5B6DB6DB1DFAFAF526D40C43B534EFD0EFA37B62A2A60CA4CB95FA0B5125B75AAA4FB7545539DCD6C2E3DF5967E4DB1575446726CCAFCB9135BB5AAA4FB25D4BA592CE22834719C619BC0C8124D55635D5154E7735B0A754267293CD1CC7135C745A5C8319E8308B39C7513188C40F5911C4B8534FABC8CF1393293C723207C4E8C238648CA3EE14EA84CE5259A398E26B8A8B4B9065E0BC4F4259578E81A0E1C514370D919572F937EED1A74E9FF4633D799164C0EA260E188E28C2386F0A69CB146F62666F8C6C0CBEF6784F81A068864980244C62328A51C390DE14D3EAE5D1D492CAE5CFF916CB9EAF325D54459231228344E1C626B3CC80D4D5560AD8AC25E3394965865C866E2A2D527D8D02B84C4C0EE260E194328C2386F0A69C9B033FBD9E11B146F7D666F8C6542A88B259C450989C2704D781902495A54150D7F6DABDB98CFE3ABCE4682DD51131F73192EA5D335189E81938CE30CD9E5C06E6AAB1A5CBFDC96CAE5CFF00912CB9EAF31A057098981DC4C1C3286518470DE14D391A068864980244C62328A51C390DE14D3E91AA88B15235BD05C89AE2A2F067DB146F7D666F8C6542A88B259C450989C2704D781902495A5417A5CA9CED9B25D54459231228344E1C626B3CC80D4D5560BF0C51BDF599BE33E654185473247A098C6CD1B72B52DE98A83157E64C8B1317195D6E56A57D490D2E4E4BEF7FD9578DCB22DD737F09B73C9D493FA72B272EAF4FF25FA60C3F98B3259511E5CC91E82631A8B6F56A57D337B7D1B145F7D66778C6541853F2D845898C6CD1B8E8B2BE9886972725F7BEE055E372C937235D497FA8DBDB2EEF4FF1A4BD853F2DA7A068C6CD1B8E8B33E998E57D93F36C97B0A8E64C8B0D18D9A36E56A6BD315111BCC8916262E6B56F56A57D4D0D21BE4C6F6DE36BC6E5926C517DF599BE3195062B1CC9916262E72BADCAD4AFA9E067F7B7C23628DEFACCDF18C970F2E5B4F40D18D45B8A8B35E99D733F09B7237D493FA8CBDB2EEF4FF1ADEDBF46ED2D8A2FBEA337C67CCBC1789E84B2AF1D0341C38A286E1B232AE4830AF0C1CCABC0E0D18432B21C89CF4DB962AE97CB14DB95F97219B76B5549F641C8388B3A528018643103D6847129E9A7D542974B246245098E327033679901A95A54690D7F725BDB98CFE45B324682DD2ED31F6CD9072F13D0E955E06068C4715A0DC4A7A69CB1575426726CCAFCB8135BB5AAA4FB1A068898E71DC4C62328A5644712E14D3E9A056864E70244C1C3285D603912E14D3974BC4C9DB462B8AD0C93004868381B0BA38721BC5957263C92E962A4A8B98C19B8A8BC7906542A88CD4627A0989C2704D679701B95A54157919E27265278E4640F89D18470C91947DEA88A73B98C9752E964B388A0D1C671866F03204935558D74BB4C7DB362352E1629B6B797019B76B5C09F6C51BDF599BE33E1A34FE9FAE862BD799E84C0121A0E068E28C1C86F1655CBAA2A9CEE6B7545539DCD64BA974B259C45068E338C3378190249AAAC6BE4DFBB469D3A7FD18CF5E6459303A898386238A308E1BC29A72EA8898FB98DD51131F731BAA2263EE6375444C7DCC623551962A4AB797226B8A8BC09F65E0838F43A5578E8640E03D68371291957D542A88B259C450989C2704D781902495A54170A74BC6726CCD1CC60CDBB5AA5C832F041C7A1D2ABC74320701EB41B8948CABEE171EFACB3F26D8E67D93F36D85C7B132CFC9B2F22BC4E7324F1C8341F0CAC88E272328E4863FB6DDEBCC5FF001DDE7234262B8D10C9CE04868C41B14AC07225C5957DE974A73B66D853A5E33936668E63066DDAD52E4197820E3D0E955E3A190380F5A0DC4A4655F57915E27399278E41A0F865644713919472E976A73B68C6815C262607713070CA194611C378534E4681A2192600913188CA29470E4378534FA46AA22C548D6F417226B8A8BC19F6C51BDF599BE318D0344324C0122631194528E1C86F0A69F715854258A92CB0CB9135C545AA4FFCF8A2FBEA337C637432FCD8DD0CFF0036B7432FCD8CA830A8E5B08B1318D9A371D1657D37032FBD9E11B737235D3737A8CBD7316CBFF1AEB97F84DBAE6FE1264BD85472D87A068C6CD1B8E8B35E9B8E67D93F36D85CFB142CFC9B7D197221AE73ECADC36B3EDA9E64B846F2DA45868B9AD5C5459AF52EB9BF84DBAE5FE136EB9BF8499511E5CB71162631A8B7151657D310D2E4E73AF6D164D9F6D493628BEFACCEF18CA888DE6488B131735AB76B52BEA48690D72637B7EF6BC6E5926C517DF599DE31B144F62866F8C643686B9CFBDB78DACEB6A49BA197E6DF9B146F7D666F8C65E46789C9949E391903E274611C324651F7AA229CEE637545539DCD6C51BD8999BE31B032FBD9E13E09755119AB38F40C9387189AF02E049355582E2AE978B14DB95F97219B76B5549FF820E5E27A1D2ABC0C0D188E2B41B894F4D396397F64FCDB15EBCCF4260090D0703471460E4378B2AE5D5154E7735BAA2A9CEE6B7545539DCD6E97698FB66DD2ED3276D197915E18265578E41A0F86518390C9194724BAA88CD59C7A0649C38C4D78170249AAAC148C4BA58A6DADE5C866DDAD7027DB146F7D666F8C6EA8AA73B9ADD5114E77318D03444C738EE263119452B2238970A69F52EAA2335671E819270E3135E05C0926AAB055CBFDB6ACAE5CFF008EAF49EAF320C33C4E7324F038C86113AC88E273D36FBF2E28DEFACCDF18D8A37B13337C67C7146F62666F8C6C0CBEF678465E0838F43A5578E8640E03D68371291957DC51BD8999BE31B468DEC839789164B250030346238A288E1B3D34E4830CF0C132ABC0E321844E8C1C864F4DBE91AA88B15215BCBA135C545E04FB19EBCC8B2607513070C4714611C378534E4839071E84B2AF030C86207A286E1B3D34FB8E67D93F37F0418678609955E07190C227460E4327A6DF572FF723B2B973FE45B2E7ABCC830AF1393293C0E0D184328C23864F4DB96171EFACB3F26C78AA22C537513418C26B76B5C69062B8D10C9CE04868C41B14AC07225C5957D41C838F425957818643103D14370D9E9A7DC55D2F19CA4F2BF2E43371516A93EC975511648C48A0D1387189ACF32035355582E28DEC4CCDF18C46A5D33548D6F2E43371517813EC6815C262607713070CA194611C378534E5F2E28DEFACCDF18CA888DE6488B131735AB76B52BEA5D0CBF36B7432FCDAD8A2FB14337C636065F7B3C236E65418ABF32645898B9CAEB72B52BEA4C97B0A7E6488B0D18D9A36E56A6BD312E11BCC91E81A2E6B56ED6A6BD490D21AE4C6F6FDED78DCB24D8A27BEB333C6375CDFC24CB9572739F64E8B2ACFB6A7BE0A830A7E5B08B1318D9A371D165BD33033FBDBE11BE8D85C7BEB2CFC9B6397F64FCDB25EC56396C22C345CE575C74599F53FA37D3732A0C2A39923D04C63668DB95A96F4CE793A92FF004E564E5DDE9FE4A8690D72617BFEF6BC6E5926541853F3247A098C6CD1B72B52BE9BF2E28DEFACCDF18DD5154E7735BAA2A9CEE6B7545539DCD633D799E873812260E190E2B21C8970A69CB032FBD9E13E3A34FE9FAE862BD799E84C0121A0E068E28C1C86F1655C8AE3444C4C0EE183106C528C2386F1655F7AA229CEE6325D4BA592CE22834719C619BC0C8124D55634830AF0C1CCABC0E0D18432B21C89CF4DB974BB4C9DB46E97698FB66C6815A1939C0913070CA17580E44B8534E44725C2C53756F2E4336ED6B813ECBC1789E84B2AF1D0341C38A286E1B232AE585C7BEB2CFC9B1E2974B252545CC60CDC545E3C832F22BC304CAAF1C8341F0CA3072192328E5D5154E7735B0A754267293CD1CC6135C545A5C832F05E27A12CABC740D070E28A1B86C8CAB915E8308B260750D188380F4611C378B2AFB8ABAA133936657E5C09ADCAD5527DBAA2A9CEE6FF00EE7FFFC4003E10000102050106030703040004070000000203130001041114150512212232331085D4162023346394E4313541245161624260718206305281B1B3D1FFDA0008010100133F00FF0091349A05DB7281054F9D5408F899C681B2FD34681B2FD34681B2FD34681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C681B2FD34681B2FD34681B2FD378E9340BB6E5020A9F3AA811F13386125DB72BD048F9151209DC0CE5C46302969597B2DCEC2417BB41EEE81B2FD34681B2FD3430920E375F509072242212B0004B80C3092EDB95E8247C8A8904EE0672E231A06CBF4D1A06CBF4D1A06CBF4D1A06CBF4D1A06CBF4DEF795D2463AABB6E2A09072242473B9984B80CED1A06D4F4D1A06D4F4D1E69491F7F1AB5020E37408247C8AAE272B1846AD40BB6E502E907224B91F1338C0AAAA7996DDEC2476B3A1D519F4B43938F4A952ADF06A954960B2C82A1CE11815543938F549552DF1AA924910B2282A7CE719F4B54F3396EF6153B59D08D22BD76DC4C150E7490209DC0C27C0A33E96BB1B22955A547E0D2AAAAC77597483902302AA9597B11AEFA417BB471ABD020E36A9A47C8AAE272B181CB88C605550E4E3D52554B7C6AA492442C8A0A9F39C6BFB2FD4C6BFB2FD4C67D2D7636452AB4A8FC1A555558EEB2E907204605552B2F6237DF482F768E349AF5DB72BD75439D24083A0C23CD2923EFE348AF5DB71305439D24082770309F028D036A7A68C0AAA565E71AEFA417BB47D378F2BA4F7BCAE923CCE93C7CD2923EFE35FC579EA5497ED629DACEDBABC349CEC8C863EBA5B9BAC46262BCF552ABF6B7CED67777AA71E5957E1A06532CD2A48777282F76AFD318994CB35492FDADF0BDDADDEA8D27071B1D8FACAEFEF3F1E67571A062BCF52AA877728ED676FD3E38994CB35492FDADF0BDDADDEA8D27071B1D8FACAEFEF3FE1E69491F7F1E594BE1F7F1E5749EF795D2479A5278F9A5247DFC795D24681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C795D5F869340BB6E5020A9F3AA811F1338D2681071BA05D50E749013E0611F611A4502EDB8A9AA7CEAA0473B999CF8943092EDB95E8247C8A8904EE0672E231A06CBF4D1A06CBF4D1A4D020E3740BAA1CE92027C0C23EC3C3CD2923EFE3CAE93C3EFE3CAE93DEF2BA48D036A7A68D036A7A68D036A7A68D26BD071BAF4153E755010E8038FBF8F2BA48CFA5AEC6C8A556951F834AAAAB1DD65D20E408C0AAA565E71BEFA417BB47D378D22BD76DC4C150E7490209DC0C27C0A357A05DB71504839125C8E7733097018CFA5A565E71BEFAA17BB47D378C0AAAEC6C8AA56A91F8D4A92A89DD15D23E438D5E8176DC54120E4497239DCCC25C06275F4B4ACBCE37DF542F7694E9BC3E92EDB890AA1CE91104EE0613E053B479A5247DFC6915EBB6E260A873A48104EE0613E051E694913AFA5A565E71BEFAA17BB4A74DE1F4976DC48550E748882770309F029DA3CD292302AAA9E672DDEC2476B3A11A06D4F4D1A06D4F4D1A06D4F4D0C2A838DD02091F22A2272B181CB88FBDA06532CD2A48777282F76AFD31ECA7E6C7B29F9B1ECA7E6C7B29F9B1A4E0E3E3E47D7577F79F8D032996695243BB9417BB57E98F33A58FBF8D032996695243BB9417BB57E98F33A48D57071B1F23E82BBFBCFC65E532CD2A48777702F76B7BA651AFE532CD524BF6B142F76ADD51F7F1A06532CD2A48777282F76AFD31AFE532CD524BF6B142F76ADD51AB60E363E47D0577F79F8CBCA659A5490EEEE05EED6F74CA3CCE963EFE340CA659A5490EEE505EED5FA631329966A925FB5BE17BB56EA947B29F9B1ECA7E6C7B29F9B1ECA7E6C7B29F9BFF91814B54F3388DF7D23B59D3861241C6EBEA120E44844256000970186125DB72BD048F9151209DC0CE5C46302969597B2DCEC2417BB41E190AA0E36A82A1CE9109CAC6984F814AF1FBA6662318DF3CFB7B994BF6ED7DF8D0365FA68C855071B54150E74884E5634C27C0A578D7F6A7A98D7F6A7A9F0C0A5AA79971BEFA476B3A7D30C24838DD7D4241C890884AC0012E03E19F554ACBD96E76150BDDA087D55DB7281054F9D52239DCCCE7C4A348A041C6D505439D2404E563009F028C0A5AA79971BEFA476B3A7D30C24838DD7D4241C890884AC0012E03E1814B54F3388D77D23B59D38D0365FA68D2681071BA05D50E749013E0611814B54F3388DF7D23B59D38D0365FA6F7B48AF5DB71305439D24082770309F02F0CFA5A565E71BEFAA17BB47D3787D25DB71215439D22209DC0C27C0A768D036A7A68C0AAA565E71BEFA417BB47D378D22BD76DC4C150E7490209DC0C27C0A1F49071BAF4153E754842560039F128CFA5AA799CB77B0A9DACE846915EBB6E260A873A48104EE0613E05E19F4B4ACBD88D77D50BDDA38C0AAAEC6C8AA56A91F8D4A92A89DD15D23E4386155DB7282A120E44848E7733097018FDAF0F2D8C6F9E65CDFC45FA2F6DC87D25DB71215439D22209DC0C27C0A768D5A8176DCA05D20E449723E2671815554F32DB9D848ED6743AAD0C2A838DD02091F22A2272B181CB88C6BFB2FD4C67D2D53CCE5BBD854ED6742348AF5DB71305439D24082770309F028D5E8176DC54120E4497239DCCC25C063EFE348AF5DB71305439D24082770309F02F0CFA5A565EC46FBEA85EED1C3E92EDB890AA1CE91104EE0613E053B7BDE594B18994CB34AAAFDADF0BDDAB754A3F63D3B4FFB975CCFFF004B3519794CB34A921DDDC0BDDADEE9947B29F9B1FB1E9DA7FDCBAE67FF00A59A8CBCA659A5490EEEE05EED5FA651AFE532CD2AABF6B142F76ADD5E1A06532CD2A48777282F76AFD31978AF3D54921DDDC3B59DDEE99C7B57F851A56A98789FD0FCCBC8B9BF8AE76E56DFB47B29F9B1A4E0E3E3E47D7577F79F8D032996695243BB9417BB57E98CBC579EAA490EEEE1EED9DDEE99C6AD9D9390C7D14B737588D0329966A9543BB9417BB57E98D7F299669555FB58A17BB56EA8D5B071F1D8FA0AEFEF3F1A56A98789FD07CCBE8B9BF8AE76E56DFB4626532CD524BF6B7C2F76ADD51A4E0E363E47D7577F79F8F2CA5F1F2CA4F7BCAE92184976DC48D23E4544827703397119DA3029695979B73B0905EED27D578D5ABD071BAF5D20E449710E8008D0365FA68C0A5A565E6DDEC2417BB41D57F0D5EBD76DC4CD23E4557209DC0CE5C47C349A05DB7281054F9D5408F899C6052D0E4E3D2AB548FC6A5492582CB2091F21C6BFB53D4C642ABB6E2A6A9F3AA4473B9A853E253B469340838DD02EA873A4809F030F0D268176DCA04153E755023E2671E694912AFAAA565ECB73B0A85EED04642ABB6E2A6A9F3AA4473B9A853E253B4795D5C7D8469140BB6E2A6A9F3AA811CEE6673E250C24BB6E57A091F22A2413B819CB88C6052D2B2F65BBD8482F7682357AF41C6D304839125C42560009701F1F2BA4F7BCAE921F49071BAF4153E754842560039F128CFA5AA799CB73B0A9DACE87863AABB6E2A09072242473B9984B80CED1A06D4F4D1A06D4F4DE19F4B4ACBCE35DF542F768FA6F181555D8D9154AD523F1A9525513BA2BA47C87157B7681943FDCDA58CED2FF0003384A8184E98E9DFE12B19DEEFC536CC71306699343AA76BDDA8D1C234708A8A59A6A28F54AABCEE3295A569AB68248E5294BFCCED19F4A836F623567950BDDA38C0AAAEC6C8AA56A91F8D4A92A89DD15D23E5386155DB7282A120E44848E7733097018FDAF0F2D8C6F9D65CDFC55FB77B46055576364552B548FC6A549544EE8AE91F21C6935E838DD7A0A9F3AA8087401F86935EBB6E57AEA873A48107418467D2D7636452AB4A8FC1A555558EEB2E9072047ED78796C637CEB2E6FE2AFDBBDB721F4976DC48550E748882770309F029DBDEF2CA58CBC579EAA490EEEE1DACEEF74CE356CEC8C8C8FA096E6EB1E18994CB35492FDADF0BDDAB754A3D94FCD8F653F37C3EFE3CB29607F51DE9CA5797F995E252E128095E7B8984CA7697FD250139948252909A73BCF8CEE2769CF85E72BCA568527610194AF39CE73FE2528AC49B1AA496099A6AA72FD6425295E5BD294ED69DBC3FE10995E45BB2FE25398DEDFDE739FF31A06532CD2A48777282F76AFD3E1AAE0E363E47D0577F79F8CBCA659A5490EEEE05EED6F74CA3D94FCD8D27071F1D8FAEAEFEF3F1A06532CD52A8777282F76AFD318994CB35492FDADF0BDDADDEA95AF1FB1E9DA7FDCBAE677FA59A8D2B54C3C4FE83E65E45CDFC573B636DFB7BDABD7A0E3698241C892E212B0004B80C6052D0E4E3D2AB548FC6A5492582CB2091F21C7EE99988C637CF3CDEE65AFDBB5F7E1849071BAFA84839121109580025C06184976DCAF4123E4544827703397118C0A5A565ECB73B0905EED0469340BB6E5020A9F3AA811F13387D541C6E82A150E74884E563009F028CFAAAA79971BEFAA76B3A7D368F2BA48FF00BE5E14E52963266049E42E5796E2729CE76FE4A72B0CA73BDB6A3DBE330A74D2B727F1C853BDE7FACB84AD3BECDDB2A2AF2025BC694913404A523DDDC9F35B7665C62F27524E9A46204A87EA247350E72BFEA0DF87FDC51A4502EDB94082A7CEAA047D671AFED4F531AFED4F531AFED4F531A06CBF4D1FB5E1E5BF93F22C39BF8A8772F6DC8C85576DC54D53E75488E77350A7C4A768D0365FA68FDAF0F2DFC9F9161CDFC543B97B6E4642ABB6E2A6A9F3AA4473B9A853E253B7BDA457AEDB8982A1CE920413B8184F81430AAEDB941509072242473B9984B80C605552B2F38DF7D20BDDA3E9BC795D2467D2D7636452AB4A8FC1A555558EEB2E907204681B53D3463AA838DAA691F22A2272B1A652E2328D036A7A68FDAF0F2D8C6F9E61CDFC55FB77B6E43E92EDB890AA1CE91104EE0613E053B78274229A28A467314574AA24A94D407268A4523009DD4BDA366A96651AA56A12A62A8DD9DD8A646986649CA7BB335EE5095E68D32B4AD492A84D39DC46EF148A5294A45619CE2A7E67682CAA6446AA15339B9F0F978EF5AE56B5A2946432DABB384A725F78385F7921782FD256B4E5C6F41B36A2B0954256B9FC202E1CC30D1A7BF3150C4B94E522E1319CBF48D5E81071BA04123E455713E0607E1F7F1E57491AFECBF5319F4B54F3396E76153B59D08D5A81071BA04123E455713958C3C302AAA9E672DCEC2476B3A10C2A838DD02091F22A2272B181CB88FBDA06532CD2A48777282F76AFD3E1AB60E363E47D1577F79F8D2B54C3C4FE83E65E45CDFC573B636DFB4626532CD524BF6B7C2F76ADD51ECA7E6C6262BCF552ABF6B7CF76CEDBAA718994CB34AAAFDADF0BDDADDEA94693838F8F91F5D5DFDE7E3CB297C03F8AA40A9EB11FFE838A0009112469A736493504C4C39653B14A7394F8CA70B8802C549319A694C3993414BDF7E4090CA5212E6B95EE9D624CA03322DD4896107A616DD9CC1DB7198F4C02929A6B23309837219719CA729FE9394B8452593ACAE5123ABA6911D42A5BA92130A4524729094CAD149564926A27906DA6F12739F2818DCB723DABFC28D0315E7AA9243BB9476B3B7E98FBF8D032996695243BB9417BB57E98CBC579EAA490EEEE1EED9DDEE99C7B57F851ED5FE146818AF3D54921DDCA3B59DBF4C6939D919191F5D2DCDD6231315E7A9525FB5BE76B3B6EA9FBDA4D02EDB94082A7CEAA047C4CE35FDA9EA633EAAA9E6711AEFAA76B3A71A4502EDB8A9AA7CEAA0473B999CF8943092EDB95E8247C8A8904EE0672E231814B4ACBD96E76120BDDA08D268176DCA04153E755023E2671ABD7AEDB899A47C8AAE413B819CB88C6052D53CCE235DF48ED674E33EAA87271EA95A547E0D2AA92216450483903C1CDD3553569D748E432FF008AD23DF9CBFF00485E25FA47F78D8FB357A9A79C84B7484E49C8C933039184E45FAEE6F42889A339DA769F298C8A5C65FCCA10E2E20B564D6DF9CA529EE8260B29729CE579A96943CA22E86FCE76DF4C84A5C65FC4E51AFED3F531E69491814B54F32E35DF48ED674FA6D1A06CBF4D1E6949E390AA0E36A82A1CE9109CAC6984F814AF1FBA6662318DF3CF37B994BF6ED7DF8CFAAA1C9C7AA56951F834AAA4885914120E40F7BCAE93C25415554F32DB9D848ED6743AAD18EAA0E36A9A47C8A889CAC6994B88CA185576DCA0A84839121239DCCC25C063F6BC3CB631BE799737F117E8BDB721F4976DC48550E748882770309F029DA356A05DB728174839125C8F899F8E75354EFA412B1CEE8A8768DEE09998EE914A5FA6F6EDC653FE244504129FFF009049CE53FF00E611B2F475273B5CCE9D496EC8F965720984E7C6F38A619260676E2421329CC653FED79DBFBC4E9C4159A69269260332971294B74A728FED3BCE769FFED394E3CAE92356A05DB728174839125C8F899F86915EBB6E260A873A48104EE0613E051A457A0E3699AA7CEAA0212B001CF8946055553CCB6E76123B59D0EA8D036A7A68D26BD071BAF4153E755010E803F0D26BD76DCAF5D50E749020E830F7BCB29635FCA659A5557ED6285EED5BAA3EC235FC579EAA557ED629DACEDBAA313299669555FB5BE17BB56EA8FD8F4ED3FEE5D733BFD2CD4695AA61E27F41F32F22E6FE2B9DB95B7EDE1AB60E363B1F415DFDE7E3DABFC28A5FFC432A951BFF0009952848E7FE37E51B4692A13552FF005B4C061A5E2A1153713DE3101BDA7FC910CA195A29D05260A6E19015AF3FE084A509D31CE729FF007E33B5FF00EB0B4AC7507C39A7C25FDA5FC4BF494A5294A51A06532CD2A48777282F76AFD31AFE532CD2AABF6B142F76ADD5E1E59491A062BCF52AA877728ED676FD31A4E7646431F5D2DCDD6231315E7A9525FB5BE76B3BBBD538F653F363D94FCD8F653F37DED5EBD071B4C120E4497109580025C063CAEAE33EAA95979B77B0A85EED0755E35FDA9EA633EAABB1B22A92A55BE0D52AAA2774575439C23029695979B73B0905EED0755E348A05DB715354F9D5408E773339F12F0FB08D5ABD071BAF5D20E449710E8008D5ABD76DCAF4123E455720E833F0D5EB9071BAF5D20E449610958023029A85FC7A55AA91F8D4C9A6A85964122E0713AFA9AA799C46BBCA1DACE9C799D5786052D53CCE235DF48ED674E340D97E9A3CAEAE30296A9E6711AEFA476B3A719F5543938F54AD2A3F069554910B228241C811A06CBF4D1814B4ACBD96EF6120BDDA08D5EBD071B4C120E4497109580025C06184976DCAF4123E4544827703397118C0A5A565ECB73B0905EED0469340BB6E5020A9F3AA811F133F7B48AF5DB71305439D24082770309F028F34A48FBFF0C75576DC54120E44848E7733097019DA3F6BC3CB631BE799737F157EDDEDB9181555D8D9154AD523F1A9525513BA2BA47C87E19F4B4ACBD88DF7D50BDDA387D25DB71215439D22209DC0C27C0A76F0FBF8F2BA48C0AAA1C9C7AA4AA96F8D54924885914153E738FDD33311FC9F9179BDCCA43B96BEFC681B53D3467D2D7636452AB4A8FC1A555558EEB2E9072047ED78796C637CEB2E6FE2AFDBBDB721F4976DC48550E748882770309F029DA31D55DB71504839121239DCCC25C067689D05552B2F38DF7D20BDDA3E9BC795D24605550E4E3D52554B7C6AA492442C8A0A9F39C6BDB33D4C6055576364552B548FC6A549544EE8AE91F21F8F95D27BDA06532CD2A48777282F76AFD31AFE532CD524BF6B142F76ADD51AB60E363E47D1577F79F8F6AFF0A355D530F13FAEF96651737F15BEE4ADBF78FD8F4ED3FEE5D733BFD2CD465E532CD2A48777702F76B7BA65E3E59491A062BCF5524877728ED676FD31AAE0E363E47D1577F79F8D2B54C3C4FE83E65E45CDFC573B72B6FDA340C579EA5550EEE51DACEDFA63EC2340CA659AA550EEE505EED5FA631329966A925FB5BE17BB56EA8D27071F1F23EBABBFBCFC79652C6BF94CB35492FDAC50BDDAB7547DFC795D2465E2BCF52AA877770ED6777BA671ED5FE14695AA61E27F41F32F22E6FE2B9DB95B7EDE3E594BEF69340BB6E5020A9F3AA811F13387D541C6E82A150E74884E563009F028CFAAAA799C46FBEA9DACE9C6AD5E838DD7AE907224B887400467D557636455254AB7C1AA55544EE8AEA873847ED78796FE4FC8B2E6FE2A1DCBDA35FDA9EA6349A041C6E8175439D2404F81846052D53CCE237DF48ED674E1849071B48520E4484425604C25C06578C855071B54150E74884E5634C27C0A578D7F6A7A98C85576DC54D53E75488E77350A7C4A76F0CFAAA565E6DDEC2A17BB41D578C0A5AEC6C8A54AA96F8D5492AB1DD65D53E7386125DB72BD048F9151209DC0CE5C46340D97E9A33EAA87271EA95A547E0D2AA9221645048390235FDA9EA633EAAA9E65C6BBEA9DACE9F4C795D278E9140BB6E2A6A9F3AA811CEE6673E251A06CBF4D1A06CBF4D19F5543938F54AD2A3F069554910B228241C81EF6915EBB6E260A873A48104EE0613E051A06D4F4D1A06D4F4D1A06D4F4D1A06D4F4D181554ACBCE35DF482F768FA6F1AB5020E37408247C8AAE272B184605550E4E3D52554B7C6AA492442C8A0A9F39C67D2D53CCE5B9D854ED6742356A041C6E81048F9155C4E56308F2BAB8FB08F34AB87D241C6EBD054F9D521095800E7C4A3F74CCC47F27E45F6F73290EE5AFBF18EAA0E36A9A47C8A889CAC6994B88CA35FD97EA633E96A9E672DCEC2A76B3A11AB5020E37408247C8AAE272B1843E920E375E82A7CEA9084AC0073E251AFECBF530FA4BB6E242A873A44413B8184F814ED18EAAEDB8A8241C89091CEE6612E033B44E82AA95979C6FBE905EED1F4DE3CAE9231D55DB71504839121239DCCC25C067689D05552B2F6237DF482F768FDFF002CA58F653F363D94FCD8F653F36340C579EAA490EEE51DACEDFA63EFFC34AD2F332FFA1F997966F7329CED947B57F851ED5FE146818AF3D4AAA1DDCA3B59DBF4C7D84799D5F86939D9190C7D74B737588C4C579EAA557ED6F9EED9DB754E3DABFC28F6AFF0A3DABFC28CBC579EAA490EEEE1DACEEF74CE355CEC9C8C8FA096E6EB11E594918994CB35492FDADF0DEBB56EA94695838D8F91F5D5DFDE7E3CB2923CCE9634ACEC9C8C8FAC96E6EB11ECA7E6FBDE57490C24BB6E57A091F22A2413B819CB88C681B2FD34681B2FD3479A5247DFF86052D0E4E3D2AB548FC6A5492582CB2091F21C67D5553CCE235DF54ED674FC349A041C6E8175439D2404F81847D8469140BB6E2A6A9F3AA811CEE6673E251A06CBF4D1A06CBF4D1A06CBF4D1AFED4F531AFED4F530FAABB6E5020A9F3AA4473B999CF8946052D0E4E3D2AB548FC6A5492582CB2091F21C67D5553CCB8D77D53B59D3E9B4795D24681B2FD34681B2FD3430920E3690A41C890884AC0984B80CAF1814B43938F4AAD523F1A9524960B2C8247C871FBA6662318DF3CF37B996BF6ED7DF861241C6EBEA120E448442560009701F7BCAE923CD293C7CD2923EFE356A041C6E81048F9155C4E56308F34A4F0D26BD76DCAF5D50E749020E83086155DB7282A120E44848E77330970189D05552B2EB8DF7D20BDDA3E9BC6915EBB6E260A873A48104EE0613E051AB502EDB940BA41C892E47C4CE3EC3C185576DCA0A84839121239DCCC25C063F6BC3CB631BE799737F117EDDEDB90FA4BB6E57D42A1CE91104EE0613E051E575712A0AAAA7996DCEC2476B3A9F55A31D541C6D5348F915113958D329711946AD40BB6E502E907224B91F1338CFA5A565EC46FBEA85EED1C6055576364552B548FC6A549544EE8AE91F21C79A5244EBE9695979C6FBEA85EED29D3787D25DB71215439D22209DC0C27C0A76F7BCAE9231329966A925FB5BE1BD76ADD528F653F363D94FCD8F33A58FBFF0D7F29966A925FB58A17BB56EAF0D0329966A9543BB9417BB57E98C4CA659A5557ED6F85EED6EF54A34AC1C6C7C8FAEAEFEF3F1E59491ED5FE146AB9D9390C7D04B73758F0D0315E7AA9243BB9476B3B7E98FBFF0F2BAB8FB08D7F15E7AA955FB58A76B3B6EAF1D032996695243BB9417BB57E98D5754C3C4FEBFE59945CDFC56FB92B6FDE349C1C7C7C8FACAEFEF3F1A06532CD2A48777282F76AFD3EF795D24681B2FD34681B2FD34681B2FD3469140838DAA0A873A4809CAC6013E051F7FEE69140BB6E2A6A9F3AA811CEE6673E250C24BB6E24691F22A2413B819CB88CED1A06CCF4D19F5543938F54AD2A3F069554910B228241C810FAA838DD0542A1CE9109CAC6013E051AFED4F531AFED4F53190AA0E36A82A1CE9109CAC6984F814AF13AFAAAA79971BEFAA76B3A7D368D268176DCA04153E755023E2671E575719F554ACBCDB9D8542F7683AAF0FAABB6E5020A9F3AA4473B999CF894681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C6AF5EBB6E26691F22AB904EE0672E231814B54F3388D77D23B59D38D0365FA6FF99FFFC4002A11000103030205040203000000000000000100020304051106211213314051101422413280162442FFDA0008010201013F00FD9A073E83708641EFA59046325433897A2924118C950CC25E9DEEDD15DEB22A6A77F1EE55B756B2DF172A66F555FAA5B5748EE546412B4C81EC83B8B2E3E9F8F74767A75496CE42A3823ADAA2F937C7D2BD5AA8DF3B1EE6630BD8521A511F00030AD956EB55D1F0039612B9E00C94C7878EE88CABEC8200C7F8475355D1D710C3B29EF02BA2CCB2E0A9357CD08E40391E54B7685E1B237F2F2BDC3EB18C847FA54C0B58223F5DD67016A767F4DEEF0A42E3212A9C1126241B2ABB232439A5F1F6A4824A69431EAC25B253C2E3F41746E3BAE87215C6DCDB93381C765268280E785E9FA065CE5922FE3B5B147CB90712A8D2570E6F1C4CC0565A534B42D63BAAC671DD0F8EC5608DC2F92C1F2B87EC84785FB2D9BF00BA7EDDFF00FFC400251100010401040104030000000000000000010002030411051221403210224180144261FFDA0008010301013F00FB76D6A73709A139B8EEF2AA40F95E24F85269DF907785069E18FDC5CAFEDDFC0F407B4D4C8B729849523DA154B53161084AF7BF20AB359F356DC5A830A23B43C9513FAAB518B8DC151D335FC555A518707CA15FB94DF4042C1CA6E222F47DDDAF95A77364350FE27709B69CDF6BC26B848DE15AE1CF4381DAC65413188E426EB2F09BAD1F9085F8F3951EA9106E15B977BF211E5BDA6AC64AC05C2E10217921F6EFFFD9, '1', '2022-03-16 22:22:30', '1', '2022-03-16 22:22:30', b'0'); -INSERT INTO `infra_file_content` (`id`, `config_id`, `path`, `content`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (7, 4, '53659126d51042fab67d070aa294efce.jpg', 0xFFD8FFE000104A46494600010100000100010000FFDB0043000302020302020303030304030304050805050404050A070706080C0A0C0C0B0A0B0B0D0E12100D0E110E0B0B1016101113141515150C0F171816141812141514FFDB00430103040405040509050509140D0B0D1414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414FFC20011080102010203011100021101031101FFC4001E00000301010101010101010000000000000008090701060A02040503FFC4001C0101000203010101000000000000000000000105020406070308FFDA000C03010002100310000000AA6000000000000000000000000000000000070000000000E81C3A70E8001C03A0700000E8001C2401808000FF000BF9808017F8E12007F8C00A0200040102BE0120C0000BFC000708045D03033802AA794029412BC69C0DFC9B206005261020356037F37E1551D33CB1AA1160BFC00070804553201017F4554D50A002A86AA4582FE0800D51164AA66503FE74CA48B22A85FD1551561552A98AB17F8000E1008AA640202FE8AA8AB00FF0BF98097F490007AB12D2D2920C0DF8F564AC2FE8AA8AB0AA954C558BFC00070804553003013CA0AA9AB1540F2A45A3CA95409B27953CB173C55474CF2C4593CB173C4047F80E9208FA27000384FF0032C387406A0CA8D58554D50D5895A6563526A66A82B06546565A61553541AA1013A0700AAA0000004FE37F03002809E449B22AA5D0303384023572E79F3B250030003CA973C6089FE2026FC3002025FE0003F22FE7CEC9AB9E58B9E6A6795030037F18227F9C26C8E913687E8A504303D48FE9BF916874874C6089FC4863E9E8000E1008CAC7F440C7F4E08195407FC4006A8404E9C1A932A1AA22D1AA0D39AA8AB8FE99492B8BFC708045FE000384023033D494A04A8CB0CA0FA261812401E5C7F8DF095A57F2400EA88115E885E3542585A530037F182384022FF0001C20115F0C00A02791303384023572A808794FCF0666B0E8F062D2B32107EC9B23A66A679724015FCC00D4C9B47D3D0001C201169CCA86B0CA0404E92ACAA62AC5F13FA4FF0033E3965D84EBBF58CCFE4D5B671FF2C44C8B03566563FA2AC6AA5501023A5540003F22FE4D93531D303003001582E79164BE50FEA463B41BD9EF975F7FD2DB5FD2F595FBE75D57FC0991F2754009583545262178D51498F5C0007E45FC8B45CF22C9AB0FF1BE1810AA9368A8312CC516DE535BBDEBA973F7DD6D7647E5FD2B29EC9C8FA0FBC4B2CB19AE55315601FE17F26B9400C00FA27000384FF22C0D58D48FE8808FF1014B4A4AD1C786F9C8DB79BF1DEDBC6DD53FBFACDCF1FF001F41FF0027D57C5D84EC6A13EDAC72C3533541AA101032C32A32B3E944000E1200754408C00B4A6006003FC60007874379C6DAFE7F2EFA09F58C5FACAFD4F98DE553F4BF11437B2A4C1A41164D4CAA640203E9E89B26A6501000384022FF001941EA480C3A44DA1FA2BF9D10F1C6A5D9FF002FCEEE7F92B36330DEC3D671B65FC5EE9C96CBD0E9C1437F2BF8BF01EA8CB0C0490057F2948001C2010FE9961958AB0FE0155055055CFF00B4CB59187FA6CB4BC59A4C69713FEB44FEFE9094C01FF2018FE9AA116C7F4E1D2AA0001F917F241969CCACCA495E7AA3E89C9567AB024095EC5D0FEE1EE1A610F10601FE382043FA6FE06006005800003F22FE7961562AA1E449B26A650127F1218F225531561FD32C1A910235326D1F49879522C8FE8810FE9404E1008BFC000709FE2B065635007040CFA503840335632B1A835332B32C2A899512B4D58D50554CB07F0E954C08045FE0003848015837F37F3D41960D48951BF9218FA4C30337C3D719392BCA4C4831FD35635422C0AA9D1803D480FE9404000FC8BF9E58000D509AC6FE745FCC046A46A8F522585272178FF0BF8FF120CC0CFA4C3CA9164BA048527F9F55000070804354006566A85532561C035432B1AA1AA1543551023803FC6544AD2D399512B4AA64AD1A82AA8001C20115F090605531562AA115C09FE5283D58969EA400AA6749046FE55022C801818E91A98E98C10001C201154C80405FD1553CA0EA9008AFE2025CF3CA8809EAC9583023A43A64832D31EA895A30070D588B27963E9E8000E1008B4E20203542AA55422C13FCA002AC5A52568D48AB8AA1400D50AA64021AA32B2D39C10032C1A732B2808001C2010001E5874CAA87CAB9D18032C37C1FD26C95F4E1BE9E549AE6025A62181EA47F85FC7F8C00408BFC000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007FFC4004210000003060209020503030203090000000607080004051415160917010203111318195785253810202147671226272829464175223739303142505160616383FFDA0008010100011200FF00C8F7B6F6DEDBDB7B6F6DEDBDB7B6FF008EFF00868D3A34FCBBDBF568F8FEAD0DBDB7B6F6DFF32F05E27A12CABC740D070E28A1B86C8CAB97545539DCD6EA8AA73B9ADD5154E7735BAA2A9CEE6B614EA84CE5279A398C26B8A8B4B9065E0BC4F4259578E81A0E1C514370D919572EA8AA73B9ADD5154E7735BAA2A9CEE6FC5782F13D09655E3A0683871450DC364655C97919E27265278E4640F89D18470C91947DC2995099CA4B3433184D715169721F2F545539DCD6EA88A73B98C830CF139CC93C0E321844EB22389CF4DBEAF233C4E4CA4F1C8C81F13A308E192328FBD5114E7731BAA2A9CEE6B7545539DCD6EA8AA73B9ADD5154E7737E6C51BDF599BE318D0344324C0122631194528E1C86F0A69F7AA2263EE5B75444C7DCC6C51BD8999BE31B032FBD9E1197820E3D0E955E3A190380F5A0DC4A4655F50720E3D09655E06190C40F450DC367A69F4F154658A6EA2E6309ADDAD71E41950A5D335671E82638C9C0CDE05C09256951A542A88B259C450989C2704D781902495A54170A84BC6726CCD1CC70CDB95AA5C8319EBCC8B2607513070C4714611C378534E49752E99A8C4F40C9C671866CF2E03735558D62ACA80B152795F97026B8A8B549F62BD061E8738121A310681EB21C8971655F550AA22C967114262709C135E064092569505E974A73B66DD2E94E76CD92EA5D335189E81938CE30CD9E5C06E6AAB1AC55D50962A4F2BF2E44D71516A93EC839789164B250030346238A288E1B3D34E58A37B13337C636065F7B3C2319EBCC8B2607513070C4714611C378534E5D51131F73188D54458A92ADE5C09AE2A2F027DB146F7D666F8CF9B146F7D666F8C6C51BD8A19BE33E38A37B13337C636067F7B3C232A0C55F96C3D04C5C6575C74595F52FA32E4437CE7593B86D675B53AC9708DE5B48B0D1735AB8A8B35EA785CFBEA2CFC9B6ED1B99506151CC91E82631B346DCAD4B7A62A223799222C4C5CD6ADDAD4AFA9AE4437C98593BC6B78DCB3AD85CFB142CFC9B25DC29F96C3D03463668DC74599F4CD1BB737D195111BCC9116262E6B56ED6A57D4D72A1BE4C2C9DE36BC6E59DF8628DEC4CCDF18D819FDECF08D8A2FBEA337C67C3033FBD9E11B146F7D666F8CF9B146F7D666F8C6C51BD8999BE33E38A37B13337C636067F7B3C23628DEFACCDF18DD5154E7735B0A754267293CD1CC6135C545A5C832F05E27A12CABC740D070E28A1B86C8CAB96171EFACB3F26DFF7EAB2F05E27A12CABC740D070E28A1B86C8CAB920E5E27A1D2ABC0C0D188E2B41B894F4D396397F64FCDB15EBCCF4260090D0703471460E4378B2AE4BC8CF1393293C723207C4E8C238648CA3EF544539DCC6EA8AA73B9AC839789E874AAF030346238AD06E253D34E58E67D93F37F0C51BD8999BE31B033FBD9E11B146F7D666F8CF86067F7B3C23628DEFACCDF19F3628DEFACCDF18DD51131F731BAA2263EE6375444C7DCC65E0BC48B3A5280E81A0E1C5684712919572C0CFEF67846C51BDF599BE3192EA5D335189E81938CE30CD9E5C06E6AAB1A23551962A4AB797226B8A8BC09F633D799164C0EA260E188E28C2386F0A69C8CF4187A13004898C46407A30721BC29A7D2352D99CA46B797219B8A8BC09F64BAA88B2462450689C38C4D679901A9AAAC14CF4187A13004898C46407A30721BC29A7D2392E19CA42B797219B868BC19F6340AE131303B89838650CA308E1BC29A72C51BD8999BE31B032FBD9E118CF5E6459303A898386238A308E1BC29A72C51BD8999BE3188D4BA66A91ADE5C866E2A2F027D8D02B84C4C0EE260E194328C2386F0A69CB146F62666F8C6C29D509629B33473184D6ED6A9720DD51131F731BAA2263EE6375444C9DCB65E467860E655E391903E27590E44A4651F7E554185473267A098C6CD1B72B52BE9BD0CBF3637433FCD8DD0CBF3637432FCD8C8650D72617B7EF5BC6E592654185473267A098C6CD1B72B52BE9B8A27B14337C636067F7B7C232A0C29F9923D04C63668DB95A96F4CC51BD8A19BE3190D2E4E4C2F6DE0ABC2E59265447973247A098C6A2DBD5A95F4C5438AC732645898B9CAEB72B52BEA781A7DEDF08CA830A8E64CF41318D9A36E56A5BD355062AFCC9916262E72BADCAD4AFA92195C9C985EDFB2AF0B96459511E5CC89E82631A8B6ED6A57D33145F62866F8C6C0CFEF6F84654185473267A098C6CD1B72B52DE9AA888DE6488B131735AB76B52BEA5D0D3F3637432FCD8DD0CFF0036B7434FCD8DD0CBF36FFD862B0A84CE4DB96197226B76B5549F64186789CE649E07190C2275911C4E7A6DF57919E27265278E4640F89D18470C91947DC2995099CA4B3433184D715169721F0340AD0C9CE0489838650BAC07225C29A725CBA7A6D595CBA7F1DDE73D5D6EA8AA73B9AC6815A1939C0913070CA17580E44B8534E5D2ED31F6D1BA5DA63ED9FC08D54466A6DADE5C89ADDAD7027D90619E273992781C643089D6447139E9B7D6C2992F162A4F34731833715169720CBC8AF0C132ABC720D07C328C1C8648CA3919EBCCF439C0913070C871590E44B8534E446AA33393756F2E44D6ED6B833EC830CF139CC93C0E321844EB22389CF4DBEB62B0A88CE4D995F97226B76B5549F6EA8AA73B9AC839789E874AAF030346238AD06E253D34E58ABAA133936657E5C89ADDAD5527DBAA2A9CEE6FCBBF768D3A74FF00A319EBCC8B2607513070C4714611C378534E4C46A5D33548D6F2E43371517813EC6815C262607713070CA194611C378534E5D51131F73188D54858A91ADE5C89AE2A2F027D8CF5E6459303A898386238A308E1BC29A725E45789CE649E390683E195911C4E4651CB0A74BE66A6CCD1CC60CDBB5AA5C86933D799164C0EA260E188E28C2386F0A69C9B1574BA67292CAFCB90CDC545AA4FB25D54459231228344E1C626B3CC80D4D5560A830CF0C132ABC0E321844E8C1C864F4DBEAE5FEE476572E7FC8965CF5798D02B84C4C0EE260E194328C2386F0A69C90720E3D09655E06190C40F450DC367A69F4F15445926DA2E6309ADDAD71E4197919E18399578E4640F89D64391291947DE974A73B66D853A5E33935E68E63866DCAD52E418CF5E6459303A898386238A308E1BC29A7233D061E84C01226311901E8C1C86F0A69F7034FBDBE118CF5E6459303A898386238A308E1BC29A726C5612F19CA4B2C32E43371516A93EC6815C262607713070CA194611C378534E5F2E28BEFA8CDF18C9708DE648F40D1735AB76B535EA5F4C183F31664B2A23CB9923D04C63516DDAD4AFA6F432FCD8DFF45FFCC5992CA88F2E648F41318D45B76B32BE9897B157E64CF40D17395D6E56A67D4F768FD2CA830A8E648F41318D9A36E56A5BD31511E5CB69162631A8B7151657D33AE57E136E46BA927F5197B65D5E9FE35D0CBF36B21A435C98DEDFBDAF1B96499506151CC99E82631B346DCAD4AFA6AA23CB96D22C4C63516E2A2CAFA6AE35CBCE7D93FB2ACEB6A7592F614FCC99161A31B346DDAD4CFA625EC55F9933D0345C6575B95A9AF525CAB93931B27F655E372CEB7233D493FA8CBDB2EEF4FF001A54446F32245898B9AD5BD5A95F5343286B930BDBF7ADE172C8B628BEFA8CDF19F0DDA1B145F7D66778CF9B146F7D666F8C62B8D1131303B860C41B14A308E1BC5957D3C55199AA468B98C26B8A8BC790641C8388B3A528018643103D6847129E9A7DEA8AA73B9AC792A333949D1731C4D71D178F21F02BD061164C0EA1A310701E8C2386F1655F7768D1ABB99782F13D09655E3A0683871450DC364655C92EAA2335671E819270E3135E05C0926AAB05E97698FB68C5715A19260090D0703617470E4378B2AE4839789E874AAF030346238AD06E253D34E5BBE9B99782F13D09655E3A0683871450DC364655CB146F62666F8C6C2992F162A4B34331833715169720C5715A19260090D0703617470E4378B2AE585C7BEB2CFC9B6397F64FCDB15EBCCF4260090D0703471460E4378B2AE4BC8CF1393293C723207C4E8C238648CA3EE14EA80CD5279A398C26B8A8B4B90D067A0C22CE71D44C623103D644712E14D3EFC3146F7D666F8CF9B146F7D666F8C65E45789CE649E390683E195911C4E4651CB0A64BC6726DCD0CC60CDBB5AA5C87C0D0344324C0122631194528E1C86F0A69F7AA2263EE5B75444C7DCCF8118974CE5255BCB80CDC545E04FB25D54459231228344E1C626B3CC80D4D5560B07C2C14ABFC4DD9D36E0476856C36DAFF00A35DF50C22F7446EE22CD4BC35C58FE21929C651D860061479CE2330DFC711A833E4625FF5B8F44F05F73442DD13C19DCE10B270275C13992E1D2EDC222F91974834C70DFB6D137777D96BED36BA769B3D9EAE8DFADAF8A82663254D6C8ADD72CC3B73EA422A73BA52EAA12C91891219270E31359E6386A6AAB05418678609955E07190C227460E4327A6DF572E8EA496572E7FC8965CF57992EAA22C9189141A270E31359E6406A6AAB055E0BC48B3A5280E81A0E1C5684712919572DCC839789164B250030346238A288E1B3D34E49752E99A8C4F40C9C671866CF2E03735558D2E5FEE4B6572E7FC8965CF5798D02B84C4C0EE260E194328C2386F0A69CBE5C517DF519BE319511E5CB71162631A8B7151657D310D2E4E73AF6FD95675B523F054446F32445098B9AD5BD5A95F53E867F9B5BA19FE6DF86067F7B3C23628BEFA8CDF18CFF00FAB5DD769A9A9AFA767ADADA75767A35F63B2D4D86CF46CF67ABA353535746ED1AA288FBB85035158D3D7EA9587BAED5EF6AC994EF8A1DA1A103C4760BA81E8DC1E2FB686BCB83E3EEC21EE9B77979DAEA6C361B1D4D3B4DA6D4A050702394482F83C19D5FB61B40EED1DF46B6DB733A3B6AC39E1F75767A74E8D8EB69D5DB68D9AA0C2A39933CC4C63668DB95A95F4CFAB21A5C9C98DEDBC1578DCB24CA88F2E648F41318D45B7AB52BE99D0CBF3632E4435C98D95FBD6F1B967592F614FCC91161A31B346DCAD4D7A62A223799222C4C5CD6ADEAD4AFA9FF00D187F31664B7235D497FA8DBDB2EEF4FF1AF9376FD1A7469633D06116738EA26311881EB2238970A69F52EAA2335671E819270E3135E05C0926AAB055CBFDB6ACAE5CFF8EAF49EAF320C33C4E7324F038C86113AC88E273D36FABC8CF1393293C723207C4E8C238648CA3EE14EA84CE5259A398E26B8A8B4B9065E0BC4F4259578E81A0E1C514370D91957241857860E655E07068C219590E44E7A6DC88D4BA5926DADE5C866DDAD7027DB146F7D666F8C67AD3F4FFF004D9B6FFA31FE3672D806A260972D8ED622258FC35E1DF62EB037B1D02A3A237B0DE80EEDDDE2FB7D8EDD850361D98908B523A1C82B8439EF69B3A8C4137C2E16F8231D8ADDF6BB2D488C45E7610FDBB96E67AFA6D1E74FFF0056CD9772F23D09655A390703471460DC364655CBA5DA63ED9B74BB4C7DB36E97698FB66DD5154E773590CE9EA4B7B7317FC8965C8D098AE2B4324C0121A0E06C2E8E1C86F1655CBAA2A9CEE6B219D3D496F6E62FF912CB91A1315C5686498024341C0D85D1C390DE2CAB97C9BF768D3A74FF00A319EBCC8B2607513070C4714611C378534E4830CF0C132ABC0E321844E8C1C864F4DBE91AA88B25235BCB9135C545E04FB628DEFACCDF18C9752E99A8C4F40C9C671866CF2E03735558D75444C7DCB62B8D10C9CE04868C41B14AC07225C5957DEA8898FB98CB9B4F524B2B973FE44B2E7ABAC6815C262607713070CA194611C378534E58297D0AF33BFDE9C1A04788E824696C204614B3A3BBDED3F4E9D905841B1354C7797F7A803F8D611187E717E7A763FE1AE645449E2C6D9EA43352201C88BF6D2181C2A41B1F7D154076C03DBC2F650FD83B6BBB8DE16338BC38BE0D9A0E8F1BE3908D9687989B0C94582804F102768ABDBF6BBCC69CE7DCB640B1F408CD0E6A08434FD5283BDEA6ED8BCAED41A7A1D2AB872310681EB21B8948CABEB6067F7B3C23628DEFACCDF18DD2E94E76CDB0A74BC6726CCD1CC60CDBB5AA5C832F041C7A1D2ABC74320701EB41B8948CABEB614CA84B14D99A398C26B76B54B9065E467860E655E391903E27590E44A4651F7E554185473247A098C6CD1B72B52DE99F56434B97930BDFF64DE372C937235D493FA8DBDB2EEF4FF1A54446F32245898B9AD5BD5A95F53E86BF9B592E11BCB69161A2E6B5715166BD492E11BCC91E81A2E6B56ED6A6BD4D0D21BE4C2F6FDED78DCB24D8A2FBEB337C6360A1FF002C4CEFF7A7065B503DABFC6A0FA8EBB5D7D8BEC503F157275DB13C58D0800198840C42FB078BE873D9ED767148AC3A3FB533A18268A06844328C425E9F364F5108480A3E25026CE1B121088A030578D9EBEF098049D8EC2843A1DDFB61AAED06D4D8EBBB6D98322E108C2000009BD43363B77A09C43650D866C36F1B8A244493128A4621CEF1E7D0942F8921D72BF09B2A0C2A396C22C4C63668DC74595F4DC0CFEF6F84654185473267A098C6CD1B72B52BE9AA88F2E5B48B1318D45B8A8B2BE9BD733F09B75CDFC24CA830A7E5B08B1318D9A371D1657D310D21BE73AF6FDED675B524CA888DE5B4F4131735AB8A8B2BEA7F2AF05E27A12CABC740D070E28A1B86C8CAB974BB4C7DB36C55D2F1629B32BF2E4336ED6AA93EC57AF33D098024341C0D1C518390DE2CAB92F233C4E4CA4F1C8C81F13A308E192328FB853AA133949668E6389AE2A2D2E419782F13D09655E3A0683871450DC364655C8AF418459303A868C41C07A308E1BC5957DC5595099C9B32BF2E04D6E56AA93EC9752E964B388A0D1C671866F03204935558D609FF00F2C4CDFF007B70654AE9BF685AC4765AFB39A7314EC7535765A9A346AE8DDA3468D1A3FF004DDF4D3F4DFF00FC010F37DD018D47D1A429EF61AFADB6D7D4D47D0B8A21A31826C22D09DAEBEDDC36FBF87B40E47A22FCAD42C1C0FB83DED76F05143CEDA29AE62806046784A361513B954E031376D9EC1F1D3A5DA64EDA3628DEC4CCDF18C462A23393656F2E04D6ED6B813EDD5154E7735B146F62666F8CF89A056864E70244C1C3285D603912E14D392E5D3D36ECAE5CFF008EAF49EAF325D4BA592CE22834719C619BC0C8124D55635F2E28DEFACCDF19F03C5511649BA8B98C25B76B5C79062B8D10C9CE04868C41B14AC07225C5957D418678609955E07190C227460E4327A6DF572FF723B2B973FE44B2E7ABCC6815C262607713070CA194611C378534E4839071E84B2AF030C86207A286E1B3D34FBA3E1861A76311368087AE263076DCDBBFC49D1EDDB40AC030B183EC31F1FF0067ADB57886EB6D35DD74EB95FB2FAF0DF75F57469FF4DA15EF3BFF00E07ED9E9D568DA628BBB461F63213106D431117DD7D3B47BD9B881044E90F77D47ED4D9BDBE6AECF5746DB6A98837B370DA98D16DBB8EA6C226F82678D8ED36BB6DAEA6D36EFBABABADA35B4EA6AECF5759B143F7D065F8C641C838F425957818643103D14370D9E9A7DDFA3F4EF633D799164C0EA260E188E28C2386F0A69C8AF5E6459CE3A868381C38AC88E25C595723C5521629BA8B98C26B76B5C7906EA8898FB98CBC17891674A501D0341C38AD08E25232AE5B99072F122C964A006068C4714511C367A69CBE5C517DF519BE3192F62AFCC99E81A2E32BADCAD4D7A96397F64FCDB25EC56396C22C345CE575C7459AF534B846F3247A068B9AD5BB5A9AF53FA60C3F98B325B91AEA4BFD465ED9777A7F8D6E65CAB97930B2B4595785CB3ADD737F09B4331BB707B89EC3651727B6EEB0AD7D3B9EB6900C4353DC51C364F0EE6B383B6CB5F46FE07500203BB61E6191D4110006DEE3E2114384260EE9FA38EF9CFF901DDB0F3034E9088FC38E91E0F89DC22D077BFD7C07CD617C335F67AFABB18BBBEA6BEB7FE2856DF51EF4EAEC1CF5769ACEDFAB89B67A53F854732479894C6CD1B72B32BE9A97B157E64CF40D17195D6E56A6BD4B7E8D1A37696C513DF5999E3192F614FCB61E81A31B346E3A2CCFA62E5435CE7595FBDACEB6A7595111BCB69E8262E6B57151657D4FA197E6C6E869F9B1BA197E6CF9776FD1A7469633D06116738EA26311881EB2238970A69F70B8F7D659F9363C52E162A4A8B98E19B8A8BC7906E97698FB66CA852E9648C48A131C64E066CF320352B4A8D1E2A90CE52345CC6135C545E3C8315EBCCF4260090D0703471460E4378B2AE4D8E67D93F36C8390711674A50030C86207AD08E253D34FABC1071164B2501D0C81C07A288E1B232AFBFAB4B20F416461D49440E3318826B024894F4D3E25650C602C53EC30501BB1FBACBB11CD5520F8AAA5D2C935E57E5C86A815AAA4FB618900717E43A5B6DB6DB1DFAFAF526D40C43B534EFD0EFA37B62A2A60CA4CB95FA0B5125B75AAA4FB7545539DCD6C2E3DF5967E4DB1575446726CCAFCB9135BB5AAA4FB25D4BA592CE22834719C619BC0C8124D55635D5154E7735B0A754267293CD1CC7135C745A5C8319E8308B39C7513188C40F5911C4B8534FABC8CF1393293C723207C4E8C238648CA3EE14EA84CE5259A398E26B8A8B4B9065E0BC4F4259578E81A0E1C514370D919572F937EED1A74E9FF4633D799164C0EA260E188E28C2386F0A69CB146F62666F8C6C0CBEF6784F81A068864980244C62328A51C390DE14D3EAE5D1D492CAE5CFF916CB9EAF325D54459231228344E1C626B3CC80D4D5560AD8AC25E3394965865C866E2A2D527D8D02B84C4C0EE260E194328C2386F0A69C9B033FBD9E11B146F7D666F8C6542A88B259C450989C2704D781902495A54150D7F6DABDB98CFE3ABCE4682DD51131F73192EA5D335189E81938CE30CD9E5C06E6AAB1A5CBFDC96CAE5CFF00912CB9EAF31A057098981DC4C1C3286518470DE14D391A068864980244C62328A51C390DE14D3E91AA88B15235BD05C89AE2A2F067DB146F7D666F8C6542A88B259C450989C2704D781902495A5417A5CA9CED9B25D54459231228344E1C626B3CC80D4D5560BF0C51BDF599BE33E654185473247A098C6CD1B72B52DE98A83157E64C8B1317195D6E56A57D490D2E4E4BEF7FD9578DCB22DD737F09B73C9D493FA72B272EAF4FF25FA60C3F98B3259511E5CC91E82631A8B6F56A57D337B7D1B145F7D66778C6541853F2D845898C6CD1B8E8B2BE9886972725F7BEE055E372C937235D497FA8DBDB2EEF4FF1A4BD853F2DA7A068C6CD1B8E8B33E998E57D93F36C97B0A8E64C8B0D18D9A36E56A6BD315111BCC8916262E6B56F56A57D4D0D21BE4C6F6DE36BC6E5926C517DF599BE3195062B1CC9916262E72BADCAD4AFA9E067F7B7C23628DEFACCDF18C970F2E5B4F40D18D45B8A8B35E99D733F09B7237D493FA8CBDB2EEF4FF1ADEDBF46ED2D8A2FBEA337C67CCBC1789E84B2AF1D0341C38A286E1B232AE4830AF0C1CCABC0E0D18432B21C89CF4DB962AE97CB14DB95F97219B76B5549F641C8388B3A528018643103D6847129E9A7D542974B246245098E327033679901A95A54690D7F725BDB98CFE45B324682DD2ED31F6CD9072F13D0E955E06068C4715A0DC4A7A69CB1575426726CCAFCB8135BB5AAA4FB1A068898E71DC4C62328A5644712E14D3E9A056864E70244C1C3285D603912E14D3974BC4C9DB462B8AD0C93004868381B0BA38721BC5957263C92E962A4A8B98C19B8A8BC7906542A88CD4627A0989C2704D679701B95A54157919E27265278E4640F89D18470C91947DEA88A73B98C9752E964B388A0D1C671866F03204935558D74BB4C7DB362352E1629B6B797019B76B5C09F6C51BDF599BE33E1A34FE9FAE862BD799E84C0121A0E068E28C1C86F1655CBAA2A9CEE6B7545539DCD64BA974B259C45068E338C3378190249AAAC6BE4DFBB469D3A7FD18CF5E6459303A898386238A308E1BC29A72EA8898FB98DD51131F731BAA2263EE6375444C7DCC623551962A4AB797226B8A8BC09F65E0838F43A5578E8640E03D68371291957D542A88B259C450989C2704D781902495A54170A74BC6726CCD1CC60CDBB5AA5C832F041C7A1D2ABC74320701EB41B8948CABEE171EFACB3F26D8E67D93F36D85C7B132CFC9B2F22BC4E7324F1C8341F0CAC88E272328E4863FB6DDEBCC5FF001DDE7234262B8D10C9CE04868C41B14AC07225C5957DE974A73B66D853A5E33936668E63066DDAD52E4197820E3D0E955E3A190380F5A0DC4A4655F57915E27399278E41A0F865644713919472E976A73B68C6815C262607713070CA194611C378534E4681A2192600913188CA29470E4378534FA46AA22C548D6F417226B8A8BC19F6C51BDF599BE318D0344324C0122631194528E1C86F0A69F715854258A92CB0CB9135C545AA4FFCF8A2FBEA337C637432FCD8DD0CFF0036B7432FCD8CA830A8E5B08B1318D9A371D1657D37032FBD9E11B737235D3737A8CBD7316CBFF1AEB97F84DBAE6FE1264BD85472D87A068C6CD1B8E8B35E9B8E67D93F36D85CFB142CFC9B7D197221AE73ECADC36B3EDA9E64B846F2DA45868B9AD5C5459AF52EB9BF84DBAE5FE136EB9BF8499511E5CB71162631A8B7151657D310D2E4E73AF6D164D9F6D493628BEFACCEF18CA888DE6488B131735AB76B52BEA48690D72637B7EF6BC6E5926C517DF599DE31B144F62866F8C643686B9CFBDB78DACEB6A49BA197E6DF9B146F7D666F8C65E46789C9949E391903E274611C324651F7AA229CEE637545539DCD6C51BD8999BE31B032FBD9E13E09755119AB38F40C9387189AF02E049355582E2AE978B14DB95F97219B76B5549FF820E5E27A1D2ABC0C0D188E2B41B894F4D396397F64FCDB15EBCCF4260090D0703471460E4378B2AE5D5154E7735BAA2A9CEE6B7545539DCD6E97698FB66DD2ED3276D197915E18265578E41A0F86518390C9194724BAA88CD59C7A0649C38C4D78170249AAAC148C4BA58A6DADE5C866DDAD7027DB146F7D666F8C6EA8AA73B9ADD5114E77318D03444C738EE263119452B2238970A69F52EAA2335671E819270E3135E05C0926AAB055CBFDB6ACAE5CFF008EAF49EAF320C33C4E7324F038C86113AC88E273D36FBF2E28DEFACCDF18D8A37B13337C67C7146F62666F8C6C0CBEF678465E0838F43A5578E8640E03D68371291957DC51BD8999BE31B468DEC839789164B250030346238A288E1B3D34E4830CF0C132ABC0E321844E8C1C864F4DBE91AA88B15215BCBA135C545E04FB19EBCC8B2607513070C4714611C378534E4839071E84B2AF030C86207A286E1B3D34FB8E67D93F37F0418678609955E07190C227460E4327A6DF572FF723B2B973FE45B2E7ABCC830AF1393293C0E0D184328C23864F4DB96171EFACB3F26C78AA22C537513418C26B76B5C69062B8D10C9CE04868C41B14AC07225C5957D41C838F425957818643103D14370D9E9A7DC55D2F19CA4F2BF2E43371516A93EC975511648C48A0D1387189ACF32035355582E28DEC4CCDF18C46A5D33548D6F2E43371517813EC6815C262607713070CA194611C378534E5F2E28DEFACCDF18CA888DE6488B131735AB76B52BEA5D0CBF36B7432FCDAD8A2FB14337C636065F7B3C236E65418ABF32645898B9CAEB72B52BEA4C97B0A7E6488B0D18D9A36E56A6BD312E11BCC91E81A2E6B56ED6A6BD490D21AE4C6F6FDED78DCB24D8A27BEB333C6375CDFC24CB9572739F64E8B2ACFB6A7BE0A830A7E5B08B1318D9A371D165BD33033FBDBE11BE8D85C7BEB2CFC9B6397F64FCDB25EC56396C22C345CE575C74599F53FA37D3732A0C2A39923D04C63668DB95A96F4CE793A92FF004E564E5DDE9FE4A8690D72617BFEF6BC6E5926541853F3247A098C6CD1B72B52BE9BF2E28DEFACCDF18DD5154E7735BAA2A9CEE6B7545539DCD633D799E873812260E190E2B21C8970A69CB032FBD9E13E3A34FE9FAE862BD799E84C0121A0E068E28C1C86F1655C8AE3444C4C0EE183106C528C2386F1655F7AA229CEE6325D4BA592CE22834719C619BC0C8124D55634830AF0C1CCABC0E0D18432B21C89CF4DB974BB4C9DB46E97698FB66C6815A1939C0913070CA17580E44B8534E44725C2C53756F2E4336ED6B813ECBC1789E84B2AF1D0341C38A286E1B232AE585C7BEB2CFC9B1E2974B252545CC60CDC545E3C832F22BC304CAAF1C8341F0CA3072192328E5D5154E7735B0A754267293CD1CC6135C545A5C832F05E27A12CABC740D070E28A1B86C8CAB915E8308B260750D188380F4611C378B2AFB8ABAA133936657E5C09ADCAD5527DBAA2A9CEE6FF00EE7FFFC4003E10000102050106030703040004070000000203130001041114150512212232331085D4162023346394E4313541245161624260718206305281B1B3D1FFDA0008010100133F00FF0091349A05DB7281054F9D5408F899C681B2FD34681B2FD34681B2FD34681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C681B2FD34681B2FD34681B2FD378E9340BB6E5020A9F3AA811F13386125DB72BD048F9151209DC0CE5C46302969597B2DCEC2417BB41EEE81B2FD34681B2FD3430920E375F509072242212B0004B80C3092EDB95E8247C8A8904EE0672E231A06CBF4D1A06CBF4D1A06CBF4D1A06CBF4D1A06CBF4DEF795D2463AABB6E2A09072242473B9984B80CED1A06D4F4D1A06D4F4D1E69491F7F1AB5020E37408247C8AAE272B1846AD40BB6E502E907224B91F1338C0AAAA7996DDEC2476B3A1D519F4B43938F4A952ADF06A954960B2C82A1CE11815543938F549552DF1AA924910B2282A7CE719F4B54F3396EF6153B59D08D22BD76DC4C150E7490209DC0C27C0A33E96BB1B22955A547E0D2AAAAC77597483902302AA9597B11AEFA417BB471ABD020E36A9A47C8AAE272B181CB88C605550E4E3D52554B7C6AA492442C8A0A9F39C6BFB2FD4C6BFB2FD4C67D2D7636452AB4A8FC1A555558EEB2E907204605552B2F6237DF482F768E349AF5DB72BD75439D24083A0C23CD2923EFE348AF5DB71305439D24082770309F028D036A7A68C0AAA565E71AEFA417BB47D378F2BA4F7BCAE923CCE93C7CD2923EFE35FC579EA5497ED629DACEDBABC349CEC8C863EBA5B9BAC46262BCF552ABF6B7CED67777AA71E5957E1A06532CD2A48777282F76AFD318994CB35492FDADF0BDDADDEA8D27071B1D8FACAEFEF3F1E67571A062BCF52AA877728ED676FD3E38994CB35492FDADF0BDDADDEA8D27071B1D8FACAEFEF3FE1E69491F7F1E594BE1F7F1E5749EF795D2479A5278F9A5247DFC795D24681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C795D5F869340BB6E5020A9F3AA811F1338D2681071BA05D50E749013E0611F611A4502EDB8A9AA7CEAA0473B999CF8943092EDB95E8247C8A8904EE0672E231A06CBF4D1A06CBF4D1A4D020E3740BAA1CE92027C0C23EC3C3CD2923EFE3CAE93C3EFE3CAE93DEF2BA48D036A7A68D036A7A68D036A7A68D26BD071BAF4153E755010E8038FBF8F2BA48CFA5AEC6C8A556951F834AAAAB1DD65D20E408C0AAA565E71BEFA417BB47D378D22BD76DC4C150E7490209DC0C27C0A357A05DB71504839125C8E7733097018CFA5A565E71BEFAA17BB47D378C0AAAEC6C8AA56A91F8D4A92A89DD15D23E438D5E8176DC54120E4497239DCCC25C06275F4B4ACBCE37DF542F7694E9BC3E92EDB890AA1CE91104EE0613E053B479A5247DFC6915EBB6E260A873A48104EE0613E051E694913AFA5A565E71BEFAA17BB4A74DE1F4976DC48550E748882770309F029DA3CD292302AAA9E672DDEC2476B3A11A06D4F4D1A06D4F4D1A06D4F4D0C2A838DD02091F22A2272B181CB88FBDA06532CD2A48777282F76AFD31ECA7E6C7B29F9B1ECA7E6C7B29F9B1A4E0E3E3E47D7577F79F8D032996695243BB9417BB57E98F33A58FBF8D032996695243BB9417BB57E98F33A48D57071B1F23E82BBFBCFC65E532CD2A48777702F76B7BA651AFE532CD524BF6B142F76ADD51F7F1A06532CD2A48777282F76AFD31AFE532CD524BF6B142F76ADD51AB60E363E47D0577F79F8CBCA659A5490EEEE05EED6F74CA3CCE963EFE340CA659A5490EEE505EED5FA631329966A925FB5BE17BB56EA947B29F9B1ECA7E6C7B29F9B1ECA7E6C7B29F9BFF91814B54F3388DF7D23B59D3861241C6EBEA120E44844256000970186125DB72BD048F9151209DC0CE5C46302969597B2DCEC2417BB41E190AA0E36A82A1CE9109CAC6984F814AF1FBA6662318DF3CFB7B994BF6ED7DF8D0365FA68C855071B54150E74884E5634C27C0A578D7F6A7A98D7F6A7A9F0C0A5AA79971BEFA476B3A7D30C24838DD7D4241C890884AC0012E03E19F554ACBD96E76150BDDA087D55DB7281054F9D52239DCCCE7C4A348A041C6D505439D2404E563009F028C0A5AA79971BEFA476B3A7D30C24838DD7D4241C890884AC0012E03E1814B54F3388D77D23B59D38D0365FA68D2681071BA05D50E749013E0611814B54F3388DF7D23B59D38D0365FA6F7B48AF5DB71305439D24082770309F02F0CFA5A565E71BEFAA17BB47D3787D25DB71215439D22209DC0C27C0A768D036A7A68C0AAA565E71BEFA417BB47D378D22BD76DC4C150E7490209DC0C27C0A1F49071BAF4153E754842560039F128CFA5AA799CB77B0A9DACE846915EBB6E260A873A48104EE0613E05E19F4B4ACBD88D77D50BDDA38C0AAAEC6C8AA56A91F8D4A92A89DD15D23E4386155DB7282A120E44848E7733097018FDAF0F2D8C6F9E65CDFC45FA2F6DC87D25DB71215439D22209DC0C27C0A768D5A8176DCA05D20E449723E2671815554F32DB9D848ED6743AAD0C2A838DD02091F22A2272B181CB88C6BFB2FD4C67D2D53CCE5BBD854ED6742348AF5DB71305439D24082770309F028D5E8176DC54120E4497239DCCC25C063EFE348AF5DB71305439D24082770309F02F0CFA5A565EC46FBEA85EED1C3E92EDB890AA1CE91104EE0613E053B7BDE594B18994CB34AAAFDADF0BDDAB754A3F63D3B4FFB975CCFFF004B3519794CB34A921DDDC0BDDADEE9947B29F9B1FB1E9DA7FDCBAE67FF00A59A8CBCA659A5490EEEE05EED5FA651AFE532CD2AABF6B142F76ADD5E1A06532CD2A48777282F76AFD31978AF3D54921DDDC3B59DDEE99C7B57F851A56A98789FD0FCCBC8B9BF8AE76E56DFB47B29F9B1A4E0E3E3E47D7577F79F8D032996695243BB9417BB57E98CBC579EAA490EEEE1EED9DDEE99C6AD9D9390C7D14B737588D0329966A9543BB9417BB57E98D7F299669555FB58A17BB56EA8D5B071F1D8FA0AEFEF3F1A56A98789FD07CCBE8B9BF8AE76E56DFB4626532CD524BF6B7C2F76ADD51A4E0E363E47D7577F79F8F2CA5F1F2CA4F7BCAE92184976DC48D23E4544827703397119DA3029695979B73B0905EED27D578D5ABD071BAF5D20E449710E8008D0365FA68C0A5A565E6DDEC2417BB41D57F0D5EBD76DC4CD23E4557209DC0CE5C47C349A05DB7281054F9D5408F899C6052D0E4E3D2AB548FC6A5492582CB2091F21C6BFB53D4C642ABB6E2A6A9F3AA4473B9A853E253B469340838DD02EA873A4809F030F0D268176DCA04153E755023E2671E694912AFAAA565ECB73B0A85EED04642ABB6E2A6A9F3AA4473B9A853E253B4795D5C7D8469140BB6E2A6A9F3AA811CEE6673E250C24BB6E57A091F22A2413B819CB88C6052D2B2F65BBD8482F7682357AF41C6D304839125C42560009701F1F2BA4F7BCAE921F49071BAF4153E754842560039F128CFA5AA799CB73B0A9DACE87863AABB6E2A09072242473B9984B80CED1A06D4F4D1A06D4F4DE19F4B4ACBCE35DF542F768FA6F181555D8D9154AD523F1A9525513BA2BA47C87157B7681943FDCDA58CED2FF0003384A8184E98E9DFE12B19DEEFC536CC71306699343AA76BDDA8D1C234708A8A59A6A28F54AABCEE3295A569AB68248E5294BFCCED19F4A836F623567950BDDA38C0AAAEC6C8AA56A91F8D4A92A89DD15D23E5386155DB7282A120E44848E7733097018FDAF0F2D8C6F9D65CDFC55FB77B46055576364552B548FC6A549544EE8AE91F21C6935E838DD7A0A9F3AA8087401F86935EBB6E57AEA873A48107418467D2D7636452AB4A8FC1A555558EEB2E9072047ED78796C637CEB2E6FE2AFDBBDB721F4976DC48550E748882770309F029DBDEF2CA58CBC579EAA490EEEE1DACEEF74CE356CEC8C8C8FA096E6EB1E18994CB35492FDADF0BDDAB754A3D94FCD8F653F37C3EFE3CB29607F51DE9CA5797F995E252E128095E7B8984CA7697FD250139948252909A73BCF8CEE2769CF85E72BCA568527610194AF39CE73FE2528AC49B1AA496099A6AA72FD6425295E5BD294ED69DBC3FE10995E45BB2FE25398DEDFDE739FF31A06532CD2A48777282F76AFD3E1AAE0E363E47D0577F79F8CBCA659A5490EEEE05EED6F74CA3D94FCD8D27071F1D8FAEAEFEF3F1A06532CD52A8777282F76AFD318994CB35492FDADF0BDDADDEA95AF1FB1E9DA7FDCBAE677FA59A8D2B54C3C4FE83E65E45CDFC573B636DFB7BDABD7A0E3698241C892E212B0004B80C6052D0E4E3D2AB548FC6A5492582CB2091F21C7EE99988C637CF3CDEE65AFDBB5F7E1849071BAFA84839121109580025C06184976DCAF4123E4544827703397118C0A5A565ECB73B0905EED0469340BB6E5020A9F3AA811F13387D541C6E82A150E74884E563009F028CFAAAA79971BEFAA76B3A7D368F2BA48FF00BE5E14E52963266049E42E5796E2729CE76FE4A72B0CA73BDB6A3DBE330A74D2B727F1C853BDE7FACB84AD3BECDDB2A2AF2025BC694913404A523DDDC9F35B7665C62F27524E9A46204A87EA247350E72BFEA0DF87FDC51A4502EDB94082A7CEAA047D671AFED4F531AFED4F531AFED4F531A06CBF4D1FB5E1E5BF93F22C39BF8A8772F6DC8C85576DC54D53E75488E77350A7C4A768D0365FA68FDAF0F2DFC9F9161CDFC543B97B6E4642ABB6E2A6A9F3AA4473B9A853E253B7BDA457AEDB8982A1CE920413B8184F81430AAEDB941509072242473B9984B80C605552B2F38DF7D20BDDA3E9BC795D2467D2D7636452AB4A8FC1A555558EEB2E907204681B53D3463AA838DAA691F22A2272B1A652E2328D036A7A68FDAF0F2D8C6F9E61CDFC55FB77B6E43E92EDB890AA1CE91104EE0613E053B78274229A28A467314574AA24A94D407268A4523009DD4BDA366A96651AA56A12A62A8DD9DD8A646986649CA7BB335EE5095E68D32B4AD492A84D39DC46EF148A5294A45619CE2A7E67682CAA6446AA15339B9F0F978EF5AE56B5A2946432DABB384A725F78385F7921782FD256B4E5C6F41B36A2B0954256B9FC202E1CC30D1A7BF3150C4B94E522E1319CBF48D5E81071BA04123E455713E0607E1F7F1E57491AFECBF5319F4B54F3396E76153B59D08D5A81071BA04123E455713958C3C302AAA9E672DCEC2476B3A10C2A838DD02091F22A2272B181CB88FBDA06532CD2A48777282F76AFD3E1AB60E363E47D1577F79F8D2B54C3C4FE83E65E45CDFC573B636DFB4626532CD524BF6B7C2F76ADD51ECA7E6C6262BCF552ABF6B7CF76CEDBAA718994CB34AAAFDADF0BDDADDEA94693838F8F91F5D5DFDE7E3CB297C03F8AA40A9EB11FFE838A0009112469A736493504C4C39653B14A7394F8CA70B8802C549319A694C3993414BDF7E4090CA5212E6B95EE9D624CA03322DD4896107A616DD9CC1DB7198F4C02929A6B23309837219719CA729FE9394B8452593ACAE5123ABA6911D42A5BA92130A4524729094CAD149564926A27906DA6F12739F2818DCB723DABFC28D0315E7AA9243BB9476B3B7E98FBF8D032996695243BB9417BB57E98CBC579EAA490EEEE1EED9DDEE99C7B57F851ED5FE146818AF3D54921DDCA3B59DBF4C6939D919191F5D2DCDD6231315E7A9525FB5BE76B3B6EA9FBDA4D02EDB94082A7CEAA047C4CE35FDA9EA633EAAA9E6711AEFAA76B3A71A4502EDB8A9AA7CEAA0473B999CF8943092EDB95E8247C8A8904EE0672E231814B4ACBD96E76120BDDA08D268176DCA04153E755023E2671ABD7AEDB899A47C8AAE413B819CB88C6052D53CCE235DF48ED674E33EAA87271EA95A547E0D2AA92216450483903C1CDD3553569D748E432FF008AD23DF9CBFF00485E25FA47F78D8FB357A9A79C84B7484E49C8C933039184E45FAEE6F42889A339DA769F298C8A5C65FCCA10E2E20B564D6DF9CA529EE8260B29729CE579A96943CA22E86FCE76DF4C84A5C65FC4E51AFED3F531E69491814B54F32E35DF48ED674FA6D1A06CBF4D1E6949E390AA0E36A82A1CE9109CAC6984F814AF1FBA6662318DF3CF37B994BF6ED7DF8CFAAA1C9C7AA56951F834AAA4885914120E40F7BCAE93C25415554F32DB9D848ED6743AAD18EAA0E36A9A47C8A889CAC6994B88CA185576DCA0A84839121239DCCC25C063F6BC3CB631BE799737F117E8BDB721F4976DC48550E748882770309F029DA356A05DB728174839125C8F899F8E75354EFA412B1CEE8A8768DEE09998EE914A5FA6F6EDC653FE244504129FFF009049CE53FF00E611B2F475273B5CCE9D496EC8F965720984E7C6F38A619260676E2421329CC653FED79DBFBC4E9C4159A69269260332971294B74A728FED3BCE769FFED394E3CAE92356A05DB728174839125C8F899F86915EBB6E260A873A48104EE0613E051A457A0E3699AA7CEAA0212B001CF8946055553CCB6E76123B59D0EA8D036A7A68D26BD071BAF4153E755010E803F0D26BD76DCAF5D50E749020E830F7BCB29635FCA659A5557ED6285EED5BAA3EC235FC579EAA557ED629DACEDBAA313299669555FB5BE17BB56EA8FD8F4ED3FEE5D733BFD2CD4695AA61E27F41F32F22E6FE2B9DB95B7EDE1AB60E363B1F415DFDE7E3DABFC28A5FFC432A951BFF0009952848E7FE37E51B4692A13552FF005B4C061A5E2A1153713DE3101BDA7FC910CA195A29D05260A6E19015AF3FE084A509D31CE729FF007E33B5FF00EB0B4AC7507C39A7C25FDA5FC4BF494A5294A51A06532CD2A48777282F76AFD31AFE532CD2AABF6B142F76ADD5E1E59491A062BCF52AA877728ED676FD31A4E7646431F5D2DCDD6231315E7A9525FB5BE76B3BBBD538F653F363D94FCD8F653F37DED5EBD071B4C120E4497109580025C063CAEAE33EAA95979B77B0A85EED0755E35FDA9EA633EAABB1B22A92A55BE0D52AAA2774575439C23029695979B73B0905EED0755E348A05DB715354F9D5408E773339F12F0FB08D5ABD071BAF5D20E449710E8008D5ABD76DCAF4123E455720E833F0D5EB9071BAF5D20E449610958023029A85FC7A55AA91F8D4C9A6A85964122E0713AFA9AA799C46BBCA1DACE9C799D5786052D53CCE235DF48ED674E340D97E9A3CAEAE30296A9E6711AEFA476B3A719F5543938F54AD2A3F069554910B228241C811A06CBF4D1814B4ACBD96EF6120BDDA08D5EBD071B4C120E4497109580025C06184976DCAF4123E4544827703397118C0A5A565ECB73B0905EED0469340BB6E5020A9F3AA811F133F7B48AF5DB71305439D24082770309F028F34A48FBFF0C75576DC54120E44848E7733097019DA3F6BC3CB631BE799737F157EDDEDB9181555D8D9154AD523F1A9525513BA2BA47C87E19F4B4ACBD88DF7D50BDDA387D25DB71215439D22209DC0C27C0A76F0FBF8F2BA48C0AAA1C9C7AA4AA96F8D54924885914153E738FDD33311FC9F9179BDCCA43B96BEFC681B53D3467D2D7636452AB4A8FC1A555558EEB2E9072047ED78796C637CEB2E6FE2AFDBBDB721F4976DC48550E748882770309F029DA31D55DB71504839121239DCCC25C067689D05552B2F38DF7D20BDDA3E9BC795D24605550E4E3D52554B7C6AA492442C8A0A9F39C6BDB33D4C6055576364552B548FC6A549544EE8AE91F21F8F95D27BDA06532CD2A48777282F76AFD31AFE532CD524BF6B142F76ADD51AB60E363E47D1577F79F8F6AFF0A355D530F13FAEF96651737F15BEE4ADBF78FD8F4ED3FEE5D733BFD2CD465E532CD2A48777702F76B7BA65E3E59491A062BCF5524877728ED676FD31AAE0E363E47D1577F79F8D2B54C3C4FE83E65E45CDFC573B72B6FDA340C579EA5550EEE51DACEDFA63EC2340CA659AA550EEE505EED5FA631329966A925FB5BE17BB56EA8D27071F1F23EBABBFBCFC79652C6BF94CB35492FDAC50BDDAB7547DFC795D2465E2BCF52AA877770ED6777BA671ED5FE14695AA61E27F41F32F22E6FE2B9DB95B7EDE3E594BEF69340BB6E5020A9F3AA811F13387D541C6E82A150E74884E563009F028CFAAAA799C46FBEA9DACE9C6AD5E838DD7AE907224B887400467D557636455254AB7C1AA55544EE8AEA873847ED78796FE4FC8B2E6FE2A1DCBDA35FDA9EA6349A041C6E8175439D2404F81846052D53CCE237DF48ED674E1849071B48520E4484425604C25C06578C855071B54150E74884E5634C27C0A578D7F6A7A98C85576DC54D53E75488E77350A7C4A76F0CFAAA565E6DDEC2A17BB41D578C0A5AEC6C8A54AA96F8D5492AB1DD65D53E7386125DB72BD048F9151209DC0CE5C46340D97E9A33EAA87271EA95A547E0D2AA9221645048390235FDA9EA633EAAA9E65C6BBEA9DACE9F4C795D278E9140BB6E2A6A9F3AA811CEE6673E251A06CBF4D1A06CBF4D19F5543938F54AD2A3F069554910B228241C81EF6915EBB6E260A873A48104EE0613E051A06D4F4D1A06D4F4D1A06D4F4D1A06D4F4D181554ACBCE35DF482F768FA6F1AB5020E37408247C8AAE272B184605550E4E3D52554B7C6AA492442C8A0A9F39C67D2D53CCE5B9D854ED6742356A041C6E81048F9155C4E56308F2BAB8FB08F34AB87D241C6EBD054F9D521095800E7C4A3F74CCC47F27E45F6F73290EE5AFBF18EAA0E36A9A47C8A889CAC6994B88CA35FD97EA633E96A9E672DCEC2A76B3A11AB5020E37408247C8AAE272B1843E920E375E82A7CEA9084AC0073E251AFECBF530FA4BB6E242A873A44413B8184F814ED18EAAEDB8A8241C89091CEE6612E033B44E82AA95979C6FBE905EED1F4DE3CAE9231D55DB71504839121239DCCC25C067689D05552B2F6237DF482F768FDFF002CA58F653F363D94FCD8F653F36340C579EAA490EEE51DACEDFA63EFFC34AD2F332FFA1F997966F7329CED947B57F851ED5FE146818AF3D4AAA1DDCA3B59DBF4C7D84799D5F86939D9190C7D74B737588C4C579EAA557ED6F9EED9DB754E3DABFC28F6AFF0A3DABFC28CBC579EAA490EEEE1DACEEF74CE355CEC9C8C8FA096E6EB11E594918994CB35492FDADF0DEBB56EA94695838D8F91F5D5DFDE7E3CB2923CCE9634ACEC9C8C8FAC96E6EB11ECA7E6FBDE57490C24BB6E57A091F22A2413B819CB88C681B2FD34681B2FD3479A5247DFF86052D0E4E3D2AB548FC6A5492582CB2091F21C67D5553CCE235DF54ED674FC349A041C6E8175439D2404F81847D8469140BB6E2A6A9F3AA811CEE6673E251A06CBF4D1A06CBF4D1A06CBF4D1AFED4F531AFED4F530FAABB6E5020A9F3AA4473B999CF8946052D0E4E3D2AB548FC6A5492582CB2091F21C67D5553CCB8D77D53B59D3E9B4795D24681B2FD34681B2FD3430920E3690A41C890884AC0984B80CAF1814B43938F4AAD523F1A9524960B2C8247C871FBA6662318DF3CF37B996BF6ED7DF861241C6EBEA120E448442560009701F7BCAE923CD293C7CD2923EFE356A041C6E81048F9155C4E56308F34A4F0D26BD76DCAF5D50E749020E83086155DB7282A120E44848E77330970189D05552B2EB8DF7D20BDDA3E9BC6915EBB6E260A873A48104EE0613E051AB502EDB940BA41C892E47C4CE3EC3C185576DCA0A84839121239DCCC25C063F6BC3CB631BE799737F117EDDEDB90FA4BB6E57D42A1CE91104EE0613E051E575712A0AAAA7996DCEC2476B3A9F55A31D541C6D5348F915113958D329711946AD40BB6E502E907224B91F1338CFA5A565EC46FBEA85EED1C6055576364552B548FC6A549544EE8AE91F21C79A5244EBE9695979C6FBEA85EED29D3787D25DB71215439D22209DC0C27C0A76F7BCAE9231329966A925FB5BE1BD76ADD528F653F363D94FCD8F33A58FBFF0D7F29966A925FB58A17BB56EAF0D0329966A9543BB9417BB57E98C4CA659A5557ED6F85EED6EF54A34AC1C6C7C8FAEAEFEF3F1E59491ED5FE146AB9D9390C7D04B73758F0D0315E7AA9243BB9476B3B7E98FBFF0F2BAB8FB08D7F15E7AA955FB58A76B3B6EAF1D032996695243BB9417BB57E98D5754C3C4FEBFE59945CDFC56FB92B6FDE349C1C7C7C8FACAEFEF3F1A06532CD2A48777282F76AFD3EF795D24681B2FD34681B2FD34681B2FD3469140838DAA0A873A4809CAC6013E051F7FEE69140BB6E2A6A9F3AA811CEE6673E250C24BB6E24691F22A2413B819CB88CED1A06CCF4D19F5543938F54AD2A3F069554910B228241C810FAA838DD0542A1CE9109CAC6013E051AFED4F531AFED4F53190AA0E36A82A1CE9109CAC6984F814AF13AFAAAA79971BEFAA76B3A7D368D268176DCA04153E755023E2671E575719F554ACBCDB9D8542F7683AAF0FAABB6E5020A9F3AA4473B999CF894681B2FD346052D2B2F65B9D8482F7682349A05DB7281054F9D5408F899C6AF5EBB6E26691F22AB904EE0672E231814B54F3388D77D23B59D38D0365FA6FF99FFFC4002A11000103030205040203000000000000000100020304051106211213314051101422413280162442FFDA0008010201013F00FD9A073E83708641EFA59046325433897A2924118C950CC25E9DEEDD15DEB22A6A77F1EE55B756B2DF172A66F555FAA5B5748EE546412B4C81EC83B8B2E3E9F8F74767A75496CE42A3823ADAA2F937C7D2BD5AA8DF3B1EE6630BD8521A511F00030AD956EB55D1F0039612B9E00C94C7878EE88CABEC8200C7F8475355D1D710C3B29EF02BA2CCB2E0A9357CD08E40391E54B7685E1B237F2F2BDC3EB18C847FA54C0B58223F5DD67016A767F4DEEF0A42E3212A9C1126241B2ABB232439A5F1F6A4824A69431EAC25B253C2E3F41746E3BAE87215C6DCDB93381C765268280E785E9FA065CE5922FE3B5B147CB90712A8D2570E6F1C4CC0565A534B42D63BAAC671DD0F8EC5608DC2F92C1F2B87EC84785FB2D9BF00BA7EDDFF00FFC400251100010401040104030000000000000000010002030411051221403210224180144261FFDA0008010301013F00FB76D6A73709A139B8EEF2AA40F95E24F85269DF907785069E18FDC5CAFEDDFC0F407B4D4C8B729849523DA154B53161084AF7BF20AB359F356DC5A830A23B43C9513FAAB518B8DC151D335FC555A518707CA15FB94DF4042C1CA6E222F47DDDAF95A77364350FE27709B69CDF6BC26B848DE15AE1CF4381DAC65413188E426EB2F09BAD1F9085F8F3951EA9106E15B977BF211E5BDA6AC64AC05C2E10217921F6EFFFD9, '1', '2022-03-26 21:30:19', '1', '2022-03-26 21:30:19', b'0'); COMMIT; -- ---------------------------- -- Table structure for infra_job -- ---------------------------- DROP TABLE IF EXISTS `infra_job`; -CREATE TABLE `infra_job` ( +CREATE TABLE `infra_job` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '任务编号', `name` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '任务名称', `status` tinyint NOT NULL COMMENT '任务状态', `handler_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '处理器的名字', - `handler_param` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '处理器的参数', + `handler_param` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '处理器的参数', `cron_expression` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'CRON 表达式', - `retry_count` int NOT NULL DEFAULT '0' COMMENT '重试次数', - `retry_interval` int NOT NULL DEFAULT '0' COMMENT '重试间隔', - `monitor_timeout` int NOT NULL DEFAULT '0' COMMENT '监控超时时间', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `retry_count` int NOT NULL DEFAULT 0 COMMENT '重试次数', + `retry_interval` int NOT NULL DEFAULT 0 COMMENT '重试间隔', + `monitor_timeout` int NOT NULL DEFAULT 0 COMMENT '监控超时时间', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='定时任务表'; +) ENGINE = InnoDB AUTO_INCREMENT = 16 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '定时任务表'; -- ---------------------------- -- Records of infra_job -- ---------------------------- BEGIN; -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 (2, '用户 Session 超时 Job', 3, 'sysUserSessionTimeoutJob', 'aoteman', '0/5 * * * * ? *', 0, 0, 10, '', '2021-02-07 10:15:09', '', '2021-02-07 12:57:44', b'1'); -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 (3, '用户 Session 超时 Job', 1, 'sysUserSessionTimeoutJob', NULL, '0 * * * * ? *', 3, 2000, 0, '', '2021-02-07 13:07:32', '1', '2022-02-04 16:48:26', b'1'); -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 (4, 'payNotifyJob', 1, '支付通知 Job', NULL, '* * * * * ?', 0, 0, 0, '1', '2021-10-27 08:33:35', '1', '2021-10-27 00:34:14', b'1'); 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, '支付通知 Job', 2, 'payNotifyJob', NULL, '* * * * * ?', 0, 0, 0, '1', '2021-10-27 08:34:42', '1', '2022-04-03 20:35:25', b'0'); -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 (6, 'uerSessionTimeoutJob', 1, '用户 Session 超时 Job', NULL, '0 * * * * ? *', 3, 2000, 0, '1', '2022-02-05 00:46:54', '1', '2022-02-04 16:47:10', b'1'); -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 (13, '用户 Session 超时 Job', 1, 'userSessionTimeoutJob', NULL, '0 * * * * ? *', 3, 2000, 0, '1', '2022-02-05 00:49:47', '1', '2022-04-03 14:12:48', b'1'); -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 (14, '用户 Session 超时 Job', 1, 'userSessionTimeoutJob', NULL, '* * * * * ?', 0, 0, 60, '1', '2022-04-03 22:15:33', '1', '2022-04-03 14:16:09', b'1'); 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 (15, '用户 Session 超时 Job', 1, 'userSessionTimeoutJob', NULL, '0 * * * * ?', 0, 0, 60000, '1', '2022-04-03 22:18:14', '1', '2022-04-03 22:18:14', b'0'); COMMIT; @@ -2096,24 +794,24 @@ COMMIT; -- Table structure for infra_job_log -- ---------------------------- DROP TABLE IF EXISTS `infra_job_log`; -CREATE TABLE `infra_job_log` ( +CREATE TABLE `infra_job_log` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '日志编号', `job_id` bigint NOT NULL COMMENT '任务编号', `handler_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '处理器的名字', - `handler_param` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '处理器的参数', - `execute_index` tinyint NOT NULL DEFAULT '1' COMMENT '第几次执行', + `handler_param` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '处理器的参数', + `execute_index` tinyint NOT NULL DEFAULT 1 COMMENT '第几次执行', `begin_time` datetime NOT NULL COMMENT '开始执行时间', - `end_time` datetime DEFAULT NULL COMMENT '结束执行时间', - `duration` int DEFAULT NULL COMMENT '执行时长', + `end_time` datetime NULL DEFAULT NULL COMMENT '结束执行时间', + `duration` int NULL DEFAULT NULL COMMENT '执行时长', `status` tinyint NOT NULL COMMENT '任务状态', - `result` varchar(4000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '结果数据', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `result` varchar(4000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '结果数据', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=25295 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='定时任务日志表'; +) ENGINE = InnoDB AUTO_INCREMENT = 25295 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '定时任务日志表'; -- ---------------------------- -- Records of infra_job_log @@ -2125,34 +823,32 @@ COMMIT; -- Table structure for infra_test_demo -- ---------------------------- DROP TABLE IF EXISTS `infra_test_demo`; -CREATE TABLE `infra_test_demo` ( +CREATE TABLE `infra_test_demo` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '名字', - `status` tinyint NOT NULL DEFAULT '0' COMMENT '状态', + `status` tinyint NOT NULL DEFAULT 0 COMMENT '状态', `type` tinyint NOT NULL COMMENT '类型', `category` tinyint NOT NULL COMMENT '分类', - `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=108 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='字典类型表'; +) ENGINE = InnoDB AUTO_INCREMENT = 108 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '字典类型表'; -- ---------------------------- -- Records of infra_test_demo -- ---------------------------- BEGIN; -INSERT INTO `infra_test_demo` (`id`, `name`, `status`, `type`, `category`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (106, '测试', 0, 1, 1, '牛逼哈2', '', '2021-02-06 13:25:00', '1', '2022-04-03 13:50:43', b'0'); -INSERT INTO `infra_test_demo` (`id`, `name`, `status`, `type`, `category`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (107, '哈哈哈哈', 1, 0, 1, 'biubiubui', '', '2021-02-06 14:00:54', '1', '2022-02-17 12:42:14', b'0'); COMMIT; -- ---------------------------- -- Table structure for member_user -- ---------------------------- DROP TABLE IF EXISTS `member_user`; -CREATE TABLE `member_user` ( +CREATE TABLE `member_user` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `nickname` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '用户昵称', `avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '头像', @@ -2160,136 +856,123 @@ CREATE TABLE `member_user` ( `mobile` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '手机号', `password` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '密码', `register_ip` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '注册 IP', - `login_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '最后登录IP', - `login_date` datetime DEFAULT NULL COMMENT '最后登录时间', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '创建者', + `login_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '最后登录IP', + `login_date` datetime NULL DEFAULT NULL COMMENT '最后登录时间', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE, - UNIQUE KEY `uk_mobile` (`mobile`) USING BTREE COMMENT '手机号' -) ENGINE=InnoDB AUTO_INCREMENT=247 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='用户'; + UNIQUE INDEX `uk_mobile`(`mobile` ASC) USING BTREE COMMENT '手机号' +) ENGINE = InnoDB AUTO_INCREMENT = 247 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户'; -- ---------------------------- -- Records of member_user -- ---------------------------- BEGIN; -INSERT INTO `member_user` (`id`, `nickname`, `avatar`, `status`, `mobile`, `password`, `register_ip`, `login_ip`, `login_date`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (245, 'yunai222', 'http://pic.616pic.com/ys_b_img/00/06/20/novPzrqvE3.jpg', 0, '15601691300', '$2a$10$0acJOIk2D25/oC87nyclE..0lzeu9DtQ/n3geP4fkun/zIVRhHJIO', '127.0.0.1', '127.0.0.1', '2022-02-04 17:50:21', '', '2021-10-10 08:51:38', NULL, '2022-02-04 17:50:21', b'0', 1); -INSERT INTO `member_user` (`id`, `nickname`, `avatar`, `status`, `mobile`, `password`, `register_ip`, `login_ip`, `login_date`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (246, '', '', 0, '15601691301', '$2a$10$KLvmwoU.bvjU2u/MeWa1iOX2GDRJ2P9YqaCad10bYQCiyOaPexGwW', '127.0.0.1', '127.0.0.1', '2021-10-10 22:36:27', NULL, '2021-10-10 22:36:27', NULL, '2022-02-27 04:14:35', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for pay_app -- ---------------------------- DROP TABLE IF EXISTS `pay_app`; -CREATE TABLE `pay_app` ( +CREATE TABLE `pay_app` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '应用编号', `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '应用名', `status` tinyint NOT NULL COMMENT '开启状态', - `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注', + `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', `pay_notify_url` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '支付结果的回调地址', `refund_notify_url` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '退款结果的回调地址', `merchant_id` bigint NOT NULL COMMENT '商户编号', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='支付应用信息'; +) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '支付应用信息'; -- ---------------------------- -- Records of pay_app -- ---------------------------- BEGIN; -INSERT INTO `pay_app` (`id`, `name`, `status`, `remark`, `pay_notify_url`, `refund_notify_url`, `merchant_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (6, '芋道', 0, '我是一个公众号', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 'http://127.0.0.1', 1, '', '2021-10-23 08:49:25', '', '2022-02-27 04:14:53', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for pay_channel -- ---------------------------- DROP TABLE IF EXISTS `pay_channel`; -CREATE TABLE `pay_channel` ( +CREATE TABLE `pay_channel` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '商户编号', `code` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '渠道编码', `status` tinyint NOT NULL COMMENT '开启状态', - `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注', - `fee_rate` double NOT NULL DEFAULT '0' COMMENT '渠道费率,单位:百分比', + `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', + `fee_rate` double NOT NULL DEFAULT 0 COMMENT '渠道费率,单位:百分比', `merchant_id` bigint NOT NULL COMMENT '商户编号', `app_id` bigint NOT NULL COMMENT '应用编号', `config` varchar(4096) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '支付渠道配置', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='支付渠道\n'; +) ENGINE = InnoDB AUTO_INCREMENT = 18 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '支付渠道\n'; -- ---------------------------- -- Records of pay_channel -- ---------------------------- BEGIN; -INSERT INTO `pay_channel` (`id`, `code`, `status`, `remark`, `fee_rate`, `merchant_id`, `app_id`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (9, 'wx_pub', 0, NULL, 1, 1, 6, '{\"@class\":\"cn.iocoder.yudao.framework.pay.core.client.impl.wx.WXPayClientConfig\",\"appId\":\"wx041349c6f39b268b\",\"mchId\":\"1545083881\",\"apiVersion\":\"v2\",\"mchKey\":\"0alL64UDQdlCwiKZ73ib7ypaIjMns06p\",\"privateKeyContent\":\"-----BEGIN PRIVATE KEY-----\\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC5q2hYE3loOQoH\\nl/2kh/epuj17W8VpV5vBl7ysJWAbBXux6mlq4gKTHD0QUQdiKtDEUm/bKC9Bi6VU\\nuklM5Y8oCaCbhjklHRbET8jsgd9phSNGviHclYRLsQRO8oXnN89kN0y7DYKm0hYd\\nmaiS12Z3v8VaImSTr4HVeHlC/z3S6mdwSr263stKt931YTcbTj/QFH7znsv9Na0u\\nX6LaMBEEAsJctWdm8Ndrd1tGh9Fzf0DA5VRXsJR3kkWspy+IwiDTPV/FDKOU9NJC\\nSxMmDePerTfkoZ2s1rltqBK0ykDJrXtxR+hTzEsKZ/KpNi8tyYpfNZsviHIlUsLP\\nFJ5UvUhpAgMBAAECggEAd90NltazqTIxpGdeCwrwOzWNnYbIclJprlhMKIJUgf1P\\nNrPTbHoOGXTAgzkcYCat8iAaMEzH/TOu/3zn92m3uqxEcEL9v1UBLqknWHAbkB6w\\ngGocqDAqYUcdNe5hvbyM+fCta5C0SQgV2PQrHOlMMICwYpkTfzhtxCdreXIYMoGg\\nJEIRkZWgrm/N7LTtNgizznuUjy6OURWjXaWKPcs3b3j6G1gLj9Vp++z4y0u51nqM\\n4R6fcvl8M6BjlcC8zo6DbOvCW8cXtuXsnru+2TPrUnsGeybJok4fEQsfW1BvpvPo\\nief38rYJn4OWxIrHcpWrhNtXtgRPeiMGFfIsEQDmVQKBgQDzXK6Nn3Nr3TFfGVTy\\n8QYrzOuY2NqzH8nnsLL6qn3HoKxTv+PcFKOTPsi6f4hIYCzBP0esRrPv0ffMu9oQ\\nJvFtCJvMmcKGtp0Q5hcj0y/XkbC3AWuahJtBv8lhKXVnQXSL0j3+ombljw4/8yN0\\nAzgBz+j/skQQgZ3sN5h+DHGtgwKBgQDDT784/2pd4m86c/uBmrwYfqu6MJo0eHJh\\n1XPtE+u8pOHyNTFk77rKobKDqN5VlrF0uEmBc/08LKhyxJ3vh/zAbcmqT1Mq778y\\nAKKUtVmvcaVDrvSQHsnhj0zt4SHGmmU34U2b9hV+nocq5VszX6/jp//HJi9bs3We\\ndAzfFCmaowKBgC1MmDVGc+6lCraf+X8LPFHU4Bnga70h8qxM6NPd/nG1R76DHn/t\\n25DiA+0rJgwK0unZxJadxoqic9TJNssA5Lmd+5o3GM2Imm311mLVwbcHqHQ4MHZf\\nrqKrd2m9lNv2hCIurVmDk1Gxsj5XHMdQfhFgSQengCHubp30r07vNA3PAoGAUEAE\\nIjdQTSMs8KeXP7mEb8wcY3R05/pVhT1fVJpK0kgtTofss7yM05V88/v+3sv8Pik6\\niqZN9tuimwWOn00Q3UA/DGtrkMjRlooMQ24AW8YmUZkhg9YivTtUMKnAZwopbLx2\\nVw7V5iDdCRMUVheK/c+ZmQpnixZBzcmBQGfYcGECgYBjEq3Mem+Aw6pXOu6+0FwH\\n9y6Xi4HhBkq0OOZZuXFtWVry7YrD3pBgzWVAZJqJCkyPKKZzCzwdbFd3u0lYBs35\\nzYgx7ug4hR+wfI980a3vxjcWGOqnOUUnUJ7ucIa+KDgnYV/bBy4jqpVreXmWAJXl\\nfyjG3eLWBrtrsI9YX6zeAA==\\n-----END PRIVATE KEY-----\\n\",\"privateCertContent\":\"-----BEGIN CERTIFICATE-----\\nMIID6TCCAtGgAwIBAgIUNkEHq6aQcF80NSYqWS58ybsJzI4wDQYJKoZIhvcNAQEL\\nBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT\\nFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg\\nQ0EwHhcNMjExMDIxMDU0NTQxWhcNMjYxMDIwMDU0NTQxWjB7MRMwEQYDVQQDDAox\\nNTQ1MDgzODgxMRswGQYDVQQKDBLlvq7kv6HllYbmiLfns7vnu58xJzAlBgNVBAsM\\nHuWOhuWfjuWMuuWkp+adjuWwp+aXpeeUqOWTgeW6lzELMAkGA1UEBgwCQ04xETAP\\nBgNVBAcMCFNoZW5aaGVuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\\nuatoWBN5aDkKB5f9pIf3qbo9e1vFaVebwZe8rCVgGwV7seppauICkxw9EFEHYirQ\\nxFJv2ygvQYulVLpJTOWPKAmgm4Y5JR0WxE/I7IHfaYUjRr4h3JWES7EETvKF5zfP\\nZDdMuw2CptIWHZmoktdmd7/FWiJkk6+B1Xh5Qv890upncEq9ut7LSrfd9WE3G04/\\n0BR+857L/TWtLl+i2jARBALCXLVnZvDXa3dbRofRc39AwOVUV7CUd5JFrKcviMIg\\n0z1fxQyjlPTSQksTJg3j3q035KGdrNa5bagStMpAya17cUfoU8xLCmfyqTYvLcmK\\nXzWbL4hyJVLCzxSeVL1IaQIDAQABo4GBMH8wCQYDVR0TBAIwADALBgNVHQ8EBAMC\\nBPAwZQYDVR0fBF4wXDBaoFigVoZUaHR0cDovL2V2Y2EuaXRydXMuY29tLmNuL3B1\\nYmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUwREJDMDRCMDZBRDM5NzU0OTg0NkMw\\nMUMzRThFQkQyMA0GCSqGSIb3DQEBCwUAA4IBAQBe7XgncAY/1PLbCsnMsYt11k3V\\n2cdNZ+yuCxhlOEKk3nHE6WCTL6zL0qWlTKKpnw1rE/+4OS76Tg72wWXcHfHDAOgt\\n9icp62cKx1WO3QweeZpSvLDmtdLgKKrqeIWh+rL8+ZhuAOxSkaRwcsMTWDaLeDOi\\n0pGeqvfG8WNhPxkkaSI8xbiTK641Yg9WT/Q4yfHS7Q6wg1dj9YQdo0dvVB0S2Nir\\nX9IK6PUaHDnQeFKDmKgLkDGLaKaiijEvC91wMEE6qB8b0eNhciaxq2YhGHcFmSRP\\nWUyc5CmBadt7wIOH5Z3bfuwWGxqxKjNw/baM/d+nk7hlDr01YL9c0g16B9MW\\n-----END CERTIFICATE-----\\n\",\"apiV3Key\":\"joerVi8y5DJ3o4ttA0o1uH47Xz1u2Ase\"}', NULL, '2021-10-23 17:12:10', NULL, '2022-02-27 04:15:13', b'0', 1); -INSERT INTO `pay_channel` (`id`, `code`, `status`, `remark`, `fee_rate`, `merchant_id`, `app_id`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (10, 'wx_pub', 0, NULL, 1, 1, 6, '{\"@class\":\"cn.iocoder.yudao.framework.pay.core.client.impl.wx.WXPayClientConfig\",\"appId\":\"wx041349c6f39b268b\",\"mchId\":\"1545083881\",\"apiVersion\":\"v2\",\"mchKey\":\"0alL64UDQdlCwiKZ73ib7ypaIjMns06p\",\"privateKeyContent\":\"-----BEGIN PRIVATE KEY-----\\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC5q2hYE3loOQoH\\nl/2kh/epuj17W8VpV5vBl7ysJWAbBXux6mlq4gKTHD0QUQdiKtDEUm/bKC9Bi6VU\\nuklM5Y8oCaCbhjklHRbET8jsgd9phSNGviHclYRLsQRO8oXnN89kN0y7DYKm0hYd\\nmaiS12Z3v8VaImSTr4HVeHlC/z3S6mdwSr263stKt931YTcbTj/QFH7znsv9Na0u\\nX6LaMBEEAsJctWdm8Ndrd1tGh9Fzf0DA5VRXsJR3kkWspy+IwiDTPV/FDKOU9NJC\\nSxMmDePerTfkoZ2s1rltqBK0ykDJrXtxR+hTzEsKZ/KpNi8tyYpfNZsviHIlUsLP\\nFJ5UvUhpAgMBAAECggEAd90NltazqTIxpGdeCwrwOzWNnYbIclJprlhMKIJUgf1P\\nNrPTbHoOGXTAgzkcYCat8iAaMEzH/TOu/3zn92m3uqxEcEL9v1UBLqknWHAbkB6w\\ngGocqDAqYUcdNe5hvbyM+fCta5C0SQgV2PQrHOlMMICwYpkTfzhtxCdreXIYMoGg\\nJEIRkZWgrm/N7LTtNgizznuUjy6OURWjXaWKPcs3b3j6G1gLj9Vp++z4y0u51nqM\\n4R6fcvl8M6BjlcC8zo6DbOvCW8cXtuXsnru+2TPrUnsGeybJok4fEQsfW1BvpvPo\\nief38rYJn4OWxIrHcpWrhNtXtgRPeiMGFfIsEQDmVQKBgQDzXK6Nn3Nr3TFfGVTy\\n8QYrzOuY2NqzH8nnsLL6qn3HoKxTv+PcFKOTPsi6f4hIYCzBP0esRrPv0ffMu9oQ\\nJvFtCJvMmcKGtp0Q5hcj0y/XkbC3AWuahJtBv8lhKXVnQXSL0j3+ombljw4/8yN0\\nAzgBz+j/skQQgZ3sN5h+DHGtgwKBgQDDT784/2pd4m86c/uBmrwYfqu6MJo0eHJh\\n1XPtE+u8pOHyNTFk77rKobKDqN5VlrF0uEmBc/08LKhyxJ3vh/zAbcmqT1Mq778y\\nAKKUtVmvcaVDrvSQHsnhj0zt4SHGmmU34U2b9hV+nocq5VszX6/jp//HJi9bs3We\\ndAzfFCmaowKBgC1MmDVGc+6lCraf+X8LPFHU4Bnga70h8qxM6NPd/nG1R76DHn/t\\n25DiA+0rJgwK0unZxJadxoqic9TJNssA5Lmd+5o3GM2Imm311mLVwbcHqHQ4MHZf\\nrqKrd2m9lNv2hCIurVmDk1Gxsj5XHMdQfhFgSQengCHubp30r07vNA3PAoGAUEAE\\nIjdQTSMs8KeXP7mEb8wcY3R05/pVhT1fVJpK0kgtTofss7yM05V88/v+3sv8Pik6\\niqZN9tuimwWOn00Q3UA/DGtrkMjRlooMQ24AW8YmUZkhg9YivTtUMKnAZwopbLx2\\nVw7V5iDdCRMUVheK/c+ZmQpnixZBzcmBQGfYcGECgYBjEq3Mem+Aw6pXOu6+0FwH\\n9y6Xi4HhBkq0OOZZuXFtWVry7YrD3pBgzWVAZJqJCkyPKKZzCzwdbFd3u0lYBs35\\nzYgx7ug4hR+wfI980a3vxjcWGOqnOUUnUJ7ucIa+KDgnYV/bBy4jqpVreXmWAJXl\\nfyjG3eLWBrtrsI9YX6zeAA==\\n-----END PRIVATE KEY-----\\n\",\"privateCertContent\":\"-----BEGIN CERTIFICATE-----\\nMIID6TCCAtGgAwIBAgIUNkEHq6aQcF80NSYqWS58ybsJzI4wDQYJKoZIhvcNAQEL\\nBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT\\nFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg\\nQ0EwHhcNMjExMDIxMDU0NTQxWhcNMjYxMDIwMDU0NTQxWjB7MRMwEQYDVQQDDAox\\nNTQ1MDgzODgxMRswGQYDVQQKDBLlvq7kv6HllYbmiLfns7vnu58xJzAlBgNVBAsM\\nHuWOhuWfjuWMuuWkp+adjuWwp+aXpeeUqOWTgeW6lzELMAkGA1UEBgwCQ04xETAP\\nBgNVBAcMCFNoZW5aaGVuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\\nuatoWBN5aDkKB5f9pIf3qbo9e1vFaVebwZe8rCVgGwV7seppauICkxw9EFEHYirQ\\nxFJv2ygvQYulVLpJTOWPKAmgm4Y5JR0WxE/I7IHfaYUjRr4h3JWES7EETvKF5zfP\\nZDdMuw2CptIWHZmoktdmd7/FWiJkk6+B1Xh5Qv890upncEq9ut7LSrfd9WE3G04/\\n0BR+857L/TWtLl+i2jARBALCXLVnZvDXa3dbRofRc39AwOVUV7CUd5JFrKcviMIg\\n0z1fxQyjlPTSQksTJg3j3q035KGdrNa5bagStMpAya17cUfoU8xLCmfyqTYvLcmK\\nXzWbL4hyJVLCzxSeVL1IaQIDAQABo4GBMH8wCQYDVR0TBAIwADALBgNVHQ8EBAMC\\nBPAwZQYDVR0fBF4wXDBaoFigVoZUaHR0cDovL2V2Y2EuaXRydXMuY29tLmNuL3B1\\nYmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUwREJDMDRCMDZBRDM5NzU0OTg0NkMw\\nMUMzRThFQkQyMA0GCSqGSIb3DQEBCwUAA4IBAQBe7XgncAY/1PLbCsnMsYt11k3V\\n2cdNZ+yuCxhlOEKk3nHE6WCTL6zL0qWlTKKpnw1rE/+4OS76Tg72wWXcHfHDAOgt\\n9icp62cKx1WO3QweeZpSvLDmtdLgKKrqeIWh+rL8+ZhuAOxSkaRwcsMTWDaLeDOi\\n0pGeqvfG8WNhPxkkaSI8xbiTK641Yg9WT/Q4yfHS7Q6wg1dj9YQdo0dvVB0S2Nir\\nX9IK6PUaHDnQeFKDmKgLkDGLaKaiijEvC91wMEE6qB8b0eNhciaxq2YhGHcFmSRP\\nWUyc5CmBadt7wIOH5Z3bfuwWGxqxKjNw/baM/d+nk7hlDr01YL9c0g16B9MW\\n-----END CERTIFICATE-----\\n\",\"apiV3Key\":\"joerVi8y5DJ3o4ttA0o1uH47Xz1u2Ase\"}', NULL, '2021-12-14 22:01:24', NULL, '2022-02-27 04:15:12', b'0', 1); -INSERT INTO `pay_channel` (`id`, `code`, `status`, `remark`, `fee_rate`, `merchant_id`, `app_id`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (11, 'wx_pub', 0, NULL, 1, 1, 6, '{\"@class\":\"cn.iocoder.yudao.framework.pay.core.client.impl.wx.WXPayClientConfig\",\"appId\":\"wx041349c6f39b268b\",\"mchId\":\"1545083881\",\"apiVersion\":\"v2\",\"mchKey\":\"0alL64UDQdlCwiKZ73ib7ypaIjMns06p\",\"privateKeyContent\":\"-----BEGIN PRIVATE KEY-----\\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC5q2hYE3loOQoH\\nl/2kh/epuj17W8VpV5vBl7ysJWAbBXux6mlq4gKTHD0QUQdiKtDEUm/bKC9Bi6VU\\nuklM5Y8oCaCbhjklHRbET8jsgd9phSNGviHclYRLsQRO8oXnN89kN0y7DYKm0hYd\\nmaiS12Z3v8VaImSTr4HVeHlC/z3S6mdwSr263stKt931YTcbTj/QFH7znsv9Na0u\\nX6LaMBEEAsJctWdm8Ndrd1tGh9Fzf0DA5VRXsJR3kkWspy+IwiDTPV/FDKOU9NJC\\nSxMmDePerTfkoZ2s1rltqBK0ykDJrXtxR+hTzEsKZ/KpNi8tyYpfNZsviHIlUsLP\\nFJ5UvUhpAgMBAAECggEAd90NltazqTIxpGdeCwrwOzWNnYbIclJprlhMKIJUgf1P\\nNrPTbHoOGXTAgzkcYCat8iAaMEzH/TOu/3zn92m3uqxEcEL9v1UBLqknWHAbkB6w\\ngGocqDAqYUcdNe5hvbyM+fCta5C0SQgV2PQrHOlMMICwYpkTfzhtxCdreXIYMoGg\\nJEIRkZWgrm/N7LTtNgizznuUjy6OURWjXaWKPcs3b3j6G1gLj9Vp++z4y0u51nqM\\n4R6fcvl8M6BjlcC8zo6DbOvCW8cXtuXsnru+2TPrUnsGeybJok4fEQsfW1BvpvPo\\nief38rYJn4OWxIrHcpWrhNtXtgRPeiMGFfIsEQDmVQKBgQDzXK6Nn3Nr3TFfGVTy\\n8QYrzOuY2NqzH8nnsLL6qn3HoKxTv+PcFKOTPsi6f4hIYCzBP0esRrPv0ffMu9oQ\\nJvFtCJvMmcKGtp0Q5hcj0y/XkbC3AWuahJtBv8lhKXVnQXSL0j3+ombljw4/8yN0\\nAzgBz+j/skQQgZ3sN5h+DHGtgwKBgQDDT784/2pd4m86c/uBmrwYfqu6MJo0eHJh\\n1XPtE+u8pOHyNTFk77rKobKDqN5VlrF0uEmBc/08LKhyxJ3vh/zAbcmqT1Mq778y\\nAKKUtVmvcaVDrvSQHsnhj0zt4SHGmmU34U2b9hV+nocq5VszX6/jp//HJi9bs3We\\ndAzfFCmaowKBgC1MmDVGc+6lCraf+X8LPFHU4Bnga70h8qxM6NPd/nG1R76DHn/t\\n25DiA+0rJgwK0unZxJadxoqic9TJNssA5Lmd+5o3GM2Imm311mLVwbcHqHQ4MHZf\\nrqKrd2m9lNv2hCIurVmDk1Gxsj5XHMdQfhFgSQengCHubp30r07vNA3PAoGAUEAE\\nIjdQTSMs8KeXP7mEb8wcY3R05/pVhT1fVJpK0kgtTofss7yM05V88/v+3sv8Pik6\\niqZN9tuimwWOn00Q3UA/DGtrkMjRlooMQ24AW8YmUZkhg9YivTtUMKnAZwopbLx2\\nVw7V5iDdCRMUVheK/c+ZmQpnixZBzcmBQGfYcGECgYBjEq3Mem+Aw6pXOu6+0FwH\\n9y6Xi4HhBkq0OOZZuXFtWVry7YrD3pBgzWVAZJqJCkyPKKZzCzwdbFd3u0lYBs35\\nzYgx7ug4hR+wfI980a3vxjcWGOqnOUUnUJ7ucIa+KDgnYV/bBy4jqpVreXmWAJXl\\nfyjG3eLWBrtrsI9YX6zeAA==\\n-----END PRIVATE KEY-----\\n\",\"privateCertContent\":\"-----BEGIN CERTIFICATE-----\\nMIID6TCCAtGgAwIBAgIUNkEHq6aQcF80NSYqWS58ybsJzI4wDQYJKoZIhvcNAQEL\\nBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT\\nFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg\\nQ0EwHhcNMjExMDIxMDU0NTQxWhcNMjYxMDIwMDU0NTQxWjB7MRMwEQYDVQQDDAox\\nNTQ1MDgzODgxMRswGQYDVQQKDBLlvq7kv6HllYbmiLfns7vnu58xJzAlBgNVBAsM\\nHuWOhuWfjuWMuuWkp+adjuWwp+aXpeeUqOWTgeW6lzELMAkGA1UEBgwCQ04xETAP\\nBgNVBAcMCFNoZW5aaGVuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\\nuatoWBN5aDkKB5f9pIf3qbo9e1vFaVebwZe8rCVgGwV7seppauICkxw9EFEHYirQ\\nxFJv2ygvQYulVLpJTOWPKAmgm4Y5JR0WxE/I7IHfaYUjRr4h3JWES7EETvKF5zfP\\nZDdMuw2CptIWHZmoktdmd7/FWiJkk6+B1Xh5Qv890upncEq9ut7LSrfd9WE3G04/\\n0BR+857L/TWtLl+i2jARBALCXLVnZvDXa3dbRofRc39AwOVUV7CUd5JFrKcviMIg\\n0z1fxQyjlPTSQksTJg3j3q035KGdrNa5bagStMpAya17cUfoU8xLCmfyqTYvLcmK\\nXzWbL4hyJVLCzxSeVL1IaQIDAQABo4GBMH8wCQYDVR0TBAIwADALBgNVHQ8EBAMC\\nBPAwZQYDVR0fBF4wXDBaoFigVoZUaHR0cDovL2V2Y2EuaXRydXMuY29tLmNuL3B1\\nYmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUwREJDMDRCMDZBRDM5NzU0OTg0NkMw\\nMUMzRThFQkQyMA0GCSqGSIb3DQEBCwUAA4IBAQBe7XgncAY/1PLbCsnMsYt11k3V\\n2cdNZ+yuCxhlOEKk3nHE6WCTL6zL0qWlTKKpnw1rE/+4OS76Tg72wWXcHfHDAOgt\\n9icp62cKx1WO3QweeZpSvLDmtdLgKKrqeIWh+rL8+ZhuAOxSkaRwcsMTWDaLeDOi\\n0pGeqvfG8WNhPxkkaSI8xbiTK641Yg9WT/Q4yfHS7Q6wg1dj9YQdo0dvVB0S2Nir\\nX9IK6PUaHDnQeFKDmKgLkDGLaKaiijEvC91wMEE6qB8b0eNhciaxq2YhGHcFmSRP\\nWUyc5CmBadt7wIOH5Z3bfuwWGxqxKjNw/baM/d+nk7hlDr01YL9c0g16B9MW\\n-----END CERTIFICATE-----\\n\",\"apiV3Key\":\"joerVi8y5DJ3o4ttA0o1uH47Xz1u2Ase\"}', NULL, '2021-12-14 22:02:57', NULL, '2022-02-27 04:15:11', b'0', 1); -INSERT INTO `pay_channel` (`id`, `code`, `status`, `remark`, `fee_rate`, `merchant_id`, `app_id`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (12, 'wx_pub', 0, NULL, 1, 1, 6, '{\"@class\":\"cn.iocoder.yudao.framework.pay.core.client.impl.wx.WXPayClientConfig\",\"appId\":\"wx041349c6f39b268b\",\"mchId\":\"1545083881\",\"apiVersion\":\"v2\",\"mchKey\":\"0alL64UDQdlCwiKZ73ib7ypaIjMns06p\",\"privateKeyContent\":\"-----BEGIN PRIVATE KEY-----\\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC5q2hYE3loOQoH\\nl/2kh/epuj17W8VpV5vBl7ysJWAbBXux6mlq4gKTHD0QUQdiKtDEUm/bKC9Bi6VU\\nuklM5Y8oCaCbhjklHRbET8jsgd9phSNGviHclYRLsQRO8oXnN89kN0y7DYKm0hYd\\nmaiS12Z3v8VaImSTr4HVeHlC/z3S6mdwSr263stKt931YTcbTj/QFH7znsv9Na0u\\nX6LaMBEEAsJctWdm8Ndrd1tGh9Fzf0DA5VRXsJR3kkWspy+IwiDTPV/FDKOU9NJC\\nSxMmDePerTfkoZ2s1rltqBK0ykDJrXtxR+hTzEsKZ/KpNi8tyYpfNZsviHIlUsLP\\nFJ5UvUhpAgMBAAECggEAd90NltazqTIxpGdeCwrwOzWNnYbIclJprlhMKIJUgf1P\\nNrPTbHoOGXTAgzkcYCat8iAaMEzH/TOu/3zn92m3uqxEcEL9v1UBLqknWHAbkB6w\\ngGocqDAqYUcdNe5hvbyM+fCta5C0SQgV2PQrHOlMMICwYpkTfzhtxCdreXIYMoGg\\nJEIRkZWgrm/N7LTtNgizznuUjy6OURWjXaWKPcs3b3j6G1gLj9Vp++z4y0u51nqM\\n4R6fcvl8M6BjlcC8zo6DbOvCW8cXtuXsnru+2TPrUnsGeybJok4fEQsfW1BvpvPo\\nief38rYJn4OWxIrHcpWrhNtXtgRPeiMGFfIsEQDmVQKBgQDzXK6Nn3Nr3TFfGVTy\\n8QYrzOuY2NqzH8nnsLL6qn3HoKxTv+PcFKOTPsi6f4hIYCzBP0esRrPv0ffMu9oQ\\nJvFtCJvMmcKGtp0Q5hcj0y/XkbC3AWuahJtBv8lhKXVnQXSL0j3+ombljw4/8yN0\\nAzgBz+j/skQQgZ3sN5h+DHGtgwKBgQDDT784/2pd4m86c/uBmrwYfqu6MJo0eHJh\\n1XPtE+u8pOHyNTFk77rKobKDqN5VlrF0uEmBc/08LKhyxJ3vh/zAbcmqT1Mq778y\\nAKKUtVmvcaVDrvSQHsnhj0zt4SHGmmU34U2b9hV+nocq5VszX6/jp//HJi9bs3We\\ndAzfFCmaowKBgC1MmDVGc+6lCraf+X8LPFHU4Bnga70h8qxM6NPd/nG1R76DHn/t\\n25DiA+0rJgwK0unZxJadxoqic9TJNssA5Lmd+5o3GM2Imm311mLVwbcHqHQ4MHZf\\nrqKrd2m9lNv2hCIurVmDk1Gxsj5XHMdQfhFgSQengCHubp30r07vNA3PAoGAUEAE\\nIjdQTSMs8KeXP7mEb8wcY3R05/pVhT1fVJpK0kgtTofss7yM05V88/v+3sv8Pik6\\niqZN9tuimwWOn00Q3UA/DGtrkMjRlooMQ24AW8YmUZkhg9YivTtUMKnAZwopbLx2\\nVw7V5iDdCRMUVheK/c+ZmQpnixZBzcmBQGfYcGECgYBjEq3Mem+Aw6pXOu6+0FwH\\n9y6Xi4HhBkq0OOZZuXFtWVry7YrD3pBgzWVAZJqJCkyPKKZzCzwdbFd3u0lYBs35\\nzYgx7ug4hR+wfI980a3vxjcWGOqnOUUnUJ7ucIa+KDgnYV/bBy4jqpVreXmWAJXl\\nfyjG3eLWBrtrsI9YX6zeAA==\\n-----END PRIVATE KEY-----\\n\",\"privateCertContent\":\"-----BEGIN CERTIFICATE-----\\nMIID6TCCAtGgAwIBAgIUNkEHq6aQcF80NSYqWS58ybsJzI4wDQYJKoZIhvcNAQEL\\nBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT\\nFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg\\nQ0EwHhcNMjExMDIxMDU0NTQxWhcNMjYxMDIwMDU0NTQxWjB7MRMwEQYDVQQDDAox\\nNTQ1MDgzODgxMRswGQYDVQQKDBLlvq7kv6HllYbmiLfns7vnu58xJzAlBgNVBAsM\\nHuWOhuWfjuWMuuWkp+adjuWwp+aXpeeUqOWTgeW6lzELMAkGA1UEBgwCQ04xETAP\\nBgNVBAcMCFNoZW5aaGVuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\\nuatoWBN5aDkKB5f9pIf3qbo9e1vFaVebwZe8rCVgGwV7seppauICkxw9EFEHYirQ\\nxFJv2ygvQYulVLpJTOWPKAmgm4Y5JR0WxE/I7IHfaYUjRr4h3JWES7EETvKF5zfP\\nZDdMuw2CptIWHZmoktdmd7/FWiJkk6+B1Xh5Qv890upncEq9ut7LSrfd9WE3G04/\\n0BR+857L/TWtLl+i2jARBALCXLVnZvDXa3dbRofRc39AwOVUV7CUd5JFrKcviMIg\\n0z1fxQyjlPTSQksTJg3j3q035KGdrNa5bagStMpAya17cUfoU8xLCmfyqTYvLcmK\\nXzWbL4hyJVLCzxSeVL1IaQIDAQABo4GBMH8wCQYDVR0TBAIwADALBgNVHQ8EBAMC\\nBPAwZQYDVR0fBF4wXDBaoFigVoZUaHR0cDovL2V2Y2EuaXRydXMuY29tLmNuL3B1\\nYmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUwREJDMDRCMDZBRDM5NzU0OTg0NkMw\\nMUMzRThFQkQyMA0GCSqGSIb3DQEBCwUAA4IBAQBe7XgncAY/1PLbCsnMsYt11k3V\\n2cdNZ+yuCxhlOEKk3nHE6WCTL6zL0qWlTKKpnw1rE/+4OS76Tg72wWXcHfHDAOgt\\n9icp62cKx1WO3QweeZpSvLDmtdLgKKrqeIWh+rL8+ZhuAOxSkaRwcsMTWDaLeDOi\\n0pGeqvfG8WNhPxkkaSI8xbiTK641Yg9WT/Q4yfHS7Q6wg1dj9YQdo0dvVB0S2Nir\\nX9IK6PUaHDnQeFKDmKgLkDGLaKaiijEvC91wMEE6qB8b0eNhciaxq2YhGHcFmSRP\\nWUyc5CmBadt7wIOH5Z3bfuwWGxqxKjNw/baM/d+nk7hlDr01YL9c0g16B9MW\\n-----END CERTIFICATE-----\\n\",\"apiV3Key\":\"joerVi8y5DJ3o4ttA0o1uH47Xz1u2Ase\"}', NULL, '2021-12-14 22:06:10', NULL, '2022-02-27 04:15:09', b'0', 1); -INSERT INTO `pay_channel` (`id`, `code`, `status`, `remark`, `fee_rate`, `merchant_id`, `app_id`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (13, 'wx_pub', 0, NULL, 1, 1, 6, '{\"@class\":\"cn.iocoder.yudao.framework.pay.core.client.impl.wx.WXPayClientConfig\",\"appId\":\"wx041349c6f39b268b\",\"mchId\":\"1545083881\",\"apiVersion\":\"v2\",\"mchKey\":\"0alL64UDQdlCwiKZ73ib7ypaIjMns06p\",\"privateKeyContent\":\"-----BEGIN PRIVATE KEY-----\\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC5q2hYE3loOQoH\\nl/2kh/epuj17W8VpV5vBl7ysJWAbBXux6mlq4gKTHD0QUQdiKtDEUm/bKC9Bi6VU\\nuklM5Y8oCaCbhjklHRbET8jsgd9phSNGviHclYRLsQRO8oXnN89kN0y7DYKm0hYd\\nmaiS12Z3v8VaImSTr4HVeHlC/z3S6mdwSr263stKt931YTcbTj/QFH7znsv9Na0u\\nX6LaMBEEAsJctWdm8Ndrd1tGh9Fzf0DA5VRXsJR3kkWspy+IwiDTPV/FDKOU9NJC\\nSxMmDePerTfkoZ2s1rltqBK0ykDJrXtxR+hTzEsKZ/KpNi8tyYpfNZsviHIlUsLP\\nFJ5UvUhpAgMBAAECggEAd90NltazqTIxpGdeCwrwOzWNnYbIclJprlhMKIJUgf1P\\nNrPTbHoOGXTAgzkcYCat8iAaMEzH/TOu/3zn92m3uqxEcEL9v1UBLqknWHAbkB6w\\ngGocqDAqYUcdNe5hvbyM+fCta5C0SQgV2PQrHOlMMICwYpkTfzhtxCdreXIYMoGg\\nJEIRkZWgrm/N7LTtNgizznuUjy6OURWjXaWKPcs3b3j6G1gLj9Vp++z4y0u51nqM\\n4R6fcvl8M6BjlcC8zo6DbOvCW8cXtuXsnru+2TPrUnsGeybJok4fEQsfW1BvpvPo\\nief38rYJn4OWxIrHcpWrhNtXtgRPeiMGFfIsEQDmVQKBgQDzXK6Nn3Nr3TFfGVTy\\n8QYrzOuY2NqzH8nnsLL6qn3HoKxTv+PcFKOTPsi6f4hIYCzBP0esRrPv0ffMu9oQ\\nJvFtCJvMmcKGtp0Q5hcj0y/XkbC3AWuahJtBv8lhKXVnQXSL0j3+ombljw4/8yN0\\nAzgBz+j/skQQgZ3sN5h+DHGtgwKBgQDDT784/2pd4m86c/uBmrwYfqu6MJo0eHJh\\n1XPtE+u8pOHyNTFk77rKobKDqN5VlrF0uEmBc/08LKhyxJ3vh/zAbcmqT1Mq778y\\nAKKUtVmvcaVDrvSQHsnhj0zt4SHGmmU34U2b9hV+nocq5VszX6/jp//HJi9bs3We\\ndAzfFCmaowKBgC1MmDVGc+6lCraf+X8LPFHU4Bnga70h8qxM6NPd/nG1R76DHn/t\\n25DiA+0rJgwK0unZxJadxoqic9TJNssA5Lmd+5o3GM2Imm311mLVwbcHqHQ4MHZf\\nrqKrd2m9lNv2hCIurVmDk1Gxsj5XHMdQfhFgSQengCHubp30r07vNA3PAoGAUEAE\\nIjdQTSMs8KeXP7mEb8wcY3R05/pVhT1fVJpK0kgtTofss7yM05V88/v+3sv8Pik6\\niqZN9tuimwWOn00Q3UA/DGtrkMjRlooMQ24AW8YmUZkhg9YivTtUMKnAZwopbLx2\\nVw7V5iDdCRMUVheK/c+ZmQpnixZBzcmBQGfYcGECgYBjEq3Mem+Aw6pXOu6+0FwH\\n9y6Xi4HhBkq0OOZZuXFtWVry7YrD3pBgzWVAZJqJCkyPKKZzCzwdbFd3u0lYBs35\\nzYgx7ug4hR+wfI980a3vxjcWGOqnOUUnUJ7ucIa+KDgnYV/bBy4jqpVreXmWAJXl\\nfyjG3eLWBrtrsI9YX6zeAA==\\n-----END PRIVATE KEY-----\\n\",\"privateCertContent\":\"-----BEGIN CERTIFICATE-----\\nMIID6TCCAtGgAwIBAgIUNkEHq6aQcF80NSYqWS58ybsJzI4wDQYJKoZIhvcNAQEL\\nBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT\\nFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg\\nQ0EwHhcNMjExMDIxMDU0NTQxWhcNMjYxMDIwMDU0NTQxWjB7MRMwEQYDVQQDDAox\\nNTQ1MDgzODgxMRswGQYDVQQKDBLlvq7kv6HllYbmiLfns7vnu58xJzAlBgNVBAsM\\nHuWOhuWfjuWMuuWkp+adjuWwp+aXpeeUqOWTgeW6lzELMAkGA1UEBgwCQ04xETAP\\nBgNVBAcMCFNoZW5aaGVuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\\nuatoWBN5aDkKB5f9pIf3qbo9e1vFaVebwZe8rCVgGwV7seppauICkxw9EFEHYirQ\\nxFJv2ygvQYulVLpJTOWPKAmgm4Y5JR0WxE/I7IHfaYUjRr4h3JWES7EETvKF5zfP\\nZDdMuw2CptIWHZmoktdmd7/FWiJkk6+B1Xh5Qv890upncEq9ut7LSrfd9WE3G04/\\n0BR+857L/TWtLl+i2jARBALCXLVnZvDXa3dbRofRc39AwOVUV7CUd5JFrKcviMIg\\n0z1fxQyjlPTSQksTJg3j3q035KGdrNa5bagStMpAya17cUfoU8xLCmfyqTYvLcmK\\nXzWbL4hyJVLCzxSeVL1IaQIDAQABo4GBMH8wCQYDVR0TBAIwADALBgNVHQ8EBAMC\\nBPAwZQYDVR0fBF4wXDBaoFigVoZUaHR0cDovL2V2Y2EuaXRydXMuY29tLmNuL3B1\\nYmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUwREJDMDRCMDZBRDM5NzU0OTg0NkMw\\nMUMzRThFQkQyMA0GCSqGSIb3DQEBCwUAA4IBAQBe7XgncAY/1PLbCsnMsYt11k3V\\n2cdNZ+yuCxhlOEKk3nHE6WCTL6zL0qWlTKKpnw1rE/+4OS76Tg72wWXcHfHDAOgt\\n9icp62cKx1WO3QweeZpSvLDmtdLgKKrqeIWh+rL8+ZhuAOxSkaRwcsMTWDaLeDOi\\n0pGeqvfG8WNhPxkkaSI8xbiTK641Yg9WT/Q4yfHS7Q6wg1dj9YQdo0dvVB0S2Nir\\nX9IK6PUaHDnQeFKDmKgLkDGLaKaiijEvC91wMEE6qB8b0eNhciaxq2YhGHcFmSRP\\nWUyc5CmBadt7wIOH5Z3bfuwWGxqxKjNw/baM/d+nk7hlDr01YL9c0g16B9MW\\n-----END CERTIFICATE-----\\n\",\"apiV3Key\":\"joerVi8y5DJ3o4ttA0o1uH47Xz1u2Ase\"}', NULL, '2021-12-14 22:09:39', NULL, '2022-02-27 04:15:08', b'0', 1); -INSERT INTO `pay_channel` (`id`, `code`, `status`, `remark`, `fee_rate`, `merchant_id`, `app_id`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (14, 'wx_pub', 0, NULL, 1, 1, 6, '{\"@class\":\"cn.iocoder.yudao.framework.pay.core.client.impl.wx.WXPayClientConfig\",\"appId\":\"wx041349c6f39b268b\",\"mchId\":\"1545083881\",\"apiVersion\":\"v2\",\"mchKey\":\"0alL64UDQdlCwiKZ73ib7ypaIjMns06p\",\"privateKeyContent\":\"-----BEGIN PRIVATE KEY-----\\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC5q2hYE3loOQoH\\nl/2kh/epuj17W8VpV5vBl7ysJWAbBXux6mlq4gKTHD0QUQdiKtDEUm/bKC9Bi6VU\\nuklM5Y8oCaCbhjklHRbET8jsgd9phSNGviHclYRLsQRO8oXnN89kN0y7DYKm0hYd\\nmaiS12Z3v8VaImSTr4HVeHlC/z3S6mdwSr263stKt931YTcbTj/QFH7znsv9Na0u\\nX6LaMBEEAsJctWdm8Ndrd1tGh9Fzf0DA5VRXsJR3kkWspy+IwiDTPV/FDKOU9NJC\\nSxMmDePerTfkoZ2s1rltqBK0ykDJrXtxR+hTzEsKZ/KpNi8tyYpfNZsviHIlUsLP\\nFJ5UvUhpAgMBAAECggEAd90NltazqTIxpGdeCwrwOzWNnYbIclJprlhMKIJUgf1P\\nNrPTbHoOGXTAgzkcYCat8iAaMEzH/TOu/3zn92m3uqxEcEL9v1UBLqknWHAbkB6w\\ngGocqDAqYUcdNe5hvbyM+fCta5C0SQgV2PQrHOlMMICwYpkTfzhtxCdreXIYMoGg\\nJEIRkZWgrm/N7LTtNgizznuUjy6OURWjXaWKPcs3b3j6G1gLj9Vp++z4y0u51nqM\\n4R6fcvl8M6BjlcC8zo6DbOvCW8cXtuXsnru+2TPrUnsGeybJok4fEQsfW1BvpvPo\\nief38rYJn4OWxIrHcpWrhNtXtgRPeiMGFfIsEQDmVQKBgQDzXK6Nn3Nr3TFfGVTy\\n8QYrzOuY2NqzH8nnsLL6qn3HoKxTv+PcFKOTPsi6f4hIYCzBP0esRrPv0ffMu9oQ\\nJvFtCJvMmcKGtp0Q5hcj0y/XkbC3AWuahJtBv8lhKXVnQXSL0j3+ombljw4/8yN0\\nAzgBz+j/skQQgZ3sN5h+DHGtgwKBgQDDT784/2pd4m86c/uBmrwYfqu6MJo0eHJh\\n1XPtE+u8pOHyNTFk77rKobKDqN5VlrF0uEmBc/08LKhyxJ3vh/zAbcmqT1Mq778y\\nAKKUtVmvcaVDrvSQHsnhj0zt4SHGmmU34U2b9hV+nocq5VszX6/jp//HJi9bs3We\\ndAzfFCmaowKBgC1MmDVGc+6lCraf+X8LPFHU4Bnga70h8qxM6NPd/nG1R76DHn/t\\n25DiA+0rJgwK0unZxJadxoqic9TJNssA5Lmd+5o3GM2Imm311mLVwbcHqHQ4MHZf\\nrqKrd2m9lNv2hCIurVmDk1Gxsj5XHMdQfhFgSQengCHubp30r07vNA3PAoGAUEAE\\nIjdQTSMs8KeXP7mEb8wcY3R05/pVhT1fVJpK0kgtTofss7yM05V88/v+3sv8Pik6\\niqZN9tuimwWOn00Q3UA/DGtrkMjRlooMQ24AW8YmUZkhg9YivTtUMKnAZwopbLx2\\nVw7V5iDdCRMUVheK/c+ZmQpnixZBzcmBQGfYcGECgYBjEq3Mem+Aw6pXOu6+0FwH\\n9y6Xi4HhBkq0OOZZuXFtWVry7YrD3pBgzWVAZJqJCkyPKKZzCzwdbFd3u0lYBs35\\nzYgx7ug4hR+wfI980a3vxjcWGOqnOUUnUJ7ucIa+KDgnYV/bBy4jqpVreXmWAJXl\\nfyjG3eLWBrtrsI9YX6zeAA==\\n-----END PRIVATE KEY-----\\n\",\"privateCertContent\":\"-----BEGIN CERTIFICATE-----\\nMIID6TCCAtGgAwIBAgIUNkEHq6aQcF80NSYqWS58ybsJzI4wDQYJKoZIhvcNAQEL\\nBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT\\nFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg\\nQ0EwHhcNMjExMDIxMDU0NTQxWhcNMjYxMDIwMDU0NTQxWjB7MRMwEQYDVQQDDAox\\nNTQ1MDgzODgxMRswGQYDVQQKDBLlvq7kv6HllYbmiLfns7vnu58xJzAlBgNVBAsM\\nHuWOhuWfjuWMuuWkp+adjuWwp+aXpeeUqOWTgeW6lzELMAkGA1UEBgwCQ04xETAP\\nBgNVBAcMCFNoZW5aaGVuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\\nuatoWBN5aDkKB5f9pIf3qbo9e1vFaVebwZe8rCVgGwV7seppauICkxw9EFEHYirQ\\nxFJv2ygvQYulVLpJTOWPKAmgm4Y5JR0WxE/I7IHfaYUjRr4h3JWES7EETvKF5zfP\\nZDdMuw2CptIWHZmoktdmd7/FWiJkk6+B1Xh5Qv890upncEq9ut7LSrfd9WE3G04/\\n0BR+857L/TWtLl+i2jARBALCXLVnZvDXa3dbRofRc39AwOVUV7CUd5JFrKcviMIg\\n0z1fxQyjlPTSQksTJg3j3q035KGdrNa5bagStMpAya17cUfoU8xLCmfyqTYvLcmK\\nXzWbL4hyJVLCzxSeVL1IaQIDAQABo4GBMH8wCQYDVR0TBAIwADALBgNVHQ8EBAMC\\nBPAwZQYDVR0fBF4wXDBaoFigVoZUaHR0cDovL2V2Y2EuaXRydXMuY29tLmNuL3B1\\nYmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUwREJDMDRCMDZBRDM5NzU0OTg0NkMw\\nMUMzRThFQkQyMA0GCSqGSIb3DQEBCwUAA4IBAQBe7XgncAY/1PLbCsnMsYt11k3V\\n2cdNZ+yuCxhlOEKk3nHE6WCTL6zL0qWlTKKpnw1rE/+4OS76Tg72wWXcHfHDAOgt\\n9icp62cKx1WO3QweeZpSvLDmtdLgKKrqeIWh+rL8+ZhuAOxSkaRwcsMTWDaLeDOi\\n0pGeqvfG8WNhPxkkaSI8xbiTK641Yg9WT/Q4yfHS7Q6wg1dj9YQdo0dvVB0S2Nir\\nX9IK6PUaHDnQeFKDmKgLkDGLaKaiijEvC91wMEE6qB8b0eNhciaxq2YhGHcFmSRP\\nWUyc5CmBadt7wIOH5Z3bfuwWGxqxKjNw/baM/d+nk7hlDr01YL9c0g16B9MW\\n-----END CERTIFICATE-----\\n\",\"apiV3Key\":\"joerVi8y5DJ3o4ttA0o1uH47Xz1u2Ase\"}', NULL, '2021-12-14 22:38:49', NULL, '2022-02-27 04:15:05', b'0', 1); -INSERT INTO `pay_channel` (`id`, `code`, `status`, `remark`, `fee_rate`, `merchant_id`, `app_id`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (15, 'wx_pub', 0, NULL, 1, 1, 6, '{\"@class\":\"cn.iocoder.yudao.framework.pay.core.client.impl.wx.WXPayClientConfig\",\"appId\":\"wx041349c6f39b268b\",\"mchId\":\"1545083881\",\"apiVersion\":\"v2\",\"mchKey\":\"0alL64UDQdlCwiKZ73ib7ypaIjMns06p\",\"privateKeyContent\":\"-----BEGIN PRIVATE KEY-----\\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC5q2hYE3loOQoH\\nl/2kh/epuj17W8VpV5vBl7ysJWAbBXux6mlq4gKTHD0QUQdiKtDEUm/bKC9Bi6VU\\nuklM5Y8oCaCbhjklHRbET8jsgd9phSNGviHclYRLsQRO8oXnN89kN0y7DYKm0hYd\\nmaiS12Z3v8VaImSTr4HVeHlC/z3S6mdwSr263stKt931YTcbTj/QFH7znsv9Na0u\\nX6LaMBEEAsJctWdm8Ndrd1tGh9Fzf0DA5VRXsJR3kkWspy+IwiDTPV/FDKOU9NJC\\nSxMmDePerTfkoZ2s1rltqBK0ykDJrXtxR+hTzEsKZ/KpNi8tyYpfNZsviHIlUsLP\\nFJ5UvUhpAgMBAAECggEAd90NltazqTIxpGdeCwrwOzWNnYbIclJprlhMKIJUgf1P\\nNrPTbHoOGXTAgzkcYCat8iAaMEzH/TOu/3zn92m3uqxEcEL9v1UBLqknWHAbkB6w\\ngGocqDAqYUcdNe5hvbyM+fCta5C0SQgV2PQrHOlMMICwYpkTfzhtxCdreXIYMoGg\\nJEIRkZWgrm/N7LTtNgizznuUjy6OURWjXaWKPcs3b3j6G1gLj9Vp++z4y0u51nqM\\n4R6fcvl8M6BjlcC8zo6DbOvCW8cXtuXsnru+2TPrUnsGeybJok4fEQsfW1BvpvPo\\nief38rYJn4OWxIrHcpWrhNtXtgRPeiMGFfIsEQDmVQKBgQDzXK6Nn3Nr3TFfGVTy\\n8QYrzOuY2NqzH8nnsLL6qn3HoKxTv+PcFKOTPsi6f4hIYCzBP0esRrPv0ffMu9oQ\\nJvFtCJvMmcKGtp0Q5hcj0y/XkbC3AWuahJtBv8lhKXVnQXSL0j3+ombljw4/8yN0\\nAzgBz+j/skQQgZ3sN5h+DHGtgwKBgQDDT784/2pd4m86c/uBmrwYfqu6MJo0eHJh\\n1XPtE+u8pOHyNTFk77rKobKDqN5VlrF0uEmBc/08LKhyxJ3vh/zAbcmqT1Mq778y\\nAKKUtVmvcaVDrvSQHsnhj0zt4SHGmmU34U2b9hV+nocq5VszX6/jp//HJi9bs3We\\ndAzfFCmaowKBgC1MmDVGc+6lCraf+X8LPFHU4Bnga70h8qxM6NPd/nG1R76DHn/t\\n25DiA+0rJgwK0unZxJadxoqic9TJNssA5Lmd+5o3GM2Imm311mLVwbcHqHQ4MHZf\\nrqKrd2m9lNv2hCIurVmDk1Gxsj5XHMdQfhFgSQengCHubp30r07vNA3PAoGAUEAE\\nIjdQTSMs8KeXP7mEb8wcY3R05/pVhT1fVJpK0kgtTofss7yM05V88/v+3sv8Pik6\\niqZN9tuimwWOn00Q3UA/DGtrkMjRlooMQ24AW8YmUZkhg9YivTtUMKnAZwopbLx2\\nVw7V5iDdCRMUVheK/c+ZmQpnixZBzcmBQGfYcGECgYBjEq3Mem+Aw6pXOu6+0FwH\\n9y6Xi4HhBkq0OOZZuXFtWVry7YrD3pBgzWVAZJqJCkyPKKZzCzwdbFd3u0lYBs35\\nzYgx7ug4hR+wfI980a3vxjcWGOqnOUUnUJ7ucIa+KDgnYV/bBy4jqpVreXmWAJXl\\nfyjG3eLWBrtrsI9YX6zeAA==\\n-----END PRIVATE KEY-----\\n\",\"privateCertContent\":\"-----BEGIN CERTIFICATE-----\\nMIID6TCCAtGgAwIBAgIUNkEHq6aQcF80NSYqWS58ybsJzI4wDQYJKoZIhvcNAQEL\\nBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT\\nFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg\\nQ0EwHhcNMjExMDIxMDU0NTQxWhcNMjYxMDIwMDU0NTQxWjB7MRMwEQYDVQQDDAox\\nNTQ1MDgzODgxMRswGQYDVQQKDBLlvq7kv6HllYbmiLfns7vnu58xJzAlBgNVBAsM\\nHuWOhuWfjuWMuuWkp+adjuWwp+aXpeeUqOWTgeW6lzELMAkGA1UEBgwCQ04xETAP\\nBgNVBAcMCFNoZW5aaGVuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\\nuatoWBN5aDkKB5f9pIf3qbo9e1vFaVebwZe8rCVgGwV7seppauICkxw9EFEHYirQ\\nxFJv2ygvQYulVLpJTOWPKAmgm4Y5JR0WxE/I7IHfaYUjRr4h3JWES7EETvKF5zfP\\nZDdMuw2CptIWHZmoktdmd7/FWiJkk6+B1Xh5Qv890upncEq9ut7LSrfd9WE3G04/\\n0BR+857L/TWtLl+i2jARBALCXLVnZvDXa3dbRofRc39AwOVUV7CUd5JFrKcviMIg\\n0z1fxQyjlPTSQksTJg3j3q035KGdrNa5bagStMpAya17cUfoU8xLCmfyqTYvLcmK\\nXzWbL4hyJVLCzxSeVL1IaQIDAQABo4GBMH8wCQYDVR0TBAIwADALBgNVHQ8EBAMC\\nBPAwZQYDVR0fBF4wXDBaoFigVoZUaHR0cDovL2V2Y2EuaXRydXMuY29tLmNuL3B1\\nYmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUwREJDMDRCMDZBRDM5NzU0OTg0NkMw\\nMUMzRThFQkQyMA0GCSqGSIb3DQEBCwUAA4IBAQBe7XgncAY/1PLbCsnMsYt11k3V\\n2cdNZ+yuCxhlOEKk3nHE6WCTL6zL0qWlTKKpnw1rE/+4OS76Tg72wWXcHfHDAOgt\\n9icp62cKx1WO3QweeZpSvLDmtdLgKKrqeIWh+rL8+ZhuAOxSkaRwcsMTWDaLeDOi\\n0pGeqvfG8WNhPxkkaSI8xbiTK641Yg9WT/Q4yfHS7Q6wg1dj9YQdo0dvVB0S2Nir\\nX9IK6PUaHDnQeFKDmKgLkDGLaKaiijEvC91wMEE6qB8b0eNhciaxq2YhGHcFmSRP\\nWUyc5CmBadt7wIOH5Z3bfuwWGxqxKjNw/baM/d+nk7hlDr01YL9c0g16B9MW\\n-----END CERTIFICATE-----\\n\",\"apiV3Key\":\"joerVi8y5DJ3o4ttA0o1uH47Xz1u2Ase\"}', NULL, '2021-12-15 09:32:26', NULL, '2022-02-27 04:15:04', b'0', 1); -INSERT INTO `pay_channel` (`id`, `code`, `status`, `remark`, `fee_rate`, `merchant_id`, `app_id`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (16, 'wx_pub', 0, NULL, 1, 1, 6, '{\"@class\":\"cn.iocoder.yudao.framework.pay.core.client.impl.wx.WXPayClientConfig\",\"appId\":\"wx041349c6f39b268b\",\"mchId\":\"1545083881\",\"apiVersion\":\"v2\",\"mchKey\":\"0alL64UDQdlCwiKZ73ib7ypaIjMns06p\",\"privateKeyContent\":\"-----BEGIN PRIVATE KEY-----\\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC5q2hYE3loOQoH\\nl/2kh/epuj17W8VpV5vBl7ysJWAbBXux6mlq4gKTHD0QUQdiKtDEUm/bKC9Bi6VU\\nuklM5Y8oCaCbhjklHRbET8jsgd9phSNGviHclYRLsQRO8oXnN89kN0y7DYKm0hYd\\nmaiS12Z3v8VaImSTr4HVeHlC/z3S6mdwSr263stKt931YTcbTj/QFH7znsv9Na0u\\nX6LaMBEEAsJctWdm8Ndrd1tGh9Fzf0DA5VRXsJR3kkWspy+IwiDTPV/FDKOU9NJC\\nSxMmDePerTfkoZ2s1rltqBK0ykDJrXtxR+hTzEsKZ/KpNi8tyYpfNZsviHIlUsLP\\nFJ5UvUhpAgMBAAECggEAd90NltazqTIxpGdeCwrwOzWNnYbIclJprlhMKIJUgf1P\\nNrPTbHoOGXTAgzkcYCat8iAaMEzH/TOu/3zn92m3uqxEcEL9v1UBLqknWHAbkB6w\\ngGocqDAqYUcdNe5hvbyM+fCta5C0SQgV2PQrHOlMMICwYpkTfzhtxCdreXIYMoGg\\nJEIRkZWgrm/N7LTtNgizznuUjy6OURWjXaWKPcs3b3j6G1gLj9Vp++z4y0u51nqM\\n4R6fcvl8M6BjlcC8zo6DbOvCW8cXtuXsnru+2TPrUnsGeybJok4fEQsfW1BvpvPo\\nief38rYJn4OWxIrHcpWrhNtXtgRPeiMGFfIsEQDmVQKBgQDzXK6Nn3Nr3TFfGVTy\\n8QYrzOuY2NqzH8nnsLL6qn3HoKxTv+PcFKOTPsi6f4hIYCzBP0esRrPv0ffMu9oQ\\nJvFtCJvMmcKGtp0Q5hcj0y/XkbC3AWuahJtBv8lhKXVnQXSL0j3+ombljw4/8yN0\\nAzgBz+j/skQQgZ3sN5h+DHGtgwKBgQDDT784/2pd4m86c/uBmrwYfqu6MJo0eHJh\\n1XPtE+u8pOHyNTFk77rKobKDqN5VlrF0uEmBc/08LKhyxJ3vh/zAbcmqT1Mq778y\\nAKKUtVmvcaVDrvSQHsnhj0zt4SHGmmU34U2b9hV+nocq5VszX6/jp//HJi9bs3We\\ndAzfFCmaowKBgC1MmDVGc+6lCraf+X8LPFHU4Bnga70h8qxM6NPd/nG1R76DHn/t\\n25DiA+0rJgwK0unZxJadxoqic9TJNssA5Lmd+5o3GM2Imm311mLVwbcHqHQ4MHZf\\nrqKrd2m9lNv2hCIurVmDk1Gxsj5XHMdQfhFgSQengCHubp30r07vNA3PAoGAUEAE\\nIjdQTSMs8KeXP7mEb8wcY3R05/pVhT1fVJpK0kgtTofss7yM05V88/v+3sv8Pik6\\niqZN9tuimwWOn00Q3UA/DGtrkMjRlooMQ24AW8YmUZkhg9YivTtUMKnAZwopbLx2\\nVw7V5iDdCRMUVheK/c+ZmQpnixZBzcmBQGfYcGECgYBjEq3Mem+Aw6pXOu6+0FwH\\n9y6Xi4HhBkq0OOZZuXFtWVry7YrD3pBgzWVAZJqJCkyPKKZzCzwdbFd3u0lYBs35\\nzYgx7ug4hR+wfI980a3vxjcWGOqnOUUnUJ7ucIa+KDgnYV/bBy4jqpVreXmWAJXl\\nfyjG3eLWBrtrsI9YX6zeAA==\\n-----END PRIVATE KEY-----\\n\",\"privateCertContent\":\"-----BEGIN CERTIFICATE-----\\nMIID6TCCAtGgAwIBAgIUNkEHq6aQcF80NSYqWS58ybsJzI4wDQYJKoZIhvcNAQEL\\nBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT\\nFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg\\nQ0EwHhcNMjExMDIxMDU0NTQxWhcNMjYxMDIwMDU0NTQxWjB7MRMwEQYDVQQDDAox\\nNTQ1MDgzODgxMRswGQYDVQQKDBLlvq7kv6HllYbmiLfns7vnu58xJzAlBgNVBAsM\\nHuWOhuWfjuWMuuWkp+adjuWwp+aXpeeUqOWTgeW6lzELMAkGA1UEBgwCQ04xETAP\\nBgNVBAcMCFNoZW5aaGVuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\\nuatoWBN5aDkKB5f9pIf3qbo9e1vFaVebwZe8rCVgGwV7seppauICkxw9EFEHYirQ\\nxFJv2ygvQYulVLpJTOWPKAmgm4Y5JR0WxE/I7IHfaYUjRr4h3JWES7EETvKF5zfP\\nZDdMuw2CptIWHZmoktdmd7/FWiJkk6+B1Xh5Qv890upncEq9ut7LSrfd9WE3G04/\\n0BR+857L/TWtLl+i2jARBALCXLVnZvDXa3dbRofRc39AwOVUV7CUd5JFrKcviMIg\\n0z1fxQyjlPTSQksTJg3j3q035KGdrNa5bagStMpAya17cUfoU8xLCmfyqTYvLcmK\\nXzWbL4hyJVLCzxSeVL1IaQIDAQABo4GBMH8wCQYDVR0TBAIwADALBgNVHQ8EBAMC\\nBPAwZQYDVR0fBF4wXDBaoFigVoZUaHR0cDovL2V2Y2EuaXRydXMuY29tLmNuL3B1\\nYmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUwREJDMDRCMDZBRDM5NzU0OTg0NkMw\\nMUMzRThFQkQyMA0GCSqGSIb3DQEBCwUAA4IBAQBe7XgncAY/1PLbCsnMsYt11k3V\\n2cdNZ+yuCxhlOEKk3nHE6WCTL6zL0qWlTKKpnw1rE/+4OS76Tg72wWXcHfHDAOgt\\n9icp62cKx1WO3QweeZpSvLDmtdLgKKrqeIWh+rL8+ZhuAOxSkaRwcsMTWDaLeDOi\\n0pGeqvfG8WNhPxkkaSI8xbiTK641Yg9WT/Q4yfHS7Q6wg1dj9YQdo0dvVB0S2Nir\\nX9IK6PUaHDnQeFKDmKgLkDGLaKaiijEvC91wMEE6qB8b0eNhciaxq2YhGHcFmSRP\\nWUyc5CmBadt7wIOH5Z3bfuwWGxqxKjNw/baM/d+nk7hlDr01YL9c0g16B9MW\\n-----END CERTIFICATE-----\\n\",\"apiV3Key\":\"joerVi8y5DJ3o4ttA0o1uH47Xz1u2Ase\"}', NULL, '2022-01-31 22:13:25', NULL, '2022-02-27 04:15:03', b'0', 1); -INSERT INTO `pay_channel` (`id`, `code`, `status`, `remark`, `fee_rate`, `merchant_id`, `app_id`, `config`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (17, 'alipay_qr', 0, NULL, 1, 1, 6, '{\"@class\":\"cn.iocoder.yudao.framework.pay.core.client.impl.alipay.AlipayPayClientConfig\",\"serverUrl\":\"https://openapi.alipaydev.com/gateway.do\",\"appId\":\"2021000118634035\",\"signType\":\"RSA2\",\"mode\":null,\"privateKey\":\"MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCHsEV1cDupwJv890x84qbppUtRIfhaKSwSVN0thCcsDCaAsGR5MZslDkO8NCT9V4r2SVXjyY7eJUZlZd1M0C8T01Tg4UOx5LUbic0O3A1uJMy6V1n9IyYwbAW3AEZhBd5bSbPgrqvmv3NeWSTQT6Anxnllf+2iDH6zyA2fPl7cYyQtbZoDJQFGqr4F+cGh2R6akzRKNoBkAeMYwoY6es2lX8sJxCVPWUmxNUoL3tScwlSpd7Bxw0q9c/X01jMwuQ0+Va358zgFiGERTE6yD01eu40OBDXOYO3z++y+TAYHlQQ2toMO63trepo88X3xV3R44/1DH+k2pAm2IF5ixiLrAgMBAAECggEAPx3SoXcseaD7rmcGcE0p4SMfbsUDdkUSmBBbtfF0GzwnqNLkWa+mgE0rWt9SmXngTQH97vByAYmLPl1s3G82ht1V7Sk7yQMe74lhFllr8eEyTjeVx3dTK1EEM4TwN+936DTXdFsr4TELJEcJJdD0KaxcCcfBLRDs2wnitEFZ9N+GoZybVmY8w0e0MI7PLObUZ2l0X4RurQnfG9ZxjXjC7PkeMVv7cGGylpNFi3BbvkRhdhLPDC2E6wqnr9e7zk+hiENivAezXrtxtwKovzCtnWJ1r0IO14Rh47H509Ic0wFnj+o5YyUL4LdmpL7yaaH6fM7zcSLFjNZPHvZCKPwYcQKBgQDQFho98QvnL8ex4v6cry4VitGpjSXm1qP3vmMQk4rTsn8iPWtcxPjqGEqOQJjdi4Mi0VZKQOLFwlH0kl95wNrD/isJ4O1yeYfX7YAXApzHqYNINzM79HemO3Yx1qLMW3okRFJ9pPRzbQ9qkTpsaegsmyX316zOBhzGRYjKbutTYwKBgQCm7phr9XdFW5Vh+XR90mVs483nrLmMiDKg7YKxSLJ8amiDjzPejCn7i95Hah08P+2MIZLIPbh2VLacczR6ltRRzN5bg5etFuqSgfkuHyxpoDmpjbe08+Q2h8JBYqcC5Nhv1AKU4iOUhVLHo/FBAQliMcGc/J3eiYTFC7EsNx382QKBgClb20doe7cttgFTXswBvaUmfFm45kmla924B7SpvrQpDD/f+VDtDZRp05fGmxuduSjYdtA3aVtpLiTwWu22OUUvZZqHDGruYOO4Hvdz23mL5b4ayqImCwoNU4bAZIc9v18p/UNf3/55NNE3oGcf/bev9rH2OjCQ4nM+Ktwhg8CFAoGACSgvbkShzUkv0ZcIf9ppu+ZnJh1AdGgINvGwaJ8vQ0nm/8h8NOoFZ4oNoGc+wU5Ubops7dUM6FjPR5e+OjdJ4E7Xp7d5O4J1TaIZlCEbo5OpdhaTDDcQvrkFu+Z4eN0qzj+YAKjDAOOrXc4tbr5q0FsgXscwtcNfaBuzFVTUrUkCgYEAwzPnMNhWG3zOWLUs2QFA2GP4Y+J8cpUYfj6pbKKzeLwyG9qBwF1NJpN8m+q9q7V9P2LY+9Lp9e1mGsGeqt5HMEA3P6vIpcqLJLqE/4PBLLRzfccTcmqb1m71+erxTRhHBRkGS+I7dZEb3olQfnS1Y1tpMBxiwYwR3LW4oXuJwj8=\",\"alipayPublicKey\":\"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnq90KnF4dTnlzzmxpujbI05OYqi5WxAS6cL0gnZFv2gK51HExF8v/BaP7P979PhFMgWTqmOOI+Dtno5s+yD09XTY1WkshbLk6i4g2Xlr8fyW9ODnkU88RI2w9UdPhQU4cPPwBNlrsYhKkVK2OxwM3kFqjoBBY0CZoZCsSQ3LDH5WeZqPArlsS6xa2zqJBuuoKjMrdpELl3eXSjP8K54eDJCbeetCZNKWLL3DPahTPB7LZikfYmslb0QUvCgGapD0xkS7eVq70NaL1G57MWABs4tbfWgxike4Daj3EfUrzIVspQxj7w8HEj9WozJPgL88kSJSits0pqD3n5r8HSuseQIDAQAB\",\"appCertContent\":null,\"alipayPublicCertContent\":null,\"rootCertContent\":null}', NULL, '2022-01-31 22:13:25', NULL, '2022-02-27 04:15:02', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for pay_merchant -- ---------------------------- DROP TABLE IF EXISTS `pay_merchant`; -CREATE TABLE `pay_merchant` ( +CREATE TABLE `pay_merchant` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '商户编号', `no` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '商户号', `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '商户全称', `short_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '商户简称', `status` tinyint NOT NULL COMMENT '开启状态', - `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='支付商户信息'; +) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '支付商户信息'; -- ---------------------------- -- Records of pay_merchant -- ---------------------------- BEGIN; -INSERT INTO `pay_merchant` (`id`, `no`, `name`, `short_name`, `status`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1, 'M233666999', '芋道源码', '芋艿', 0, '我是备注', '', '2021-10-23 08:31:14', '', '2022-02-27 04:15:20', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for pay_notify_log -- ---------------------------- DROP TABLE IF EXISTS `pay_notify_log`; -CREATE TABLE `pay_notify_log` ( +CREATE TABLE `pay_notify_log` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '日志编号', `task_id` bigint NOT NULL COMMENT '通知任务编号', `notify_times` tinyint NOT NULL COMMENT '第几次被通知', `response` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '请求参数', `status` tinyint NOT NULL COMMENT '通知状态', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=363051 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='支付通知 App 的日志'; +) ENGINE = InnoDB AUTO_INCREMENT = 363051 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '支付通知 App 的日志'; -- ---------------------------- -- Records of pay_notify_log @@ -2301,7 +984,7 @@ COMMIT; -- Table structure for pay_notify_task -- ---------------------------- DROP TABLE IF EXISTS `pay_notify_task`; -CREATE TABLE `pay_notify_task` ( +CREATE TABLE `pay_notify_task` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '任务编号', `merchant_id` bigint NOT NULL COMMENT '商户编号', `app_id` bigint NOT NULL COMMENT '应用编号', @@ -2314,201 +997,70 @@ CREATE TABLE `pay_notify_task` ( `notify_times` tinyint NOT NULL COMMENT '当前通知次数', `max_notify_times` tinyint NOT NULL COMMENT '最大可通知次数', `notify_url` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '异步通知地址', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=112 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='商户支付、退款等的通知\n'; +) ENGINE = InnoDB AUTO_INCREMENT = 112 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '商户支付、退款等的通知\n'; -- ---------------------------- -- Records of pay_notify_task -- ---------------------------- BEGIN; -INSERT INTO `pay_notify_task` (`id`, `merchant_id`, `app_id`, `type`, `data_id`, `status`, `merchant_order_id`, `next_notify_time`, `last_execute_time`, `notify_times`, `max_notify_times`, `notify_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (96, 1, 6, 1, 105, 1, '1635295878514', '2021-10-27 08:51:33', '2021-10-27 00:51:32', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 08:51:33', NULL, '2022-02-27 04:15:48', b'0', 1); -INSERT INTO `pay_notify_task` (`id`, `merchant_id`, `app_id`, `type`, `data_id`, `status`, `merchant_order_id`, `next_notify_time`, `last_execute_time`, `notify_times`, `max_notify_times`, `notify_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (97, 1, 6, 1, 106, 1, '1635296883074', '2021-10-27 09:08:12', '2021-10-27 01:08:12', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:08:12', NULL, '2022-02-27 04:15:46', b'0', 1); -INSERT INTO `pay_notify_task` (`id`, `merchant_id`, `app_id`, `type`, `data_id`, `status`, `merchant_order_id`, `next_notify_time`, `last_execute_time`, `notify_times`, `max_notify_times`, `notify_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (98, 1, 6, 1, 107, 1, '1635297635297', '2021-10-27 09:20:59', '2021-10-27 01:20:58', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:20:59', NULL, '2022-02-27 04:15:45', b'0', 1); -INSERT INTO `pay_notify_task` (`id`, `merchant_id`, `app_id`, `type`, `data_id`, `status`, `merchant_order_id`, `next_notify_time`, `last_execute_time`, `notify_times`, `max_notify_times`, `notify_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (99, 1, 6, 1, 108, 1, '1635297700295', '2021-10-27 09:21:55', '2021-10-27 01:21:55', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:21:55', NULL, '2022-02-27 04:15:44', b'0', 1); -INSERT INTO `pay_notify_task` (`id`, `merchant_id`, `app_id`, `type`, `data_id`, `status`, `merchant_order_id`, `next_notify_time`, `last_execute_time`, `notify_times`, `max_notify_times`, `notify_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (100, 1, 6, 1, 109, 1, '1635298128448', '2021-10-27 09:28:57', '2021-10-27 01:28:56', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:28:57', NULL, '2022-02-27 04:15:43', b'0', 1); -INSERT INTO `pay_notify_task` (`id`, `merchant_id`, `app_id`, `type`, `data_id`, `status`, `merchant_order_id`, `next_notify_time`, `last_execute_time`, `notify_times`, `max_notify_times`, `notify_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (101, 1, 6, 1, 110, 1, '1635298196716', '2021-10-27 09:30:05', '2021-10-27 01:30:05', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:30:05', NULL, '2022-02-27 04:15:41', b'0', 1); -INSERT INTO `pay_notify_task` (`id`, `merchant_id`, `app_id`, `type`, `data_id`, `status`, `merchant_order_id`, `next_notify_time`, `last_execute_time`, `notify_times`, `max_notify_times`, `notify_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (102, 1, 6, 1, 111, 1, '1635298542165', '2021-10-27 09:35:49', '2021-10-27 01:35:49', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:35:49', NULL, '2022-02-27 04:15:40', b'0', 1); -INSERT INTO `pay_notify_task` (`id`, `merchant_id`, `app_id`, `type`, `data_id`, `status`, `merchant_order_id`, `next_notify_time`, `last_execute_time`, `notify_times`, `max_notify_times`, `notify_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (103, 1, 6, 1, 112, 1, '1635298736280', '2021-10-27 09:39:08', '2021-10-27 01:39:07', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:39:08', NULL, '2022-02-27 04:15:39', b'0', 1); -INSERT INTO `pay_notify_task` (`id`, `merchant_id`, `app_id`, `type`, `data_id`, `status`, `merchant_order_id`, `next_notify_time`, `last_execute_time`, `notify_times`, `max_notify_times`, `notify_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (104, 1, 6, 1, 113, 1, '1635298796688', '2021-10-27 09:40:21', '2021-10-27 01:40:20', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:40:21', NULL, '2022-02-27 04:15:38', b'0', 1); -INSERT INTO `pay_notify_task` (`id`, `merchant_id`, `app_id`, `type`, `data_id`, `status`, `merchant_order_id`, `next_notify_time`, `last_execute_time`, `notify_times`, `max_notify_times`, `notify_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (105, 1, 6, 1, 114, 1, '1635299148566', '2021-10-27 09:45:57', '2021-10-27 01:45:57', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:45:57', NULL, '2022-02-27 04:15:37', b'0', 1); -INSERT INTO `pay_notify_task` (`id`, `merchant_id`, `app_id`, `type`, `data_id`, `status`, `merchant_order_id`, `next_notify_time`, `last_execute_time`, `notify_times`, `max_notify_times`, `notify_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (106, 1, 6, 1, 115, 1, '1635300261266', '2021-10-27 10:04:29', '2021-10-27 02:04:28', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 10:04:29', NULL, '2022-02-27 04:15:36', b'0', 1); -INSERT INTO `pay_notify_task` (`id`, `merchant_id`, `app_id`, `type`, `data_id`, `status`, `merchant_order_id`, `next_notify_time`, `last_execute_time`, `notify_times`, `max_notify_times`, `notify_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (107, 1, 6, 1, 117, 1, '1635311468233', '2021-10-27 13:11:16', '2021-10-27 05:11:16', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 13:11:16', NULL, '2022-02-27 04:15:32', b'0', 1); -INSERT INTO `pay_notify_task` (`id`, `merchant_id`, `app_id`, `type`, `data_id`, `status`, `merchant_order_id`, `next_notify_time`, `last_execute_time`, `notify_times`, `max_notify_times`, `notify_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (108, 1, 6, 1, 118, 1, '1635311823086', '2021-10-27 13:17:09', '2021-10-27 05:17:08', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 13:17:09', NULL, '2022-02-27 04:15:31', b'0', 1); -INSERT INTO `pay_notify_task` (`id`, `merchant_id`, `app_id`, `type`, `data_id`, `status`, `merchant_order_id`, `next_notify_time`, `last_execute_time`, `notify_times`, `max_notify_times`, `notify_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (109, 1, 6, 1, 119, 1, '1635311881440', '2021-10-27 13:18:11', '2021-10-27 05:18:10', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 13:18:11', NULL, '2022-02-27 04:15:30', b'0', 1); -INSERT INTO `pay_notify_task` (`id`, `merchant_id`, `app_id`, `type`, `data_id`, `status`, `merchant_order_id`, `next_notify_time`, `last_execute_time`, `notify_times`, `max_notify_times`, `notify_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (110, 1, 6, 1, 120, 1, '1635311949168', '2021-10-27 13:19:15', '2021-10-27 05:19:15', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 13:19:15', NULL, '2022-02-27 04:15:29', b'0', 1); -INSERT INTO `pay_notify_task` (`id`, `merchant_id`, `app_id`, `type`, `data_id`, `status`, `merchant_order_id`, `next_notify_time`, `last_execute_time`, `notify_times`, `max_notify_times`, `notify_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (111, 1, 6, 1, 121, 1, '1635312124657', '2021-10-27 13:22:16', '2021-10-27 05:22:16', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 13:22:16', NULL, '2022-02-27 04:15:28', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for pay_order -- ---------------------------- DROP TABLE IF EXISTS `pay_order`; -CREATE TABLE `pay_order` ( +CREATE TABLE `pay_order` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '支付订单编号', `merchant_id` bigint NOT NULL COMMENT '商户编号', `app_id` bigint NOT NULL COMMENT '应用编号', - `channel_id` bigint DEFAULT NULL COMMENT '渠道编号', - `channel_code` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '渠道编码', + `channel_id` bigint NULL DEFAULT NULL COMMENT '渠道编号', + `channel_code` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '渠道编码', `merchant_order_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '商户订单编号', `subject` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '商品标题', `body` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '商品描述', `notify_url` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '异步通知地址', `notify_status` tinyint NOT NULL COMMENT '通知商户支付结果的回调状态', `amount` bigint NOT NULL COMMENT '支付金额,单位:分', - `channel_fee_rate` double DEFAULT '0' COMMENT '渠道手续费,单位:百分比', - `channel_fee_amount` bigint DEFAULT '0' COMMENT '渠道手续金额,单位:分', + `channel_fee_rate` double NULL DEFAULT 0 COMMENT '渠道手续费,单位:百分比', + `channel_fee_amount` bigint NULL DEFAULT 0 COMMENT '渠道手续金额,单位:分', `status` tinyint NOT NULL COMMENT '支付状态', `user_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '用户 IP', `expire_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '订单失效时间', - `success_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '订单支付成功时间', - `notify_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '订单支付通知时间', - `success_extension_id` bigint DEFAULT NULL COMMENT '支付成功的订单拓展单编号', + `success_time` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '订单支付成功时间', + `notify_time` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '订单支付通知时间', + `success_extension_id` bigint NULL DEFAULT NULL COMMENT '支付成功的订单拓展单编号', `refund_status` tinyint NOT NULL COMMENT '退款状态', `refund_times` tinyint NOT NULL COMMENT '退款次数', `refund_amount` bigint NOT NULL COMMENT '退款总金额,单位:分', - `channel_user_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '渠道用户编号', - `channel_order_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '渠道订单号', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `channel_user_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '渠道用户编号', + `channel_order_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '渠道订单号', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=125 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='支付订单\n'; +) ENGINE = InnoDB AUTO_INCREMENT = 125 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '支付订单\n'; -- ---------------------------- -- Records of pay_order -- ---------------------------- BEGIN; -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (10, 1, 6, NULL, NULL, '1634988463462', '标题', '内容', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-24 19:27:43', '2021-10-23 11:27:43', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-23 19:27:44', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (11, 1, 6, NULL, NULL, '1635088798052', '标题:1635088798052', '内容:1635088798052', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:19:58', '2021-10-24 15:19:58', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:19:58', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (12, 1, 6, NULL, NULL, '1635088829013', '标题:1635088829013', '内容:1635088829013', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:20:29', '2021-10-24 15:20:29', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:20:29', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (13, 1, 6, NULL, NULL, '1635088934120', '标题:1635088934120', '内容:1635088934120', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:22:14', '2021-10-24 15:22:14', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:22:14', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (14, 1, 6, NULL, NULL, '1635088936920', '标题:1635088936920', '内容:1635088936920', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:22:17', '2021-10-24 15:22:16', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:22:17', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (15, 1, 6, NULL, NULL, '1635088943990', '标题:1635088943990', '内容:1635088943990', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:22:24', '2021-10-24 15:22:24', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:22:24', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (16, 1, 6, NULL, NULL, '1635088976396', '标题:1635088976396', '内容:1635088976396', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:22:56', '2021-10-24 15:22:56', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:22:56', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (17, 1, 6, NULL, NULL, '1635088979514', '标题:1635088979514', '内容:1635088979514', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:23:00', '2021-10-24 15:22:59', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:23:00', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (18, 1, 6, NULL, NULL, '1635089022772', '标题:1635089022772', '内容:1635089022772', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:23:43', '2021-10-24 15:23:42', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:23:43', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (19, 1, 6, NULL, NULL, '1635089029019', '标题:1635089029019', '内容:1635089029019', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:23:49', '2021-10-24 15:23:49', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:23:49', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (20, 1, 6, NULL, NULL, '1635089125167', '标题:1635089125167', '内容:1635089125167', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:25:25', '2021-10-24 15:25:25', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:25:25', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (21, 1, 6, NULL, NULL, '1635089133667', '标题:1635089133667', '内容:1635089133667', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:25:34', '2021-10-24 15:25:33', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:25:34', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (22, 1, 6, NULL, NULL, '1635089160201', '标题:1635089160201', '内容:1635089160201', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:26:00', '2021-10-24 15:26:00', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:26:00', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (23, 1, 6, NULL, NULL, '1635089171152', '标题:1635089171152', '内容:1635089171152', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:26:11', '2021-10-24 15:26:11', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:26:11', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (24, 1, 6, NULL, NULL, '1635089171281', '标题:1635089171281', '内容:1635089171281', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:26:11', '2021-10-24 15:26:11', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:26:11', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25, 1, 6, NULL, NULL, '1635089177510', '标题:1635089177510', '内容:1635089177510', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:26:18', '2021-10-24 15:26:17', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:26:18', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26, 1, 6, NULL, NULL, '1635089179921', '标题:1635089179921', '内容:1635089179921', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:26:20', '2021-10-24 15:26:19', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:26:20', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (27, 1, 6, NULL, NULL, '1635089209386', '标题:1635089209386', '内容:1635089209386', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:26:49', '2021-10-24 15:26:49', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:26:49', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (28, 1, 6, NULL, NULL, '1635089217890', '标题:1635089217890', '内容:1635089217890', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:26:58', '2021-10-24 15:26:57', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:26:58', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (29, 1, 6, NULL, NULL, '1635089222164', '标题:1635089222163', '内容:1635089222163', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:27:02', '2021-10-24 15:27:02', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:27:02', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (30, 1, 6, NULL, NULL, '1635089267113', '标题:1635089267113', '内容:1635089267113', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:27:47', '2021-10-24 15:27:47', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:27:47', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (31, 1, 6, NULL, NULL, '1635089268654', '标题:1635089268654', '内容:1635089268654', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:27:49', '2021-10-24 15:27:48', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:27:49', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (32, 1, 6, NULL, NULL, '1635089310024', '标题:1635089310024', '内容:1635089310024', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:28:30', '2021-10-24 15:28:30', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:28:30', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (33, 1, 6, NULL, NULL, '1635089314276', '标题:1635089314276', '内容:1635089314276', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:28:34', '2021-10-24 15:28:34', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:28:34', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (34, 1, 6, NULL, NULL, '1635089325747', '标题:1635089325747', '内容:1635089325747', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:28:46', '2021-10-24 15:28:45', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:28:46', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (35, 1, 6, NULL, NULL, '1635089412828', '标题:1635089412828', '内容:1635089412828', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:30:13', '2021-10-24 15:30:12', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:30:13', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (36, 1, 6, NULL, NULL, '1635089423488', '标题:1635089423488', '内容:1635089423488', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:30:23', '2021-10-24 15:30:23', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:30:24', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (37, 1, 6, NULL, NULL, '1635089444235', '标题:1635089444235', '内容:1635089444235', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:30:44', '2021-10-24 15:30:44', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:30:44', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (38, 1, 6, NULL, NULL, '1635089448403', '标题:1635089448403', '内容:1635089448403', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:30:48', '2021-10-24 15:30:48', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:30:48', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (39, 1, 6, NULL, NULL, '1635089556720', '标题:1635089556720', '内容:1635089556720', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:32:37', '2021-10-24 15:32:36', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:32:37', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (40, 1, 6, NULL, NULL, '1635089561277', '标题:1635089561277', '内容:1635089561277', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:32:41', '2021-10-24 15:32:41', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:32:41', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (41, 1, 6, NULL, NULL, '1635089563908', '标题:1635089563908', '内容:1635089563908', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:32:44', '2021-10-24 15:32:43', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:32:44', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (42, 1, 6, NULL, NULL, '1635089576165', '标题:1635089576165', '内容:1635089576165', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:32:56', '2021-10-24 15:32:56', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:32:56', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (43, 1, 6, NULL, NULL, '1635089833753', '标题:1635089833753', '内容:1635089833753', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:37:14', '2021-10-24 15:37:13', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:37:14', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (44, 1, 6, NULL, NULL, '1635089864519', '标题:1635089864519', '内容:1635089864519', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:37:45', '2021-10-24 15:37:44', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:37:45', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (45, 1, 6, NULL, NULL, '1635089946932', '标题:1635089946932', '内容:1635089946932', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:39:07', '2021-10-24 15:39:06', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:39:07', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (46, 1, 6, NULL, NULL, '1635089950125', '标题:1635089950125', '内容:1635089950125', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:39:10', '2021-10-24 15:39:10', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:39:10', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (47, 1, 6, NULL, NULL, '1635089977784', '标题:1635089977784', '内容:1635089977784', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:39:38', '2021-10-24 15:39:37', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:39:38', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (48, 1, 6, NULL, NULL, '1635089978099', '标题:1635089978099', '内容:1635089978099', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:39:38', '2021-10-24 15:39:38', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:39:38', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (49, 1, 6, NULL, NULL, '1635089982848', '标题:1635089982848', '内容:1635089982848', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:39:43', '2021-10-24 15:39:42', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:39:43', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (50, 1, 6, NULL, NULL, '1635090084470', '标题:1635090084470', '内容:1635090084470', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:41:24', '2021-10-24 15:41:24', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:41:24', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (51, 1, 6, NULL, NULL, '1635090139009', '标题:1635090139009', '内容:1635090139009', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:42:19', '2021-10-24 15:42:19', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:42:19', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (52, 1, 6, NULL, NULL, '1635090153216', '标题:1635090153216', '内容:1635090153216', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:42:33', '2021-10-24 15:42:33', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:42:33', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (53, 1, 6, NULL, NULL, '1635090158589', '标题:1635090158589', '内容:1635090158589', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:42:39', '2021-10-24 15:42:38', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:42:39', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (54, 1, 6, NULL, NULL, '1635090265951', '标题:1635090265951', '内容:1635090265951', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:44:26', '2021-10-24 15:44:25', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:44:26', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (55, 1, 6, NULL, NULL, '1635090284982', '标题:1635090284982', '内容:1635090284982', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:44:45', '2021-10-24 15:44:45', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:44:45', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (56, 1, 6, NULL, NULL, '1635090286709', '标题:1635090286709', '内容:1635090286709', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:44:47', '2021-10-24 15:44:46', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:44:47', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (57, 1, 6, NULL, NULL, '1635090358714', '标题:1635090358714', '内容:1635090358714', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:45:59', '2021-10-24 15:45:58', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:45:59', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (58, 1, 6, NULL, NULL, '1635090365901', '标题:1635090365901', '内容:1635090365901', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:46:06', '2021-10-24 15:46:05', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:46:06', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (59, 1, 6, NULL, NULL, '1635122297240', '标题:1635122297240', '内容:1635122297240', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:38:17', '2021-10-25 00:38:17', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:38:17', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (60, 1, 6, NULL, NULL, '1635122329998', '标题:1635122329998', '内容:1635122329998', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:38:50', '2021-10-25 00:38:50', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:38:50', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (61, 1, 6, NULL, NULL, '1635122358555', '标题:1635122358555', '内容:1635122358555', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:39:19', '2021-10-25 00:39:18', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:39:19', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (62, 1, 6, NULL, NULL, '1635122446577', '标题:1635122446577', '内容:1635122446577', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:40:47', '2021-10-25 00:40:46', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:40:47', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (63, 1, 6, NULL, NULL, '1635122486835', '标题:1635122486835', '内容:1635122486835', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:41:27', '2021-10-25 00:41:26', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:41:27', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (64, 1, 6, NULL, NULL, '1635122490656', '标题:1635122490656', '内容:1635122490656', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:41:31', '2021-10-25 00:41:30', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:41:31', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (65, 1, 6, NULL, NULL, '1635122508318', '标题:1635122508318', '内容:1635122508318', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:41:48', '2021-10-25 00:41:48', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:41:48', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (66, 1, 6, NULL, NULL, '1635122538233', '标题:1635122538233', '内容:1635122538233', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:42:18', '2021-10-25 00:42:18', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:42:18', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (67, 1, 6, NULL, NULL, '1635122700108', '标题:1635122700108', '内容:1635122700108', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:45:00', '2021-10-25 00:45:00', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:45:00', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (68, 1, 6, NULL, NULL, '1635122739305', '标题:1635122739305', '内容:1635122739305', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:45:39', '2021-10-25 00:45:39', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:45:39', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (69, 1, 6, NULL, NULL, '1635122743771', '标题:1635122743771', '内容:1635122743771', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:45:44', '2021-10-25 00:45:43', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:45:44', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (70, 1, 6, NULL, NULL, '1635122827585', '标题:1635122827585', '内容:1635122827585', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:47:08', '2021-10-25 00:47:07', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:47:08', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (71, 1, 6, NULL, NULL, '1635122867264', '标题:1635122867264', '内容:1635122867264', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:47:47', '2021-10-25 00:47:47', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:47:47', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (72, 1, 6, NULL, NULL, '1635122869903', '标题:1635122869903', '内容:1635122869903', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:47:50', '2021-10-25 00:47:49', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:47:50', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (73, 1, 6, NULL, NULL, '1635122883742', '标题:1635122883742', '内容:1635122883742', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:48:04', '2021-10-25 00:48:03', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:48:04', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (74, 1, 6, NULL, NULL, '1635122885267', '标题:1635122885267', '内容:1635122885267', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:48:05', '2021-10-25 00:48:05', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:48:05', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (75, 1, 6, NULL, NULL, '1635122885582', '标题:1635122885582', '内容:1635122885582', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:48:06', '2021-10-25 00:48:05', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:48:06', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (76, 1, 6, NULL, NULL, '1635122918126', '标题:1635122918126', '内容:1635122918126', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:48:38', '2021-10-25 00:48:38', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:48:38', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (77, 1, 6, NULL, NULL, '1635123030294', '标题:1635123030294', '内容:1635123030294', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:50:30', '2021-10-25 00:50:30', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:50:30', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (78, 1, 6, NULL, NULL, '1635123068343', '标题:1635123068343', '内容:1635123068343', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:51:08', '2021-10-25 00:51:08', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:51:08', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (79, 1, 6, NULL, NULL, '1635123073596', '标题:1635123073596', '内容:1635123073596', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:51:14', '2021-10-25 00:51:13', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:51:14', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (80, 1, 6, NULL, NULL, '1635123195063', '标题:1635123195063', '内容:1635123195063', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 08:53:15', '2021-10-25 00:53:15', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:53:15', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (81, 1, 6, NULL, NULL, '1635123692042', '标题:1635123692042', '内容:1635123692042', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:01:32', '2021-10-25 01:01:32', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:01:32', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (82, 1, 6, NULL, NULL, '1635123806943', '标题:1635123806943', '内容:1635123806943', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:03:27', '2021-10-25 01:03:26', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:03:27', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (83, 1, 6, NULL, NULL, '1635123948382', '标题:1635123948382', '内容:1635123948382', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:05:48', '2021-10-25 01:05:48', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:05:48', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (84, 1, 6, NULL, NULL, '1635123961537', '标题:1635123961537', '内容:1635123961537', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:06:02', '2021-10-25 01:06:01', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:06:02', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (85, 1, 6, NULL, NULL, '1635124136136', '标题:1635124136136', '内容:1635124136136', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:08:56', '2021-10-25 01:08:56', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:08:56', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (86, 1, 6, NULL, NULL, '1635124373620', '标题:1635124373620', '内容:1635124373620', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:12:54', '2021-10-25 01:12:53', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:12:54', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (87, 1, 6, NULL, NULL, '1635124391618', '标题:1635124391618', '内容:1635124391618', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:13:12', '2021-10-25 01:13:11', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:13:12', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (88, 1, 6, NULL, NULL, '1635125520387', '标题:1635125520387', '内容:1635125520387', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:32:00', '2021-10-25 01:32:00', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:32:00', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (89, 1, 6, NULL, NULL, '1635126846741', '标题:1635126846741', '内容:1635126846741', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:54:07', '2021-10-25 01:54:06', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:54:07', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (90, 1, 6, NULL, NULL, '1635126932826', '标题:1635126932826', '内容:1635126932826', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:55:33', '2021-10-25 01:55:32', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:55:33', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (91, 1, 6, NULL, NULL, '1635127428562', '标题:1635127428562', '内容:1635127428562', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 10:03:49', '2021-10-25 02:03:48', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 10:03:49', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (92, 1, 6, NULL, NULL, '1635211245454', '标题:1635211245454', '内容:1635211245454', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.98.72', '2021-10-27 09:20:45', '2021-10-26 01:20:45', '2021-10-26 01:20:45', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:20:46', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (93, 1, 6, NULL, NULL, '1635211270009', '标题:1635211270009', '内容:1635211270009', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.98.72', '2021-10-27 09:21:10', '2021-10-26 01:21:10', '2021-10-26 01:21:10', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:21:10', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (94, 1, 6, NULL, NULL, '1635211368329', '标题:1635211368329', '内容:1635211368329', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.98.72', '2021-10-27 09:22:48', '2021-10-26 01:22:48', '2021-10-26 01:22:48', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:22:48', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (95, 1, 6, NULL, NULL, '1635211489276', '标题:1635211489276', '内容:1635211489276', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.98.72', '2021-10-27 09:24:49', '2021-10-26 01:24:49', '2021-10-26 01:24:49', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:24:49', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (96, 1, 6, NULL, NULL, '1635211845846', '标题:1635211845846', '内容:1635211845846', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.98.72', '2021-10-27 09:30:46', '2021-10-26 01:30:45', '2021-10-26 01:30:45', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:30:46', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (97, 1, 6, NULL, NULL, '1635212063323', '标题:1635212063323', '内容:1635212063323', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.98.72', '2021-10-27 09:34:23', '2021-10-26 01:34:23', '2021-10-26 01:34:23', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:34:23', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (98, 1, 6, NULL, NULL, '1635212315488', '标题:1635212315487', '内容:1635212315487', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.98.72', '2021-10-27 09:38:35', '2021-10-26 01:38:35', '2021-10-26 01:38:35', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:38:36', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (99, 1, 6, NULL, NULL, '1635212375595', '标题:1635212375595', '内容:1635212375595', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.98.72', '2021-10-27 09:39:36', '2021-10-26 01:39:35', '2021-10-26 01:39:35', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:39:36', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (100, 1, 6, 9, 'wx_pub', '1635212461835', '标题:1635212461835', '内容:1635212461835', 'http://127.0.0.1', 0, 1, 0, 0, 10, '101.82.98.72', '2021-10-27 09:41:02', '2021-10-26 09:41:15', '2021-10-26 09:41:54', 78, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:41:02', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (101, 1, 6, 9, 'wx_pub', '1635212524100', '标题:1635212524100', '内容:1635212524100', 'http://127.0.0.1', 0, 1, 0, 0, 10, '101.82.98.72', '2021-10-27 09:42:04', '2021-10-26 09:42:15', '2021-10-26 09:42:27', 79, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:42:04', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (102, 1, 6, 9, 'wx_pub', '1635212576678', '标题:1635212576678', '内容:1635212576678', 'http://127.0.0.1', 0, 1, 0, 0, 10, '101.82.98.72', '2021-10-27 09:42:57', '2021-10-26 09:43:16', '2021-10-26 09:43:17', 81, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:42:57', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (103, 1, 6, 9, 'wx_pub', '1635212929429', '标题:1635212929428', '内容:1635212929428', 'http://127.0.0.1', 0, 1, 0, 0, 10, '101.82.98.72', '2021-10-27 09:48:49', '2021-10-26 09:48:55', '2021-10-26 09:48:56', 82, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001151202110263761187715', NULL, '2021-10-26 09:48:49', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (104, 1, 6, NULL, NULL, '1635295769583', '标题:1635295769583', '内容:1635295769583', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 0, '101.82.181.148', '2021-10-28 08:49:30', '2021-10-27 00:49:29', '2021-10-27 00:49:29', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-27 08:49:30', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (105, 1, 6, 9, 'wx_pub', '1635295878514', '标题:1635295878514', '内容:1635295878514', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 08:51:19', '2021-10-27 08:51:32', '2021-10-27 08:51:33', 83, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001175202110273387197932', NULL, '2021-10-27 08:51:19', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (106, 1, 6, 9, 'wx_pub', '1635296883074', '标题:1635296883074', '内容:1635296883074', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:08:03', '2021-10-27 09:08:11', '2021-10-27 09:08:12', 84, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001183202110271706103601', NULL, '2021-10-27 09:08:03', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (107, 1, 6, 9, 'wx_pub', '1635297635297', '标题:1635297635297', '内容:1635297635297', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:20:35', '2021-10-27 09:20:58', '2021-10-27 09:20:59', 85, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001173202110274487848024', NULL, '2021-10-27 09:20:35', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (108, 1, 6, 9, 'wx_pub', '1635297700295', '标题:1635297700295', '内容:1635297700295', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:21:40', '2021-10-27 09:21:54', '2021-10-27 09:21:55', 86, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001194202110270081665611', NULL, '2021-10-27 09:21:40', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (109, 1, 6, 9, 'wx_pub', '1635298128448', '标题:1635298128448', '内容:1635298128448', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:28:48', '2021-10-27 09:28:56', '2021-10-27 09:28:57', 87, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001163202110279271204066', NULL, '2021-10-27 09:28:49', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (110, 1, 6, 9, 'wx_pub', '1635298196716', '标题:1635298196716', '内容:1635298196716', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:29:57', '2021-10-27 09:30:04', '2021-10-27 09:30:05', 88, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001178202110270321083776', NULL, '2021-10-27 09:29:57', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (111, 1, 6, 9, 'wx_pub', '1635298542165', '标题:1635298542165', '内容:1635298542165', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:35:42', '2021-10-27 09:35:48', '2021-10-27 09:35:49', 89, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001165202110279375621615', NULL, '2021-10-27 09:35:42', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (112, 1, 6, 9, 'wx_pub', '1635298736280', '标题:1635298736280', '内容:1635298736280', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:38:56', '2021-10-27 09:39:07', '2021-10-27 09:39:08', 91, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001169202110279628461999', NULL, '2021-10-27 09:38:56', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (113, 1, 6, 9, 'wx_pub', '1635298796688', '标题:1635298796688', '内容:1635298796688', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:39:57', '2021-10-27 09:40:20', '2021-10-27 09:40:21', 93, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001180202110276135740320', NULL, '2021-10-27 09:39:57', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (114, 1, 6, 9, 'wx_pub', '1635299148566', '标题:1635299148566', '内容:1635299148566', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:45:49', '2021-10-27 09:45:56', '2021-10-27 09:45:57', 94, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001305202110277322382253', NULL, '2021-10-27 09:45:49', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (115, 1, 6, 9, 'wx_pub', '1635300261266', '标题:1635300261266', '内容:1635300261266', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 10:04:21', '2021-10-27 10:04:28', '2021-10-27 10:04:29', 95, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001201202110271614745531', NULL, '2021-10-27 10:04:21', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (116, 1, 6, NULL, NULL, '1635311351736', '标题:1635311351736', '内容:1635311351736', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 0, '101.82.233.75', '2021-10-28 13:09:12', '2021-10-27 05:09:11', '2021-10-27 05:09:11', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-27 13:09:12', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (117, 1, 6, 9, 'wx_pub', '1635311468233', '标题:1635311468233', '内容:1635311468233', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.233.75', '2021-10-28 13:11:08', '2021-10-27 13:11:15', '2021-10-27 13:11:16', 96, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001194202110276752100612', NULL, '2021-10-27 13:11:08', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (118, 1, 6, 9, 'wx_pub', '1635311823086', '标题:1635311823086', '内容:1635311823086', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.233.75', '2021-10-28 13:17:03', '2021-10-27 13:17:08', '2021-10-27 13:17:09', 97, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001167202110271022491439', NULL, '2021-10-27 13:17:03', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (119, 1, 6, 9, 'wx_pub', '1635311881440', '标题:1635311881439', '内容:1635311881439', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.233.75', '2021-10-28 13:18:01', '2021-10-27 13:18:10', '2021-10-27 13:18:11', 98, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001173202110272847982104', NULL, '2021-10-27 13:18:02', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (120, 1, 6, 9, 'wx_pub', '1635311949168', '标题:1635311949168', '内容:1635311949168', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.233.75', '2021-10-28 13:19:09', '2021-10-27 13:19:15', '2021-10-27 13:19:15', 99, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001181202110277723215336', NULL, '2021-10-27 13:19:09', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (121, 1, 6, 9, 'wx_pub', '1635312124657', '标题:1635312124656', '内容:1635312124656', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.233.75', '2021-10-28 13:22:05', '2021-10-27 13:22:15', '2021-10-27 13:22:16', 100, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001174202110278060590766', NULL, '2021-10-27 13:22:05', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (122, 1, 6, NULL, NULL, 'MO202202040132467240000', '标题:1643909566722', '内容:1643909566722', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 200, 0, 0, 0, '127.0.0.1', '2022-02-05 01:32:47', '2022-02-03 17:32:46', '2022-02-03 17:32:46', NULL, 0, 0, 0, NULL, NULL, NULL, '2022-02-04 01:32:47', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (123, 1, 6, NULL, NULL, 'MO202202040133442390001', '标题:1643909624239', '内容:1643909624239', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 200, 0, 0, 0, '127.0.0.1', '2022-02-05 01:33:44', '2022-02-03 17:33:44', '2022-02-03 17:33:44', NULL, 0, 0, 0, NULL, NULL, NULL, '2022-02-04 01:33:44', NULL, '2022-02-27 04:16:16', b'0', 1); -INSERT INTO `pay_order` (`id`, `merchant_id`, `app_id`, `channel_id`, `channel_code`, `merchant_order_id`, `subject`, `body`, `notify_url`, `notify_status`, `amount`, `channel_fee_rate`, `channel_fee_amount`, `status`, `user_ip`, `expire_time`, `success_time`, `notify_time`, `success_extension_id`, `refund_status`, `refund_times`, `refund_amount`, `channel_user_id`, `channel_order_no`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (124, 1, 6, NULL, NULL, 'MO202202040134042400002', '标题:1643909644240', '内容:1643909644240', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 200, 0, 0, 0, '127.0.0.1', '2022-02-05 01:34:04', '2022-02-03 17:34:04', '2022-02-03 17:34:04', NULL, 0, 0, 0, NULL, NULL, NULL, '2022-02-04 01:34:04', NULL, '2022-02-27 04:16:16', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for pay_order_extension -- ---------------------------- DROP TABLE IF EXISTS `pay_order_extension`; -CREATE TABLE `pay_order_extension` ( +CREATE TABLE `pay_order_extension` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '支付订单编号', `no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '支付订单号', `order_id` bigint NOT NULL COMMENT '支付订单编号', @@ -2516,121 +1068,28 @@ CREATE TABLE `pay_order_extension` ( `channel_code` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '渠道编码', `user_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '用户 IP', `status` tinyint NOT NULL COMMENT '支付状态', - `channel_extras` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '支付渠道的额外参数', - `channel_notify_data` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '支付渠道异步通知的内容', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `channel_extras` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '支付渠道的额外参数', + `channel_notify_data` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '支付渠道异步通知的内容', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=124 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='支付订单\n'; +) ENGINE = InnoDB AUTO_INCREMENT = 124 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '支付订单\n'; -- ---------------------------- -- Records of pay_order_extension -- ---------------------------- BEGIN; -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (9, '', 1, 0, '', '', 0, '', '2021-10-23 09:27:37', NULL, '2021-10-23 17:12:10', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (10, '20211023193842142492', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 19:38:42', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (11, '20211023193939910727', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 19:39:40', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (12, '20211023193959120765', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 19:40:00', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (13, '20211023194227878115', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 19:42:27', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (14, '20211023194954819846', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 19:49:55', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (15, '20211023195101845551', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 19:51:02', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (16, '20211023195217837007', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 19:52:18', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (17, '20211023195729876366', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 19:57:29', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (18, '20211023200000426986', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 20:00:00', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (19, '20211023200023656577', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 20:00:23', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (20, '20211023200035442235', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 20:00:35', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (21, '20211023200108884896', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 20:01:08', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (22, '20211023200148935150', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 20:01:49', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (23, '20211023200246679654', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 20:02:46', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (24, '20211023200952513780', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 20:09:52', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (25, '20211024233244795306', 41, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:32:45', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (26, '20211024233303886430', 42, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:33:03', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (27, '20211024233332176343', 42, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:33:33', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (28, '20211024233747270447', 44, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:37:47', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (29, '20211024233813637832', 44, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:38:13', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (30, '20211024233912251285', 46, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:39:13', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (31, '20211024233944497880', 49, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:39:45', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (32, '20211024234241316516', 53, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:42:41', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (33, '20211024234427711411', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:28', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (34, '20211024234428149145', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:28', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (35, '20211024234429753909', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:29', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (36, '20211024234429396293', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:30', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (37, '20211024234429401965', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:30', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (38, '20211024234430210068', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:30', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (39, '20211024234430964487', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:30', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (40, '20211024234430380287', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:30', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (41, '20211024234430758697', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:31', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (42, '20211024234448627934', 56, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:49', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (43, '20211024234453140708', 56, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:54', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (44, '20211024234607812259', 58, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:46:07', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (45, '20211025084152506777', 65, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:41:52', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (46, '20211025084218756961', 66, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:42:19', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (47, '20211025084223637696', 66, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:42:24', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (48, '20211025084545919504', 69, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:45:46', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (49, '20211025084547682989', 69, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:45:47', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (50, '20211025085031437385', 77, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:50:31', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (51, '20211025085114816101', 79, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:51:14', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (52, '20211025085307768616', 79, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:53:07', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (53, '20211025085315553301', 80, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:53:15', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (54, '20211025091312320198', 87, 9, 'wx_pub', '101.82.138.223', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-25 09:13:13', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (55, '20211025091322710425', 87, 9, 'wx_pub', '101.82.138.223', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-25 09:13:22', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (56, '20211025091405316694', 87, 9, 'wx_pub', '101.82.138.223', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-25 09:14:06', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (57, '20211025091429783090', 87, 9, 'wx_pub', '101.82.138.223', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-25 09:14:29', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (58, '20211025091457423311', 87, 9, 'wx_pub', '101.82.138.223', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-25 09:14:57', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (59, '20211025091651245779', 87, 9, 'wx_pub', '101.82.138.223', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-25 09:16:52', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (60, '20211025093153397917', 87, 9, 'wx_pub', '101.82.138.223', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-25 09:31:53', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (61, '20211025093201208115', 88, 9, 'wx_pub', '101.82.138.223', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-25 09:32:01', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (62, '20211025095407668368', 89, 9, 'wx_pub', '101.82.138.223', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-25 09:54:08', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (63, '20211025095445170008', 89, 9, 'wx_pub', '101.82.138.223', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-25 09:54:45', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (64, '20211025095508568823', 89, 9, 'wx_pub', '101.82.138.223', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-25 09:55:08', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (65, '20211025095523349753', 89, 9, 'wx_pub', '101.82.138.223', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-25 09:55:24', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (66, '20211025095530432861', 89, 9, 'wx_pub', '101.82.138.223', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-25 09:55:30', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (67, '20211025095534847863', 90, 9, 'wx_pub', '101.82.138.223', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-25 09:55:35', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (68, '20211025100349356411', 91, 9, 'wx_pub', '101.82.138.223', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-25 10:03:49', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (69, '20211026092058874496', 92, 9, 'wx_pub', '101.82.98.72', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-26 09:20:58', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (70, '20211026092257213499', 94, 9, 'wx_pub', '101.82.98.72', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-26 09:22:57', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (71, '20211026092451868262', 95, 9, 'wx_pub', '101.82.98.72', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-26 09:24:51', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (72, '20211026093046878736', 96, 9, 'wx_pub', '101.82.98.72', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-26 09:30:47', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (73, '20211026093409899041', 96, 9, 'wx_pub', '101.82.98.72', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-26 09:34:09', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (74, '20211026093425988092', 97, 9, 'wx_pub', '101.82.98.72', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-26 09:34:25', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (75, '20211026093911898026', 98, 9, 'wx_pub', '101.82.98.72', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-26 09:39:12', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (76, '20211026093936195779', 99, 9, 'wx_pub', '101.82.98.72', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-26 09:39:36', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (77, '20211026094104450323', 100, 9, 'wx_pub', '101.82.98.72', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-26 09:41:05', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (78, '20211026094109746189', 100, 9, 'wx_pub', '101.82.98.72', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-26 09:41:09', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (79, '20211026094205207212', 101, 9, 'wx_pub', '101.82.98.72', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-26 09:42:05', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (80, '20211026094257435456', 102, 9, 'wx_pub', '101.82.98.72', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-26 09:42:57', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (81, '20211026094302217748', 102, 9, 'wx_pub', '101.82.98.72', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-26 09:43:03', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (82, '20211026094850532322', 103, 9, 'wx_pub', '101.82.98.72', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-26 09:48:50', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (83, '20211027085119113077', 105, 9, 'wx_pub', '101.82.181.148', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-27 08:51:20', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (84, '20211027090803894341', 106, 9, 'wx_pub', '101.82.181.148', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-27 09:08:04', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (85, '20211027092036195615', 107, 9, 'wx_pub', '101.82.181.148', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-27 09:20:36', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (86, '20211027092146762628', 108, 9, 'wx_pub', '101.82.181.148', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-27 09:21:46', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (87, '20211027092849374159', 109, 9, 'wx_pub', '101.82.181.148', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-27 09:28:49', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (88, '20211027092957858804', 110, 9, 'wx_pub', '101.82.181.148', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-27 09:29:57', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (89, '20211027093542980205', 111, 9, 'wx_pub', '101.82.181.148', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-27 09:35:43', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (90, '20211027093856598882', 112, 9, 'wx_pub', '101.82.181.148', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-27 09:38:57', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (91, '20211027093901662188', 112, 9, 'wx_pub', '101.82.181.148', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-27 09:39:02', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (92, '20211027094003448769', 113, 9, 'wx_pub', '101.82.181.148', 0, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', NULL, NULL, '2021-10-27 09:40:03', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (93, '20211027094010419256', 113, 9, 'wx_pub', '101.82.181.148', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-27 09:40:11', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (94, '20211027094549230727', 114, 9, 'wx_pub', '101.82.181.148', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-27 09:45:50', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (95, '20211027100421694902', 115, 9, 'wx_pub', '101.82.181.148', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-27 10:04:22', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (96, '20211027131109347140', 117, 9, 'wx_pub', '101.82.233.75', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-27 13:11:10', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (97, '20211027131703494434', 118, 9, 'wx_pub', '101.82.233.75', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-27 13:17:04', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (98, '20211027131802329182', 119, 9, 'wx_pub', '101.82.233.75', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-27 13:18:02', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (99, '20211027131909520645', 120, 9, 'wx_pub', '101.82.233.75', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-27 13:19:10', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (100, '20211027132205235959', 121, 9, 'wx_pub', '101.82.233.75', 10, '{\"openid\":\"ockUAwIZ-0OeMZl9ogcZ4ILrGba0\"}', '\n\n\n\n\n\n\n\n\n\n\n\n\n1\n\n\n', NULL, '2021-10-27 13:22:06', NULL, '2022-02-27 04:16:43', b'0', 1); -INSERT INTO `pay_order_extension` (`id`, `no`, `order_id`, `channel_id`, `channel_code`, `user_ip`, `status`, `channel_extras`, `channel_notify_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (123, '20220204013348653171', 123, 17, 'alipay_qr', '127.0.0.1', 0, NULL, NULL, NULL, '2022-02-04 01:33:49', NULL, '2022-02-27 04:16:43', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for pay_refund -- ---------------------------- DROP TABLE IF EXISTS `pay_refund`; -CREATE TABLE `pay_refund` ( +CREATE TABLE `pay_refund` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '支付退款编号', `merchant_id` bigint NOT NULL COMMENT '商户编号', `app_id` bigint NOT NULL COMMENT '应用编号', @@ -2647,23 +1106,23 @@ CREATE TABLE `pay_refund` ( `pay_amount` bigint NOT NULL COMMENT '支付金额,单位分', `refund_amount` bigint NOT NULL COMMENT '退款金额,单位分', `reason` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '退款原因', - `user_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '用户 IP', + `user_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '用户 IP', `channel_order_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '渠道订单号,pay_order 中的channel_order_no 对应', - `channel_refund_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '渠道退款单号,渠道返回', - `channel_error_code` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '渠道调用报错时,错误码', - `channel_error_msg` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '渠道调用报错时,错误信息', - `channel_extras` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '支付渠道的额外参数', - `expire_time` datetime DEFAULT NULL COMMENT '退款失效时间', - `success_time` datetime DEFAULT NULL COMMENT '退款成功时间', - `notify_time` datetime DEFAULT NULL COMMENT '退款通知时间', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `channel_refund_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '渠道退款单号,渠道返回', + `channel_error_code` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '渠道调用报错时,错误码', + `channel_error_msg` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '渠道调用报错时,错误信息', + `channel_extras` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '支付渠道的额外参数', + `expire_time` datetime NULL DEFAULT NULL COMMENT '退款失效时间', + `success_time` datetime NULL DEFAULT NULL COMMENT '退款成功时间', + `notify_time` datetime NULL DEFAULT NULL COMMENT '退款通知时间', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='退款订单'; +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '退款订单'; -- ---------------------------- -- Records of pay_refund @@ -2675,23 +1134,23 @@ COMMIT; -- Table structure for system_dept -- ---------------------------- DROP TABLE IF EXISTS `system_dept`; -CREATE TABLE `system_dept` ( +CREATE TABLE `system_dept` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '部门id', `name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '部门名称', - `parent_id` bigint NOT NULL DEFAULT '0' COMMENT '父部门id', - `sort` int NOT NULL DEFAULT '0' COMMENT '显示顺序', - `leader_user_id` bigint DEFAULT NULL COMMENT '负责人', - `phone` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '联系电话', - `email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '邮箱', + `parent_id` bigint NOT NULL DEFAULT 0 COMMENT '父部门id', + `sort` int NOT NULL DEFAULT 0 COMMENT '显示顺序', + `leader_user_id` bigint NULL DEFAULT NULL COMMENT '负责人', + `phone` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '联系电话', + `email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '邮箱', `status` tinyint NOT NULL COMMENT '部门状态(0正常 1停用)', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=112 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='部门表'; +) ENGINE = InnoDB AUTO_INCREMENT = 112 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '部门表'; -- ---------------------------- -- Records of system_dept @@ -2715,23 +1174,23 @@ COMMIT; -- Table structure for system_dict_data -- ---------------------------- DROP TABLE IF EXISTS `system_dict_data`; -CREATE TABLE `system_dict_data` ( +CREATE TABLE `system_dict_data` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '字典编码', - `sort` int NOT NULL DEFAULT '0' COMMENT '字典排序', + `sort` int NOT NULL DEFAULT 0 COMMENT '字典排序', `label` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '字典标签', `value` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '字典键值', `dict_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '字典类型', - `status` tinyint NOT NULL DEFAULT '0' COMMENT '状态(0正常 1停用)', - `color_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '颜色类型', - `css_class` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT 'css 样式', - `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `status` tinyint NOT NULL DEFAULT 0 COMMENT '状态(0正常 1停用)', + `color_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '颜色类型', + `css_class` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT 'css 样式', + `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=1155 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='字典数据表'; +) ENGINE = InnoDB AUTO_INCREMENT = 1155 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '字典数据表'; -- ---------------------------- -- Records of system_dict_data @@ -2745,13 +1204,13 @@ INSERT INTO `system_dict_data` (`id`, `sort`, `label`, `value`, `dict_type`, `st INSERT 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, '自定义', '2', 'infra_config_type', 0, 'primary', '', '参数类型 - 自定义', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 19:06:07', b'0'); INSERT 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, '通知', '1', 'system_notice_type', 0, 'success', '', '通知', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 13:05:57', b'0'); INSERT 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, '公告', '2', 'system_notice_type', 0, 'info', '', '公告', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 13:06:01', b'0'); -INSERT 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, '其它', '0', 'system_type', 0, 'default', '', '其它操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:32:46', b'0'); -INSERT 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, '查询', '1', 'system_type', 0, 'info', '', '查询操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:16', b'0'); -INSERT 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, '新增', '2', 'system_type', 0, 'primary', '', '新增操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:13', b'0'); -INSERT 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, '修改', '3', 'system_type', 0, 'warning', '', '修改操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:22', b'0'); -INSERT 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, '删除', '4', 'system_type', 0, 'danger', '', '删除操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:27', b'0'); -INSERT 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, '导出', '5', 'system_type', 0, 'default', '', '导出操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:32', b'0'); -INSERT 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, '导入', '6', 'system_type', 0, 'default', '', '导入操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:35', b'0'); +INSERT 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, '其它', '0', 'system_operate_type', 0, 'default', '', '其它操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:32:46', b'0'); +INSERT 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, '查询', '1', 'system_operate_type', 0, 'info', '', '查询操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:16', b'0'); +INSERT 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, '新增', '2', 'system_operate_type', 0, 'primary', '', '新增操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:13', b'0'); +INSERT 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, '修改', '3', 'system_operate_type', 0, 'warning', '', '修改操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:22', b'0'); +INSERT 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, '删除', '4', 'system_operate_type', 0, 'danger', '', '删除操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:27', b'0'); +INSERT 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, '导出', '5', 'system_operate_type', 0, 'default', '', '导出操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:32', b'0'); +INSERT 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, '导入', '6', 'system_operate_type', 0, 'default', '', '导入操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:35', b'0'); INSERT 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, '开启', '0', 'common_status', 0, 'primary', '', '开启状态', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 08:00:39', b'0'); INSERT 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, '关闭', '1', 'common_status', 0, 'info', '', '关闭状态', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 08:00:44', b'0'); INSERT 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, '目录', '1', 'system_menu_type', 0, '', '', '目录', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:43:45', b'0'); @@ -2777,7 +1236,6 @@ INSERT INTO `system_dict_data` (`id`, `sort`, `label`, `value`, `dict_type`, `st INSERT INTO `system_dict_data` (`id`, `sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (49, 3, '固定超时', '3', 'infra_redis_timeout_type', 0, 'success', '', 'Redis 设置了过期时间', '', '2021-01-26 00:55:26', '1', '2022-02-16 19:03:45', b'0'); INSERT 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, '单表(增删改查)', '1', 'infra_codegen_template_type', 0, '', '', NULL, '', '2021-02-05 07:09:06', '', '2022-03-10 16:33:15', b'0'); INSERT 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, '树表(增删改查)', '2', 'infra_codegen_template_type', 0, '', '', NULL, '', '2021-02-05 07:14:46', '', '2022-03-10 16:33:19', b'0'); -INSERT INTO `system_dict_data` (`id`, `sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (52, 3, '主子表(增删改查)', '3', 'infra_codegen_template_type', 0, '', '', NULL, '', '2021-02-05 07:21:45', '', '2022-03-10 16:33:09', b'1'); INSERT 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, '初始化中', '0', 'infra_job_status', 0, 'primary', '', NULL, '', '2021-02-07 07:46:49', '1', '2022-02-16 19:33:29', b'0'); INSERT 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, '运行中', '0', 'infra_job_log_status', 0, 'primary', '', 'RUNNING', '', '2021-02-08 10:04:24', '1', '2022-02-16 19:07:48', b'0'); INSERT 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, '成功', '1', 'infra_job_log_status', 0, 'success', '', NULL, '', '2021-02-08 10:06:57', '1', '2022-02-16 19:07:52', b'0'); @@ -2837,10 +1295,6 @@ INSERT INTO `system_dict_data` (`id`, `sort`, `label`, `value`, `dict_type`, `st INSERT INTO `system_dict_data` (`id`, `sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1117, 1, '退款订单生成', '0', 'pay_refund_order_status', 0, 'primary', '', '退款订单生成', '1', '2021-12-10 16:44:44', '1', '2022-02-16 14:05:24', b'0'); INSERT 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, 2, '退款成功', '1', 'pay_refund_order_status', 0, 'success', '', '退款成功', '1', '2021-12-10 16:44:59', '1', '2022-02-16 14:05:28', b'0'); INSERT 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, 3, '退款失败', '2', 'pay_refund_order_status', 0, 'danger', '', '退款失败', '1', '2021-12-10 16:45:10', '1', '2022-02-16 14:05:34', b'0'); -INSERT INTO `system_dict_data` (`id`, `sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1120, 4, '退款中, 渠道通知结果', '3', 'pay_refund_order_status', 0, '', '', '退款中, 渠道通知结果', '1', '2021-12-10 16:45:32', '1', '2022-02-16 06:05:16', b'1'); -INSERT INTO `system_dict_data` (`id`, `sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1121, 5, '退款中, 系统查询结果', '4', 'pay_refund_order_status', 0, '', '', '退款中, 系统查询结果', '1', '2021-12-10 16:45:48', '1', '2022-02-16 06:05:12', b'1'); -INSERT INTO `system_dict_data` (`id`, `sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1122, 6, '状态未知,需要重试', '5', 'pay_refund_order_status', 0, '', '', '状态未知,需要重试', '1', '2021-12-10 16:46:03', '1', '2022-02-16 06:05:09', b'1'); -INSERT INTO `system_dict_data` (`id`, `sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1123, 7, '状态未知,系统查询结果', '6', 'pay_refund_order_status', 0, '', '', '状态未知,系统查询结果', '1', '2021-12-10 16:46:13', '1', '2022-02-16 06:05:08', b'1'); INSERT 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, 8, '退款关闭', '99', 'pay_refund_order_status', 0, 'info', '', '退款关闭', '1', '2021-12-10 16:46:26', '1', '2022-02-16 14:05:40', b'0'); INSERT INTO `system_dict_data` (`id`, `sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1125, 0, '默认', '1', 'bpm_model_category', 0, 'primary', '', '流程分类 - 默认', '1', '2022-01-02 08:41:11', '1', '2022-02-16 20:01:42', b'0'); INSERT INTO `system_dict_data` (`id`, `sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1126, 0, 'OA', '2', 'bpm_model_category', 0, 'success', '', '流程分类 - OA', '1', '2022-01-02 08:41:22', '1', '2022-02-16 20:01:50', b'0'); @@ -2878,20 +1332,20 @@ COMMIT; -- Table structure for system_dict_type -- ---------------------------- DROP TABLE IF EXISTS `system_dict_type`; -CREATE TABLE `system_dict_type` ( +CREATE TABLE `system_dict_type` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '字典主键', `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '字典名称', `type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '字典类型', - `status` tinyint NOT NULL DEFAULT '0' COMMENT '状态(0正常 1停用)', - `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `status` tinyint NOT NULL DEFAULT 0 COMMENT '状态(0正常 1停用)', + `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE, - UNIQUE KEY `dict_type` (`type`) -) ENGINE=InnoDB AUTO_INCREMENT=147 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='字典类型表'; + UNIQUE INDEX `dict_type`(`type` ASC) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 147 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '字典类型表'; -- ---------------------------- -- Records of system_dict_type @@ -2900,7 +1354,7 @@ BEGIN; INSERT INTO `system_dict_type` (`id`, `name`, `type`, `status`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1, '用户性别', 'system_user_sex', 0, NULL, 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:30:31', b'0'); INSERT INTO `system_dict_type` (`id`, `name`, `type`, `status`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (6, '参数类型', 'infra_config_type', 0, NULL, 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:36:54', b'0'); INSERT INTO `system_dict_type` (`id`, `name`, `type`, `status`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (7, '通知类型', 'system_notice_type', 0, NULL, 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:35:26', b'0'); -INSERT INTO `system_dict_type` (`id`, `name`, `type`, `status`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (9, '操作类型', 'system_type', 0, NULL, 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:32:21', b'0'); +INSERT INTO `system_dict_type` (`id`, `name`, `type`, `status`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (9, '操作类型', 'system_operate_type', 0, NULL, 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:32:21', b'0'); INSERT INTO `system_dict_type` (`id`, `name`, `type`, `status`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (10, '系统状态', 'common_status', 0, NULL, 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:21:28', b'0'); INSERT INTO `system_dict_type` (`id`, `name`, `type`, `status`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (11, 'Boolean 是否类型', 'infra_boolean_string', 0, 'boolean 转是否', '', '2021-01-19 03:20:08', '', '2022-02-01 16:37:10', b'0'); INSERT INTO `system_dict_type` (`id`, `name`, `type`, `status`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (104, '登陆结果', 'system_login_result', 0, '登陆结果', '', '2021-01-18 06:17:11', '', '2022-02-01 16:36:00', b'0'); @@ -2942,259 +1396,80 @@ COMMIT; -- Table structure for system_error_code -- ---------------------------- DROP TABLE IF EXISTS `system_error_code`; -CREATE TABLE `system_error_code` ( +CREATE TABLE `system_error_code` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '错误码编号', - `type` tinyint NOT NULL DEFAULT '0' COMMENT '错误码类型', + `type` tinyint NOT NULL DEFAULT 0 COMMENT '错误码类型', `application_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '应用名', - `code` int NOT NULL DEFAULT '0' COMMENT '错误码编码', + `code` int NOT NULL DEFAULT 0 COMMENT '错误码编码', `message` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '错误码错误提示', - `memo` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '备注', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `memo` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '备注', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=5453 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='错误码表'; +) ENGINE = InnoDB AUTO_INCREMENT = 5453 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '错误码表'; -- ---------------------------- -- Records of system_error_code -- ---------------------------- BEGIN; -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5278, 1, 'yudao-admin-server', 1009000002, '获取高亮流程图异常', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5279, 1, 'yudao-admin-server', 1009001001, '请假申请不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5280, 1, 'yudao-admin-server', 1009001002, '项目经理岗位未设置', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5281, 1, 'yudao-admin-server', 1009001009, '部门的项目经理不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5282, 1, 'yudao-admin-server', 1009001004, '部门经理岗位未设置', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5283, 1, 'yudao-admin-server', 1009001005, '部门的部门经理不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5284, 1, 'yudao-admin-server', 1009001006, 'HR岗位未设置', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5285, 1, 'yudao-admin-server', 1009001007, '请假天数必须>=1', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5286, 1, 'yudao-admin-server', 1009002000, '已经存在流程标识为【{}】的流程', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5287, 1, 'yudao-admin-server', 1009002001, '流程模型不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5288, 1, 'yudao-admin-server', 1009002002, '流程标识格式不正确,需要以字母或下划线开头,后接任意字母、数字、中划线、下划线、句点!', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5289, 1, 'yudao-admin-server', 1009002003, '部署流程失败,原因:流程表单未配置,请点击【修改流程】按钮进行配置', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5290, 1, 'yudao-admin-server', 1009002004, '部署流程失败,原因:用户任务({})未配置分配规则,请点击【修改流程】按钮进行配置', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5291, 1, 'yudao-admin-server', 1009003005, '流程定义部署失败,原因:信息未发生变化', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5292, 1, 'yudao-admin-server', 1009003000, '流程定义的标识期望是({}),当前是({}),请修改 BPMN 流程图', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5293, 1, 'yudao-admin-server', 1009003001, '流程定义的名字期望是({}),当前是({}),请修改 BPMN 流程图', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5294, 1, 'yudao-admin-server', 1009003002, '流程定义不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5295, 1, 'yudao-admin-server', 1009003003, '流程定义处于挂起状态', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5296, 1, 'yudao-admin-server', 1009003004, '流程定义的模型不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5297, 1, 'yudao-admin-server', 1009004000, '流程实例不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5298, 1, 'yudao-admin-server', 1009004001, '流程取消失败,流程不处于运行中', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5299, 1, 'yudao-admin-server', 1009004002, '流程取消失败,该流程不是你发起的', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5300, 1, 'yudao-admin-server', 1009005000, '审批任务失败,原因:该任务不处于未审批', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5301, 1, 'yudao-admin-server', 1009005001, '审批任务失败,原因:该任务的审批人不是你', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5302, 1, 'yudao-admin-server', 1009006000, '流程({}) 的任务({}) 已经存在分配规则', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5303, 1, 'yudao-admin-server', 1009006001, '流程任务分配规则不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5304, 1, 'yudao-admin-server', 1009006002, '只有流程模型的任务分配规则,才允许被修改', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5305, 1, 'yudao-admin-server', 1009006003, '操作失败,原因:找不到任务的审批人!', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5306, 1, 'yudao-admin-server', 1009006004, '操作失败,原因:任务分配脚本({}) 不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5307, 1, 'yudao-admin-server', 1009010000, '动态表单不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5308, 1, 'yudao-admin-server', 1009010001, '表单项({}) 和 ({}) 使用了相同的字段名({})', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5309, 1, 'yudao-admin-server', 1009011000, '用户组不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5310, 1, 'yudao-admin-server', 1009011001, '名字为【{}】的用户组已被禁用', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5311, 1, 'yudao-admin-server', 1001000001, '参数配置不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5312, 1, 'yudao-admin-server', 1001000002, '参数配置 key 重复', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5313, 1, 'yudao-admin-server', 1001000003, '不能删除类型为系统内置的参数配置', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5314, 1, 'yudao-admin-server', 1001000004, '不允许获取敏感配置到前端', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5315, 1, 'yudao-admin-server', 1001001000, '定时任务不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5316, 1, 'yudao-admin-server', 1001001001, '定时任务的处理器已经存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5317, 1, 'yudao-admin-server', 1001001002, '只允许修改为开启或者关闭状态', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5318, 1, 'yudao-admin-server', 1001001003, '定时任务已经处于该状态,无需修改', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5319, 1, 'yudao-admin-server', 1001001004, '只有开启状态的任务,才可以修改', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5320, 1, 'yudao-admin-server', 1001001005, 'CRON 表达式不正确', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5321, 1, 'yudao-admin-server', 1001002000, 'API 错误日志不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5322, 1, 'yudao-admin-server', 1001002001, 'API 错误日志已处理', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5323, 1, 'yudao-admin-server', 1001003000, '文件路径已存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5324, 1, 'yudao-admin-server', 1001003001, '文件不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5325, 1, 'yudao-admin-server', 1001003002, '文件为空', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5326, 1, 'yudao-admin-server', 1003001000, '表定义已经存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5327, 1, 'yudao-admin-server', 1003001001, '导入的表不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5328, 1, 'yudao-admin-server', 1003001002, '导入的字段不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5329, 1, 'yudao-admin-server', 1003001003, '解析 SQL 失败,请检查', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5330, 1, 'yudao-admin-server', 1003001004, '表定义不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5331, 1, 'yudao-admin-server', 1003001005, '字段义不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5332, 1, 'yudao-admin-server', 1003001006, '同步的字段不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5333, 1, 'yudao-admin-server', 1003001007, '同步失败,不存在改变', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-12 01:23:51', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5334, 1, 'yudao-admin-server', 1003000000, '测试示例不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5335, 1, 'yudao-admin-server', 1004001000, '用户不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5336, 1, 'yudao-admin-server', 1004001001, '密码校验失败', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5337, 1, 'yudao-admin-server', 1004003000, '登录失败,账号密码不正确', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5338, 1, 'yudao-admin-server', 1004003001, '登录失败,账号被禁用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5339, 1, 'yudao-admin-server', 1004003002, '登录失败', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5340, 1, 'yudao-admin-server', 1004003004, 'Token 已经过期', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5341, 1, 'yudao-admin-server', 1004003005, '未绑定账号,需要进行绑定', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5342, 1, 'yudao-admin-server', 1007000000, 'App 不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5343, 1, 'yudao-admin-server', 1007000002, 'App 已经被禁用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5344, 1, 'yudao-admin-server', 1007000003, '支付应用存在交易中的订单,无法删除', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5345, 1, 'yudao-admin-server', 1007001000, '支付渠道的配置不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5346, 1, 'yudao-admin-server', 1007001001, '支付渠道已经禁用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5347, 1, 'yudao-admin-server', 1007001002, '支付渠道的客户端不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5348, 1, 'yudao-admin-server', 1007001003, '支付渠道不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5349, 1, 'yudao-admin-server', 1007001005, '已存在相同的渠道', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5350, 1, 'yudao-admin-server', 1007001006, '微信渠道v2版本中商户密钥不可为空', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5351, 1, 'yudao-admin-server', 1007001007, '微信渠道v3版本apiclient_key.pem不可为空', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5352, 1, 'yudao-admin-server', 1007001008, '微信渠道v3版本中apiclient_cert.pem不可为空', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5353, 1, 'yudao-admin-server', 1007001009, '渠道通知校验失败', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5354, 1, 'yudao-admin-server', 1007002000, '支付订单不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5355, 1, 'yudao-admin-server', 1007002001, '支付订单不处于待支付', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5356, 1, 'yudao-admin-server', 1007002002, '支付订单不处于已支付', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5357, 1, 'yudao-admin-server', 1007002003, '支付订单用户不正确', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5358, 1, 'yudao-admin-server', 1007003000, '支付交易拓展单不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5359, 1, 'yudao-admin-server', 1007003001, '支付交易拓展单不处于待支付', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5360, 1, 'yudao-admin-server', 1007003002, '支付订单不处于已支付', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5361, 1, 'yudao-admin-server', 1007006000, '退款金额超过订单可退款金额', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5362, 1, 'yudao-admin-server', 1007006001, '订单已经全额退款', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5363, 1, 'yudao-admin-server', 1007006002, '该订单的渠道订单为空', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5364, 1, 'yudao-admin-server', 1007006003, '已经退款成功', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5365, 1, 'yudao-admin-server', 1007006004, '支付退款单不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5366, 1, 'yudao-admin-server', 1007004000, '支付商户信息不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5367, 1, 'yudao-admin-server', 1007004001, '支付商户存在支付应用,无法删除', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5368, 1, 'yudao-admin-server', 1002000000, '登录失败,账号密码不正确', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5369, 1, 'yudao-admin-server', 1002000001, '登录失败,账号被禁用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5370, 1, 'yudao-admin-server', 1002000002, '登录失败', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5371, 1, 'yudao-admin-server', 1002000003, '验证码不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5372, 1, 'yudao-admin-server', 1002000004, '验证码不正确', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5373, 1, 'yudao-admin-server', 1002000005, '未绑定账号,需要进行绑定', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5374, 1, 'yudao-admin-server', 1002000006, 'Token 已经过期', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5375, 1, 'yudao-admin-server', 1002001000, '已经存在该名字的菜单', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5376, 1, 'yudao-admin-server', 1002001001, '父菜单不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5377, 1, 'yudao-admin-server', 1002001002, '不能设置自己为父菜单', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5378, 1, 'yudao-admin-server', 1002001003, '菜单不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5379, 1, 'yudao-admin-server', 1002001004, '存在子菜单,无法删除', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5380, 1, 'yudao-admin-server', 1002001005, '父菜单的类型必须是目录或者菜单', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5381, 1, 'yudao-admin-server', 1002002000, '角色不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5382, 1, 'yudao-admin-server', 1002002001, '已经存在名为【{}】的角色', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5383, 1, 'yudao-admin-server', 1002002002, '已经存在编码为【{}】的角色', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5384, 1, 'yudao-admin-server', 1002002003, '不能操作类型为系统内置的角色', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5385, 1, 'yudao-admin-server', 1002002004, '名字为【{}】的角色已被禁用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5386, 1, 'yudao-admin-server', 1002002005, '编码【{}】不能使用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5387, 1, 'yudao-admin-server', 1002003000, '用户账号已经存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5388, 1, 'yudao-admin-server', 1002003001, '手机号已经存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5389, 1, 'yudao-admin-server', 1002003002, '邮箱已经存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5390, 1, 'yudao-admin-server', 1002003003, '用户不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5391, 1, 'yudao-admin-server', 1002003004, '导入用户数据不能为空!', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5392, 1, 'yudao-admin-server', 1002003005, '用户密码校验失败', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5393, 1, 'yudao-admin-server', 1002003006, '名字为【{}】的用户已被禁用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5394, 1, 'yudao-admin-server', 1002003008, '创建用户失败,原因:超过租户最大租户配额({})!', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5395, 1, 'yudao-admin-server', 1002004000, '已经存在该名字的部门', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5396, 1, 'yudao-admin-server', 1002004001, '父级部门不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5397, 1, 'yudao-admin-server', 1002004002, '当前部门不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5398, 1, 'yudao-admin-server', 1002004003, '存在子部门,无法删除', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5399, 1, 'yudao-admin-server', 1002004004, '不能设置自己为父部门', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5400, 1, 'yudao-admin-server', 1002004005, '部门中存在员工,无法删除', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5401, 1, 'yudao-admin-server', 1002004006, '部门不处于开启状态,不允许选择', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5402, 1, 'yudao-admin-server', 1002004007, '不能设置自己的子部门为父部门', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5403, 1, 'yudao-admin-server', 1002005000, '当前岗位不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5404, 1, 'yudao-admin-server', 1002005001, '岗位({}) 不处于开启状态,不允许选择', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5405, 1, 'yudao-admin-server', 1002005002, '已经存在该名字的岗位', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5406, 1, 'yudao-admin-server', 1002005003, '已经存在该标识的岗位', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5407, 1, 'yudao-admin-server', 1002006001, '当前字典类型不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5408, 1, 'yudao-admin-server', 1002006002, '字典类型不处于开启状态,不允许选择', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5409, 1, 'yudao-admin-server', 1002006003, '已经存在该名字的字典类型', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5410, 1, 'yudao-admin-server', 1002006004, '已经存在该类型的字典类型', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5411, 1, 'yudao-admin-server', 1002006005, '无法删除,该字典类型还有字典数据', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5412, 1, 'yudao-admin-server', 1002007001, '当前字典数据不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5413, 1, 'yudao-admin-server', 1002007002, '字典数据({})不处于开启状态,不允许选择', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5414, 1, 'yudao-admin-server', 1002007003, '已经存在该值的字典数据', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5415, 1, 'yudao-admin-server', 1002008001, '当前通知公告不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5416, 1, 'yudao-admin-server', 1002011000, '短信渠道不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5417, 1, 'yudao-admin-server', 1002011001, '短信渠道不处于开启状态,不允许选择', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5418, 1, 'yudao-admin-server', 1002011002, '无法删除,该短信渠道还有短信模板', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5419, 1, 'yudao-admin-server', 1002012000, '短信模板不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5420, 1, 'yudao-admin-server', 1002012001, '已经存在编码为【{}】的短信模板', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5421, 1, 'yudao-admin-server', 1002013000, '手机号不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5422, 1, 'yudao-admin-server', 1002013001, '模板参数({})缺失', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5423, 1, 'yudao-admin-server', 1002013002, '短信模板不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5424, 1, 'yudao-admin-server', 1002014000, '验证码不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5425, 1, 'yudao-admin-server', 1002014001, '验证码已过期', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5426, 1, 'yudao-admin-server', 1002014002, '验证码已使用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5427, 1, 'yudao-admin-server', 1002014003, '验证码不正确', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5428, 1, 'yudao-admin-server', 1002014004, '超过每日短信发送数量', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5429, 1, 'yudao-admin-server', 1002014005, '短信发送过于频率', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5430, 1, 'yudao-admin-server', 1002014006, '手机号已被使用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5431, 1, 'yudao-admin-server', 1002014007, '验证码未被使用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5432, 1, 'yudao-admin-server', 1002015000, '租户不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5433, 1, 'yudao-admin-server', 1002015001, '名字为【{}】的租户已被禁用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5434, 1, 'yudao-admin-server', 1002015002, '名字为【{}】的租户已过期', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5435, 1, 'yudao-admin-server', 1002015003, '系统租户不能进行修改、删除等操作!', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5436, 1, 'yudao-admin-server', 1002016000, '租户套餐不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5437, 1, 'yudao-admin-server', 1002016001, '租户正在使用该套餐,请给租户重新设置套餐后再尝试删除', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5438, 1, 'yudao-admin-server', 1002016002, '名字为【{}】的租户套餐已被禁用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5439, 1, 'yudao-admin-server', 1002017000, '错误码不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5440, 1, 'yudao-admin-server', 1002017001, '已经存在编码为【{}】的错误码', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5441, 1, 'yudao-admin-server', 1002018000, '社交授权失败,原因是:{}', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5442, 1, 'yudao-admin-server', 1002018001, '社交解绑失败,非当前用户绑定', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5443, 1, 'yudao-admin-server', 1002018002, '社交授权失败,找不到对应的用户', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5444, 1, 'yudao-admin-server', 1002019000, '系统敏感词在所有标签中都不存在', '', NULL, '2022-03-12 16:03:50', NULL, '2022-04-08 00:51:30', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5445, 1, 'yudao-admin-server', 1001005000, '测试示例不存在', '', NULL, '2022-03-15 19:25:23', NULL, '2022-03-15 19:25:23', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5446, 1, 'yudao-admin-server', 1001006000, '文件配置不存在', '', NULL, '2022-03-15 19:25:23', NULL, '2022-03-15 19:25:23', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5447, 1, 'yudao-admin-server', 1001006001, '该文件配置不允许删除,原因:它是主配置,删除会导致无法上传文件', '', NULL, '2022-03-15 23:43:35', NULL, '2022-03-15 23:43:35', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5448, 1, 'yudao-admin-server', 1002019001, '系统敏感词已在标签中存在', '', NULL, '2022-04-08 00:51:30', NULL, '2022-04-08 00:51:30', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5449, 1, 'yudao-server', 1004004000, '用户收件地址不存在', '', NULL, '2022-04-22 22:00:17', NULL, '2022-04-22 22:00:17', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5450, 1, 'yudao-server', 1004004001, '没有该操作权限', '', NULL, '2022-04-22 22:00:17', NULL, '2022-04-22 22:00:17', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5451, 1, 'yudao-server', 1001007000, '数据源配置不存在', '', NULL, '2022-04-27 22:36:28', NULL, '2022-04-27 22:36:28', b'0'); -INSERT INTO `system_error_code` (`id`, `type`, `application_name`, `code`, `message`, `memo`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5452, 1, 'yudao-server', 1001007001, '数据源配置不正确,无法进行连接', '', NULL, '2022-04-27 23:03:55', NULL, '2022-04-27 23:03:55', b'0'); COMMIT; -- ---------------------------- -- Table structure for system_login_log -- ---------------------------- DROP TABLE IF EXISTS `system_login_log`; -CREATE TABLE `system_login_log` ( +CREATE TABLE `system_login_log` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '访问ID', `log_type` bigint NOT NULL COMMENT '日志类型', `trace_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '链路追踪编号', - `user_id` bigint NOT NULL DEFAULT '0' COMMENT '用户编号', - `user_type` tinyint NOT NULL DEFAULT '0' COMMENT '用户类型', + `user_id` bigint NOT NULL DEFAULT 0 COMMENT '用户编号', + `user_type` tinyint NOT NULL DEFAULT 0 COMMENT '用户类型', `username` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '用户账号', `result` tinyint NOT NULL COMMENT '登陆结果', `user_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '用户 IP', `user_agent` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '浏览器 UA', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=1247 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='系统访问记录'; +) ENGINE = InnoDB AUTO_INCREMENT = 1247 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '系统访问记录'; -- ---------------------------- -- Records of system_login_log -- ---------------------------- BEGIN; -INSERT INTO `system_login_log` (`id`, `log_type`, `trace_id`, `user_id`, `user_type`, `username`, `result`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1243, 200, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-28 10:47:55', NULL, '2022-04-28 10:47:55', b'0', 1); -INSERT INTO `system_login_log` (`id`, `log_type`, `trace_id`, `user_id`, `user_type`, `username`, `result`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1244, 100, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-28 10:48:15', NULL, '2022-04-28 10:48:15', b'0', 1); -INSERT INTO `system_login_log` (`id`, `log_type`, `trace_id`, `user_id`, `user_type`, `username`, `result`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1245, 200, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-30 00:02:20', NULL, '2022-04-30 00:02:20', b'0', 1); -INSERT INTO `system_login_log` (`id`, `log_type`, `trace_id`, `user_id`, `user_type`, `username`, `result`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1246, 100, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-30 00:06:21', NULL, '2022-04-30 00:06:21', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for system_menu -- ---------------------------- DROP TABLE IF EXISTS `system_menu`; -CREATE TABLE `system_menu` ( +CREATE TABLE `system_menu` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '菜单ID', `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '菜单名称', `permission` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '权限标识', `type` tinyint NOT NULL COMMENT '菜单类型', - `sort` int NOT NULL DEFAULT '0' COMMENT '显示顺序', - `parent_id` bigint NOT NULL DEFAULT '0' COMMENT '父菜单ID', - `path` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '路由地址', - `icon` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '#' COMMENT '菜单图标', - `component` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '组件路径', - `status` tinyint NOT NULL DEFAULT '0' COMMENT '菜单状态', + `sort` int NOT NULL DEFAULT 0 COMMENT '显示顺序', + `parent_id` bigint NOT NULL DEFAULT 0 COMMENT '父菜单ID', + `path` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '路由地址', + `icon` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '#' COMMENT '菜单图标', + `component` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '组件路径', + `status` tinyint NOT NULL DEFAULT 0 COMMENT '菜单状态', `visible` bit(1) NOT NULL DEFAULT b'1' COMMENT '是否可见', `keep_alive` bit(1) NOT NULL DEFAULT b'1' COMMENT '是否缓存', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=1261 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='菜单权限表'; +) ENGINE = InnoDB AUTO_INCREMENT = 1261 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '菜单权限表'; -- ---------------------------- -- Records of system_menu @@ -3202,8 +1477,6 @@ CREATE TABLE `system_menu` ( BEGIN; INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1, '系统管理', '', 1, 10, 0, '/system', 'system', NULL, 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (2, '基础设施', '', 1, 20, 0, '/infra', 'monitor', NULL, 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', b'0'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (3, '研发工具', '', 1, 30, 0, '/tool', 'tool', NULL, 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (4, '若依官网', '', 1, 4, 0, 'http://ruoyi.vip', 'guide', NULL, 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', b'1'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5, 'OA 示例', '', 1, 40, 1185, 'oa', 'people', NULL, 0, b'1', b'1', 'admin', '2021-09-20 16:26:19', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (100, '用户管理', 'system:user:list', 2, 1, 1, 'user', 'user', 'system/user/index', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (101, '角色管理', '', 2, 2, 1, 'role', 'peoples', 'system/role/index', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', b'0'); @@ -3268,15 +1541,12 @@ INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_i INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1043, '登录查询', 'system:login-log:query', 3, 1, 501, '#', '#', '', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1045, '日志导出', 'system:login-log:export', 3, 3, 501, '#', '#', '', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1046, '在线查询', 'system:user-session:list', 3, 1, 109, '', '', '', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', b'0'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1047, '批量强退', 'monitor:online:batchLogout', 3, 2, 109, '#', '#', '', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', b'1'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1048, '单条强退', 'system:user-session:delete', 3, 3, 109, '', '', '', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', b'0'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1049, '任务查询', 'monitor:job:query', 3, 1, 110, '#', '#', '', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', b'1'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1050, '任务新增', 'infra:job:create', 3, 2, 110, '', '', '', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1051, '任务修改', 'infra:job:update', 3, 3, 110, '', '', '', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1052, '任务删除', 'infra:job:delete', 3, 4, 110, '', '', '', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1053, '状态修改', 'infra:job:update', 3, 5, 110, '', '', '', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1054, '任务导出', 'infra:job:export', 3, 7, 110, '', '', '', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', b'0'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1055, '生成查询', 'infra:gen:query', 3, 1, 115, '#', '#', '', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', b'1'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1056, '生成修改', 'infra:codegen:update', 3, 2, 115, '', '', '', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1057, '生成删除', 'infra:codegen:delete', 3, 3, 115, '', '', '', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1058, '导入代码', 'infra:codegen:create', 3, 2, 115, '', '', '', 0, b'1', b'1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', b'0'); @@ -3296,9 +1566,6 @@ INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_i INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1076, '数据库文档', '', 2, 4, 2, 'db-doc', 'table', 'infra/dbDoc/index', 0, b'1', b'1', '', '2021-02-08 01:41:47', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1077, '监控平台', '', 2, 13, 2, 'skywalking', 'eye-open', 'infra/skywalking/index', 0, b'1', b'1', '', '2021-02-08 20:41:31', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1078, '访问日志', '', 2, 1, 1083, 'api-access-log', 'log', 'infra/apiAccessLog/index', 0, b'1', b'1', '', '2021-02-26 01:32:59', '1', '2022-04-20 17:03:10', b'0'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1079, 'API 访问日志表创建', 'system:api-access-log:create', 3, 1, 1078, '', '', '', 1, b'1', b'1', '', '2021-02-26 01:32:59', '', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1080, 'API 访问日志表更新', 'system:api-access-log:update', 3, 2, 1078, '', '', '', 1, b'1', b'1', '', '2021-02-26 01:32:59', '', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1081, 'API 访问日志表删除', 'system:api-access-log:delete', 3, 3, 1078, '', '', '', 1, b'1', b'1', '', '2021-02-26 01:32:59', '', '2022-04-20 17:03:10', b'1'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1082, '日志导出', 'infra:api-access-log:export', 3, 2, 1078, '', '', '', 0, b'1', b'1', '', '2021-02-26 01:32:59', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1083, 'API 日志', '', 2, 8, 2, 'log', 'log', NULL, 0, b'1', b'1', '', '2021-02-26 02:18:24', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1084, '错误日志', 'infra:api-error-log:query', 2, 2, 1083, 'api-error-log', 'log', 'infra/apiErrorLog/index', 0, b'1', b'1', '', '2021-02-26 07:53:20', '', '2022-04-20 17:03:10', b'0'); @@ -3332,16 +1599,10 @@ INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_i INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1113, '错误码更新', 'system:error-code:update', 3, 3, 1110, '', '', '', 0, b'1', b'1', '', '2021-04-13 21:46:42', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1114, '错误码删除', 'system:error-code:delete', 3, 4, 1110, '', '', '', 0, b'1', b'1', '', '2021-04-13 21:46:42', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1115, '错误码导出', 'system:error-code:export', 3, 5, 1110, '', '', '', 0, b'1', b'1', '', '2021-04-13 21:46:42', '', '2022-04-20 17:03:10', b'0'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1116, '日志中心', '', 2, 14, 2, 'log-center', 'log', 'infra/skywalking/log', 0, b'1', b'1', '1', '2021-04-26 22:35:45', '1', '2022-04-20 17:03:10', b'1'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1117, '支付管理', '', 1, 11, 0, '/pay', 'money', NULL, 0, b'1', b'1', '1', '2021-12-25 16:43:41', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1118, '请假查询', '', 2, 0, 5, 'leave', 'user', 'bpm/oa/leave/index', 0, b'1', b'1', '', '2021-09-20 08:51:03', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1119, '请假申请查询', 'bpm:oa-leave:query', 3, 1, 1118, '', '', '', 0, b'1', b'1', '', '2021-09-20 08:51:03', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1120, '请假申请创建', 'bpm:oa-leave:create', 3, 2, 1118, '', '', '', 0, b'1', b'1', '', '2021-09-20 08:51:03', '1', '2022-04-20 17:03:10', b'0'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1121, '请假申请更新', 'oa:leave:update', 3, 3, 1118, '', '', '', 0, b'1', b'1', '', '2021-09-20 08:51:03', '', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1122, '请假申请删除', 'oa:leave:delete', 3, 4, 1118, '', '', '', 0, b'1', b'1', '', '2021-09-20 08:51:03', '', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1123, '请假申请导出', 'oa:leave:export', 3, 5, 1118, '', '', '', 0, b'1', b'1', '', '2021-09-20 08:51:03', '', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1124, '待办任务', '', 2, 2, 5, 'todo', 'edit', 'oa/todo/index', 0, b'1', b'1', '1', '2021-09-20 22:10:09', '1', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1125, '流程申请', '', 2, 3, 5, 'flow', 'form', 'oa/flow/index', 0, b'1', b'1', '1', '2021-10-23 22:10:09', '1', '2022-04-20 17:03:10', b'1'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1126, '应用信息', '', 2, 1, 1117, 'app', 'table', 'pay/app/index', 0, b'1', b'1', '', '2021-11-10 01:13:30', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1127, '支付应用信息查询', 'pay:app:query', 3, 1, 1126, '', '', '', 0, b'1', b'1', '', '2021-11-10 01:13:31', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1128, '支付应用信息创建', 'pay:app:create', 3, 2, 1126, '', '', '', 0, b'1', b'1', '', '2021-11-10 01:13:31', '', '2022-04-20 17:03:10', b'0'); @@ -3360,18 +1621,7 @@ INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_i INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1141, '租户更新', 'system:tenant:update', 3, 3, 1138, '', '', '', 0, b'1', b'1', '', '2021-12-14 12:31:44', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1142, '租户删除', 'system:tenant:delete', 3, 4, 1138, '', '', '', 0, b'1', b'1', '', '2021-12-14 12:31:44', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1143, '租户导出', 'system:tenant:export', 3, 5, 1138, '', '', '', 0, b'1', b'1', '', '2021-12-14 12:31:44', '', '2022-04-20 17:03:10', b'0'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1144, '支付应用信息管理', '', 2, 0, 1117, 'app', '', 'pay/app/index', 0, b'1', b'1', '', '2021-12-25 08:26:31', '', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1145, '支付应用信息查询', 'pay:app:query', 3, 1, 1144, '', '', '', 0, b'1', b'1', '', '2021-12-25 08:26:31', '', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1146, '支付应用信息创建', 'pay:app:create', 3, 2, 1144, '', '', '', 0, b'1', b'1', '', '2021-12-25 08:26:31', '', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1147, '支付应用信息更新', 'pay:app:update', 3, 3, 1144, '', '', '', 0, b'1', b'1', '', '2021-12-25 08:26:31', '', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1148, '支付应用信息删除', 'pay:app:delete', 3, 4, 1144, '', '', '', 0, b'1', b'1', '', '2021-12-25 08:26:31', '', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1149, '支付应用信息导出', 'pay:app:export', 3, 5, 1144, '', '', '', 0, b'1', b'1', '', '2021-12-25 08:26:31', '', '2022-04-20 17:03:10', b'1'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1150, '秘钥解析', '', 3, 6, 1129, '', '', '', 0, b'1', b'1', '1', '2021-11-08 15:15:47', '1', '2022-04-20 17:03:10', b'0'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1156, '支付订单查询', 'pay:order:query', 3, 1, 1155, '', '', '', 0, b'1', b'1', '', '2021-12-25 08:29:01', '', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1157, '支付订单创建', 'pay:order:create', 3, 2, 1155, '', '', '', 0, b'1', b'1', '', '2021-12-25 08:29:01', '', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1158, '支付订单更新', 'pay:order:update', 3, 3, 1155, '', '', '', 0, b'1', b'1', '', '2021-12-25 08:29:01', '', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1159, '支付订单删除', 'pay:order:delete', 3, 4, 1155, '', '', '', 0, b'1', b'1', '', '2021-12-25 08:29:01', '', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1160, '支付订单导出', 'pay:order:export', 3, 5, 1155, '', '', '', 0, b'1', b'1', '', '2021-12-25 08:29:01', '', '2022-04-20 17:03:10', b'1'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1161, '退款订单', '', 2, 3, 1117, 'refund', 'order', 'pay/refund/index', 0, b'1', b'1', '', '2021-12-25 08:29:07', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1162, '退款订单查询', 'pay:refund:query', 3, 1, 1161, '', '', '', 0, b'1', b'1', '', '2021-12-25 08:29:07', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1163, '退款订单创建', 'pay:refund:create', 3, 2, 1161, '', '', '', 0, b'1', b'1', '', '2021-12-25 08:29:07', '', '2022-04-20 17:03:10', b'0'); @@ -3415,7 +1665,6 @@ INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_i INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1211, '用户组创建', 'bpm:user-group:create', 3, 2, 1209, '', '', '', 0, b'1', b'1', '', '2022-01-14 02:14:20', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1212, '用户组更新', 'bpm:user-group:update', 3, 3, 1209, '', '', '', 0, b'1', b'1', '', '2022-01-14 02:14:20', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1213, '用户组删除', 'bpm:user-group:delete', 3, 4, 1209, '', '', '', 0, b'1', b'1', '', '2022-01-14 02:14:20', '', '2022-04-20 17:03:10', b'0'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1214, '用户组导出', 'bpm:user-group:export', 3, 5, 1209, '', '', '', 0, b'1', b'1', '', '2022-01-14 02:14:20', '', '2022-04-20 17:03:10', b'1'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1215, '流程定义查询', 'bpm:process-definition:query', 3, 10, 1193, '', '', '', 0, b'1', b'1', '1', '2022-01-23 00:21:43', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1216, '流程任务分配规则查询', 'bpm:task-assign-rule:query', 3, 20, 1193, '', '', '', 0, b'1', b'1', '1', '2022-01-23 00:26:53', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1217, '流程任务分配规则创建', 'bpm:task-assign-rule:create', 3, 21, 1193, '', '', '', 0, b'1', b'1', '1', '2022-01-23 00:28:15', '1', '2022-04-20 17:03:10', b'0'); @@ -3424,14 +1673,12 @@ INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_i INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1220, '流程实例的取消', 'bpm:process-instance:cancel', 3, 3, 1201, '', '', '', 0, b'1', b'1', '1', '2022-01-23 00:36:33', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1221, '流程任务的查询', 'bpm:task:query', 3, 1, 1207, '', '', '', 0, b'1', b'1', '1', '2022-01-23 00:38:52', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1222, '流程任务的更新', 'bpm:task:update', 3, 2, 1207, '', '', '', 0, b'1', b'1', '1', '2022-01-23 00:39:24', '1', '2022-04-20 17:03:10', b'0'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1223, '1', '', 2, 3, 500, '2', 'button', NULL, 0, b'1', b'1', '1', '2022-02-15 19:40:10', '1', '2022-04-20 17:03:10', b'1'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1224, '租户管理', '', 2, 0, 1, 'tenant', 'peoples', NULL, 0, b'1', b'1', '1', '2022-02-20 01:41:13', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1225, '租户套餐', '', 2, 0, 1224, 'package', 'eye', 'system/tenantPackage/index', 0, b'1', b'1', '', '2022-02-19 17:44:06', '1', '2022-04-21 01:21:25', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1226, '租户套餐查询', 'system:tenant-package:query', 3, 1, 1225, '', '', '', 0, b'1', b'1', '', '2022-02-19 17:44:06', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1227, '租户套餐创建', 'system:tenant-package:create', 3, 2, 1225, '', '', '', 0, b'1', b'1', '', '2022-02-19 17:44:06', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1228, '租户套餐更新', 'system:tenant-package:update', 3, 3, 1225, '', '', '', 0, b'1', b'1', '', '2022-02-19 17:44:06', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1229, '租户套餐删除', 'system:tenant-package:delete', 3, 4, 1225, '', '', '', 0, b'1', b'1', '', '2022-02-19 17:44:06', '', '2022-04-20 17:03:10', b'0'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1230, '租户套餐导出', 'system:tenant-package:export', 3, 5, 1225, '', '', '', 0, b'1', b'1', '', '2022-02-19 17:44:06', '', '2022-04-20 17:03:10', b'1'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1237, '文件配置', '', 2, 0, 1243, 'file-config', 'config', 'infra/fileConfig/index', 0, b'1', b'1', '', '2022-03-15 14:35:28', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1238, '文件配置查询', 'infra:file-config:query', 3, 1, 1237, '', '', '', 0, b'1', b'1', '', '2022-03-15 14:35:28', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1239, '文件配置创建', 'infra:file-config:create', 3, 2, 1237, '', '', '', 0, b'1', b'1', '', '2022-03-15 14:35:28', '', '2022-04-20 17:03:10', b'0'); @@ -3439,16 +1686,12 @@ INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_i INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1241, '文件配置删除', 'infra:file-config:delete', 3, 4, 1237, '', '', '', 0, b'1', b'1', '', '2022-03-15 14:35:28', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1242, '文件配置导出', 'infra:file-config:export', 3, 5, 1237, '', '', '', 0, b'1', b'1', '', '2022-03-15 14:35:28', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1243, '文件管理', '', 2, 5, 2, 'file', 'download', NULL, 0, b'1', b'1', '1', '2022-03-16 23:47:40', '1', '2022-04-20 17:03:10', b'0'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1244, '1', '', 2, 2, 0, '/3', 'checkbox', NULL, 0, b'1', b'1', '1', '2022-03-24 22:25:24', '1', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1245, '2', '3', 2, 3, 1244, '2', 'button', '111', 0, b'1', b'1', '1', '2022-03-24 22:29:38', '1', '2022-04-20 17:03:10', b'1'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1246, '3', '5', 3, 4, 1245, '', '', '', 0, b'1', b'1', '1', '2022-03-24 22:30:48', '1', '2022-04-20 17:03:10', b'1'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1247, '敏感词管理', '', 2, 13, 1, 'sensitive-word', 'education', 'system/sensitiveWord/index', 0, b'1', b'1', '', '2022-04-07 16:55:03', '1', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1248, '敏感词查询', 'system:sensitive-word:query', 3, 1, 1247, '', '', '', 0, b'1', b'1', '', '2022-04-07 16:55:03', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1249, '敏感词创建', 'system:sensitive-word:create', 3, 2, 1247, '', '', '', 0, b'1', b'1', '', '2022-04-07 16:55:03', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1250, '敏感词更新', 'system:sensitive-word:update', 3, 3, 1247, '', '', '', 0, b'1', b'1', '', '2022-04-07 16:55:03', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1251, '敏感词删除', 'system:sensitive-word:delete', 3, 4, 1247, '', '', '', 0, b'1', b'1', '', '2022-04-07 16:55:03', '', '2022-04-20 17:03:10', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1252, '敏感词导出', 'system:sensitive-word:export', 3, 5, 1247, '', '', '', 0, b'1', b'1', '', '2022-04-07 16:55:03', '', '2022-04-20 17:03:10', b'0'); -INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1253, '测试', '', 2, 2, 0, '/12', '404', NULL, 0, b'0', b'0', '1', '2022-04-21 01:03:56', '1', '2022-04-20 17:04:19', b'1'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1254, '作者动态', '', 1, 0, 0, 'https://www.iocoder.cn', 'people', NULL, 0, b'1', b'1', '1', '2022-04-23 01:03:15', '1', '2022-04-23 01:03:15', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1255, '数据源配置', '', 2, 1, 2, 'data-source-config', 'rate', 'infra/dataSourceConfig/index', 0, b'1', b'1', '', '2022-04-27 14:37:32', '1', '2022-04-27 22:42:06', b'0'); INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `status`, `visible`, `keep_alive`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1256, '数据源配置查询', 'infra:data-source-config:query', 3, 1, 1255, '', '', '', 0, b'1', b'1', '', '2022-04-27 14:37:32', '', '2022-04-27 14:37:32', b'0'); @@ -3462,20 +1705,20 @@ COMMIT; -- Table structure for system_notice -- ---------------------------- DROP TABLE IF EXISTS `system_notice`; -CREATE TABLE `system_notice` ( +CREATE TABLE `system_notice` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '公告ID', `title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '公告标题', `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '公告内容', `type` tinyint NOT NULL COMMENT '公告类型(1通知 2公告)', - `status` tinyint NOT NULL DEFAULT '0' COMMENT '公告状态(0正常 1关闭)', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `status` tinyint NOT NULL DEFAULT 0 COMMENT '公告状态(0正常 1关闭)', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='通知公告表'; +) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '通知公告表'; -- ---------------------------- -- Records of system_notice @@ -3483,7 +1726,6 @@ CREATE TABLE `system_notice` ( BEGIN; INSERT INTO `system_notice` (`id`, `title`, `content`, `type`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1, '温馨提醒:2018-07-01 若依新版本发布啦', '

新版本内容133

', 2, 0, 'admin', '2021-01-05 17:03:48', '1', '2022-02-15 19:47:20', b'0', 1); INSERT INTO `system_notice` (`id`, `title`, `content`, `type`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (2, '维护通知:2018-07-01 若依系统凌晨维护', '维护内容', 1, 0, 'admin', '2021-01-05 17:03:48', '', '2021-12-15 05:02:22', b'0', 1); -INSERT INTO `system_notice` (`id`, `title`, `content`, `type`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (3, '1133', '

222333

', 1, 0, '', '2021-01-13 05:24:52', '', '2021-12-15 05:02:21', b'1', 1); INSERT INTO `system_notice` (`id`, `title`, `content`, `type`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (4, '我是测试标题', '

哈哈哈哈123

', 1, 0, '110', '2022-02-22 01:01:25', '110', '2022-02-22 01:01:46', b'0', 121); COMMIT; @@ -3491,163 +1733,61 @@ COMMIT; -- Table structure for system_operate_log -- ---------------------------- DROP TABLE IF EXISTS `system_operate_log`; -CREATE TABLE `system_operate_log` ( +CREATE TABLE `system_operate_log` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '日志主键', `trace_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '链路追踪编号', `user_id` bigint NOT NULL COMMENT '用户编号', - `user_type` tinyint NOT NULL DEFAULT '0' COMMENT '用户类型', + `user_type` tinyint NOT NULL DEFAULT 0 COMMENT '用户类型', `module` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '模块标题', `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '操作名', - `type` bigint NOT NULL DEFAULT '0' COMMENT '操作分类', + `type` bigint NOT NULL DEFAULT 0 COMMENT '操作分类', `content` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '操作内容', `exts` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '拓展字段', - `request_method` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '请求方法名', - `request_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '请求地址', - `user_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '用户 IP', - `user_agent` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '浏览器 UA', + `request_method` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '请求方法名', + `request_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '请求地址', + `user_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '用户 IP', + `user_agent` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '浏览器 UA', `java_method` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Java 方法名', - `java_method_args` varchar(8000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT 'Java 方法的参数', + `java_method_args` varchar(8000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT 'Java 方法的参数', `start_time` datetime NOT NULL COMMENT '操作时间', `duration` int NOT NULL COMMENT '执行时长', - `result_code` int NOT NULL DEFAULT '0' COMMENT '结果码', - `result_msg` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '结果提示', - `result_data` varchar(4000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '结果数据', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `result_code` int NOT NULL DEFAULT 0 COMMENT '结果码', + `result_msg` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '结果提示', + `result_data` varchar(4000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '结果数据', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=1943 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='操作日志记录'; +) ENGINE = InnoDB AUTO_INCREMENT = 1943 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '操作日志记录'; -- ---------------------------- -- Records of system_operate_log -- ---------------------------- BEGIN; -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1841, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"infra_data_source_config\"]}', '2022-04-27 21:44:54', 160, 0, '', '[70]', NULL, '2022-04-27 21:44:54', NULL, '2022-04-27 21:44:54', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1842, '', 1, 2, '管理后台 - 代码生成器', '更新数据库的表和字段定义', 3, '', '', 'PUT', '/admin-api/infra/codegen/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.updateCodegen(CodegenUpdateReqVO)', '{\"updateReqVO\":{\"table\":{\"importType\":1,\"scene\":1,\"tableName\":\"infra_data_source_config\",\"tableComment\":\"数据源配置表\",\"remark\":null,\"moduleName\":\"infra\",\"businessName\":\"db\",\"className\":\"DataSourceConfig\",\"classComment\":\"数据源配置\",\"author\":\"芋道源码\",\"templateType\":1,\"parentMenuId\":2,\"id\":70,\"parentMenuIdValid\":true},\"columns\":[{\"tableId\":70,\"columnName\":\"id\",\"columnType\":\"int\",\"columnComment\":\"主键编号\",\"nullable\":false,\"primaryKey\":true,\"autoIncrement\":\"true\",\"ordinalPosition\":1,\"javaType\":\"Integer\",\"javaField\":\"id\",\"dictType\":\"\",\"example\":\"1024\",\"createOperation\":false,\"updateOperation\":true,\"listOperation\":false,\"listOperationCondition\":\"=\",\"listOperationResult\":true,\"htmlType\":\"input\",\"id\":824},{\"tableId\":70,\"columnName\":\"name\",\"columnType\":\"varchar(100)\",\"columnComment\":\"参数名称\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":2,\"javaType\":\"String\",\"javaField\":\"name\",\"dictType\":\"\",\"example\":\"test\",\"createOperation\":true,\"updateOperation\":true,\"listOperation\":true,\"listOperationCondition\":\"LIKE\",\"listOperationResult\":true,\"htmlType\":\"input\",\"id\":825},{\"tableId\":70,\"columnName\":\"url\",\"columnType\":\"varchar(1024)\",\"columnComment\":\"数据源连接\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":3,\"javaType\":\"String\",\"javaField\":\"url\",\"dictType\":\"\",\"example\":\"jdbc:mysql://127.0.0.1:3306/ruoyi-vue-pro\",\"createOperation\":true,\"updateOperation\":true,\"listOperation\":true,\"listOperationCondition\":\"LIKE\",\"listOperationResult\":true,\"htmlType\":\"input\",\"id\":826},{\"tableId\":70,\"columnName\":\"username\",\"columnType\":\"varchar(255)\",\"columnComment\":\"用户名\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":4,\"javaType\":\"String\",\"javaField\":\"username\",\"dictType\":\"\",\"example\":\"root\",\"createOperation\":true,\"updateOperation\":true,\"listOperation\":false,\"listOperationCondition\":\"LIKE\",\"listOperationResult\":true,\"htmlType\":\"input\",\"id\":827},{\"tableId\":70,\"columnName\":\"password\",\"columnType\":\"varchar(255)\",\"columnComment\":\"密码\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":5,\"javaType\":\"String\",\"javaField\":\"password\",\"dictType\":\"\",\"example\":\"123456\",\"createOperation\":true,\"updateOperation\":true,\"listOperation\":false,\"listOperationCondition\":\"=\",\"listOperationResult\":false,\"htmlType\":\"input\",\"id\":828},{\"tableId\":70,\"columnName\":\"creator\",\"columnType\":\"varchar(64)\",\"columnComment\":\"创建者\",\"nullable\":true,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":6,\"javaType\":\"String\",\"javaField\":\"creator\",\"dictType\":\"\",\"example\":null,\"createOperation\":false,\"updateOperation\":false,\"listOperation\":false,\"listOperationCondition\":\"=\",\"listOperationResult\":false,\"htmlType\":\"input\",\"id\":829},{\"tableId\":70,\"columnName\":\"create_time\",\"columnType\":\"datetime\",\"columnComment\":\"创建时间\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":7,\"javaType\":\"Date\",\"javaField\":\"createTime\",\"dictType\":\"\",\"example\":null,\"createOperation\":false,\"updateOperation\":false,\"listOperation\":true,\"listOperationCondition\":\"BETWEEN\",\"listOperationResult\":true,\"htmlType\":\"datetime\",\"id\":830},{\"tableId\":70,\"columnName\":\"updater\",\"columnType\":\"varchar(64)\",\"columnComment\":\"更新者\",\"nullable\":true,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":8,\"javaType\":\"String\",\"javaField\":\"updater\",\"dictType\":\"\",\"example\":null,\"createOperation\":false,\"updateOperation\":false,\"listOperation\":false,\"listOperationCondition\":\"=\",\"listOperationResult\":false,\"htmlType\":\"input\",\"id\":831},{\"tableId\":70,\"columnName\":\"update_time\",\"columnType\":\"datetime\",\"columnComment\":\"更新时间\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":9,\"javaType\":\"Date\",\"javaField\":\"updateTime\",\"dictType\":\"\",\"example\":null,\"createOperation\":false,\"updateOperation\":false,\"listOperation\":false,\"listOperationCondition\":\"BETWEEN\",\"listOperationResult\":false,\"htmlType\":\"datetime\",\"id\":832},{\"tableId\":70,\"columnName\":\"deleted\",\"columnType\":\"bit(1)\",\"columnComment\":\"是否删除\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":10,\"javaType\":\"Boolean\",\"javaField\":\"deleted\",\"dictType\":\"\",\"example\":null,\"createOperation\":false,\"updateOperation\":false,\"listOperation\":false,\"listOperationCondition\":\"=\",\"listOperationResult\":false,\"htmlType\":\"radio\",\"id\":833}]}}', '2022-04-27 21:50:04', 93, 0, '', 'true', NULL, '2022-04-27 21:50:04', NULL, '2022-04-27 21:50:04', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1843, '', 1, 2, '管理后台 - 菜单', '修改菜单', 3, '', '', 'PUT', '/admin-api/system/menu/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.system.controller.admin.permission.MenuController.updateMenu(MenuUpdateReqVO)', '{\"reqVO\":{\"name\":\"数据源配置管理\",\"permission\":\"\",\"type\":2,\"sort\":1,\"parentId\":2,\"path\":\"data-source-config\",\"icon\":\"\",\"component\":\"infra/dataSourceConfig/index\",\"status\":0,\"visible\":true,\"keepAlive\":true,\"id\":1255}}', '2022-04-27 22:41:28', 68, 0, '', 'true', NULL, '2022-04-27 22:41:28', NULL, '2022-04-27 22:41:28', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1844, '', 1, 2, '管理后台 - 菜单', '修改菜单', 3, '', '', 'PUT', '/admin-api/system/menu/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.system.controller.admin.permission.MenuController.updateMenu(MenuUpdateReqVO)', '{\"reqVO\":{\"name\":\"数据源配置\",\"permission\":\"\",\"type\":2,\"sort\":1,\"parentId\":2,\"path\":\"data-source-config\",\"icon\":\"\",\"component\":\"infra/dataSourceConfig/index\",\"status\":0,\"visible\":true,\"keepAlive\":true,\"id\":1255}}', '2022-04-27 22:41:37', 55, 0, '', 'true', NULL, '2022-04-27 22:41:37', NULL, '2022-04-27 22:41:37', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1845, '', 1, 2, '管理后台 - 菜单', '修改菜单', 3, '', '', 'PUT', '/admin-api/system/menu/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.system.controller.admin.permission.MenuController.updateMenu(MenuUpdateReqVO)', '{\"reqVO\":{\"name\":\"数据源配置\",\"permission\":\"\",\"type\":2,\"sort\":1,\"parentId\":2,\"path\":\"data-source-config\",\"icon\":\"rate\",\"component\":\"infra/dataSourceConfig/index\",\"status\":0,\"visible\":true,\"keepAlive\":true,\"id\":1255}}', '2022-04-27 22:42:06', 44, 0, '', 'true', NULL, '2022-04-27 22:42:06', NULL, '2022-04-27 22:42:06', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1846, '', 1, 2, '管理后台 - 数据源配置', '创建数据源配置', 2, '', '', 'POST', '/admin-api/infra/data-source-config/create', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.createDataSourceConfig(DataSourceConfigCreateReqVO)', '{\"createReqVO\":{\"name\":\"test\",\"url\":\"jdbc:mysql://127.0.0.1:3306/testb5f4\",\"username\":\"root\",\"password\":\"123456\"}}', '2022-04-27 22:48:20', 97, 0, '', '8', NULL, '2022-04-27 22:48:20', NULL, '2022-04-27 22:48:20', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1847, '', 1, 2, '管理后台 - 数据源配置', '更新数据源配置', 3, '', '', 'PUT', '/admin-api/infra/data-source-config/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.updateDataSourceConfig(DataSourceConfigUpdateReqVO)', '{\"updateReqVO\":{\"name\":\"test\",\"url\":\"jdbc:mysql://127.0.0.1:3306/testb5f4\",\"username\":\"root\",\"id\":8,\"password\":\"123456\"}}', '2022-04-27 22:49:22', 31, 0, '', 'true', NULL, '2022-04-27 22:49:22', NULL, '2022-04-27 22:49:22', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1848, '', 1, 2, '管理后台 - 数据源配置', '更新数据源配置', 3, '', '', 'PUT', '/admin-api/infra/data-source-config/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.updateDataSourceConfig(DataSourceConfigUpdateReqVO)', '{\"updateReqVO\":{\"name\":\"test\",\"url\":\"jdbc:mysql://127.0.0.1:3306/testb5f4\",\"username\":\"root\",\"id\":8,\"password\":\"1\"}}', '2022-04-27 23:04:21', 156, 500, 'ServiceException: 数据源配置不正确,无法进行连接', 'null', NULL, '2022-04-27 23:04:22', NULL, '2022-04-27 23:04:22', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1849, '', 1, 2, '管理后台 - 数据源配置', '更新数据源配置', 3, '', '', 'PUT', '/admin-api/infra/data-source-config/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.updateDataSourceConfig(DataSourceConfigUpdateReqVO)', '{\"updateReqVO\":{\"name\":\"test\",\"url\":\"jdbc:mysql://127.0.0.1:3306/testb5f4\",\"username\":\"root\",\"id\":8,\"password\":\"123456\"}}', '2022-04-27 23:04:24', 81, 0, '', 'true', NULL, '2022-04-27 23:04:24', NULL, '2022-04-27 23:04:24', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1850, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-28 19:19:14', 47, 500, 'MySQLSyntaxErrorException: Unknown column \'column_name\' in \'field list\'', 'null', NULL, '2022-04-28 19:19:14', NULL, '2022-04-28 19:19:14', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1851, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-28 19:21:18', 46, 500, 'MySQLSyntaxErrorException: Unknown column \'ordinalPosition\' in \'field list\'', 'null', NULL, '2022-04-28 19:21:18', NULL, '2022-04-28 19:21:18', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1852, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-28 19:22:38', 46, 500, 'SQLException: Column \'table_name\' not found.', 'null', NULL, '2022-04-28 19:22:39', NULL, '2022-04-28 19:22:39', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1853, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-28 19:23:20', 31406, 500, 'SQLException: Column \'table_name\' not found.', 'null', NULL, '2022-04-28 19:23:51', NULL, '2022-04-28 19:23:51', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1854, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-28 19:23:51', 2149, 500, 'SQLException: Column \'table_name\' not found.', 'null', NULL, '2022-04-28 19:23:53', NULL, '2022-04-28 19:23:53', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1855, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-28 19:23:56', 38, 500, 'SQLException: Column \'table_name\' not found.', 'null', NULL, '2022-04-28 19:23:57', NULL, '2022-04-28 19:23:57', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1856, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-28 19:25:47', 4275, 0, '', '[71]', NULL, '2022-04-28 19:25:51', NULL, '2022-04-28 19:25:51', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1857, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":53}', '2022-04-28 19:25:57', 47, 0, '', 'true', NULL, '2022-04-28 19:25:57', NULL, '2022-04-28 19:25:57', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1858, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":54}', '2022-04-28 19:26:00', 33, 0, '', 'true', NULL, '2022-04-28 19:26:00', NULL, '2022-04-28 19:26:00', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1859, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":55}', '2022-04-28 19:26:02', 36, 0, '', 'true', NULL, '2022-04-28 19:26:02', NULL, '2022-04-28 19:26:02', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1860, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":59}', '2022-04-28 19:26:03', 34, 0, '', 'true', NULL, '2022-04-28 19:26:03', NULL, '2022-04-28 19:26:03', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1861, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":62}', '2022-04-28 19:26:05', 35, 0, '', 'true', NULL, '2022-04-28 19:26:05', NULL, '2022-04-28 19:26:05', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1862, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":64}', '2022-04-28 19:26:07', 35, 0, '', 'true', NULL, '2022-04-28 19:26:07', NULL, '2022-04-28 19:26:07', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1863, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":67}', '2022-04-28 19:26:09', 33, 0, '', 'true', NULL, '2022-04-28 19:26:09', NULL, '2022-04-28 19:26:09', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1864, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":68}', '2022-04-28 19:26:11', 33, 0, '', 'true', NULL, '2022-04-28 19:26:11', NULL, '2022-04-28 19:26:11', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1865, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":69}', '2022-04-28 19:26:12', 34, 0, '', 'true', NULL, '2022-04-28 19:26:12', NULL, '2022-04-28 19:26:12', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1866, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":70}', '2022-04-28 19:26:14', 32, 0, '', 'true', NULL, '2022-04-28 19:26:14', NULL, '2022-04-28 19:26:14', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1867, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":71}', '2022-04-28 19:26:16', 37, 0, '', 'true', NULL, '2022-04-28 19:26:16', NULL, '2022-04-28 19:26:16', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1868, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[]}', '2022-04-28 20:03:16', 6, 0, '', '[]', NULL, '2022-04-28 20:03:16', NULL, '2022-04-28 20:03:16', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1869, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[]}', '2022-04-28 20:03:16', 6, 0, '', '[]', NULL, '2022-04-28 20:03:16', NULL, '2022-04-28 20:03:16', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1870, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[]}', '2022-04-28 20:03:19', 6, 0, '', '[]', NULL, '2022-04-28 20:03:19', NULL, '2022-04-28 20:03:19', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1871, '', 1, 2, '管理后台 - 数据源配置', '更新数据源配置', 3, '', '', 'PUT', '/admin-api/infra/data-source-config/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.updateDataSourceConfig(DataSourceConfigUpdateReqVO)', '{\"updateReqVO\":{\"name\":\"test\",\"url\":\"jdbc:mysql://127.0.0.1:3306/testb5f4\",\"username\":\"root\",\"id\":8,\"password\":\"123456\"}}', '2022-04-28 20:04:05', 254, 0, '', 'true', NULL, '2022-04-28 20:04:06', NULL, '2022-04-28 20:04:06', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1872, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"user_profile\"]}', '2022-04-28 20:11:02', 42, 500, 'ServiceException: 导入的表不存在', 'null', NULL, '2022-04-28 20:11:02', NULL, '2022-04-28 20:11:02', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1873, '', 1, 2, '管理后台 - 数据源配置', '创建数据源配置', 2, '', '', 'POST', '/admin-api/infra/data-source-config/create', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.createDataSourceConfig(DataSourceConfigCreateReqVO)', '{\"createReqVO\":{\"name\":\"oracle_test\",\"url\":\"jdbc:oracle:thin:@127.0.0.1:1521:orcl\",\"username\":\"root\",\"password\":\"123456\"}}', '2022-04-28 20:41:07', 119, 500, 'ServiceException: 数据源配置不正确,无法进行连接', 'null', NULL, '2022-04-28 20:41:07', NULL, '2022-04-28 20:41:07', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1874, '', 1, 2, '管理后台 - 数据源配置', '创建数据源配置', 2, '', '', 'POST', '/admin-api/infra/data-source-config/create', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.createDataSourceConfig(DataSourceConfigCreateReqVO)', '{\"createReqVO\":{\"name\":\"oracle_test\",\"url\":\"jdbc:oracle:thin:@127.0.0.1:1521:xe\",\"username\":\"root\",\"password\":\"123456\"}}', '2022-04-28 20:41:26', 250, 0, '', '9', NULL, '2022-04-28 20:41:26', NULL, '2022-04-28 20:41:26', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1875, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[]}', '2022-04-28 21:15:57', 16, 0, '', '[]', NULL, '2022-04-28 21:15:57', NULL, '2022-04-28 21:15:57', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1876, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:18:31', 45, 500, 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1', 'null', NULL, '2022-04-29 00:18:31', NULL, '2022-04-29 00:18:31', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1877, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:18:53', 34, 500, 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1', 'null', NULL, '2022-04-29 00:18:53', NULL, '2022-04-29 00:18:53', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1878, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:19:05', 30, 500, 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1', 'null', NULL, '2022-04-29 00:19:05', NULL, '2022-04-29 00:19:05', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1879, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:20:01', 77, 500, 'EncryptionOperationNotPossibleException: null', 'null', NULL, '2022-04-29 00:20:01', NULL, '2022-04-29 00:20:01', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1880, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:20:24', 59, 500, 'EncryptionOperationNotPossibleException: null', 'null', NULL, '2022-04-29 00:20:24', NULL, '2022-04-29 00:20:24', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1881, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:20:51', 7602, 500, 'EncryptionOperationNotPossibleException: null', 'null', NULL, '2022-04-29 00:20:58', NULL, '2022-04-29 00:20:58', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1882, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:21:20', 82592, 500, 'EncryptionOperationNotPossibleException: null', 'null', NULL, '2022-04-29 00:22:43', NULL, '2022-04-29 00:22:43', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1883, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:22:45', 15723, 500, 'EncryptionOperationNotPossibleException: null', 'null', NULL, '2022-04-29 00:23:00', NULL, '2022-04-29 00:23:00', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1884, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:23:42', 454, 500, 'EncryptionOperationNotPossibleException: null', 'null', NULL, '2022-04-29 00:23:43', NULL, '2022-04-29 00:23:43', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1885, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:24:05', 30318, 500, 'EncryptionOperationNotPossibleException: null', 'null', NULL, '2022-04-29 00:24:35', NULL, '2022-04-29 00:24:35', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1886, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:25:57', 3748, 500, 'OracleDatabaseException: ORA-00923: 未找到要求的 FROM 关键字\n', 'null', NULL, '2022-04-29 00:26:00', NULL, '2022-04-29 00:26:00', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1887, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:26:25', 230, 500, 'OracleDatabaseException: ORA-00923: 未找到要求的 FROM 关键字\n', 'null', NULL, '2022-04-29 00:26:25', NULL, '2022-04-29 00:26:25', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1888, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:26:36', 118266, 500, 'OracleDatabaseException: ORA-00923: 未找到要求的 FROM 关键字\n', 'null', NULL, '2022-04-29 00:28:34', NULL, '2022-04-29 00:28:34', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1889, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:28:42', 3678, 500, 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'null', NULL, '2022-04-29 00:28:46', NULL, '2022-04-29 00:28:46', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1890, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:29:54', 49484, 500, 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'null', NULL, '2022-04-29 00:30:44', NULL, '2022-04-29 00:30:44', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1891, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-29 00:40:18', 48, 500, 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1', 'null', NULL, '2022-04-29 00:40:18', NULL, '2022-04-29 00:40:18', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1892, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-29 00:40:50', 38, 500, 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1', 'null', NULL, '2022-04-29 00:40:50', NULL, '2022-04-29 00:40:50', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1893, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-29 00:40:54', 30, 500, 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab\' at line 1', 'null', NULL, '2022-04-29 00:40:54', NULL, '2022-04-29 00:40:54', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1894, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-29 00:41:51', 184, 0, '', '[74]', NULL, '2022-04-29 00:41:51', NULL, '2022-04-29 00:41:51', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1895, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:43:04', 485, 500, 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'null', NULL, '2022-04-29 00:43:05', NULL, '2022-04-29 00:43:05', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1896, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:43:15', 11969, 500, 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'null', NULL, '2022-04-29 00:43:27', NULL, '2022-04-29 00:43:27', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1897, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:44:16', 23936, 500, 'IllegalStateException: column(creator) 的数据库类型(null) 找不到匹配的 Java 类型', 'null', NULL, '2022-04-29 00:44:40', NULL, '2022-04-29 00:44:40', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1898, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_task\"]}', '2022-04-29 00:47:21', 1110, 0, '', '[79]', NULL, '2022-04-29 00:47:22', NULL, '2022-04-29 00:47:22', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1899, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[]}', '2022-04-29 20:34:21', 16, 0, '', '[]', NULL, '2022-04-29 20:34:21', NULL, '2022-04-29 20:34:21', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1900, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_merchant\"]}', '2022-04-29 21:28:40', 1210, 500, 'ServiceException: 表定义已经存在', 'null', NULL, '2022-04-29 21:28:41', NULL, '2022-04-29 21:28:41', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1901, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_log\"]}', '2022-04-29 21:28:49', 576, 500, 'ServiceException: 表定义已经存在', 'null', NULL, '2022-04-29 21:28:50', NULL, '2022-04-29 21:28:50', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1902, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"pay_notify_log\"]}', '2022-04-29 21:29:10', 16854, 500, 'ServiceException: 表定义已经存在', 'null', NULL, '2022-04-29 21:29:27', NULL, '2022-04-29 21:29:27', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1903, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":74}', '2022-04-29 21:29:32', 56, 0, '', 'true', NULL, '2022-04-29 21:29:32', NULL, '2022-04-29 21:29:32', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1904, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":79}', '2022-04-29 21:29:34', 35, 0, '', 'true', NULL, '2022-04-29 21:29:34', NULL, '2022-04-29 21:29:34', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1905, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-29 21:29:40', 124688, 0, '', '[80]', NULL, '2022-04-29 21:31:44', NULL, '2022-04-29 21:31:44', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1906, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":80}', '2022-04-29 21:36:53', 52, 0, '', 'true', NULL, '2022-04-29 21:36:53', NULL, '2022-04-29 21:36:53', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1907, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-29 21:36:58', 43010, 0, '', '[81]', NULL, '2022-04-29 21:37:41', NULL, '2022-04-29 21:37:41', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1908, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":81}', '2022-04-29 21:37:52', 33, 0, '', 'true', NULL, '2022-04-29 21:37:52', NULL, '2022-04-29 21:37:52', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1909, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-29 21:39:04', 46584, 0, '', '[82]', NULL, '2022-04-29 21:39:51', NULL, '2022-04-29 21:39:51', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1910, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-29 21:39:57', 49, 500, 'ServiceException: 表定义已经存在', 'null', NULL, '2022-04-29 21:39:57', NULL, '2022-04-29 21:39:57', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1911, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":82}', '2022-04-29 21:40:37', 34, 0, '', 'true', NULL, '2022-04-29 21:40:37', NULL, '2022-04-29 21:40:37', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1912, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-29 21:41:15', 148, 0, '', '[83]', NULL, '2022-04-29 21:41:15', NULL, '2022-04-29 21:41:15', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1913, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":83}', '2022-04-29 21:42:16', 33, 0, '', 'true', NULL, '2022-04-29 21:42:16', NULL, '2022-04-29 21:42:16', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1914, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-29 21:42:22', 30578, 0, '', '[84]', NULL, '2022-04-29 21:42:53', NULL, '2022-04-29 21:42:53', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1915, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":84}', '2022-04-29 21:45:19', 34, 0, '', 'true', NULL, '2022-04-29 21:45:19', NULL, '2022-04-29 21:45:19', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1916, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-29 21:45:25', 23558, 0, '', '[85]', NULL, '2022-04-29 21:45:49', NULL, '2022-04-29 21:45:49', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1917, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":85}', '2022-04-29 21:46:03', 37, 0, '', 'true', NULL, '2022-04-29 21:46:03', NULL, '2022-04-29 21:46:03', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1918, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-29 21:46:10', 73377, 0, '', '[86]', NULL, '2022-04-29 21:47:24', NULL, '2022-04-29 21:47:24', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1919, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_oa_leave\"]}', '2022-04-29 21:48:22', 25839, 0, '', '[87]', NULL, '2022-04-29 21:48:48', NULL, '2022-04-29 21:48:48', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1920, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":86}', '2022-04-29 21:50:13', 39, 0, '', 'true', NULL, '2022-04-29 21:50:13', NULL, '2022-04-29 21:50:13', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1921, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":87}', '2022-04-29 21:50:15', 33, 0, '', 'true', NULL, '2022-04-29 21:50:15', NULL, '2022-04-29 21:50:15', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1922, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{\"tableNames\":[\"bpm_form\"]}', '2022-04-29 22:04:47', 176, 0, '', '[88]', NULL, '2022-04-29 22:04:47', NULL, '2022-04-29 22:04:47', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1923, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,同步数据库的表和字段定义', 3, '', '', 'PUT', '/admin-api/infra/codegen/sync-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.syncCodegenFromDB(Long)', '{\"tableId\":88}', '2022-04-29 22:04:53', 659, 500, 'ServiceException: 同步失败,不存在改变', 'null', NULL, '2022-04-29 22:04:54', NULL, '2022-04-29 22:04:54', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1924, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,同步数据库的表和字段定义', 3, '', '', 'PUT', '/admin-api/infra/codegen/sync-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.syncCodegenFromDB(Long)', '{\"tableId\":88}', '2022-04-29 22:05:23', 107, 500, 'ServiceException: 同步失败,不存在改变', 'null', NULL, '2022-04-29 22:05:23', NULL, '2022-04-29 22:05:23', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1925, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,同步数据库的表和字段定义', 3, '', '', 'PUT', '/admin-api/infra/codegen/sync-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.syncCodegenFromDB(Long)', '{\"tableId\":88}', '2022-04-29 22:05:44', 82, 0, '', 'true', NULL, '2022-04-29 22:05:44', NULL, '2022-04-29 22:05:44', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1926, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":88}', '2022-04-29 22:06:17', 40, 0, '', 'true', NULL, '2022-04-29 22:06:17', NULL, '2022-04-29 22:06:17', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1927, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenCreateListFromDBReqVO)', '{\"reqVO\":{\"dataSourceConfigId\":0,\"tableNames\":[\"bpm_form\"]}}', '2022-04-29 22:30:44', 145, 500, 'SQLException: Field \'data_source_config_id\' doesn\'t have a default value', 'null', NULL, '2022-04-29 22:30:44', NULL, '2022-04-29 22:30:44', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1928, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenCreateListFromDBReqVO)', '{\"reqVO\":{\"dataSourceConfigId\":0,\"tableNames\":[\"bpm_form\"]}}', '2022-04-29 22:33:54', 190, 0, '', '[89]', NULL, '2022-04-29 22:33:54', NULL, '2022-04-29 22:33:54', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1929, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenCreateListFromDBReqVO)', '{\"reqVO\":{\"dataSourceConfigId\":9,\"tableNames\":[\"bpm_oa_leave\"]}}', '2022-04-29 22:34:12', 197, 0, '', '[90]', NULL, '2022-04-29 22:34:12', NULL, '2022-04-29 22:34:12', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1930, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenCreateListFromDBReqVO)', '{\"reqVO\":{\"dataSourceConfigId\":9,\"tableNames\":[\"bpm_form\"]}}', '2022-04-29 22:56:11', 213, 0, '', '[91]', NULL, '2022-04-29 22:56:11', NULL, '2022-04-29 22:56:11', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1931, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":91}', '2022-04-29 22:56:21', 46, 0, '', 'true', NULL, '2022-04-29 22:56:21', NULL, '2022-04-29 22:56:21', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1932, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":90}', '2022-04-29 22:56:23', 31, 0, '', 'true', NULL, '2022-04-29 22:56:24', NULL, '2022-04-29 22:56:24', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1933, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":89}', '2022-04-29 22:56:25', 34, 0, '', 'true', NULL, '2022-04-29 22:56:25', NULL, '2022-04-29 22:56:25', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1934, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenList(CodegenCreateListReqVO)', '{\"reqVO\":{\"dataSourceConfigId\":0,\"tableNames\":[\"bpm_form\"]}}', '2022-04-29 23:12:12', 171, 0, '', '[92]', NULL, '2022-04-29 23:12:12', NULL, '2022-04-29 23:12:12', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1935, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,同步数据库的表和字段定义', 3, '', '', 'PUT', '/admin-api/infra/codegen/sync-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.syncCodegenFromDB(Long)', '{\"tableId\":92}', '2022-04-29 23:12:16', 79, 500, 'ServiceException: 同步失败,不存在改变', 'null', NULL, '2022-04-29 23:12:16', NULL, '2022-04-29 23:12:16', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1936, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenList(CodegenCreateListReqVO)', '{\"reqVO\":{\"dataSourceConfigId\":0,\"tableNames\":[\"bpm_task_assign_rule\"]}}', '2022-04-29 23:13:55', 130, 0, '', '[93]', NULL, '2022-04-29 23:13:56', NULL, '2022-04-29 23:13:56', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1937, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{\"tableId\":93}', '2022-04-29 23:13:59', 42, 0, '', 'true', NULL, '2022-04-29 23:13:59', NULL, '2022-04-29 23:13:59', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1938, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenList(CodegenCreateListReqVO)', '{\"reqVO\":{\"dataSourceConfigId\":9,\"tableNames\":[\"bpm_form\"]}}', '2022-04-29 23:14:46', 180, 0, '', '[94]', NULL, '2022-04-29 23:14:47', NULL, '2022-04-29 23:14:47', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1939, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenList(CodegenCreateListReqVO)', '{\"reqVO\":{\"dataSourceConfigId\":0,\"tableNames\":[\"bpm_oa_leave\"]}}', '2022-04-29 23:18:59', 142, 0, '', '[95]', NULL, '2022-04-29 23:18:59', NULL, '2022-04-29 23:18:59', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1940, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenList(CodegenCreateListReqVO)', '{\"reqVO\":{\"dataSourceConfigId\":0,\"tableNames\":[\"system_user_session\"]}}', '2022-04-29 23:48:56', 162, 0, '', '[96]', NULL, '2022-04-29 23:48:56', NULL, '2022-04-29 23:48:56', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1941, '', 1, 2, '管理后台 - 用户', '新增用户', 2, '', '', 'POST', '/admin-api/system/user/create', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.system.controller.admin.user.UserController.createUser(UserCreateReqVO)', '{\"reqVO\":{\"username\":\"admin\",\"nickname\":\"1\",\"remark\":\"11\",\"deptId\":100,\"postIds\":[],\"email\":\"\",\"mobile\":\"\",\"sex\":null,\"avatar\":null,\"password\":\"admin123\"}}', '2022-04-30 02:55:34', 51, 500, 'ServiceException: 用户账号已经存在', 'null', NULL, '2022-04-30 02:55:34', NULL, '2022-04-30 02:55:34', b'0', 1); -INSERT INTO `system_operate_log` (`id`, `trace_id`, `user_id`, `user_type`, `module`, `name`, `type`, `content`, `exts`, `request_method`, `request_url`, `user_ip`, `user_agent`, `java_method`, `java_method_args`, `start_time`, `duration`, `result_code`, `result_msg`, `result_data`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1942, '', 1, 2, '管理后台 - 用户', '新增用户', 2, '', '', 'POST', '/admin-api/system/user/create', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.system.controller.admin.user.UserController.createUser(UserCreateReqVO)', '{\"reqVO\":{\"username\":\"aotemane\",\"nickname\":\"1\",\"remark\":\"11\",\"deptId\":100,\"postIds\":[],\"email\":\"\",\"mobile\":\"\",\"sex\":null,\"avatar\":null,\"password\":\"admin123\"}}', '2022-04-30 02:55:43', 169, 0, '', '115', NULL, '2022-04-30 02:55:43', NULL, '2022-04-30 02:55:43', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for system_post -- ---------------------------- DROP TABLE IF EXISTS `system_post`; -CREATE TABLE `system_post` ( +CREATE TABLE `system_post` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '岗位ID', `code` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '岗位编码', `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '岗位名称', `sort` int NOT NULL COMMENT '显示顺序', `status` tinyint NOT NULL COMMENT '状态(0正常 1停用)', - `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='岗位信息表'; +) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '岗位信息表'; -- ---------------------------- -- Records of system_post @@ -3655,35 +1795,31 @@ CREATE TABLE `system_post` ( BEGIN; INSERT INTO `system_post` (`id`, `code`, `name`, `sort`, `status`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1, 'ceo', '董事长', 1, 0, '', 'admin', '2021-01-06 17:03:48', '1', '2022-04-19 16:53:39', b'0', 1); INSERT INTO `system_post` (`id`, `code`, `name`, `sort`, `status`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (2, 'se', '项目经理', 2, 0, '', 'admin', '2021-01-05 17:03:48', '1', '2021-12-12 10:47:47', b'0', 1); -INSERT INTO `system_post` (`id`, `code`, `name`, `sort`, `status`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (3, 'hr', '人力资源', 3, 0, '', 'admin', '2021-01-05 17:03:48', '', '2022-04-19 04:56:16', b'1', 1); INSERT INTO `system_post` (`id`, `code`, `name`, `sort`, `status`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (4, 'user', '普通员工', 4, 0, '111', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 00:59:35', b'0', 1); -INSERT INTO `system_post` (`id`, `code`, `name`, `sort`, `status`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (5, 'test', '测试岗位', 0, 1, '132', '', '2021-01-07 15:07:44', '', '2021-12-12 10:47:53', b'1', 1); -INSERT INTO `system_post` (`id`, `code`, `name`, `sort`, `status`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (6, '2', '1', 0, 0, NULL, '1', '2022-04-19 18:31:07', '1', '2022-04-19 11:36:22', b'1', 1); -INSERT INTO `system_post` (`id`, `code`, `name`, `sort`, `status`, `remark`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (7, 'xx', 'xx', 0, 0, NULL, '1', '2022-04-19 20:11:56', '1', '2022-04-19 12:13:35', b'1', 1); COMMIT; -- ---------------------------- -- Table structure for system_role -- ---------------------------- DROP TABLE IF EXISTS `system_role`; -CREATE TABLE `system_role` ( +CREATE TABLE `system_role` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '角色ID', `name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '角色名称', `code` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '角色权限字符串', `sort` int NOT NULL COMMENT '显示顺序', - `data_scope` tinyint NOT NULL DEFAULT '1' COMMENT '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)', + `data_scope` tinyint NOT NULL DEFAULT 1 COMMENT '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)', `data_scope_dept_ids` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '数据范围(指定部门数组)', `status` tinyint NOT NULL COMMENT '角色状态(0正常 1停用)', `type` tinyint NOT NULL COMMENT '角色类型', - `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=112 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='角色信息表'; +) ENGINE = InnoDB AUTO_INCREMENT = 112 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '角色信息表'; -- ---------------------------- -- Records of system_role @@ -3701,1256 +1837,62 @@ COMMIT; -- Table structure for system_role_menu -- ---------------------------- DROP TABLE IF EXISTS `system_role_menu`; -CREATE TABLE `system_role_menu` ( +CREATE TABLE `system_role_menu` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增编号', `role_id` bigint NOT NULL COMMENT '角色ID', `menu_id` bigint NOT NULL COMMENT '菜单ID', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=1695 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='角色和菜单关联表'; +) ENGINE = InnoDB AUTO_INCREMENT = 1695 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '角色和菜单关联表'; -- ---------------------------- -- Records of system_role_menu -- ---------------------------- BEGIN; -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (261, 109, 1024, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (262, 109, 1025, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (263, 109, 1, '1', '2022-02-22 00:56:14', '1', '2022-02-22 00:56:14', b'0', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (264, 109, 1026, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (265, 109, 1027, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (266, 109, 1028, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (267, 109, 1029, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (268, 109, 1030, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (269, 109, 1036, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (270, 109, 1037, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (271, 109, 1038, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (272, 109, 1039, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (273, 109, 1040, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (274, 109, 1042, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (275, 109, 1043, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (276, 109, 1045, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (277, 109, 1046, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (278, 109, 1048, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (279, 109, 1093, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (280, 109, 1094, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (281, 109, 1095, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (282, 109, 1096, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (283, 109, 1097, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (284, 109, 1098, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (285, 109, 1100, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (286, 109, 1101, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (287, 109, 1102, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (288, 109, 1103, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (289, 109, 1104, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (290, 109, 1105, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (291, 109, 1106, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (292, 109, 1107, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (293, 109, 1108, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (294, 109, 1109, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (295, 109, 1110, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (296, 109, 1111, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (297, 109, 1112, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (298, 109, 1113, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (299, 109, 1114, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (300, 109, 1115, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (301, 109, 102, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (302, 109, 103, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (303, 109, 104, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (304, 109, 105, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (305, 109, 107, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (306, 109, 108, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (307, 109, 109, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (308, 109, 500, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (309, 109, 1013, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (310, 109, 501, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (311, 109, 1014, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (312, 109, 1015, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (313, 109, 1016, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (314, 109, 1017, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (315, 109, 1018, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (316, 109, 1019, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (317, 109, 1020, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (318, 109, 1021, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (319, 109, 1022, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (320, 109, 1023, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (321, 109, 1161, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (322, 109, 1162, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (323, 109, 1163, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (324, 109, 1164, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (325, 109, 1165, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (326, 109, 1166, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (327, 109, 1173, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (328, 109, 1174, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (329, 109, 1175, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (330, 109, 1176, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (331, 109, 1177, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (332, 109, 1178, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (333, 109, 1179, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (334, 109, 1180, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (335, 109, 1181, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (336, 109, 1182, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (337, 109, 1183, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (338, 109, 1184, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (339, 109, 1117, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (340, 109, 1126, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (341, 109, 1127, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (342, 109, 1128, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (343, 109, 1129, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (344, 109, 1130, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (345, 109, 1131, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (346, 109, 1132, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (347, 109, 1133, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (348, 109, 1134, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (349, 109, 1135, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (350, 109, 1136, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (351, 109, 1137, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (352, 109, 1150, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (353, 109, 2, '1', '2022-02-22 01:06:37', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (354, 109, 1031, '1', '2022-02-22 01:06:37', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (355, 109, 1032, '1', '2022-02-22 01:06:37', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (356, 109, 1033, '1', '2022-02-22 01:06:37', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (357, 109, 1034, '1', '2022-02-22 01:06:37', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (358, 109, 1035, '1', '2022-02-22 01:06:38', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (359, 109, 1050, '1', '2022-02-22 01:06:38', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (360, 109, 1051, '1', '2022-02-22 01:06:38', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (361, 109, 1052, '1', '2022-02-22 01:06:38', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (362, 109, 1053, '1', '2022-02-22 01:06:39', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (363, 109, 1054, '1', '2022-02-22 01:06:39', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (364, 109, 1066, '1', '2022-02-22 01:06:39', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (365, 109, 1067, '1', '2022-02-22 01:06:39', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (366, 109, 1075, '1', '2022-02-22 01:06:40', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (367, 109, 1077, '1', '2022-02-22 01:06:40', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (368, 109, 1078, '1', '2022-02-22 01:06:40', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (369, 109, 1082, '1', '2022-02-22 01:06:40', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (370, 109, 1083, '1', '2022-02-22 01:06:40', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (371, 109, 1084, '1', '2022-02-22 01:06:41', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (372, 109, 1085, '1', '2022-02-22 01:06:41', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (373, 109, 1086, '1', '2022-02-22 01:06:41', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (374, 109, 1087, '1', '2022-02-22 01:06:41', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (375, 109, 1088, '1', '2022-02-22 01:06:42', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (376, 109, 1089, '1', '2022-02-22 01:06:42', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (377, 109, 1090, '1', '2022-02-22 01:06:42', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (378, 109, 1091, '1', '2022-02-22 01:06:42', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (379, 109, 1092, '1', '2022-02-22 01:06:42', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (380, 109, 1116, '1', '2022-02-22 01:06:43', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (381, 109, 1117, '1', '2022-02-22 01:06:43', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (382, 109, 1126, '1', '2022-02-22 01:06:43', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (383, 109, 1127, '1', '2022-02-22 01:06:43', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (384, 109, 1128, '1', '2022-02-22 01:06:43', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (385, 109, 1129, '1', '2022-02-22 01:06:44', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (386, 109, 1130, '1', '2022-02-22 01:06:44', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (387, 109, 106, '1', '2022-02-22 01:06:44', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (388, 109, 1131, '1', '2022-02-22 01:06:44', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (389, 109, 1132, '1', '2022-02-22 01:06:45', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (390, 109, 1133, '1', '2022-02-22 01:06:45', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (391, 109, 1134, '1', '2022-02-22 01:06:45', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (392, 109, 110, '1', '2022-02-22 01:06:45', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (393, 109, 1135, '1', '2022-02-22 01:06:46', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (394, 109, 111, '1', '2022-02-22 01:06:46', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (395, 109, 1136, '1', '2022-02-22 01:06:46', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (396, 109, 112, '1', '2022-02-22 01:06:46', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (397, 109, 1137, '1', '2022-02-22 01:06:46', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (398, 109, 113, '1', '2022-02-22 01:06:47', '1', '2022-02-22 16:10:58', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (399, 109, 1150, '1', '2022-02-22 01:06:47', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (400, 109, 1161, '1', '2022-02-22 01:06:47', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (401, 109, 1162, '1', '2022-02-22 01:06:47', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (402, 109, 1163, '1', '2022-02-22 01:06:48', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (403, 109, 1164, '1', '2022-02-22 01:06:48', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (404, 109, 1165, '1', '2022-02-22 01:06:48', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (405, 109, 1166, '1', '2022-02-22 01:06:48', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (406, 109, 1173, '1', '2022-02-22 01:06:49', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (407, 109, 1174, '1', '2022-02-22 01:06:49', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (408, 109, 1175, '1', '2022-02-22 01:06:49', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (409, 109, 1176, '1', '2022-02-22 01:06:49', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (410, 109, 1177, '1', '2022-02-22 01:06:50', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (411, 109, 1178, '1', '2022-02-22 01:06:50', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (412, 109, 1179, '1', '2022-02-22 01:06:50', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (413, 109, 1180, '1', '2022-02-22 01:06:50', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (414, 109, 1181, '1', '2022-02-22 01:06:50', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (415, 109, 1182, '1', '2022-02-22 01:06:51', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (416, 109, 1183, '1', '2022-02-22 01:06:51', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (417, 109, 1184, '1', '2022-02-22 01:06:51', '1', '2022-02-22 16:11:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (418, 109, 3, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (419, 109, 1056, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (420, 109, 1057, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (421, 109, 1058, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (422, 109, 1059, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (423, 109, 1060, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (424, 109, 1070, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (425, 109, 1071, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (426, 109, 1072, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (427, 109, 1073, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (428, 109, 1074, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (429, 109, 1076, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (430, 109, 114, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (431, 109, 115, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (432, 109, 116, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (433, 2, 1024, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (434, 2, 1, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (435, 2, 1025, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (436, 2, 1026, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (437, 2, 1027, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (438, 2, 1028, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (439, 2, 1029, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (440, 2, 1030, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (441, 2, 1036, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (442, 2, 1037, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (443, 2, 1038, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (444, 2, 1039, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (445, 2, 1040, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (446, 2, 1042, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (447, 2, 1043, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (448, 2, 1045, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (449, 2, 1046, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (450, 2, 1048, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (451, 2, 1063, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (452, 2, 1064, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (453, 2, 1065, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (454, 2, 1093, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (455, 2, 1094, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (456, 2, 1095, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (457, 2, 1096, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (458, 2, 1097, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (459, 2, 1098, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (460, 2, 1100, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (461, 2, 1101, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (462, 2, 1102, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (463, 2, 1103, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (464, 2, 1104, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (465, 2, 1105, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (466, 2, 1106, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (467, 2, 1107, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (468, 2, 1108, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (469, 2, 1109, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (470, 2, 1110, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (471, 2, 1111, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (472, 2, 1112, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (473, 2, 1113, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (474, 2, 1114, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (475, 2, 1115, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (476, 2, 1117, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (477, 2, 100, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (478, 2, 101, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (479, 2, 102, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (480, 2, 1126, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (481, 2, 103, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (482, 2, 1127, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (483, 2, 104, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (484, 2, 1128, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (485, 2, 105, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (486, 2, 1129, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (487, 2, 1130, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (488, 2, 107, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (489, 2, 1131, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (490, 2, 108, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (491, 2, 1132, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (492, 2, 109, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (493, 2, 1133, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (494, 2, 1134, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (495, 2, 1135, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (496, 2, 1136, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (497, 2, 1137, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (498, 2, 1138, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (499, 2, 1139, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (500, 2, 1140, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (501, 2, 1141, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (502, 2, 1142, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (503, 2, 1143, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (504, 2, 1150, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (505, 2, 1161, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (506, 2, 1162, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (507, 2, 1163, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (508, 2, 1164, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (509, 2, 1165, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (510, 2, 1166, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (511, 2, 1173, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (512, 2, 1174, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (513, 2, 1175, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (514, 2, 1176, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (515, 2, 1177, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (516, 2, 1178, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (517, 2, 1179, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (518, 2, 1180, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (519, 2, 1181, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (520, 2, 1182, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (521, 2, 1183, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (522, 2, 1184, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (523, 2, 1224, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (524, 2, 1225, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (525, 2, 1226, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (526, 2, 1227, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (527, 2, 1228, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (528, 2, 1229, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (529, 2, 1001, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (530, 2, 1002, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (531, 2, 1003, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (532, 2, 1004, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (533, 2, 1005, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (534, 2, 1006, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (535, 2, 1007, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (536, 2, 1008, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (537, 2, 1009, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (538, 2, 1010, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (539, 2, 1011, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (540, 2, 1012, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (541, 2, 500, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (542, 2, 1013, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (543, 2, 501, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (544, 2, 1014, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (545, 2, 1015, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (546, 2, 1016, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (547, 2, 1017, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (548, 2, 1018, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (549, 2, 1019, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (550, 2, 1020, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (551, 2, 1021, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (552, 2, 1022, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (553, 2, 1023, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (554, 101, 1024, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (555, 101, 1, '1', '2022-02-22 13:09:55', '1', '2022-03-19 13:45:52', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (556, 101, 1025, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (557, 101, 1026, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (558, 101, 1027, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (559, 101, 1028, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (560, 101, 1029, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (561, 101, 1030, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (562, 101, 1036, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (563, 101, 1037, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (564, 101, 1038, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (565, 101, 1039, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (566, 101, 1040, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (567, 101, 1042, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (568, 101, 1043, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (569, 101, 1045, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (570, 101, 1046, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (571, 101, 1048, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (572, 101, 1063, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (573, 101, 1064, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (574, 101, 1065, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (575, 101, 1093, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (576, 101, 1094, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (577, 101, 1095, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (578, 101, 1224, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (579, 101, 1096, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (580, 101, 1225, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (581, 101, 1097, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (582, 101, 1226, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (583, 101, 1098, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (584, 101, 1227, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (585, 101, 1228, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (586, 101, 1100, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (587, 101, 1229, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (588, 101, 1101, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (589, 101, 1102, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (590, 101, 1103, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (591, 101, 1104, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (592, 101, 1105, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (593, 101, 1106, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (594, 101, 1107, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (595, 101, 1108, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (596, 101, 1109, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (597, 101, 1110, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (598, 101, 1111, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (599, 101, 1112, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (600, 101, 1113, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (601, 101, 1114, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (602, 101, 1115, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (603, 101, 100, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (604, 101, 101, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (605, 101, 102, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:12:01', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (606, 101, 103, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (607, 101, 104, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (608, 101, 1001, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (609, 101, 105, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (610, 101, 1002, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (611, 101, 1003, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (612, 101, 107, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (613, 101, 1004, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (614, 101, 108, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (615, 101, 1005, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (616, 101, 109, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (617, 101, 1006, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (618, 101, 1007, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (619, 101, 1008, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (620, 101, 1009, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (621, 101, 1138, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (622, 101, 1010, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (623, 101, 1139, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (624, 101, 1011, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (625, 101, 1140, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (626, 101, 1012, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (627, 101, 500, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (628, 101, 1141, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (629, 101, 1013, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (630, 101, 501, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (631, 101, 1142, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (632, 101, 1014, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (633, 101, 1143, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (634, 101, 1015, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (635, 101, 1016, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (636, 101, 1017, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (637, 101, 1018, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (638, 101, 1019, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (639, 101, 1020, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (640, 101, 1021, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (641, 101, 1022, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (642, 101, 1023, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (643, 101, 1117, '1', '2022-02-22 13:12:45', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (644, 101, 1126, '1', '2022-02-22 13:12:45', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (645, 101, 1127, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (646, 101, 1128, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (647, 101, 1129, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (648, 101, 1130, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (649, 101, 1131, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (650, 101, 1132, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (651, 101, 1133, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (652, 101, 1134, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (653, 101, 1135, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (654, 101, 1136, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (655, 101, 1137, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (656, 101, 1150, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (657, 101, 1161, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (658, 101, 1162, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (659, 101, 1163, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (660, 101, 1164, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (661, 101, 1165, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (662, 101, 1166, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (663, 101, 1173, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (664, 101, 1174, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (665, 101, 1175, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (666, 101, 1176, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (667, 101, 1177, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (668, 101, 1178, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (669, 101, 1179, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (670, 101, 1180, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (671, 101, 1181, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (672, 101, 1182, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (673, 101, 1183, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (674, 101, 1184, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (675, 2, 2, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (676, 2, 1031, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (677, 2, 1032, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (678, 2, 1033, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (679, 2, 1034, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (680, 2, 1035, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (681, 2, 1050, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (682, 2, 1051, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (683, 2, 1052, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (684, 2, 1053, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (685, 2, 1054, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (686, 2, 1066, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (687, 2, 1067, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (688, 2, 1075, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (689, 2, 1077, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (690, 2, 1078, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (691, 2, 1082, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (692, 2, 1083, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (693, 2, 1084, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (694, 2, 1085, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (695, 2, 1086, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (696, 2, 1087, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (697, 2, 1088, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (698, 2, 1089, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (699, 2, 1090, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (700, 2, 1091, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (701, 2, 1092, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (702, 2, 1116, '1', '2022-02-22 13:16:57', '1', '2022-04-17 04:35:21', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (703, 2, 106, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (704, 2, 110, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (705, 2, 111, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (706, 2, 112, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (707, 2, 113, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (708, 101, 2, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (709, 101, 1031, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (710, 101, 1032, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (711, 101, 1033, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (712, 101, 1034, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (713, 101, 1035, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (714, 101, 1050, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (715, 101, 1051, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (716, 101, 1052, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (717, 101, 1053, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (718, 101, 1054, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (719, 101, 1066, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (720, 101, 1067, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (721, 101, 1075, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (722, 101, 1077, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (723, 101, 1078, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (724, 101, 1082, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (725, 101, 1083, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (726, 101, 1084, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (727, 101, 1085, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (728, 101, 1086, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (729, 101, 1087, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (730, 101, 1088, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (731, 101, 1089, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (732, 101, 1090, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (733, 101, 1091, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (734, 101, 1092, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (735, 101, 1116, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (736, 101, 106, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (737, 101, 110, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (738, 101, 111, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (739, 101, 112, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (740, 101, 113, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (741, 109, 1161, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (742, 109, 1162, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (743, 109, 1163, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (744, 109, 1164, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (745, 109, 1165, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (746, 109, 1166, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (747, 109, 1173, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (748, 109, 1174, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (749, 109, 1175, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (750, 109, 1176, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (751, 109, 1177, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (752, 109, 1178, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (753, 109, 1179, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (754, 109, 1180, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (755, 109, 1181, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (756, 109, 1182, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (757, 109, 1183, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (758, 109, 1184, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (759, 109, 1117, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (760, 109, 1126, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (761, 109, 1127, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (762, 109, 1128, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (763, 109, 1129, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (764, 109, 1130, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (765, 109, 1131, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (766, 109, 1132, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (767, 109, 1133, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (768, 109, 1134, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (769, 109, 1135, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (770, 109, 1136, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (771, 109, 1137, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (772, 109, 1150, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (773, 109, 100, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:35:16', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (774, 109, 101, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:35:16', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (775, 109, 1063, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (776, 109, 1064, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (777, 109, 1001, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (778, 109, 1065, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (779, 109, 1002, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (780, 109, 1003, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (781, 109, 1004, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (782, 109, 1005, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (783, 109, 1006, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (784, 109, 1007, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (785, 109, 1008, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (786, 109, 1009, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (787, 109, 1010, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (788, 109, 1011, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (789, 109, 1012, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (790, 109, 102, '1', '2022-02-23 00:13:04', '1', '2022-02-23 11:35:16', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (791, 109, 1013, '1', '2022-02-23 00:13:04', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (792, 109, 1014, '1', '2022-02-23 00:13:04', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (793, 109, 1015, '1', '2022-02-23 00:13:04', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (794, 109, 1016, '1', '2022-02-23 00:13:04', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (795, 109, 1179, '1', '2022-02-23 00:13:18', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (796, 109, 1180, '1', '2022-02-23 00:13:18', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (797, 109, 1181, '1', '2022-02-23 00:13:18', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (798, 109, 1117, '1', '2022-02-23 00:13:18', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (799, 109, 1182, '1', '2022-02-23 00:13:18', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (800, 109, 1183, '1', '2022-02-23 00:13:18', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (801, 109, 1184, '1', '2022-02-23 00:13:18', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (802, 109, 2, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (803, 109, 1031, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (804, 109, 1032, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (805, 109, 1161, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (806, 109, 1033, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (807, 109, 1162, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (808, 109, 1034, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (809, 109, 1163, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (810, 109, 1035, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (811, 109, 1164, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (812, 109, 1165, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (813, 109, 1166, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (814, 109, 1173, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (815, 109, 1174, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (816, 109, 1175, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (817, 109, 1176, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (818, 109, 1177, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (819, 109, 1178, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (820, 109, 1050, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (821, 109, 1051, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (822, 109, 1052, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (823, 109, 1053, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (824, 109, 1054, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (825, 109, 1066, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (826, 109, 1067, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (827, 109, 1075, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (828, 109, 1077, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (829, 109, 1078, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (830, 109, 1082, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (831, 109, 1083, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (832, 109, 1084, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (833, 109, 1085, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (834, 109, 1086, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (835, 109, 1087, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (836, 109, 1088, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (837, 109, 1089, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (838, 109, 1090, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (839, 109, 1091, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (840, 109, 1092, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (841, 109, 1116, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (842, 109, 1126, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (843, 109, 1127, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (844, 109, 1128, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (845, 109, 1129, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (846, 109, 1130, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (847, 109, 106, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (848, 109, 1131, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (849, 109, 1132, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (850, 109, 1133, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (851, 109, 1134, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (852, 109, 110, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (853, 109, 1135, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (854, 109, 111, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (855, 109, 1136, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (856, 109, 112, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (857, 109, 1137, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (858, 109, 113, '1', '2022-02-23 00:13:34', '1', '2022-02-22 16:13:44', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (859, 109, 1150, '1', '2022-02-23 00:13:34', '1', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (860, 109, 1050, '1', '2022-02-23 00:14:05', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (861, 109, 1051, '1', '2022-02-23 00:14:05', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (862, 109, 1052, '1', '2022-02-23 00:14:05', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (863, 109, 1053, '1', '2022-02-23 00:14:05', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (864, 109, 1054, '1', '2022-02-23 00:14:05', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (865, 109, 1075, '1', '2022-02-23 00:14:05', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (866, 109, 1087, '1', '2022-02-23 00:14:05', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (867, 109, 110, '1', '2022-02-23 00:14:05', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (868, 110, 1024, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (869, 110, 1, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (870, 110, 1025, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (871, 110, 1026, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (872, 110, 2, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (873, 110, 1027, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (874, 110, 3, '110', '2022-02-23 00:16:21', '110', '2022-02-23 05:07:57', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (875, 110, 1028, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (876, 110, 1029, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (877, 110, 5, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (878, 110, 1030, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (879, 110, 1031, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (880, 110, 1032, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (881, 110, 1033, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (882, 110, 1034, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (883, 110, 1035, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (884, 110, 1036, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (885, 110, 1037, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (886, 110, 1038, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (887, 110, 1039, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (888, 110, 1040, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (889, 110, 1042, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (890, 110, 1043, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (891, 110, 1045, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (892, 110, 1046, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (893, 110, 1048, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (894, 110, 1050, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (895, 110, 1051, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (896, 110, 1052, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (897, 110, 1053, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (898, 110, 1054, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (899, 110, 1056, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (900, 110, 1057, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (901, 110, 1058, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (902, 110, 1059, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (903, 110, 1060, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (904, 110, 1063, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (905, 110, 1064, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (906, 110, 1065, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (907, 110, 1066, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (908, 110, 1067, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (909, 110, 1070, '110', '2022-02-23 00:16:21', '110', '2022-02-23 05:00:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (910, 110, 1071, '110', '2022-02-23 00:16:21', '110', '2022-02-23 05:00:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (911, 110, 1072, '110', '2022-02-23 00:16:21', '110', '2022-02-23 05:00:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (912, 110, 1073, '110', '2022-02-23 00:16:21', '110', '2022-02-23 05:00:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (913, 110, 1074, '110', '2022-02-23 00:16:21', '110', '2022-02-23 05:00:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (914, 110, 1075, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (915, 110, 1076, '110', '2022-02-23 00:16:21', '110', '2022-02-23 05:00:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (916, 110, 1077, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (917, 110, 1078, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (918, 110, 1082, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (919, 110, 1083, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (920, 110, 1084, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (921, 110, 1085, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (922, 110, 1086, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (923, 110, 1087, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (924, 110, 1088, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (925, 110, 1089, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (926, 110, 1090, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (927, 110, 1091, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (928, 110, 1092, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (929, 110, 1093, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (930, 110, 1094, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (931, 110, 1095, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (932, 110, 1096, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (933, 110, 1097, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (934, 110, 1098, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (935, 110, 1100, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (936, 110, 1101, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (937, 110, 1102, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (938, 110, 1103, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (939, 110, 1104, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (940, 110, 1105, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (941, 110, 1106, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (942, 110, 1107, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (943, 110, 1108, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (944, 110, 1109, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (945, 110, 1110, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (946, 110, 1111, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (947, 110, 1112, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (948, 110, 1113, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (949, 110, 1114, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (950, 110, 1115, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (951, 110, 1116, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (952, 110, 1117, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (953, 110, 1118, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (954, 110, 1119, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (955, 110, 1120, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (956, 110, 100, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (957, 110, 101, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (958, 110, 102, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (959, 110, 1126, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (960, 110, 103, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (961, 110, 1127, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (962, 110, 104, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (963, 110, 1128, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (964, 110, 105, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (965, 110, 1129, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (966, 110, 1130, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (967, 110, 106, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (968, 110, 107, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (969, 110, 1131, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (970, 110, 108, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (971, 110, 1132, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (972, 110, 109, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (973, 110, 1133, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (974, 110, 1134, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (975, 110, 110, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (976, 110, 1135, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (977, 110, 111, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (978, 110, 1136, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (979, 110, 112, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (980, 110, 1137, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (981, 110, 113, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (982, 110, 1138, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (983, 110, 114, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:07:57', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (984, 110, 1139, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (985, 110, 115, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (986, 110, 1140, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (987, 110, 116, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:00:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (988, 110, 1141, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (989, 110, 1142, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (990, 110, 1143, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (991, 110, 1150, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (992, 110, 1161, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (993, 110, 1162, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (994, 110, 1163, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (995, 110, 1164, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (996, 110, 1165, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (997, 110, 1166, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (998, 110, 1173, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (999, 110, 1174, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1000, 110, 1175, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1001, 110, 1176, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1002, 110, 1177, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1003, 110, 1178, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1004, 110, 1179, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1005, 110, 1180, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1006, 110, 1181, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1007, 110, 1182, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1008, 110, 1183, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1009, 110, 1184, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1010, 110, 1185, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1011, 110, 1186, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1012, 110, 1187, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1013, 110, 1188, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1014, 110, 1189, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1015, 110, 1190, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1016, 110, 1191, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1017, 110, 1192, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1018, 110, 1193, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1019, 110, 1194, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1020, 110, 1195, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1021, 110, 1196, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1022, 110, 1197, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1023, 110, 1198, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1024, 110, 1199, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1025, 110, 1200, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1026, 110, 1024, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1027, 110, 1201, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1028, 110, 1202, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1029, 110, 1, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1030, 110, 1207, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1031, 110, 1025, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1032, 110, 1026, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1033, 110, 1208, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1034, 110, 1209, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1035, 110, 2, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1036, 110, 1210, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1037, 110, 1027, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1038, 110, 3, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:07:57', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1039, 110, 1211, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1040, 110, 1212, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1041, 110, 1028, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1042, 110, 1213, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1043, 110, 1029, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1044, 110, 1215, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1045, 110, 5, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1046, 110, 1030, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1047, 110, 1216, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1048, 110, 1217, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1049, 110, 1031, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1050, 110, 1218, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1051, 110, 1032, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1052, 110, 1219, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1053, 110, 1033, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1054, 110, 1220, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1055, 110, 1034, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1056, 110, 1221, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1057, 110, 1035, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1058, 110, 1036, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1059, 110, 1222, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1060, 110, 1224, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1061, 110, 1037, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1062, 110, 1038, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1063, 110, 1225, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1064, 110, 1226, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1065, 110, 1039, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1066, 110, 1227, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1067, 110, 1040, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1068, 110, 1228, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1069, 110, 1042, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1070, 110, 1229, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1071, 110, 1043, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1072, 110, 1001, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1073, 110, 1045, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1074, 110, 1046, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1075, 110, 1002, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1076, 110, 1003, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1077, 110, 1048, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1078, 110, 1004, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1079, 110, 1050, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1080, 110, 1051, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1081, 110, 1005, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1082, 110, 1052, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1083, 110, 1006, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1084, 110, 1053, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1085, 110, 1007, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1086, 110, 1054, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1087, 110, 1056, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1088, 110, 1057, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1089, 110, 1008, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1090, 110, 1058, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1091, 110, 1059, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1092, 110, 1009, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1093, 110, 1060, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1094, 110, 1010, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1095, 110, 1011, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1096, 110, 1063, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1097, 110, 1012, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1098, 110, 1064, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1099, 110, 1065, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1100, 110, 500, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1101, 110, 1066, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1102, 110, 1013, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1103, 110, 1067, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1104, 110, 501, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1105, 110, 1070, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:00:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1106, 110, 1014, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1107, 110, 1071, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:00:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1108, 110, 1015, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1109, 110, 1072, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:00:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1110, 110, 1016, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1111, 110, 1073, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:00:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1112, 110, 1017, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1113, 110, 1074, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:00:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1114, 110, 1018, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1115, 110, 1075, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1116, 110, 1019, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1117, 110, 1076, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:00:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1118, 110, 1020, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1119, 110, 1077, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1120, 110, 1021, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1121, 110, 1078, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1122, 110, 1022, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1123, 110, 1082, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1124, 110, 1023, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1125, 110, 1083, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1126, 110, 1084, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1127, 110, 1085, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1128, 110, 1086, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1129, 110, 1087, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1130, 110, 1088, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1131, 110, 1089, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1132, 110, 1090, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1133, 110, 1091, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1134, 110, 1092, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1135, 110, 1093, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1136, 110, 1094, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1137, 110, 1095, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1138, 110, 1096, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1139, 110, 1097, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1140, 110, 1098, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1141, 110, 1100, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1142, 110, 1101, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1143, 110, 1102, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1144, 110, 1103, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1145, 110, 1104, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1146, 110, 1105, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1147, 110, 1106, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1148, 110, 1107, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1149, 110, 1108, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1150, 110, 1109, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1151, 110, 1110, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1152, 110, 1111, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1153, 110, 1112, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1154, 110, 1113, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1155, 110, 1114, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1156, 110, 1115, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1157, 110, 1116, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1158, 110, 1117, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1159, 110, 1118, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1160, 110, 1119, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1161, 110, 1120, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1162, 110, 100, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1163, 110, 101, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1164, 110, 102, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1165, 110, 1126, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1166, 110, 103, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1167, 110, 1127, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1168, 110, 104, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1169, 110, 1128, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1170, 110, 105, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1171, 110, 1129, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1172, 110, 1130, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1173, 110, 106, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1174, 110, 107, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1175, 110, 1131, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1176, 110, 108, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1177, 110, 1132, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1178, 110, 109, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1179, 110, 1133, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1180, 110, 1134, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1181, 110, 110, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1182, 110, 1135, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1183, 110, 111, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1184, 110, 1136, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1185, 110, 112, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1186, 110, 1137, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1187, 110, 113, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1188, 110, 1138, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1189, 110, 114, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:07:57', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1190, 110, 1139, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1191, 110, 115, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1192, 110, 1140, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1193, 110, 116, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:00:30', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1194, 110, 1141, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1195, 110, 1142, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1196, 110, 1143, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1197, 110, 1150, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1198, 110, 1161, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1199, 110, 1162, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1200, 110, 1163, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1201, 110, 1164, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1202, 110, 1165, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1203, 110, 1166, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1204, 110, 1173, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1205, 110, 1174, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1206, 110, 1175, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1207, 110, 1176, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1208, 110, 1177, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1209, 110, 1178, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1210, 110, 1179, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1211, 110, 1180, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1212, 110, 1181, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1213, 110, 1182, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1214, 110, 1183, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1215, 110, 1184, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1216, 110, 1185, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1217, 110, 1186, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1218, 110, 1187, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1219, 110, 1188, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1220, 110, 1189, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1221, 110, 1190, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1222, 110, 1191, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1223, 110, 1192, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1224, 110, 1193, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1225, 110, 1194, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1226, 110, 1195, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1227, 110, 1196, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1228, 110, 1197, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1229, 110, 1198, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1230, 110, 1199, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1231, 110, 1200, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1232, 110, 1201, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1233, 110, 1202, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1234, 110, 1207, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1235, 110, 1208, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1236, 110, 1209, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1237, 110, 1210, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1238, 110, 1211, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1239, 110, 1212, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1240, 110, 1213, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1241, 110, 1215, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1242, 110, 1216, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1243, 110, 1217, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1244, 110, 1218, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1245, 110, 1219, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1246, 110, 1220, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1247, 110, 1221, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1248, 110, 1222, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1249, 110, 1224, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1250, 110, 1225, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1251, 110, 1226, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1252, 110, 1227, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1253, 110, 1228, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1254, 110, 1229, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1255, 110, 1001, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1256, 110, 1002, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1257, 110, 1003, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1258, 110, 1004, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1259, 110, 1005, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1260, 110, 1006, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1261, 110, 1007, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1262, 110, 1008, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1263, 110, 1009, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1264, 110, 1010, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1265, 110, 1011, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1266, 110, 1012, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1267, 110, 500, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1268, 110, 1013, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1269, 110, 501, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1270, 110, 1014, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1271, 110, 1015, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1272, 110, 1016, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1273, 110, 1017, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1274, 110, 1018, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1275, 110, 1019, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1276, 110, 1020, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1277, 110, 1021, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1278, 110, 1022, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1279, 110, 1023, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1280, 109, 3, '1', '2022-02-23 00:23:24', '1', '2022-02-23 11:35:16', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1281, 109, 1056, '1', '2022-02-23 00:23:24', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1282, 109, 1057, '1', '2022-02-23 00:23:24', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1283, 109, 1058, '1', '2022-02-23 00:23:24', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1284, 109, 1059, '1', '2022-02-23 00:23:24', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1285, 109, 1060, '1', '2022-02-23 00:23:24', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1286, 109, 1070, '1', '2022-02-23 00:23:24', '1', '2022-02-23 11:35:16', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1287, 109, 1071, '1', '2022-02-23 00:23:24', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1288, 109, 1072, '1', '2022-02-23 00:23:24', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1289, 109, 1073, '1', '2022-02-23 00:23:24', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1290, 109, 1074, '1', '2022-02-23 00:23:24', '1', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1291, 109, 1076, '1', '2022-02-23 00:23:25', '1', '2022-02-23 11:35:16', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1292, 109, 114, '1', '2022-02-23 00:23:25', '1', '2022-02-23 11:35:16', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1293, 109, 115, '1', '2022-02-23 00:23:25', '1', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1294, 109, 116, '1', '2022-02-23 00:23:25', '1', '2022-02-23 11:35:16', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1295, 110, 1024, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1296, 110, 1, '110', '2022-02-23 00:23:55', '110', '2022-02-23 00:23:55', b'0', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1297, 110, 1025, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1298, 110, 1026, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1299, 110, 2, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1300, 110, 1027, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1301, 110, 1028, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1302, 110, 1029, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1303, 110, 5, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1304, 110, 1030, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1305, 110, 1031, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1306, 110, 1032, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1307, 110, 1033, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1308, 110, 1034, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1309, 110, 1035, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1310, 110, 1036, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1311, 110, 1037, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1312, 110, 1038, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1313, 110, 1039, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1314, 110, 1040, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1315, 110, 1042, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1316, 110, 1043, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1317, 110, 1045, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1318, 110, 1046, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1319, 110, 1048, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1320, 110, 1050, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1321, 110, 1051, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1322, 110, 1052, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1323, 110, 1053, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1324, 110, 1054, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1325, 110, 1063, '110', '2022-02-23 00:23:55', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1326, 110, 1064, '110', '2022-02-23 00:23:55', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1327, 110, 1065, '110', '2022-02-23 00:23:55', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1328, 110, 1066, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1329, 110, 1067, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1330, 110, 1075, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1331, 110, 1077, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1332, 110, 1078, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1333, 110, 1082, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1334, 110, 1083, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1335, 110, 1084, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1336, 110, 1085, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1337, 110, 1086, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1338, 110, 1087, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1339, 110, 1088, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1340, 110, 1089, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1341, 110, 1090, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1342, 110, 1091, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1343, 110, 1092, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1344, 110, 1093, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1345, 110, 1094, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1346, 110, 1095, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1347, 110, 1096, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1348, 110, 1097, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1349, 110, 1098, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1350, 110, 1100, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1351, 110, 1101, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1352, 110, 1102, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1353, 110, 1103, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1354, 110, 1104, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1355, 110, 1105, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1356, 110, 1106, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1357, 110, 1107, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1358, 110, 1108, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1359, 110, 1109, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1360, 110, 1110, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1361, 110, 1111, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1362, 110, 1112, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1363, 110, 1113, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1364, 110, 1114, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1365, 110, 1115, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1366, 110, 1116, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1367, 110, 1117, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1368, 110, 1118, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1369, 110, 1119, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1370, 110, 1120, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1371, 110, 100, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:35:16', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1372, 110, 101, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:35:16', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1373, 110, 102, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:35:16', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1374, 110, 1126, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1375, 110, 103, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1376, 110, 1127, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1377, 110, 104, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1378, 110, 1128, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1379, 110, 105, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1380, 110, 1129, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1381, 110, 1130, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1382, 110, 106, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1383, 110, 107, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1384, 110, 1131, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1385, 110, 108, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1386, 110, 1132, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1387, 110, 109, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1388, 110, 1133, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1389, 110, 1134, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1390, 110, 110, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1391, 110, 1135, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1392, 110, 111, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1393, 110, 1136, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1394, 110, 112, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1395, 110, 1137, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1396, 110, 113, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1397, 110, 1138, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1398, 110, 1139, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1399, 110, 1140, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1400, 110, 1141, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1401, 110, 1142, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1402, 110, 1143, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1403, 110, 1150, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1404, 110, 1161, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1405, 110, 1162, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1406, 110, 1163, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1407, 110, 1164, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1408, 110, 1165, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1409, 110, 1166, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1410, 110, 1173, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1411, 110, 1174, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1412, 110, 1175, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1413, 110, 1176, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1414, 110, 1177, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1415, 110, 1178, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1416, 110, 1179, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1417, 110, 1180, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1418, 110, 1181, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1419, 110, 1182, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1420, 110, 1183, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1421, 110, 1184, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1422, 110, 1185, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1423, 110, 1186, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1424, 110, 1187, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1425, 110, 1188, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1426, 110, 1189, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1427, 110, 1190, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1428, 110, 1191, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1429, 110, 1192, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1430, 110, 1193, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1431, 110, 1194, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1432, 110, 1195, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1433, 110, 1196, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1434, 110, 1197, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1435, 110, 1198, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1436, 110, 1199, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1437, 110, 1200, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1438, 110, 1201, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1439, 110, 1202, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1440, 110, 1207, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1441, 110, 1208, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1442, 110, 1209, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1443, 110, 1210, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1444, 110, 1211, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1445, 110, 1212, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1446, 110, 1213, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1447, 110, 1215, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1448, 110, 1216, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1449, 110, 1217, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1450, 110, 1218, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1451, 110, 1219, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1452, 110, 1220, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1453, 110, 1221, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1454, 110, 1222, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1455, 110, 1224, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1456, 110, 1225, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1457, 110, 1226, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1458, 110, 1227, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1459, 110, 1228, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1460, 110, 1229, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1461, 110, 1001, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1462, 110, 1002, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1463, 110, 1003, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1464, 110, 1004, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1465, 110, 1005, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1466, 110, 1006, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1467, 110, 1007, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1468, 110, 1008, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1469, 110, 1009, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1470, 110, 1010, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1471, 110, 1011, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1472, 110, 1012, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1473, 110, 500, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1474, 110, 1013, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1475, 110, 501, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1476, 110, 1014, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1477, 110, 1015, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1478, 110, 1016, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1479, 110, 1017, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1480, 110, 1018, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1481, 110, 1019, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1482, 110, 1020, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1483, 110, 1021, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1484, 110, 1022, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1485, 110, 1023, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', b'1', 121); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1486, 109, 103, '1', '2022-02-23 19:32:14', '1', '2022-02-23 19:32:14', b'0', 121); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1487, 109, 104, '1', '2022-02-23 19:32:14', '1', '2022-02-23 19:32:14', b'0', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1488, 109, 105, '1', '2022-02-23 19:43:22', '1', '2022-03-19 10:39:06', b'1', 121); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1489, 1, 1, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1490, 1, 2, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1491, 1, 3, '1', '2022-02-23 20:03:57', '1', '2022-02-23 12:04:07', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1492, 1, 1070, '1', '2022-02-23 20:03:57', '1', '2022-02-23 12:04:07', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1493, 1, 1076, '1', '2022-02-23 20:03:57', '1', '2022-02-23 12:04:07', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1494, 1, 1077, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1495, 1, 1078, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1496, 1, 1083, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); @@ -4961,7 +1903,6 @@ INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_t INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1501, 1, 1100, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1502, 1, 1107, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1503, 1, 1110, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1504, 1, 1116, '1', '2022-02-23 20:03:57', '1', '2022-04-17 04:35:21', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1505, 1, 1117, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1506, 1, 100, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1507, 1, 101, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); @@ -4978,21 +1919,13 @@ INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_t INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1518, 1, 111, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1519, 1, 112, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1520, 1, 113, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1521, 1, 114, '1', '2022-02-23 20:03:57', '1', '2022-02-23 12:04:07', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1522, 1, 1138, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1523, 1, 115, '1', '2022-02-23 20:03:57', '1', '2022-02-23 12:04:07', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1524, 1, 116, '1', '2022-02-23 20:03:57', '1', '2022-02-23 12:04:07', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1525, 1, 1224, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1526, 1, 1225, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1527, 1, 500, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1528, 1, 501, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1529, 109, 1024, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', b'0', 121); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1530, 109, 1025, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', b'0', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1531, 109, 1026, '1', '2022-02-23 20:30:14', '1', '2022-03-19 10:39:06', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1532, 109, 1027, '1', '2022-02-23 20:30:14', '1', '2022-03-19 10:39:06', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1533, 109, 1028, '1', '2022-02-23 20:30:14', '1', '2022-03-19 10:39:06', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1534, 109, 1029, '1', '2022-02-23 20:30:14', '1', '2022-03-19 10:39:06', b'1', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1535, 109, 1030, '1', '2022-02-23 20:30:14', '1', '2022-03-19 10:39:06', b'1', 121); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1536, 109, 1017, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', b'0', 121); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1537, 109, 1018, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', b'0', 121); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1538, 109, 1019, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', b'0', 121); @@ -5000,50 +1933,11 @@ INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_t INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1540, 109, 1021, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', b'0', 121); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1541, 109, 1022, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', b'0', 121); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1542, 109, 1023, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', b'0', 121); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1543, 101, 1013, '1', '2022-02-27 11:11:22', '1', '2022-02-27 03:12:01', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1544, 101, 1014, '1', '2022-02-27 11:11:22', '1', '2022-02-27 03:12:01', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1545, 101, 1015, '1', '2022-02-27 11:11:22', '1', '2022-02-27 03:12:01', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1546, 101, 1016, '1', '2022-02-27 11:11:22', '1', '2022-02-27 03:12:01', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1547, 101, 103, '1', '2022-02-27 11:12:02', '1', '2022-02-27 03:56:45', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1548, 101, 1017, '1', '2022-02-27 11:12:02', '1', '2022-02-27 03:56:45', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1549, 101, 1018, '1', '2022-02-27 11:12:02', '1', '2022-02-27 03:56:45', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1550, 101, 1019, '1', '2022-02-27 11:12:02', '1', '2022-02-27 03:56:45', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1551, 101, 1020, '1', '2022-02-27 11:12:02', '1', '2022-02-27 03:56:45', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1552, 101, 1110, '1', '2022-02-27 11:56:45', '1', '2022-02-27 04:03:43', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1553, 101, 1111, '1', '2022-02-27 11:56:45', '1', '2022-02-27 04:03:43', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1554, 101, 1112, '1', '2022-02-27 11:56:45', '1', '2022-02-27 04:03:43', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1555, 101, 1113, '1', '2022-02-27 11:56:45', '1', '2022-02-27 04:03:43', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1556, 101, 1114, '1', '2022-02-27 11:56:45', '1', '2022-02-27 04:03:43', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1557, 101, 1115, '1', '2022-02-27 11:56:45', '1', '2022-02-27 04:03:43', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1558, 101, 103, '1', '2022-02-27 12:01:29', '1', '2022-02-27 04:08:47', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1559, 101, 1017, '1', '2022-02-27 12:01:29', '1', '2022-02-27 04:08:47', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1560, 101, 1018, '1', '2022-02-27 12:01:29', '1', '2022-02-27 04:08:47', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1561, 101, 1019, '1', '2022-02-27 12:01:30', '1', '2022-02-27 04:08:47', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1562, 101, 1020, '1', '2022-02-27 12:01:30', '1', '2022-02-27 04:08:47', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1563, 101, 100, '1', '2022-02-27 12:08:36', '1', '2022-02-27 04:11:38', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1564, 101, 1001, '1', '2022-02-27 12:08:36', '1', '2022-02-27 04:11:38', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1565, 101, 1002, '1', '2022-02-27 12:08:37', '1', '2022-02-27 04:11:38', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1566, 101, 1003, '1', '2022-02-27 12:08:37', '1', '2022-02-27 04:11:38', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1567, 101, 1004, '1', '2022-02-27 12:08:37', '1', '2022-02-27 04:11:38', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1568, 101, 1005, '1', '2022-02-27 12:08:37', '1', '2022-02-27 04:11:38', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1569, 101, 1006, '1', '2022-02-27 12:08:38', '1', '2022-02-27 04:11:38', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1570, 101, 1007, '1', '2022-02-27 12:08:38', '1', '2022-02-27 04:11:38', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1571, 101, 103, '1', '2022-02-27 12:11:39', '1', '2022-03-19 13:45:52', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1572, 101, 1017, '1', '2022-02-27 12:11:39', '1', '2022-03-19 13:45:52', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1573, 101, 1018, '1', '2022-02-27 12:11:39', '1', '2022-03-19 13:45:52', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1574, 101, 1019, '1', '2022-02-27 12:11:39', '1', '2022-03-19 13:45:52', b'1', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1575, 101, 1020, '1', '2022-02-27 12:11:39', '1', '2022-03-19 13:45:52', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1576, 111, 1024, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', b'0', 122); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1577, 111, 1025, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', b'0', 122); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1578, 111, 1, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', b'0', 122); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1579, 111, 1026, '1', '2022-03-07 21:37:58', '1', '2022-03-19 10:39:06', b'1', 122); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1580, 111, 1027, '1', '2022-03-07 21:37:58', '1', '2022-03-19 10:39:06', b'1', 122); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1581, 111, 1028, '1', '2022-03-07 21:37:58', '1', '2022-03-19 10:39:06', b'1', 122); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1582, 111, 1029, '1', '2022-03-07 21:37:58', '1', '2022-03-19 10:39:06', b'1', 122); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1583, 111, 1030, '1', '2022-03-07 21:37:58', '1', '2022-03-19 10:39:06', b'1', 122); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1584, 111, 103, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', b'0', 122); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1585, 111, 104, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', b'0', 122); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1586, 111, 105, '1', '2022-03-07 21:37:58', '1', '2022-03-19 10:39:06', b'1', 122); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1587, 111, 1017, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', b'0', 122); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1588, 111, 1018, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', b'0', 122); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1589, 111, 1019, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', b'0', 122); @@ -5143,7 +2037,6 @@ INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_t INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1683, 101, 1241, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1684, 101, 1242, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1685, 101, 1243, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', b'0', 1); -INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1686, 101, 1116, '1', '2022-04-01 22:21:37', '1', '2022-04-17 04:35:21', b'1', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1687, 101, 106, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1688, 101, 110, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', b'0', 1); INSERT INTO `system_role_menu` (`id`, `role_id`, `menu_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1689, 101, 111, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', b'0', 1); @@ -5158,26 +2051,24 @@ COMMIT; -- Table structure for system_sensitive_word -- ---------------------------- DROP TABLE IF EXISTS `system_sensitive_word`; -CREATE TABLE `system_sensitive_word` ( +CREATE TABLE `system_sensitive_word` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '敏感词', - `description` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '描述', - `tags` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '标签数组', + `description` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '描述', + `tags` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '标签数组', `status` tinyint NOT NULL COMMENT '状态', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='敏感词'; +) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '敏感词'; -- ---------------------------- -- Records of system_sensitive_word -- ---------------------------- BEGIN; -INSERT INTO `system_sensitive_word` (`id`, `name`, `description`, `tags`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1, '测试', '啊哈哈', '论坛,吃瓜', 0, '1', '2022-04-08 19:51:45', '1', '2022-04-08 12:10:45', b'1'); -INSERT INTO `system_sensitive_word` (`id`, `name`, `description`, `tags`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (2, '测试', '哈哈', '论坛,吃瓜,蔬菜', 0, '1', '2022-04-08 20:10:27', '1', '2022-04-08 13:13:52', b'1'); INSERT INTO `system_sensitive_word` (`id`, `name`, `description`, `tags`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (3, '土豆', '好呀', '蔬菜,短信', 0, '1', '2022-04-08 21:07:12', '1', '2022-04-09 10:28:14', b'0'); INSERT INTO `system_sensitive_word` (`id`, `name`, `description`, `tags`, `status`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (4, 'XXX', NULL, '短信', 0, '1', '2022-04-08 21:27:49', '1', '2022-04-08 21:27:49', b'0'); COMMIT; @@ -5186,22 +2077,22 @@ COMMIT; -- Table structure for system_sms_channel -- ---------------------------- DROP TABLE IF EXISTS `system_sms_channel`; -CREATE TABLE `system_sms_channel` ( +CREATE TABLE `system_sms_channel` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `signature` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '短信签名', `code` varchar(63) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '渠道编码', `status` tinyint NOT NULL COMMENT '开启状态', - `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注', + `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', `api_key` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '短信 API 的账号', - `api_secret` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '短信 API 的秘钥', - `callback_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '短信发送回调 URL', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `api_secret` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '短信 API 的秘钥', + `callback_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '短信发送回调 URL', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='短信渠道'; +) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '短信渠道'; -- ---------------------------- -- Records of system_sms_channel @@ -5209,9 +2100,7 @@ CREATE TABLE `system_sms_channel` ( BEGIN; INSERT INTO `system_sms_channel` (`id`, `signature`, `code`, `status`, `remark`, `api_key`, `api_secret`, `callback_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (1, '芋道', 'YUN_PIAN', 0, '呵呵呵哒', '1555a14277cb8a608cf45a9e6a80d510', NULL, 'http://vdwapu.natappfree.cc/admin-api/system/sms/callback/yunpian', '', '2021-03-31 06:12:20', '1', '2022-02-23 16:48:44', b'0'); 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, 'Ballcat', 'ALIYUN', 0, '啦啦啦', 'LTAI5tCnKso2uG3kJ5gRav88', 'fGJ5SNXL7P1NHNRmJ7DJaMJGPyE55C', NULL, '', '2021-03-31 11:53:10', '1', '2021-04-14 00:08:37', b'0'); -INSERT INTO `system_sms_channel` (`id`, `signature`, `code`, `status`, `remark`, `api_key`, `api_secret`, `callback_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (3, '测试', 'YUN_PIAN', 0, '哈哈哈', '23132', NULL, 'http://www.baidu.com', '1', '2021-04-05 21:10:34', '1', '2021-04-11 16:21:58', b'1'); 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, '测试渠道', 'DEBUG_DING_TALK', 0, '123', '696b5d8ead48071237e4aa5861ff08dbadb2b4ded1c688a7b7c9afc615579859', 'SEC5c4e5ff888bc8a9923ae47f59e7ccd30af1f14d93c55b4e2c9cb094e35aeed67', NULL, '1', '2021-04-13 00:23:14', '1', '2022-03-27 20:29:49', b'0'); -INSERT INTO `system_sms_channel` (`id`, `signature`, `code`, `status`, `remark`, `api_key`, `api_secret`, `callback_url`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (5, '1', '2', 0, '3', '2', NULL, NULL, '1', '2022-03-27 20:22:34', '1', '2022-03-27 12:22:36', b'1'); 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, '测试演示', 'DEBUG_DING_TALK', 0, NULL, '696b5d8ead48071237e4aa5861ff08dbadb2b4ded1c688a7b7c9afc615579859', 'SEC5c4e5ff888bc8a9923ae47f59e7ccd30af1f14d93c55b4e2c9cb094e35aeed67', NULL, '1', '2022-04-10 23:07:59', '1', '2022-04-10 23:07:59', b'0'); COMMIT; @@ -5219,7 +2108,7 @@ COMMIT; -- Table structure for system_sms_code -- ---------------------------- DROP TABLE IF EXISTS `system_sms_code`; -CREATE TABLE `system_sms_code` ( +CREATE TABLE `system_sms_code` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `mobile` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '手机号', `code` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '验证码', @@ -5227,31 +2116,29 @@ CREATE TABLE `system_sms_code` ( `scene` tinyint NOT NULL COMMENT '发送场景', `today_index` tinyint NOT NULL COMMENT '今日发送的第几条', `used` tinyint NOT NULL COMMENT '是否使用', - `used_time` datetime DEFAULT NULL COMMENT '使用时间', - `used_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '使用 IP', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `used_time` datetime NULL DEFAULT NULL COMMENT '使用时间', + `used_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '使用 IP', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE, - KEY `idx_mobile` (`mobile`) USING BTREE COMMENT '手机号' -) ENGINE=InnoDB AUTO_INCREMENT=467 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='手机验证码'; + INDEX `idx_mobile`(`mobile` ASC) USING BTREE COMMENT '手机号' +) ENGINE = InnoDB AUTO_INCREMENT = 467 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '手机验证码'; -- ---------------------------- -- Records of system_sms_code -- ---------------------------- BEGIN; -INSERT INTO `system_sms_code` (`id`, `mobile`, `code`, `create_ip`, `scene`, `today_index`, `used`, `used_time`, `used_ip`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (465, '15601691399', '9999', '127.0.0.1', 1, 1, 0, NULL, NULL, NULL, '2022-04-10 11:15:10', NULL, '2022-04-10 11:15:10', b'0', 1); -INSERT INTO `system_sms_code` (`id`, `mobile`, `code`, `create_ip`, `scene`, `today_index`, `used`, `used_time`, `used_ip`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (466, '15601691399', '9999', '127.0.0.1', 1, 2, 0, NULL, NULL, NULL, '2022-04-16 01:35:27', NULL, '2022-04-16 01:35:27', b'0', 1); COMMIT; -- ---------------------------- -- Table structure for system_sms_log -- ---------------------------- DROP TABLE IF EXISTS `system_sms_log`; -CREATE TABLE `system_sms_log` ( +CREATE TABLE `system_sms_log` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `channel_id` bigint NOT NULL COMMENT '短信渠道编号', `channel_code` varchar(63) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '短信渠道编码', @@ -5262,27 +2149,27 @@ CREATE TABLE `system_sms_log` ( `template_params` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '短信参数', `api_template_id` varchar(63) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '短信 API 的模板编号', `mobile` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '手机号', - `user_id` bigint DEFAULT NULL COMMENT '用户编号', - `user_type` tinyint DEFAULT NULL COMMENT '用户类型', - `send_status` tinyint NOT NULL DEFAULT '0' COMMENT '发送状态', - `send_time` datetime DEFAULT NULL COMMENT '发送时间', - `send_code` int DEFAULT NULL COMMENT '发送结果的编码', - `send_msg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '发送结果的提示', - `api_send_code` varchar(63) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '短信 API 发送结果的编码', - `api_send_msg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '短信 API 发送失败的提示', - `api_request_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '短信 API 发送返回的唯一请求 ID', - `api_serial_no` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '短信 API 发送返回的序号', - `receive_status` tinyint NOT NULL DEFAULT '0' COMMENT '接收状态', - `receive_time` datetime DEFAULT NULL COMMENT '接收时间', - `api_receive_code` varchar(63) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'API 接收结果的编码', - `api_receive_msg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'API 接收结果的说明', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `user_id` bigint NULL DEFAULT NULL COMMENT '用户编号', + `user_type` tinyint NULL DEFAULT NULL COMMENT '用户类型', + `send_status` tinyint NOT NULL DEFAULT 0 COMMENT '发送状态', + `send_time` datetime NULL DEFAULT NULL COMMENT '发送时间', + `send_code` int NULL DEFAULT NULL COMMENT '发送结果的编码', + `send_msg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '发送结果的提示', + `api_send_code` varchar(63) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '短信 API 发送结果的编码', + `api_send_msg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '短信 API 发送失败的提示', + `api_request_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '短信 API 发送返回的唯一请求 ID', + `api_serial_no` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '短信 API 发送返回的序号', + `receive_status` tinyint NOT NULL DEFAULT 0 COMMENT '接收状态', + `receive_time` datetime NULL DEFAULT NULL COMMENT '接收时间', + `api_receive_code` varchar(63) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT 'API 接收结果的编码', + `api_receive_msg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT 'API 接收结果的说明', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=138 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='短信日志'; +) ENGINE = InnoDB AUTO_INCREMENT = 138 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '短信日志'; -- ---------------------------- -- Records of system_sms_log @@ -5294,7 +2181,7 @@ COMMIT; -- Table structure for system_sms_template -- ---------------------------- DROP TABLE IF EXISTS `system_sms_template`; -CREATE TABLE `system_sms_template` ( +CREATE TABLE `system_sms_template` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `type` tinyint NOT NULL COMMENT '短信签名', `status` tinyint NOT NULL COMMENT '开启状态', @@ -5302,17 +2189,17 @@ CREATE TABLE `system_sms_template` ( `name` varchar(63) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '模板名称', `content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '模板内容', `params` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '参数数组', - `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注', + `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', `api_template_id` varchar(63) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '短信 API 的模板编号', `channel_id` bigint NOT NULL COMMENT '短信渠道编号', `channel_code` varchar(63) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '短信渠道编码', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='短信模板'; +) ENGINE = InnoDB AUTO_INCREMENT = 13 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '短信模板'; -- ---------------------------- -- Records of system_sms_template @@ -5324,7 +2211,7 @@ INSERT INTO `system_sms_template` (`id`, `type`, `status`, `code`, `name`, `cont 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, 'test-04', '测试下', '老鸡{name},牛逼{code}', '[\"name\",\"code\"]', NULL, 'suibian', 4, 'DEBUG_DING_TALK', '1', '2021-04-13 00:29:53', '1', '2021-04-14 00:30:38', b'0'); 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, 'user-sms-login', '前台用户短信登录', '您的验证码是{code}', '[\"code\"]', NULL, '4372216', 1, 'YUN_PIAN', '1', '2021-10-11 08:10:00', '1', '2021-10-11 08:10:00', b'0'); 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, 'bpm_task_assigned', '【工作流】任务被分配', '您收到了一条新的待办任务:{processInstanceName}-{taskName},申请人:{startUserNickname},处理链接:{detailUrl}', '[\"processInstanceName\",\"taskName\",\"startUserNickname\",\"detailUrl\"]', NULL, 'suibian', 4, 'DEBUG_DING_TALK', '1', '2022-01-21 22:31:19', '1', '2022-01-22 00:03:36', b'0'); -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, 'bpm_process_instance_reject', '【工作流】流程被不通过', '您的流程被审批不通过:{processInstanceName},原因:{comment},查看链接:{detailUrl}', '[\"processInstanceName\",\"comment\",\"detailUrl\"]', NULL, 'suibian', 4, 'DEBUG_DING_TALK', '1', '2022-01-22 00:03:31', '1', '2022-01-22 00:24:31', b'0'); +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, 'bpm_process_instance_reject', '【工作流】流程被不通过', '您的流程被审批不通过:{processInstanceName},原因:{reason},查看链接:{detailUrl}', '[\"processInstanceName\",\"reason\",\"detailUrl\"]', NULL, 'suibian', 4, 'DEBUG_DING_TALK', '1', '2022-01-22 00:03:31', '1', '2022-05-01 12:33:14', b'0'); 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, 'bpm_process_instance_approve', '【工作流】流程被通过', '您的流程被审批通过:{processInstanceName},查看链接:{detailUrl}', '[\"processInstanceName\",\"detailUrl\"]', NULL, 'suibian', 4, 'DEBUG_DING_TALK', '1', '2022-01-22 00:04:31', '1', '2022-03-27 20:32:21', b'0'); 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, 'demo', '演示模板', '我就是测试一下下', '[]', NULL, 'biubiubiu', 6, 'DEBUG_DING_TALK', '1', '2022-04-10 23:22:49', '1', '2022-04-10 23:22:49', b'0'); COMMIT; @@ -5333,25 +2220,25 @@ COMMIT; -- Table structure for system_social_user -- ---------------------------- DROP TABLE IF EXISTS `system_social_user`; -CREATE TABLE `system_social_user` ( - `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键(自增策略)', +CREATE TABLE `system_social_user` ( + `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键(自增策略)', `type` tinyint NOT NULL COMMENT '社交平台的类型', `openid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '社交 openid', - `token` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '社交 token', + `token` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '社交 token', `raw_token_info` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '原始 Token 数据,一般是 JSON 格式', `nickname` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '用户昵称', - `avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '用户头像', + `avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '用户头像', `raw_user_info` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '原始用户数据,一般是 JSON 格式', `code` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '最后一次的认证 code', - `state` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '最后一次的认证 state', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `state` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '最后一次的认证 state', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC COMMENT='社交用户表'; +) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '社交用户表'; -- ---------------------------- -- Records of system_social_user @@ -5363,20 +2250,20 @@ COMMIT; -- Table structure for system_social_user_bind -- ---------------------------- DROP TABLE IF EXISTS `system_social_user_bind`; -CREATE TABLE `system_social_user_bind` ( - `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键(自增策略)', +CREATE TABLE `system_social_user_bind` ( + `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键(自增策略)', `user_id` bigint NOT NULL COMMENT '用户编号', `user_type` tinyint NOT NULL COMMENT '用户类型', `social_type` tinyint NOT NULL COMMENT '社交平台的类型', `social_user_id` bigint NOT NULL COMMENT '社交用户的编号', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC COMMENT='社交绑定表'; +) ENGINE = InnoDB AUTO_INCREMENT = 10 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '社交绑定表'; -- ---------------------------- -- Records of system_social_user_bind @@ -5388,24 +2275,24 @@ COMMIT; -- Table structure for system_tenant -- ---------------------------- DROP TABLE IF EXISTS `system_tenant`; -CREATE TABLE `system_tenant` ( +CREATE TABLE `system_tenant` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '租户编号', `name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '租户名', - `contact_user_id` bigint DEFAULT NULL COMMENT '联系人的用户编号', + `contact_user_id` bigint NULL DEFAULT NULL COMMENT '联系人的用户编号', `contact_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '联系人', - `contact_mobile` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '联系手机', - `status` tinyint NOT NULL DEFAULT '0' COMMENT '租户状态(0正常 1停用)', - `domain` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '绑定域名', + `contact_mobile` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '联系手机', + `status` tinyint NOT NULL DEFAULT 0 COMMENT '租户状态(0正常 1停用)', + `domain` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '绑定域名', `package_id` bigint NOT NULL COMMENT '租户套餐编号', `expire_time` datetime NOT NULL COMMENT '过期时间', `account_count` int NOT NULL COMMENT '账号数量', `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=123 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='租户表'; +) ENGINE = InnoDB AUTO_INCREMENT = 123 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '租户表'; -- ---------------------------- -- Records of system_tenant @@ -5420,19 +2307,19 @@ COMMIT; -- Table structure for system_tenant_package -- ---------------------------- DROP TABLE IF EXISTS `system_tenant_package`; -CREATE TABLE `system_tenant_package` ( +CREATE TABLE `system_tenant_package` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '套餐编号', `name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '套餐名', - `status` tinyint NOT NULL DEFAULT '0' COMMENT '租户状态(0正常 1停用)', - `remark` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '备注', + `status` tinyint NOT NULL DEFAULT 0 COMMENT '租户状态(0正常 1停用)', + `remark` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '备注', `menu_ids` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '关联的菜单编号', `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=112 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='租户套餐表'; +) ENGINE = InnoDB AUTO_INCREMENT = 112 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '租户套餐表'; -- ---------------------------- -- Records of system_tenant_package @@ -5445,30 +2332,30 @@ COMMIT; -- Table structure for system_user -- ---------------------------- DROP TABLE IF EXISTS `system_user`; -CREATE TABLE `system_user` ( +CREATE TABLE `system_user` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '用户ID', `username` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '用户账号', `password` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '密码', `nickname` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '用户昵称', - `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注', - `dept_id` bigint DEFAULT NULL COMMENT '部门ID', - `post_ids` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '岗位编号数组', - `email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '用户邮箱', - `mobile` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '手机号码', - `sex` tinyint DEFAULT '0' COMMENT '用户性别', - `avatar` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '头像地址', - `status` tinyint NOT NULL DEFAULT '0' COMMENT '帐号状态(0正常 1停用)', - `login_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '最后登录IP', - `login_date` datetime DEFAULT NULL COMMENT '最后登录时间', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', + `dept_id` bigint NULL DEFAULT NULL COMMENT '部门ID', + `post_ids` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '岗位编号数组', + `email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '用户邮箱', + `mobile` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '手机号码', + `sex` tinyint NULL DEFAULT 0 COMMENT '用户性别', + `avatar` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '头像地址', + `status` tinyint NOT NULL DEFAULT 0 COMMENT '帐号状态(0正常 1停用)', + `login_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '最后登录IP', + `login_date` datetime NULL DEFAULT NULL COMMENT '最后登录时间', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE, - UNIQUE KEY `idx_username` (`username`,`update_time`,`tenant_id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=116 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='用户信息表'; + UNIQUE INDEX `idx_username`(`username` ASC, `update_time` ASC, `tenant_id` ASC) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 116 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '用户信息表'; -- ---------------------------- -- Records of system_user @@ -5493,18 +2380,18 @@ COMMIT; -- Table structure for system_user_role -- ---------------------------- DROP TABLE IF EXISTS `system_user_role`; -CREATE TABLE `system_user_role` ( +CREATE TABLE `system_user_role` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增编号', `user_id` bigint NOT NULL COMMENT '用户ID', `role_id` bigint NOT NULL COMMENT '角色ID', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', - `create_time` datetime DEFAULT NULL COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', - `update_time` datetime DEFAULT NULL COMMENT '更新时间', - `deleted` bit(1) DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', + `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', + `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', + `deleted` bit(1) NULL DEFAULT b'0' COMMENT '是否删除', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='用户和角色关联表'; +) ENGINE = InnoDB AUTO_INCREMENT = 18 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '用户和角色关联表'; -- ---------------------------- -- Records of system_user_role @@ -5512,12 +2399,10 @@ CREATE TABLE `system_user_role` ( BEGIN; INSERT INTO `system_user_role` (`id`, `user_id`, `role_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (1, 1, 1, '', NULL, '', NULL, b'0', 1); INSERT INTO `system_user_role` (`id`, `user_id`, `role_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (2, 2, 2, '', NULL, '', NULL, b'0', 1); -INSERT INTO `system_user_role` (`id`, `user_id`, `role_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (3, 100, 1, '', NULL, '', NULL, b'1', 1); INSERT INTO `system_user_role` (`id`, `user_id`, `role_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (4, 100, 101, '', NULL, '', NULL, b'0', 1); INSERT INTO `system_user_role` (`id`, `user_id`, `role_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (5, 100, 1, '', NULL, '', NULL, b'0', 1); INSERT INTO `system_user_role` (`id`, `user_id`, `role_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (6, 100, 2, '', NULL, '', NULL, b'0', 1); INSERT INTO `system_user_role` (`id`, `user_id`, `role_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (7, 104, 101, '', NULL, '', NULL, b'0', 1); -INSERT INTO `system_user_role` (`id`, `user_id`, `role_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (9, 105, 1, '1', '2021-10-30 13:40:48', '1', '2021-10-30 13:40:48', b'1', 1); INSERT INTO `system_user_role` (`id`, `user_id`, `role_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (10, 103, 1, '1', '2022-01-11 13:19:45', '1', '2022-01-11 13:19:45', b'0', 1); INSERT INTO `system_user_role` (`id`, `user_id`, `role_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (11, 107, 106, '1', '2022-02-20 22:59:33', '1', '2022-02-20 22:59:33', b'0', 118); INSERT INTO `system_user_role` (`id`, `user_id`, `role_id`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES (12, 108, 107, '1', '2022-02-20 23:00:50', '1', '2022-02-20 23:00:50', b'0', 119); @@ -5532,126 +2417,27 @@ COMMIT; -- Table structure for system_user_session -- ---------------------------- DROP TABLE IF EXISTS `system_user_session`; -CREATE TABLE `system_user_session` ( +CREATE TABLE `system_user_session` ( `id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '会话编号', `user_id` bigint NOT NULL COMMENT '用户编号', - `user_type` tinyint NOT NULL DEFAULT '0' COMMENT '用户类型', + `user_type` tinyint NOT NULL DEFAULT 0 COMMENT '用户类型', `session_timeout` datetime NOT NULL COMMENT '会话超时时间', `username` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '用户账号', `user_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '用户 IP', `user_agent` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '浏览器 UA', - `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '创建者', + `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '更新者', + `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', - `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT '租户编号', + `tenant_id` bigint NOT NULL DEFAULT 0 COMMENT '租户编号', PRIMARY KEY (`id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='用户在线 Session'; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '用户在线 Session'; -- ---------------------------- -- Records of system_user_session -- ---------------------------- BEGIN; -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('084a5a2a737b42e3bb13604a2ff6d4fe', 1, 2, '2022-03-13 18:01:54', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-12 18:01:54', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('0909cb72ebb34d618236504ae0977385', 1, 2, '2022-04-20 23:52:19', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-19 23:52:19', NULL, '2022-04-19 23:52:19', b'0', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('09df5aaf4a7a4a9ab42722c8adea0767', 1, 2, '2022-04-03 22:04:37', 'admin', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-02 22:04:37', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('0c04639e800e4c75a52af71239146512', 1, 2, '2022-03-28 10:14:05', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-26 19:36:22', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('0d7a900b4a5e4089a48a54a71bca83e6', 1, 2, '2022-02-28 11:56:22', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36', NULL, '2022-02-27 11:56:22', NULL, '2022-02-27 08:25:28', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('101dc01ff37b4ceaa60a63e1c1005bbf', 1, 2, '2022-03-08 21:47:01', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-07 21:47:01', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('116ed46314c64d528cadcdc4e5a74710', 1, 2, '2022-03-20 18:27:50', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-19 18:27:50', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('1292ec7ef81d4833a08044cc11a8f4e6', 1, 2, '2022-04-11 17:40:46', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-10 17:40:46', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('1a86e1d5fda341d3baec7274c2887302', 1, 2, '2022-03-20 21:54:52', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-20 21:51:39', NULL, '2022-03-20 13:54:36', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('1cdf10987a5646de96197157e8f02f96', 1, 2, '2022-03-24 22:57:07', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-23 22:57:07', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('1dc4886bd2b344b8b4c97b4d68e0491b', 1, 2, '2022-04-20 21:38:09', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-19 21:38:09', NULL, '2022-04-19 21:38:09', b'0', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('22b68303f9d34683b2ae24a9c23f7163', 1, 2, '2022-04-08 00:16:10', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-07 00:16:10', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('26a38c69374145b5920e991f155142cc', 1, 2, '2022-03-24 12:29:14', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-23 12:29:14', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('270d340ddd2b468c843627d7be53bbf4', 1, 2, '2022-04-01 20:53:05', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-03-31 20:53:05', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('2759180f76414d3d9807c47026b6f5a5', 1, 2, '2022-03-17 21:27:25', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-15 00:19:03', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('278554efca6d4efdaee2573b4a2b8756', 1, 2, '2022-04-18 12:54:18', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-17 12:54:18', NULL, '2022-04-17 12:54:18', b'0', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('2935322c671b43fbbe7eb5532800bbcf', 110, 2, '2022-02-24 19:36:28', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36', NULL, '2022-02-23 19:36:28', NULL, '2022-04-03 14:21:23', b'1', 121); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('2c1d3924d392416e8464f54d285346a5', 1, 2, '2022-04-10 12:59:37', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 12:59:37', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('2ebcc3bc90cd480e8744d30295470469', 1, 2, '2022-04-10 12:43:38', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 12:43:38', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('2fd60d0a2797450aa20f6fa5cb703ba2', 1, 2, '2022-03-21 21:50:09', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-20 21:50:09', NULL, '2022-03-20 13:51:32', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('303643dbabf74a4ca50b042a08904276', 1, 2, '2022-04-19 21:04:54', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-18 21:04:54', NULL, '2022-04-18 13:04:57', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('31a6162ca15c47f2b2e78d057737b8f5', 1, 2, '2022-05-01 00:06:21', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-30 00:06:21', NULL, '2022-04-30 00:06:21', b'0', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('3271c3a512e64dd79961848032ead7ef', 1, 2, '2022-04-24 00:55:33', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-23 00:55:33', NULL, '2022-04-23 00:55:33', b'0', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('348813371e76453196b99db0fab7539a', 1, 2, '2022-03-24 23:30:34', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-23 23:30:34', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('34fafe141291443ab0da27e1bc12a011', 1, 2, '2022-03-13 16:25:02', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-12 16:25:02', NULL, '2022-03-12 09:55:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('35f894c8a50847499b243ebc3466cefd', 1, 2, '2022-04-15 22:06:39', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-14 22:06:39', NULL, '2022-04-14 22:06:39', b'0', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('3bb5bae78cc24cb5a1c1df9c479b50ad', 1, 2, '2022-02-21 23:57:11', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36', NULL, '2022-02-20 23:57:11', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('3bc770291bc44fcfad0bf91e5bfded0e', 104, 2, '2022-03-20 21:46:19', 'test', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-19 21:46:19', NULL, '2022-03-19 14:13:05', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('3fe414b748a247cc8e9e7afd11629622', 1, 2, '2022-04-30 18:06:09', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-28 10:48:15', NULL, '2022-04-29 16:02:19', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('463f24539a2b40669d41ae8134e41b87', 1, 2, '2022-04-10 23:03:52', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 23:03:52', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('478ce745c04b4737a61ac7b53495c620', 1, 2, '2022-04-24 02:01:45', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-23 02:01:45', NULL, '2022-04-23 02:01:45', b'0', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('488dbb3d30144e6fa290319fbf778a9c', 1, 2, '2022-04-02 21:33:52', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-01 21:33:52', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('498a1559218b4d91bec6474ada2332cf', 1, 2, '2022-03-28 20:16:50', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-26 20:06:48', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('4a97fd8f3721416ebe6c682ca9d70743', 1, 2, '2022-03-12 00:24:08', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-11 00:24:08', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('4a9ba3f0a4654831af288704fcdf61ff', 1, 2, '2022-04-11 00:16:52', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-10 00:16:52', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('4d8f2b5447e440038b928e7f2af38452', 1, 2, '2022-04-20 21:11:37', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-19 12:34:14', NULL, '2022-04-19 21:11:37', b'0', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('519dc46429364e9287290cbf80831905', 1, 2, '2022-04-10 12:51:16', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 12:51:16', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('52c7e0ca46b344b6943968cd858e3faf', 1, 2, '2022-04-23 00:03:49', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-21 00:12:17', NULL, '2022-04-22 00:03:49', b'0', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('55eac5d72b7a4679a78bd63ad6507544', 1, 2, '2022-04-09 19:24:13', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-08 19:24:13', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('5bbe310eb8d147c6ac170292e8c473a2', 1, 2, '2022-04-10 12:42:37', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 12:42:37', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('5d6327fb8ecd4c71a51f14424211d419', 1, 2, '2022-04-08 00:15:10', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-07 00:15:10', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('6379129e87cd458098cc997cd0a052dc', 1, 2, '2022-04-19 20:59:28', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-17 12:34:18', NULL, '2022-04-18 12:59:33', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('66ad83da20944e4484aac92add3c9b03', 1, 2, '2022-04-01 20:46:52', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-03-31 20:46:52', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('70318f99805840219b3654b6a3f3f807', 1, 2, '2022-03-25 20:24:10', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-24 20:24:10', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('7456412f227a4795a9dd92cd1bcf5d9a', 1, 2, '2022-04-10 15:52:26', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 15:52:26', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('746f6938be5946d09ad401be856c6ede', 1, 2, '2022-04-19 21:07:56', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-18 21:07:56', NULL, '2022-04-18 13:07:59', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('74aefb0d507a43db9b20c535f3df68a0', 1, 2, '2022-04-28 00:55:12', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-27 00:55:12', NULL, '2022-04-26 17:08:00', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('76cdc832972d44ba8d6e833ca7fd462f', 1, 2, '2022-04-11 18:26:34', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-10 18:26:34', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('791bc552e91942dba54367fba060354f', 1, 2, '2022-03-21 22:03:38', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-20 22:03:38', NULL, '2022-03-20 15:45:21', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('7973f6f53f9640ee9d65338f545e06dc', 1, 2, '2022-04-27 23:06:51', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-26 23:06:51', NULL, '2022-04-26 23:06:51', b'0', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('7b0c15457686444bb17fb810807859f0', 114, 2, '2022-03-20 22:15:43', 'hrmgr', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-19 22:15:43', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('81048a56c53b4120a9b2160e1a36a504', 1, 2, '2022-04-10 12:53:52', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 12:53:52', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('830fc13c09ad48ef8a0dac4dd5df7d6b', 1, 2, '2022-04-19 21:05:37', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-18 21:05:37', NULL, '2022-04-18 13:05:39', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('8951e01e18774a92b0382a76dfa5aab9', 1, 2, '2022-03-13 14:30:59', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-11 00:16:29', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('8ac0590d04d343babe42575ba796a0b7', 1, 2, '2022-04-19 21:08:32', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-18 21:08:32', NULL, '2022-04-18 13:08:35', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('8b00bcd875da48348da7868d8bacdcb3', 1, 2, '2022-03-24 22:35:44', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-23 22:35:44', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('8c95c9324e4047428e4656a191257e7a', 1, 2, '2022-03-21 23:45:27', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-20 23:45:27', NULL, '2022-03-20 15:45:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('948bd07ea95a4126853e6b059d6cabd2', 1, 2, '2022-04-29 10:47:55', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-27 01:08:26', NULL, '2022-04-28 02:47:54', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('94dc2ccf74e648e6bdd51f1304969d33', 1, 2, '2022-03-30 00:12:30', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-03-29 00:12:30', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('95e6336e75794bffbd5b6b7617d24c52', 1, 2, '2022-03-08 21:36:53', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-07 21:36:53', NULL, '2022-03-07 13:42:52', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('991e7c5099384c50a0559b13a942f173', 1, 2, '2022-04-18 12:53:56', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-17 12:53:56', NULL, '2022-04-17 04:54:01', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('9c04a9ad1aab45729d9c3f131286a87b', 1, 2, '2022-04-04 20:35:06', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-03 20:35:06', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('9c93fd1cd23a43e3854451b781420aed', 1, 2, '2022-02-28 16:27:05', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36', NULL, '2022-02-27 16:27:05', NULL, '2022-02-27 16:27:05', b'0', 0); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('9f15722e27f84063acc272d14608c7a7', 1, 2, '2022-03-27 23:58:21', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-26 23:58:21', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('a0cd3f0adcaa4bb3951b24969990f235', 1, 2, '2022-03-08 21:08:36', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-07 21:08:36', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('a412fb91661840a69eeb961b566c9fc6', 1, 2, '2022-04-10 15:49:15', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 15:49:15', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('a9162a1862ac44a8839f984e4192e9b0', 1, 2, '2022-04-09 00:52:17', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-08 00:52:17', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('ac02a7ef7af74d38990ef928dbe56fb8', 1, 2, '2022-04-19 21:09:25', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-18 21:09:25', NULL, '2022-04-18 13:09:28', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('b19a4fb3871b4dddaaa2a24298037ce1', 1, 2, '2022-04-27 23:07:21', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '1', '2022-04-26 23:07:21', '1', '2022-04-26 16:42:08', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('b1bd95d813024acab14dd171ca887a94', 1, 2, '2022-02-28 10:52:17', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36', NULL, '2022-02-27 10:52:17', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('b2d2338cca6d49ec8b51ceaf609a2eb1', 1, 2, '2022-04-10 17:51:43', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 17:51:43', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('b2fe20b6073a43f9bfd843fab55e20f0', 1, 2, '2022-03-20 21:55:12', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-20 21:54:42', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('cb97d665c2bd4525b2fbfe9a399f5926', 104, 2, '2022-03-13 17:55:44', 'test', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-12 17:55:44', NULL, '2022-03-12 10:01:46', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('d09049bd19af4d80811dbdd2f69efd41', 1, 2, '2022-04-21 00:52:12', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-20 00:52:12', NULL, '2022-04-20 00:52:12', b'0', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('d0f721bd163149d8966e8a33b2c43f32', 1, 2, '2022-04-10 15:55:29', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 15:55:29', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('d683317cbcd940e3911a7ec6384a9e82', 1, 2, '2022-04-20 15:22:57', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-19 15:22:57', NULL, '2022-04-19 15:22:57', b'0', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('d85d3922978a48c1aed7b19665712883', 1, 2, '2022-04-04 20:07:18', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-02 23:05:51', NULL, '2022-04-03 16:04:42', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('daadfe0f94f34d60b1f83088612cf3e9', 1, 2, '2022-03-18 18:36:04', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-16 23:46:20', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('db48c609bd2840bca7499bddb43eeabe', 113, 2, '2022-03-20 18:38:51', 'aoteman', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-19 18:38:51', NULL, '2022-04-03 14:21:23', b'1', 122); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('db777da72b0b4a528915d80c7b272141', 113, 2, '2022-03-08 21:43:59', 'aoteman', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-07 21:43:59', NULL, '2022-03-07 13:45:02', b'1', 122); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('dd7a19cd44474a01bd98d3a40cc5fbf4', 1, 2, '2022-03-31 20:29:14', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-03-30 20:29:14', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('dd814fe542a446a4958dfb8bd9b0b248', 1, 2, '2022-03-25 09:59:06', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-23 23:33:02', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('dd8a81500e7a41a2a08353731a5131d0', 1, 2, '2022-04-11 22:34:40', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-10 22:34:40', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('ddd9b25faebf4d5499e4b6385909c026', 1, 2, '2022-04-10 15:41:12', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 15:41:12', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('df7083510c63407489688a800a55d97b', 1, 2, '2022-03-21 18:19:06', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-18 22:24:46', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('e24d367e497e4cf1af0129f9877fd747', 1, 2, '2022-04-05 23:04:28', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-04 00:07:21', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('e4309a512fdf4b6483ad31c399b50f05', 1, 2, '2022-04-10 10:06:46', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 02:06:37', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('e769a8511c4043a886f68d1d6c39bddd', 104, 2, '2022-02-28 11:10:07', 'test', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36', NULL, '2022-02-27 11:10:07', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('eb5a1c67438b4472a02f22d88b31205b', 1, 2, '2022-04-20 14:43:29', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-19 14:43:29', NULL, '2022-04-19 14:43:29', b'0', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('ec60e16dfd2546e1a118eef7a42c07ef', 1, 2, '2022-02-24 22:33:28', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36', NULL, '2022-02-22 00:44:08', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('f0762a8a01f64aba8271f2be06fe5523', 1, 2, '2022-04-19 21:14:17', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-18 21:14:17', NULL, '2022-04-18 13:14:19', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('f088b33f48e640a293b2353a07f67371', 104, 2, '2022-03-20 21:45:14', 'test', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-19 21:45:14', NULL, '2022-03-19 13:46:11', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('f91c33179ded4c6b98f93568614412f0', 1, 2, '2022-03-24 23:30:49', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-23 23:30:49', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('f9d823f694eb4c84ab2a6606d0411393', 1, 2, '2022-04-11 18:11:37', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-10 18:11:37', NULL, '2022-04-12 15:05:31', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('fa2980cb42524137a1bbde303cc71b38', 1, 2, '2022-03-22 00:10:05', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-21 00:10:05', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('fac458fc6b1f4c27bbd851b114874ebc', 1, 2, '2022-04-19 21:06:54', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-18 21:06:54', NULL, '2022-04-18 13:07:02', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('fb282be32fdd4d81b08dbef7a7c4d2ce', 1, 2, '2022-03-24 12:29:19', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-23 12:29:19', NULL, '2022-04-03 14:21:23', b'1', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('fe11c39cfc2740a992063bf05bd170f3', 1, 2, '2022-04-15 21:09:14', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-14 21:09:14', NULL, '2022-04-14 21:09:14', b'0', 1); -INSERT INTO `system_user_session` (`id`, `user_id`, `user_type`, `session_timeout`, `username`, `user_ip`, `user_agent`, `creator`, `create_time`, `updater`, `update_time`, `deleted`, `tenant_id`) VALUES ('ffe28d833fea4e76a0b2b6bcde9236c2', 1, 2, '2022-04-03 22:03:16', 'admin', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-02 22:03:16', NULL, '2022-04-03 14:21:23', b'1', 1); COMMIT; SET FOREIGN_KEY_CHECKS = 1; diff --git a/sql/oracle/ruoyi-vue-pro.sql b/sql/oracle/ruoyi-vue-pro.sql new file mode 100644 index 000000000..c59113409 --- /dev/null +++ b/sql/oracle/ruoyi-vue-pro.sql @@ -0,0 +1,4118 @@ +/* + Navicat Premium Data Transfer + + Source Server : 127.0.0.1 Oracle + Source Server Type : Oracle + Source Server Version : 110200 + Source Host : 127.0.0.1:1521 + Source Schema : ROOT + + Target Server Type : Oracle + Target Server Version : 110200 + File Encoding : 65001 + + Date: 01/05/2022 21:26:02 +*/ + + +-- ---------------------------- +-- Table structure for BPM_FORM +-- ---------------------------- +DROP TABLE "BPM_FORM"; +CREATE TABLE "BPM_FORM" ( + "ID" NUMBER(20,0) NOT NULL, + "NAME" NVARCHAR2(64), + "STATUS" NUMBER(4,0) NOT NULL, + "CONF" NVARCHAR2(1000), + "FIELDS" NCLOB, + "REMARK" NVARCHAR2(255), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "BPM_FORM"."ID" IS '编号'; +COMMENT ON COLUMN "BPM_FORM"."NAME" IS '表单名'; +COMMENT ON COLUMN "BPM_FORM"."STATUS" IS '开启状态'; +COMMENT ON COLUMN "BPM_FORM"."CONF" IS '表单的配置'; +COMMENT ON COLUMN "BPM_FORM"."FIELDS" IS '表单项的数组'; +COMMENT ON COLUMN "BPM_FORM"."REMARK" IS '备注'; +COMMENT ON COLUMN "BPM_FORM"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "BPM_FORM"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "BPM_FORM"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "BPM_FORM"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "BPM_FORM"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "BPM_FORM"."DELETED" IS '是否删除'; +COMMENT ON TABLE "BPM_FORM" IS '工作流的表单定义'; + +-- ---------------------------- +-- Records of BPM_FORM +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for BPM_OA_LEAVE +-- ---------------------------- +DROP TABLE "BPM_OA_LEAVE"; +CREATE TABLE "BPM_OA_LEAVE" ( + "ID" NUMBER(20,0) NOT NULL, + "USER_ID" NUMBER(20,0) NOT NULL, + "TYPE" NUMBER(4,0) NOT NULL, + "REASON" NVARCHAR2(200), + "START_TIME" DATE NOT NULL, + "END_TIME" DATE NOT NULL, + "DAY" NUMBER(4,0) NOT NULL, + "RESULT" NUMBER(4,0) NOT NULL, + "PROCESS_INSTANCE_ID" NVARCHAR2(64), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "BPM_OA_LEAVE"."ID" IS '请假表单主键'; +COMMENT ON COLUMN "BPM_OA_LEAVE"."USER_ID" IS '申请人的用户编号'; +COMMENT ON COLUMN "BPM_OA_LEAVE"."TYPE" IS '请假类型'; +COMMENT ON COLUMN "BPM_OA_LEAVE"."REASON" IS '请假原因'; +COMMENT ON COLUMN "BPM_OA_LEAVE"."START_TIME" IS '开始时间'; +COMMENT ON COLUMN "BPM_OA_LEAVE"."END_TIME" IS '结束时间'; +COMMENT ON COLUMN "BPM_OA_LEAVE"."DAY" IS '请假天数'; +COMMENT ON COLUMN "BPM_OA_LEAVE"."RESULT" IS '请假结果'; +COMMENT ON COLUMN "BPM_OA_LEAVE"."PROCESS_INSTANCE_ID" IS '流程实例的编号'; +COMMENT ON COLUMN "BPM_OA_LEAVE"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "BPM_OA_LEAVE"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "BPM_OA_LEAVE"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "BPM_OA_LEAVE"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "BPM_OA_LEAVE"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "BPM_OA_LEAVE"."DELETED" IS '是否删除'; +COMMENT ON TABLE "BPM_OA_LEAVE" IS 'OA 请假申请表'; + +-- ---------------------------- +-- Records of BPM_OA_LEAVE +-- ---------------------------- +INSERT INTO "BPM_OA_LEAVE" ("ID", "USER_ID", "TYPE", "REASON", "START_TIME", "END_TIME", "DAY", "RESULT", "PROCESS_INSTANCE_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('0', '1', '2', '123', TO_DATE('2022-05-02 00:00:00', 'SYYYY-MM-DD HH24:MI:SS'), TO_DATE('2022-05-11 00:00:00', 'SYYYY-MM-DD HH24:MI:SS'), '9', '2', '64394b8d-c947-11ec-a43c-3e2374911326', '1', TO_DATE('2022-05-01 20:08:20', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-05-01 20:30:02', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for BPM_PROCESS_DEFINITION_EXT +-- ---------------------------- +DROP TABLE "BPM_PROCESS_DEFINITION_EXT"; +CREATE TABLE "BPM_PROCESS_DEFINITION_EXT" ( + "ID" NUMBER(20,0) NOT NULL, + "PROCESS_DEFINITION_ID" NVARCHAR2(64), + "MODEL_ID" NVARCHAR2(64), + "DESCRIPTION" NVARCHAR2(255), + "FORM_TYPE" NUMBER(4,0) NOT NULL, + "FORM_ID" NUMBER(20,0), + "FORM_CONF" NVARCHAR2(1000), + "FORM_FIELDS" NCLOB, + "FORM_CUSTOM_CREATE_PATH" NVARCHAR2(255), + "FORM_CUSTOM_VIEW_PATH" NVARCHAR2(255), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "BPM_PROCESS_DEFINITION_EXT"."ID" IS '编号'; +COMMENT ON COLUMN "BPM_PROCESS_DEFINITION_EXT"."PROCESS_DEFINITION_ID" IS '流程定义的编号'; +COMMENT ON COLUMN "BPM_PROCESS_DEFINITION_EXT"."MODEL_ID" IS '流程模型的编号'; +COMMENT ON COLUMN "BPM_PROCESS_DEFINITION_EXT"."DESCRIPTION" IS '描述'; +COMMENT ON COLUMN "BPM_PROCESS_DEFINITION_EXT"."FORM_TYPE" IS '表单类型'; +COMMENT ON COLUMN "BPM_PROCESS_DEFINITION_EXT"."FORM_ID" IS '表单编号'; +COMMENT ON COLUMN "BPM_PROCESS_DEFINITION_EXT"."FORM_CONF" IS '表单的配置'; +COMMENT ON COLUMN "BPM_PROCESS_DEFINITION_EXT"."FORM_FIELDS" IS '表单项的数组'; +COMMENT ON COLUMN "BPM_PROCESS_DEFINITION_EXT"."FORM_CUSTOM_CREATE_PATH" IS '自定义表单的提交路径'; +COMMENT ON COLUMN "BPM_PROCESS_DEFINITION_EXT"."FORM_CUSTOM_VIEW_PATH" IS '自定义表单的查看路径'; +COMMENT ON COLUMN "BPM_PROCESS_DEFINITION_EXT"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "BPM_PROCESS_DEFINITION_EXT"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "BPM_PROCESS_DEFINITION_EXT"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "BPM_PROCESS_DEFINITION_EXT"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "BPM_PROCESS_DEFINITION_EXT"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "BPM_PROCESS_DEFINITION_EXT"."DELETED" IS '是否删除'; +COMMENT ON TABLE "BPM_PROCESS_DEFINITION_EXT" IS 'Bpm 流程定义的拓展表 +'; + +-- ---------------------------- +-- Records of BPM_PROCESS_DEFINITION_EXT +-- ---------------------------- +INSERT INTO "BPM_PROCESS_DEFINITION_EXT" ("ID", "PROCESS_DEFINITION_ID", "MODEL_ID", "DESCRIPTION", "FORM_TYPE", "FORM_ID", "FORM_CONF", "FORM_FIELDS", "FORM_CUSTOM_CREATE_PATH", "FORM_CUSTOM_VIEW_PATH", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('0', 'oa_leave:1:5b8f470c-c947-11ec-a43c-3e2374911326', 'd0d2e04c-c945-11ec-baf6-3e2374911326', NULL, '20', NULL, NULL, NULL, '/bpm/oa/leave/create', '/bpm/oa/leave/detail', '1', TO_DATE('2022-05-01 20:08:05', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-05-01 20:08:05', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for BPM_PROCESS_INSTANCE_EXT +-- ---------------------------- +DROP TABLE "BPM_PROCESS_INSTANCE_EXT"; +CREATE TABLE "BPM_PROCESS_INSTANCE_EXT" ( + "ID" NUMBER(20,0) NOT NULL, + "START_USER_ID" NUMBER(20,0) NOT NULL, + "NAME" NVARCHAR2(64), + "PROCESS_INSTANCE_ID" NVARCHAR2(64), + "PROCESS_DEFINITION_ID" NVARCHAR2(64), + "CATEGORY" NVARCHAR2(64), + "STATUS" NUMBER(4,0) NOT NULL, + "RESULT" NUMBER(4,0) NOT NULL, + "END_TIME" DATE, + "FORM_VARIABLES" NCLOB, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "BPM_PROCESS_INSTANCE_EXT"."ID" IS '编号'; +COMMENT ON COLUMN "BPM_PROCESS_INSTANCE_EXT"."START_USER_ID" IS '发起流程的用户编号'; +COMMENT ON COLUMN "BPM_PROCESS_INSTANCE_EXT"."NAME" IS '流程实例的名字'; +COMMENT ON COLUMN "BPM_PROCESS_INSTANCE_EXT"."PROCESS_INSTANCE_ID" IS '流程实例的编号'; +COMMENT ON COLUMN "BPM_PROCESS_INSTANCE_EXT"."PROCESS_DEFINITION_ID" IS '流程定义的编号'; +COMMENT ON COLUMN "BPM_PROCESS_INSTANCE_EXT"."CATEGORY" IS '流程分类'; +COMMENT ON COLUMN "BPM_PROCESS_INSTANCE_EXT"."STATUS" IS '流程实例的状态'; +COMMENT ON COLUMN "BPM_PROCESS_INSTANCE_EXT"."RESULT" IS '流程实例的结果'; +COMMENT ON COLUMN "BPM_PROCESS_INSTANCE_EXT"."END_TIME" IS '结束时间'; +COMMENT ON COLUMN "BPM_PROCESS_INSTANCE_EXT"."FORM_VARIABLES" IS '表单值'; +COMMENT ON COLUMN "BPM_PROCESS_INSTANCE_EXT"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "BPM_PROCESS_INSTANCE_EXT"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "BPM_PROCESS_INSTANCE_EXT"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "BPM_PROCESS_INSTANCE_EXT"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "BPM_PROCESS_INSTANCE_EXT"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "BPM_PROCESS_INSTANCE_EXT"."DELETED" IS '是否删除'; +COMMENT ON TABLE "BPM_PROCESS_INSTANCE_EXT" IS '工作流的流程实例的拓展'; + +-- ---------------------------- +-- Records of BPM_PROCESS_INSTANCE_EXT +-- ---------------------------- +INSERT INTO "BPM_PROCESS_INSTANCE_EXT" ("ID", "START_USER_ID", "NAME", "PROCESS_INSTANCE_ID", "PROCESS_DEFINITION_ID", "CATEGORY", "STATUS", "RESULT", "END_TIME", "FORM_VARIABLES", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('0', '1', 'OA 请假', '64394b8d-c947-11ec-a43c-3e2374911326', 'oa_leave:1:5b8f470c-c947-11ec-a43c-3e2374911326', '2', '2', '2', TO_DATE('2022-05-01 20:30:02', 'SYYYY-MM-DD HH24:MI:SS'), '{"day":9}', '1', TO_DATE('2022-05-01 20:08:20', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-05-01 20:30:02', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for BPM_TASK_ASSIGN_RULE +-- ---------------------------- +DROP TABLE "BPM_TASK_ASSIGN_RULE"; +CREATE TABLE "BPM_TASK_ASSIGN_RULE" ( + "ID" NUMBER(20,0) NOT NULL, + "MODEL_ID" NVARCHAR2(64), + "PROCESS_DEFINITION_ID" NVARCHAR2(64) DEFAULT '', + "TASK_DEFINITION_KEY" NVARCHAR2(64) DEFAULT '', + "TYPE" NUMBER(4,0) NOT NULL, + "OPTIONS" NCLOB, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "BPM_TASK_ASSIGN_RULE"."ID" IS '编号'; +COMMENT ON COLUMN "BPM_TASK_ASSIGN_RULE"."MODEL_ID" IS '流程模型的编号'; +COMMENT ON COLUMN "BPM_TASK_ASSIGN_RULE"."PROCESS_DEFINITION_ID" IS '流程定义的编号'; +COMMENT ON COLUMN "BPM_TASK_ASSIGN_RULE"."TASK_DEFINITION_KEY" IS '流程任务定义的 key'; +COMMENT ON COLUMN "BPM_TASK_ASSIGN_RULE"."TYPE" IS '规则类型'; +COMMENT ON COLUMN "BPM_TASK_ASSIGN_RULE"."OPTIONS" IS '规则值,JSON 数组'; +COMMENT ON COLUMN "BPM_TASK_ASSIGN_RULE"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "BPM_TASK_ASSIGN_RULE"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "BPM_TASK_ASSIGN_RULE"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "BPM_TASK_ASSIGN_RULE"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "BPM_TASK_ASSIGN_RULE"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "BPM_TASK_ASSIGN_RULE"."DELETED" IS '是否删除'; +COMMENT ON TABLE "BPM_TASK_ASSIGN_RULE" IS 'Bpm 任务规则表'; + +-- ---------------------------- +-- Records of BPM_TASK_ASSIGN_RULE +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for BPM_TASK_EXT +-- ---------------------------- +DROP TABLE "BPM_TASK_EXT"; +CREATE TABLE "BPM_TASK_EXT" ( + "ID" NUMBER(20,0) NOT NULL, + "ASSIGNEE_USER_ID" NUMBER(20,0), + "NAME" NVARCHAR2(64), + "TASK_ID" NVARCHAR2(64), + "RESULT" NUMBER(4,0) NOT NULL, + "REASON" NVARCHAR2(255), + "END_TIME" DATE, + "PROCESS_INSTANCE_ID" NVARCHAR2(64), + "PROCESS_DEFINITION_ID" NVARCHAR2(64), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "BPM_TASK_EXT"."ID" IS '编号'; +COMMENT ON COLUMN "BPM_TASK_EXT"."ASSIGNEE_USER_ID" IS '任务的审批人'; +COMMENT ON COLUMN "BPM_TASK_EXT"."NAME" IS '任务的名字'; +COMMENT ON COLUMN "BPM_TASK_EXT"."TASK_ID" IS '任务的编号'; +COMMENT ON COLUMN "BPM_TASK_EXT"."RESULT" IS '任务的结果'; +COMMENT ON COLUMN "BPM_TASK_EXT"."REASON" IS '审批建议'; +COMMENT ON COLUMN "BPM_TASK_EXT"."END_TIME" IS '任务的结束时间'; +COMMENT ON COLUMN "BPM_TASK_EXT"."PROCESS_INSTANCE_ID" IS '流程实例的编号'; +COMMENT ON COLUMN "BPM_TASK_EXT"."PROCESS_DEFINITION_ID" IS '流程定义的编号'; +COMMENT ON COLUMN "BPM_TASK_EXT"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "BPM_TASK_EXT"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "BPM_TASK_EXT"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "BPM_TASK_EXT"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "BPM_TASK_EXT"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "BPM_TASK_EXT"."DELETED" IS '是否删除'; +COMMENT ON TABLE "BPM_TASK_EXT" IS '工作流的流程任务的拓展表'; + +-- ---------------------------- +-- Records of BPM_TASK_EXT +-- ---------------------------- +INSERT INTO "BPM_TASK_EXT" ("ID", "ASSIGNEE_USER_ID", "NAME", "TASK_ID", "RESULT", "REASON", "END_TIME", "PROCESS_INSTANCE_ID", "PROCESS_DEFINITION_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('0', '1', 'task01', '6445a7a5-c947-11ec-a43c-3e2374911326', '2', '123', TO_DATE('2022-05-01 20:30:02', 'SYYYY-MM-DD HH24:MI:SS'), '64394b8d-c947-11ec-a43c-3e2374911326', 'oa_leave:1:5b8f470c-c947-11ec-a43c-3e2374911326', '1', TO_DATE('2022-05-01 20:08:20', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-05-01 20:30:03', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for BPM_USER_GROUP +-- ---------------------------- +DROP TABLE "BPM_USER_GROUP"; +CREATE TABLE "BPM_USER_GROUP" ( + "ID" NUMBER(20,0) NOT NULL, + "NAME" NVARCHAR2(30), + "DESCRIPTION" NVARCHAR2(255), + "MEMBER_USER_IDS" NCLOB NOT NULL, + "STATUS" NUMBER(4,0) NOT NULL, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "BPM_USER_GROUP"."ID" IS '编号'; +COMMENT ON COLUMN "BPM_USER_GROUP"."NAME" IS '组名'; +COMMENT ON COLUMN "BPM_USER_GROUP"."DESCRIPTION" IS '描述'; +COMMENT ON COLUMN "BPM_USER_GROUP"."MEMBER_USER_IDS" IS '成员编号数组'; +COMMENT ON COLUMN "BPM_USER_GROUP"."STATUS" IS '状态(0正常 1停用)'; +COMMENT ON COLUMN "BPM_USER_GROUP"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "BPM_USER_GROUP"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "BPM_USER_GROUP"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "BPM_USER_GROUP"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "BPM_USER_GROUP"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "BPM_USER_GROUP"."DELETED" IS '是否删除'; +COMMENT ON TABLE "BPM_USER_GROUP" IS '用户组'; + +-- ---------------------------- +-- Records of BPM_USER_GROUP +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for INFRA_API_ACCESS_LOG +-- ---------------------------- +DROP TABLE "INFRA_API_ACCESS_LOG"; +CREATE TABLE "INFRA_API_ACCESS_LOG" ( + "ID" NUMBER(20,0) NOT NULL, + "TRACE_ID" NVARCHAR2(64), + "USER_ID" NUMBER(20,0) DEFAULT 0 NOT NULL, + "USER_TYPE" NUMBER(4,0) DEFAULT 0 NOT NULL, + "APPLICATION_NAME" NVARCHAR2(50), + "REQUEST_METHOD" NVARCHAR2(16), + "REQUEST_URL" NVARCHAR2(255), + "REQUEST_PARAMS" NCLOB, + "USER_IP" NVARCHAR2(50), + "USER_AGENT" NVARCHAR2(512), + "BEGIN_TIME" DATE NOT NULL, + "END_TIME" DATE NOT NULL, + "DURATION" NUMBER(11,0) NOT NULL, + "RESULT_CODE" NUMBER(11,0) NOT NULL, + "RESULT_MSG" NVARCHAR2(512), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."ID" IS '日志主键'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."TRACE_ID" IS '链路追踪编号'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."USER_ID" IS '用户编号'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."USER_TYPE" IS '用户类型'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."APPLICATION_NAME" IS '应用名'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."REQUEST_METHOD" IS '请求方法名'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."REQUEST_URL" IS '请求地址'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."REQUEST_PARAMS" IS '请求参数'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."USER_IP" IS '用户 IP'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."USER_AGENT" IS '浏览器 UA'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."BEGIN_TIME" IS '开始请求时间'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."END_TIME" IS '结束请求时间'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."DURATION" IS '执行时长'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."RESULT_CODE" IS '结果码'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."RESULT_MSG" IS '结果提示'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "INFRA_API_ACCESS_LOG"."TENANT_ID" IS '租户编号'; +COMMENT ON TABLE "INFRA_API_ACCESS_LOG" IS 'API 访问日志表'; + +-- ---------------------------- +-- Records of INFRA_API_ACCESS_LOG +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for INFRA_API_ERROR_LOG +-- ---------------------------- +DROP TABLE "INFRA_API_ERROR_LOG"; +CREATE TABLE "INFRA_API_ERROR_LOG" ( + "ID" NUMBER(11,0) NOT NULL, + "TRACE_ID" NVARCHAR2(64), + "USER_ID" NUMBER(11,0) NOT NULL, + "USER_TYPE" NUMBER(4,0) NOT NULL, + "APPLICATION_NAME" NVARCHAR2(50), + "REQUEST_METHOD" NVARCHAR2(16), + "REQUEST_URL" NVARCHAR2(255), + "REQUEST_PARAMS" NCLOB, + "USER_IP" NVARCHAR2(50), + "USER_AGENT" NVARCHAR2(512), + "EXCEPTION_TIME" DATE NOT NULL, + "EXCEPTION_NAME" NVARCHAR2(128), + "EXCEPTION_MESSAGE" NCLOB NOT NULL, + "EXCEPTION_ROOT_CAUSE_MESSAGE" NCLOB NOT NULL, + "EXCEPTION_STACK_TRACE" NCLOB NOT NULL, + "EXCEPTION_CLASS_NAME" NVARCHAR2(512), + "EXCEPTION_FILE_NAME" NVARCHAR2(512), + "EXCEPTION_METHOD_NAME" NVARCHAR2(512), + "EXCEPTION_LINE_NUMBER" NUMBER(11,0) NOT NULL, + "PROCESS_STATUS" NUMBER(4,0) NOT NULL, + "PROCESS_TIME" DATE, + "PROCESS_USER_ID" NUMBER(11,0), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."ID" IS '编号'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."TRACE_ID" IS '链路追踪编号 + * + * 一般来说,通过链路追踪编号,可以将访问日志,错误日志,链路追踪日志,logger 打印日志等,结合在一起,从而进行排错。'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."USER_ID" IS '用户编号'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."USER_TYPE" IS '用户类型'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."APPLICATION_NAME" IS '应用名 + * + * 目前读取 spring.application.name'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."REQUEST_METHOD" IS '请求方法名'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."REQUEST_URL" IS '请求地址'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."REQUEST_PARAMS" IS '请求参数'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."USER_IP" IS '用户 IP'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."USER_AGENT" IS '浏览器 UA'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."EXCEPTION_TIME" IS '异常发生时间'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."EXCEPTION_NAME" IS '异常名 + * + * {@link Throwable#getClass()} 的类全名'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."EXCEPTION_MESSAGE" IS '异常导致的消息 + * + * {@link cn.iocoder.common.framework.util.ExceptionUtil#getMessage(Throwable)}'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."EXCEPTION_ROOT_CAUSE_MESSAGE" IS '异常导致的根消息 + * + * {@link cn.iocoder.common.framework.util.ExceptionUtil#getRootCauseMessage(Throwable)}'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."EXCEPTION_STACK_TRACE" IS '异常的栈轨迹 + * + * {@link cn.iocoder.common.framework.util.ExceptionUtil#getServiceException(Exception)}'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."EXCEPTION_CLASS_NAME" IS '异常发生的类全名 + * + * {@link StackTraceElement#getClassName()}'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."EXCEPTION_FILE_NAME" IS '异常发生的类文件 + * + * {@link StackTraceElement#getFileName()}'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."EXCEPTION_METHOD_NAME" IS '异常发生的方法名 + * + * {@link StackTraceElement#getMethodName()}'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."EXCEPTION_LINE_NUMBER" IS '异常发生的方法所在行 + * + * {@link StackTraceElement#getLineNumber()}'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."PROCESS_STATUS" IS '处理状态'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."PROCESS_TIME" IS '处理时间'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."PROCESS_USER_ID" IS '处理用户编号'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "INFRA_API_ERROR_LOG"."TENANT_ID" IS '租户编号'; +COMMENT ON TABLE "INFRA_API_ERROR_LOG" IS '系统异常日志'; + +-- ---------------------------- +-- Records of INFRA_API_ERROR_LOG +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for INFRA_CODEGEN_COLUMN +-- ---------------------------- +DROP TABLE "INFRA_CODEGEN_COLUMN"; +CREATE TABLE "INFRA_CODEGEN_COLUMN" ( + "ID" NUMBER(20,0) NOT NULL, + "TABLE_ID" NUMBER(20,0) NOT NULL, + "COLUMN_NAME" NVARCHAR2(200), + "DATA_TYPE" NVARCHAR2(100), + "COLUMN_COMMENT" NVARCHAR2(500), + "NULLABLE" NUMBER(4,0), + "PRIMARY_KEY" NUMBER(4,0), + "AUTO_INCREMENT" NUMBER(4,0), + "ORDINAL_POSITION" NUMBER(11,0) NOT NULL, + "JAVA_TYPE" NVARCHAR2(32), + "JAVA_FIELD" NVARCHAR2(64), + "DICT_TYPE" NVARCHAR2(200), + "EXAMPLE" NVARCHAR2(64), + "CREATE_OPERATION" NUMBER(4,0), + "UPDATE_OPERATION" NUMBER(4,0), + "LIST_OPERATION" NUMBER(4,0), + "LIST_OPERATION_CONDITION" NVARCHAR2(32) NOT NULL, + "LIST_OPERATION_RESULT" NUMBER(4,0), + "HTML_TYPE" NVARCHAR2(32), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(4,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."ID" IS '编号'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."TABLE_ID" IS '表编号'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."COLUMN_NAME" IS '字段名'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."DATA_TYPE" IS '字段类型'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."COLUMN_COMMENT" IS '字段描述'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."NULLABLE" IS '是否允许为空'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."PRIMARY_KEY" IS '是否主键'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."AUTO_INCREMENT" IS '是否自增'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."ORDINAL_POSITION" IS '排序'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."JAVA_TYPE" IS 'Java 属性类型'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."JAVA_FIELD" IS 'Java 属性名'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."DICT_TYPE" IS '字典类型'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."EXAMPLE" IS '数据示例'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."CREATE_OPERATION" IS '是否为 Create 创建操作的字段'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."UPDATE_OPERATION" IS '是否为 Update 更新操作的字段'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."LIST_OPERATION" IS '是否为 List 查询操作的字段'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."LIST_OPERATION_CONDITION" IS 'List 查询操作的条件类型'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."LIST_OPERATION_RESULT" IS '是否为 List 查询操作的返回字段'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."HTML_TYPE" IS '显示类型'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "INFRA_CODEGEN_COLUMN"."DELETED" IS '是否删除'; +COMMENT ON TABLE "INFRA_CODEGEN_COLUMN" IS '代码生成表字段定义'; + +-- ---------------------------- +-- Records of INFRA_CODEGEN_COLUMN +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for INFRA_CODEGEN_TABLE +-- ---------------------------- +DROP TABLE "INFRA_CODEGEN_TABLE"; +CREATE TABLE "INFRA_CODEGEN_TABLE" ( + "ID" NUMBER(20,0) NOT NULL, + "DATA_SOURCE_CONFIG_ID" NUMBER NOT NULL, + "SCENE" NUMBER(4,0) NOT NULL, + "TABLE_NAME" NVARCHAR2(200), + "TABLE_COMMENT" NVARCHAR2(500), + "REMARK" NVARCHAR2(500), + "MODULE_NAME" NVARCHAR2(30), + "BUSINESS_NAME" NVARCHAR2(30), + "CLASS_NAME" NVARCHAR2(100), + "CLASS_COMMENT" NVARCHAR2(50), + "AUTHOR" NVARCHAR2(50), + "TEMPLATE_TYPE" NUMBER(4,0) NOT NULL, + "PARENT_MENU_ID" NUMBER(20,0), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(4,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."ID" IS '编号'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."DATA_SOURCE_CONFIG_ID" IS '数据源配置的编号'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."SCENE" IS '生成场景'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."TABLE_NAME" IS '表名称'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."TABLE_COMMENT" IS '表描述'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."REMARK" IS '备注'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."MODULE_NAME" IS '模块名'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."BUSINESS_NAME" IS '业务名'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."CLASS_NAME" IS '类名称'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."CLASS_COMMENT" IS '类描述'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."AUTHOR" IS '作者'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."TEMPLATE_TYPE" IS '模板类型'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."PARENT_MENU_ID" IS '父菜单编号'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "INFRA_CODEGEN_TABLE"."DELETED" IS '是否删除'; +COMMENT ON TABLE "INFRA_CODEGEN_TABLE" IS '代码生成表定义'; + +-- ---------------------------- +-- Records of INFRA_CODEGEN_TABLE +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for INFRA_CONFIG +-- ---------------------------- +DROP TABLE "INFRA_CONFIG"; +CREATE TABLE "INFRA_CONFIG" ( + "ID" NUMBER(11,0) NOT NULL, + "CATEGORY" NVARCHAR2(50), + "TYPE" NUMBER(4,0) NOT NULL, + "NAME" NVARCHAR2(100), + "CONFIG_KEY" NVARCHAR2(100), + "VALUE" NVARCHAR2(500), + "VISIBLE" NUMBER(4,0) NOT NULL, + "REMARK" NVARCHAR2(500), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "INFRA_CONFIG"."ID" IS '参数主键'; +COMMENT ON COLUMN "INFRA_CONFIG"."CATEGORY" IS '参数分组'; +COMMENT ON COLUMN "INFRA_CONFIG"."TYPE" IS '参数类型'; +COMMENT ON COLUMN "INFRA_CONFIG"."NAME" IS '参数名称'; +COMMENT ON COLUMN "INFRA_CONFIG"."CONFIG_KEY" IS '参数键名'; +COMMENT ON COLUMN "INFRA_CONFIG"."VALUE" IS '参数键值'; +COMMENT ON COLUMN "INFRA_CONFIG"."VISIBLE" IS '是否可见'; +COMMENT ON COLUMN "INFRA_CONFIG"."REMARK" IS '备注'; +COMMENT ON COLUMN "INFRA_CONFIG"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "INFRA_CONFIG"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "INFRA_CONFIG"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "INFRA_CONFIG"."UPDATE_TIME" IS '更新时间'; +COMMENT ON TABLE "INFRA_CONFIG" IS '参数配置表'; + +-- ---------------------------- +-- Records of INFRA_CONFIG +-- ---------------------------- +INSERT INTO "INFRA_CONFIG" ("ID", "CATEGORY", "TYPE", "NAME", "CONFIG_KEY", "VALUE", "VISIBLE", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('1', 'ui', '1', '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-blue', '0', '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-05-01 12:21:26', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "INFRA_CONFIG" ("ID", "CATEGORY", "TYPE", "NAME", "CONFIG_KEY", "VALUE", "VISIBLE", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('2', 'biz', '1', '用户管理-账号初始密码', 'sys.user.init-password', '123456', '0', '初始化密码 123456', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-20 02:25:51', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "INFRA_CONFIG" ("ID", "CATEGORY", "TYPE", "NAME", "CONFIG_KEY", "VALUE", "VISIBLE", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('3', 'ui', '1', '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', '0', '深色主题theme-dark,浅色主题theme-light', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-19 03:05:21', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "INFRA_CONFIG" ("ID", "CATEGORY", "TYPE", "NAME", "CONFIG_KEY", "VALUE", "VISIBLE", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('4', '1', '2', 'xxx', 'demo.test', '10', '0', '5', NULL, TO_DATE('2021-01-19 03:10:26', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-20 09:25:55', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "INFRA_CONFIG" ("ID", "CATEGORY", "TYPE", "NAME", "CONFIG_KEY", "VALUE", "VISIBLE", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('5', 'xxx', '2', 'xxx', 'xxx', 'xxx', '1', 'xxx', NULL, TO_DATE('2021-02-09 20:06:47', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-02-09 20:06:47', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "INFRA_CONFIG" ("ID", "CATEGORY", "TYPE", "NAME", "CONFIG_KEY", "VALUE", "VISIBLE", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('6', 'biz', '2', '登陆验证码的开关', 'yudao.captcha.enable', 'true', '1', NULL, '1', TO_DATE('2022-02-17 00:03:11', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-17 00:15:33', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for INFRA_DATA_SOURCE_CONFIG +-- ---------------------------- +DROP TABLE "INFRA_DATA_SOURCE_CONFIG"; +CREATE TABLE "INFRA_DATA_SOURCE_CONFIG" ( + "ID" NUMBER NOT NULL, + "NAME" NVARCHAR2(100) NOT NULL, + "URL" NCLOB NOT NULL, + "USERNAME" NVARCHAR2(255) NOT NULL, + "PASSWORD" NVARCHAR2(255) NOT NULL, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "INFRA_DATA_SOURCE_CONFIG"."ID" IS '主键编号'; +COMMENT ON COLUMN "INFRA_DATA_SOURCE_CONFIG"."NAME" IS '参数名称'; +COMMENT ON COLUMN "INFRA_DATA_SOURCE_CONFIG"."URL" IS '数据源连接'; +COMMENT ON COLUMN "INFRA_DATA_SOURCE_CONFIG"."USERNAME" IS '用户名'; +COMMENT ON COLUMN "INFRA_DATA_SOURCE_CONFIG"."PASSWORD" IS '密码'; +COMMENT ON COLUMN "INFRA_DATA_SOURCE_CONFIG"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "INFRA_DATA_SOURCE_CONFIG"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "INFRA_DATA_SOURCE_CONFIG"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "INFRA_DATA_SOURCE_CONFIG"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "INFRA_DATA_SOURCE_CONFIG"."DELETED" IS '是否删除'; +COMMENT ON TABLE "INFRA_DATA_SOURCE_CONFIG" IS '数据源配置表'; + +-- ---------------------------- +-- Records of INFRA_DATA_SOURCE_CONFIG +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for INFRA_FILE +-- ---------------------------- +DROP TABLE "INFRA_FILE"; +CREATE TABLE "INFRA_FILE" ( + "ID" NUMBER(20,0) NOT NULL, + "CONFIG_ID" NUMBER(20,0), + "PATH" NVARCHAR2(512), + "URL" NCLOB, + "TYPE" NVARCHAR2(63), + "SIZE" NUMBER(11,0) NOT NULL, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "INFRA_FILE"."ID" IS '文件编号'; +COMMENT ON COLUMN "INFRA_FILE"."CONFIG_ID" IS '配置编号'; +COMMENT ON COLUMN "INFRA_FILE"."PATH" IS '文件路径'; +COMMENT ON COLUMN "INFRA_FILE"."URL" IS '文件 URL'; +COMMENT ON COLUMN "INFRA_FILE"."TYPE" IS '文件类型'; +COMMENT ON COLUMN "INFRA_FILE"."SIZE" IS '文件大小'; +COMMENT ON COLUMN "INFRA_FILE"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "INFRA_FILE"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "INFRA_FILE"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "INFRA_FILE"."UPDATE_TIME" IS '更新时间'; +COMMENT ON TABLE "INFRA_FILE" IS '文件表'; + +-- ---------------------------- +-- Records of INFRA_FILE +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for INFRA_FILE_CONFIG +-- ---------------------------- +DROP TABLE "INFRA_FILE_CONFIG"; +CREATE TABLE "INFRA_FILE_CONFIG" ( + "ID" NUMBER(20,0) NOT NULL, + "NAME" NVARCHAR2(63), + "STORAGE" NUMBER(4,0) NOT NULL, + "REMARK" NVARCHAR2(255), + "MASTER" NUMBER(4,0), + "CONFIG" NCLOB, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(4,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "INFRA_FILE_CONFIG"."ID" IS '编号'; +COMMENT ON COLUMN "INFRA_FILE_CONFIG"."NAME" IS '配置名'; +COMMENT ON COLUMN "INFRA_FILE_CONFIG"."STORAGE" IS '存储器'; +COMMENT ON COLUMN "INFRA_FILE_CONFIG"."REMARK" IS '备注'; +COMMENT ON COLUMN "INFRA_FILE_CONFIG"."MASTER" IS '是否为主配置'; +COMMENT ON COLUMN "INFRA_FILE_CONFIG"."CONFIG" IS '存储配置'; +COMMENT ON COLUMN "INFRA_FILE_CONFIG"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "INFRA_FILE_CONFIG"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "INFRA_FILE_CONFIG"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "INFRA_FILE_CONFIG"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "INFRA_FILE_CONFIG"."DELETED" IS '是否删除'; +COMMENT ON TABLE "INFRA_FILE_CONFIG" IS '文件配置表'; + +-- ---------------------------- +-- Records of INFRA_FILE_CONFIG +-- ---------------------------- +INSERT INTO "INFRA_FILE_CONFIG" ("ID", "NAME", "STORAGE", "REMARK", "MASTER", "CONFIG", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('4', '数据库', '1', '我是数据库', '0', '{"@class":"cn.iocoder.yudao.framework.file.core.client.db.DBFileClientConfig","domain":"http://127.0.0.1:48080"}', '1', TO_DATE('2022-03-15 23:56:24', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 19:10:11', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "INFRA_FILE_CONFIG" ("ID", "NAME", "STORAGE", "REMARK", "MASTER", "CONFIG", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('5', '本地磁盘', '10', '测试下本地存储', '0', '{"@class":"cn.iocoder.yudao.framework.file.core.client.local.LocalFileClientConfig","basePath":"/Users/yunai/file_test","domain":"http://127.0.0.1:48080"}', '1', TO_DATE('2022-03-15 23:57:00', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 19:10:11', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "INFRA_FILE_CONFIG" ("ID", "NAME", "STORAGE", "REMARK", "MASTER", "CONFIG", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('11', 'S3 - 七牛云', '20', NULL, '1', '{"@class":"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig","endpoint":"s3-cn-south-1.qiniucs.com","domain":"http://test.yudao.iocoder.cn","bucket":"ruoyi-vue-pro","accessKey":"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8","accessSecret":"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP"}', '1', TO_DATE('2022-03-19 18:00:03', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 19:10:11', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for INFRA_FILE_CONTENT +-- ---------------------------- +DROP TABLE "INFRA_FILE_CONTENT"; +CREATE TABLE "INFRA_FILE_CONTENT" ( + "ID" NUMBER(20,0) NOT NULL, + "CONFIG_ID" NUMBER(20,0) NOT NULL, + "PATH" NVARCHAR2(512), + "CONTENT" BLOB NOT NULL, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(4,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "INFRA_FILE_CONTENT"."ID" IS '编号'; +COMMENT ON COLUMN "INFRA_FILE_CONTENT"."CONFIG_ID" IS '配置编号'; +COMMENT ON COLUMN "INFRA_FILE_CONTENT"."PATH" IS '文件路径'; +COMMENT ON COLUMN "INFRA_FILE_CONTENT"."CONTENT" IS '文件内容'; +COMMENT ON COLUMN "INFRA_FILE_CONTENT"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "INFRA_FILE_CONTENT"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "INFRA_FILE_CONTENT"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "INFRA_FILE_CONTENT"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "INFRA_FILE_CONTENT"."DELETED" IS '是否删除'; +COMMENT ON TABLE "INFRA_FILE_CONTENT" IS '文件表'; + +-- ---------------------------- +-- Records of INFRA_FILE_CONTENT +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for INFRA_JOB +-- ---------------------------- +DROP TABLE "INFRA_JOB"; +CREATE TABLE "INFRA_JOB" ( + "ID" NUMBER(20,0) NOT NULL, + "NAME" NVARCHAR2(32), + "STATUS" NUMBER(4,0) NOT NULL, + "HANDLER_NAME" NVARCHAR2(64), + "HANDLER_PARAM" NVARCHAR2(255), + "CRON_EXPRESSION" NVARCHAR2(32), + "RETRY_COUNT" NUMBER(11,0) NOT NULL, + "RETRY_INTERVAL" NUMBER(11,0) NOT NULL, + "MONITOR_TIMEOUT" NUMBER(11,0) NOT NULL, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "INFRA_JOB"."ID" IS '任务编号'; +COMMENT ON COLUMN "INFRA_JOB"."NAME" IS '任务名称'; +COMMENT ON COLUMN "INFRA_JOB"."STATUS" IS '任务状态'; +COMMENT ON COLUMN "INFRA_JOB"."HANDLER_NAME" IS '处理器的名字'; +COMMENT ON COLUMN "INFRA_JOB"."HANDLER_PARAM" IS '处理器的参数'; +COMMENT ON COLUMN "INFRA_JOB"."CRON_EXPRESSION" IS 'CRON 表达式'; +COMMENT ON COLUMN "INFRA_JOB"."RETRY_COUNT" IS '重试次数'; +COMMENT ON COLUMN "INFRA_JOB"."RETRY_INTERVAL" IS '重试间隔'; +COMMENT ON COLUMN "INFRA_JOB"."MONITOR_TIMEOUT" IS '监控超时时间'; +COMMENT ON COLUMN "INFRA_JOB"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "INFRA_JOB"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "INFRA_JOB"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "INFRA_JOB"."UPDATE_TIME" IS '更新时间'; +COMMENT ON TABLE "INFRA_JOB" IS '定时任务表'; + +-- ---------------------------- +-- Records of INFRA_JOB +-- ---------------------------- +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 ('0', '用户 Session 超时 Job', '1', 'userSessionTimeoutJob', NULL, '0 * * * * ? *', '3', '2000', '0', '1', TO_DATE('2022-05-01 20:44:03', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-05-01 20:44:03', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for INFRA_JOB_LOG +-- ---------------------------- +DROP TABLE "INFRA_JOB_LOG"; +CREATE TABLE "INFRA_JOB_LOG" ( + "ID" NUMBER(20,0) NOT NULL, + "JOB_ID" NUMBER(20,0) NOT NULL, + "HANDLER_NAME" NVARCHAR2(64), + "HANDLER_PARAM" NVARCHAR2(255), + "EXECUTE_INDEX" NUMBER(4,0) NOT NULL, + "BEGIN_TIME" DATE NOT NULL, + "END_TIME" DATE, + "DURATION" NUMBER(11,0), + "STATUS" NUMBER(4,0) NOT NULL, + "RESULT" NCLOB, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "INFRA_JOB_LOG"."ID" IS '日志编号'; +COMMENT ON COLUMN "INFRA_JOB_LOG"."JOB_ID" IS '任务编号'; +COMMENT ON COLUMN "INFRA_JOB_LOG"."HANDLER_NAME" IS '处理器的名字'; +COMMENT ON COLUMN "INFRA_JOB_LOG"."HANDLER_PARAM" IS '处理器的参数'; +COMMENT ON COLUMN "INFRA_JOB_LOG"."EXECUTE_INDEX" IS '第几次执行'; +COMMENT ON COLUMN "INFRA_JOB_LOG"."BEGIN_TIME" IS '开始执行时间'; +COMMENT ON COLUMN "INFRA_JOB_LOG"."END_TIME" IS '结束执行时间'; +COMMENT ON COLUMN "INFRA_JOB_LOG"."DURATION" IS '执行时长'; +COMMENT ON COLUMN "INFRA_JOB_LOG"."STATUS" IS '任务状态'; +COMMENT ON COLUMN "INFRA_JOB_LOG"."RESULT" IS '结果数据'; +COMMENT ON COLUMN "INFRA_JOB_LOG"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "INFRA_JOB_LOG"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "INFRA_JOB_LOG"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "INFRA_JOB_LOG"."UPDATE_TIME" IS '更新时间'; +COMMENT ON TABLE "INFRA_JOB_LOG" IS '定时任务日志表'; + +-- ---------------------------- +-- Records of INFRA_JOB_LOG +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for INFRA_TEST_DEMO +-- ---------------------------- +DROP TABLE "INFRA_TEST_DEMO"; +CREATE TABLE "INFRA_TEST_DEMO" ( + "ID" NUMBER(20,0) NOT NULL, + "NAME" NVARCHAR2(100), + "STATUS" NUMBER(4,0) NOT NULL, + "TYPE" NUMBER(4,0) NOT NULL, + "CATEGORY" NUMBER(4,0) NOT NULL, + "REMARK" NVARCHAR2(500), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "INFRA_TEST_DEMO"."ID" IS '编号'; +COMMENT ON COLUMN "INFRA_TEST_DEMO"."NAME" IS '名字'; +COMMENT ON COLUMN "INFRA_TEST_DEMO"."STATUS" IS '状态'; +COMMENT ON COLUMN "INFRA_TEST_DEMO"."TYPE" IS '类型'; +COMMENT ON COLUMN "INFRA_TEST_DEMO"."CATEGORY" IS '分类'; +COMMENT ON COLUMN "INFRA_TEST_DEMO"."REMARK" IS '备注'; +COMMENT ON COLUMN "INFRA_TEST_DEMO"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "INFRA_TEST_DEMO"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "INFRA_TEST_DEMO"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "INFRA_TEST_DEMO"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "INFRA_TEST_DEMO"."DELETED" IS '是否删除'; +COMMENT ON TABLE "INFRA_TEST_DEMO" IS '字典类型表'; + +-- ---------------------------- +-- Records of INFRA_TEST_DEMO +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for MEMBER_USER +-- ---------------------------- +DROP TABLE "MEMBER_USER"; +CREATE TABLE "MEMBER_USER" ( + "ID" NUMBER(20,0) NOT NULL, + "NICKNAME" NVARCHAR2(30), + "AVATAR" NVARCHAR2(255), + "STATUS" NUMBER(4,0) NOT NULL, + "MOBILE" NVARCHAR2(11), + "PASSWORD" NVARCHAR2(100), + "REGISTER_IP" NVARCHAR2(32), + "LOGIN_IP" NVARCHAR2(50), + "LOGIN_DATE" DATE, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "MEMBER_USER"."ID" IS '编号'; +COMMENT ON COLUMN "MEMBER_USER"."NICKNAME" IS '用户昵称'; +COMMENT ON COLUMN "MEMBER_USER"."AVATAR" IS '头像'; +COMMENT ON COLUMN "MEMBER_USER"."STATUS" IS '状态'; +COMMENT ON COLUMN "MEMBER_USER"."MOBILE" IS '手机号'; +COMMENT ON COLUMN "MEMBER_USER"."PASSWORD" IS '密码'; +COMMENT ON COLUMN "MEMBER_USER"."REGISTER_IP" IS '注册 IP'; +COMMENT ON COLUMN "MEMBER_USER"."LOGIN_IP" IS '最后登录IP'; +COMMENT ON COLUMN "MEMBER_USER"."LOGIN_DATE" IS '最后登录时间'; +COMMENT ON COLUMN "MEMBER_USER"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "MEMBER_USER"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "MEMBER_USER"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "MEMBER_USER"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "MEMBER_USER"."TENANT_ID" IS '租户编号'; +COMMENT ON TABLE "MEMBER_USER" IS '用户'; + +-- ---------------------------- +-- Records of MEMBER_USER +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for PAY_APP +-- ---------------------------- +DROP TABLE "PAY_APP"; +CREATE TABLE "PAY_APP" ( + "ID" NUMBER(20,0) NOT NULL, + "NAME" NVARCHAR2(64), + "STATUS" NUMBER(4,0) NOT NULL, + "REMARK" NVARCHAR2(255), + "PAY_NOTIFY_URL" NCLOB, + "REFUND_NOTIFY_URL" NCLOB, + "MERCHANT_ID" NUMBER(20,0) NOT NULL, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "PAY_APP"."ID" IS '应用编号'; +COMMENT ON COLUMN "PAY_APP"."NAME" IS '应用名'; +COMMENT ON COLUMN "PAY_APP"."STATUS" IS '开启状态'; +COMMENT ON COLUMN "PAY_APP"."REMARK" IS '备注'; +COMMENT ON COLUMN "PAY_APP"."PAY_NOTIFY_URL" IS '支付结果的回调地址'; +COMMENT ON COLUMN "PAY_APP"."REFUND_NOTIFY_URL" IS '退款结果的回调地址'; +COMMENT ON COLUMN "PAY_APP"."MERCHANT_ID" IS '商户编号'; +COMMENT ON COLUMN "PAY_APP"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "PAY_APP"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "PAY_APP"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "PAY_APP"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "PAY_APP"."TENANT_ID" IS '租户编号'; +COMMENT ON TABLE "PAY_APP" IS '支付应用信息'; + +-- ---------------------------- +-- Records of PAY_APP +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for PAY_CHANNEL +-- ---------------------------- +DROP TABLE "PAY_CHANNEL"; +CREATE TABLE "PAY_CHANNEL" ( + "ID" NUMBER(20,0) NOT NULL, + "CODE" NVARCHAR2(32), + "STATUS" NUMBER(4,0) NOT NULL, + "REMARK" NVARCHAR2(255), + "FEE_RATE" NUMBER NOT NULL, + "MERCHANT_ID" NUMBER(20,0) NOT NULL, + "APP_ID" NUMBER(20,0) NOT NULL, + "CONFIG" NCLOB, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "PAY_CHANNEL"."ID" IS '商户编号'; +COMMENT ON COLUMN "PAY_CHANNEL"."CODE" IS '渠道编码'; +COMMENT ON COLUMN "PAY_CHANNEL"."STATUS" IS '开启状态'; +COMMENT ON COLUMN "PAY_CHANNEL"."REMARK" IS '备注'; +COMMENT ON COLUMN "PAY_CHANNEL"."FEE_RATE" IS '渠道费率,单位:百分比'; +COMMENT ON COLUMN "PAY_CHANNEL"."MERCHANT_ID" IS '商户编号'; +COMMENT ON COLUMN "PAY_CHANNEL"."APP_ID" IS '应用编号'; +COMMENT ON COLUMN "PAY_CHANNEL"."CONFIG" IS '支付渠道配置'; +COMMENT ON COLUMN "PAY_CHANNEL"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "PAY_CHANNEL"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "PAY_CHANNEL"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "PAY_CHANNEL"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "PAY_CHANNEL"."TENANT_ID" IS '租户编号'; +COMMENT ON TABLE "PAY_CHANNEL" IS '支付渠道 +'; + +-- ---------------------------- +-- Records of PAY_CHANNEL +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for PAY_MERCHANT +-- ---------------------------- +DROP TABLE "PAY_MERCHANT"; +CREATE TABLE "PAY_MERCHANT" ( + "ID" NUMBER(20,0) NOT NULL, + "NO" NVARCHAR2(32), + "NAME" NVARCHAR2(64), + "SHORT_NAME" NVARCHAR2(64), + "STATUS" NUMBER(4,0) NOT NULL, + "REMARK" NVARCHAR2(255), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "PAY_MERCHANT"."ID" IS '商户编号'; +COMMENT ON COLUMN "PAY_MERCHANT"."NO" IS '商户号'; +COMMENT ON COLUMN "PAY_MERCHANT"."NAME" IS '商户全称'; +COMMENT ON COLUMN "PAY_MERCHANT"."SHORT_NAME" IS '商户简称'; +COMMENT ON COLUMN "PAY_MERCHANT"."STATUS" IS '开启状态'; +COMMENT ON COLUMN "PAY_MERCHANT"."REMARK" IS '备注'; +COMMENT ON COLUMN "PAY_MERCHANT"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "PAY_MERCHANT"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "PAY_MERCHANT"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "PAY_MERCHANT"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "PAY_MERCHANT"."TENANT_ID" IS '租户编号'; +COMMENT ON TABLE "PAY_MERCHANT" IS '支付商户信息'; + +-- ---------------------------- +-- Records of PAY_MERCHANT +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for PAY_NOTIFY_LOG +-- ---------------------------- +DROP TABLE "PAY_NOTIFY_LOG"; +CREATE TABLE "PAY_NOTIFY_LOG" ( + "ID" NUMBER(20,0) NOT NULL, + "TASK_ID" NUMBER(20,0) NOT NULL, + "NOTIFY_TIMES" NUMBER(4,0) NOT NULL, + "RESPONSE" NCLOB, + "STATUS" NUMBER(4,0) NOT NULL, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "PAY_NOTIFY_LOG"."ID" IS '日志编号'; +COMMENT ON COLUMN "PAY_NOTIFY_LOG"."TASK_ID" IS '通知任务编号'; +COMMENT ON COLUMN "PAY_NOTIFY_LOG"."NOTIFY_TIMES" IS '第几次被通知'; +COMMENT ON COLUMN "PAY_NOTIFY_LOG"."RESPONSE" IS '请求参数'; +COMMENT ON COLUMN "PAY_NOTIFY_LOG"."STATUS" IS '通知状态'; +COMMENT ON COLUMN "PAY_NOTIFY_LOG"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "PAY_NOTIFY_LOG"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "PAY_NOTIFY_LOG"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "PAY_NOTIFY_LOG"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "PAY_NOTIFY_LOG"."TENANT_ID" IS '租户编号'; +COMMENT ON TABLE "PAY_NOTIFY_LOG" IS '支付通知 App 的日志'; + +-- ---------------------------- +-- Records of PAY_NOTIFY_LOG +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for PAY_NOTIFY_TASK +-- ---------------------------- +DROP TABLE "PAY_NOTIFY_TASK"; +CREATE TABLE "PAY_NOTIFY_TASK" ( + "ID" NUMBER(20,0) NOT NULL, + "MERCHANT_ID" NUMBER(20,0) NOT NULL, + "APP_ID" NUMBER(20,0) NOT NULL, + "TYPE" NUMBER(4,0) NOT NULL, + "DATA_ID" NUMBER(20,0) NOT NULL, + "STATUS" NUMBER(4,0) NOT NULL, + "MERCHANT_ORDER_ID" NVARCHAR2(64), + "NEXT_NOTIFY_TIME" DATE NOT NULL, + "LAST_EXECUTE_TIME" DATE NOT NULL, + "NOTIFY_TIMES" NUMBER(4,0) NOT NULL, + "MAX_NOTIFY_TIMES" NUMBER(4,0) NOT NULL, + "NOTIFY_URL" NCLOB, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."ID" IS '任务编号'; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."MERCHANT_ID" IS '商户编号'; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."APP_ID" IS '应用编号'; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."TYPE" IS '通知类型'; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."DATA_ID" IS '数据编号'; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."STATUS" IS '通知状态'; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."MERCHANT_ORDER_ID" IS '商户订单编号'; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."NEXT_NOTIFY_TIME" IS '下一次通知时间'; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."LAST_EXECUTE_TIME" IS '最后一次执行时间'; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."NOTIFY_TIMES" IS '当前通知次数'; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."MAX_NOTIFY_TIMES" IS '最大可通知次数'; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."NOTIFY_URL" IS '异步通知地址'; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "PAY_NOTIFY_TASK"."TENANT_ID" IS '租户编号'; +COMMENT ON TABLE "PAY_NOTIFY_TASK" IS '商户支付、退款等的通知 +'; + +-- ---------------------------- +-- Records of PAY_NOTIFY_TASK +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for PAY_ORDER +-- ---------------------------- +DROP TABLE "PAY_ORDER"; +CREATE TABLE "PAY_ORDER" ( + "ID" NUMBER(20,0) NOT NULL, + "MERCHANT_ID" NUMBER(20,0) NOT NULL, + "APP_ID" NUMBER(20,0) NOT NULL, + "CHANNEL_ID" NUMBER(20,0), + "CHANNEL_CODE" NVARCHAR2(32), + "MERCHANT_ORDER_ID" NVARCHAR2(64), + "SUBJECT" NVARCHAR2(32), + "BODY" NVARCHAR2(128), + "NOTIFY_URL" NCLOB, + "NOTIFY_STATUS" NUMBER(4,0) NOT NULL, + "AMOUNT" NUMBER(20,0) NOT NULL, + "CHANNEL_FEE_RATE" NUMBER, + "CHANNEL_FEE_AMOUNT" NUMBER(20,0), + "STATUS" NUMBER(4,0) NOT NULL, + "USER_IP" NVARCHAR2(50), + "EXPIRE_TIME" DATE NOT NULL, + "SUCCESS_TIME" DATE, + "NOTIFY_TIME" DATE, + "SUCCESS_EXTENSION_ID" NUMBER(20,0), + "REFUND_STATUS" NUMBER(4,0) NOT NULL, + "REFUND_TIMES" NUMBER(4,0) NOT NULL, + "REFUND_AMOUNT" NUMBER(20,0) NOT NULL, + "CHANNEL_USER_ID" NVARCHAR2(255), + "CHANNEL_ORDER_NO" NVARCHAR2(64), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "PAY_ORDER"."ID" IS '支付订单编号'; +COMMENT ON COLUMN "PAY_ORDER"."MERCHANT_ID" IS '商户编号'; +COMMENT ON COLUMN "PAY_ORDER"."APP_ID" IS '应用编号'; +COMMENT ON COLUMN "PAY_ORDER"."CHANNEL_ID" IS '渠道编号'; +COMMENT ON COLUMN "PAY_ORDER"."CHANNEL_CODE" IS '渠道编码'; +COMMENT ON COLUMN "PAY_ORDER"."MERCHANT_ORDER_ID" IS '商户订单编号'; +COMMENT ON COLUMN "PAY_ORDER"."SUBJECT" IS '商品标题'; +COMMENT ON COLUMN "PAY_ORDER"."BODY" IS '商品描述'; +COMMENT ON COLUMN "PAY_ORDER"."NOTIFY_URL" IS '异步通知地址'; +COMMENT ON COLUMN "PAY_ORDER"."NOTIFY_STATUS" IS '通知商户支付结果的回调状态'; +COMMENT ON COLUMN "PAY_ORDER"."AMOUNT" IS '支付金额,单位:分'; +COMMENT ON COLUMN "PAY_ORDER"."CHANNEL_FEE_RATE" IS '渠道手续费,单位:百分比'; +COMMENT ON COLUMN "PAY_ORDER"."CHANNEL_FEE_AMOUNT" IS '渠道手续金额,单位:分'; +COMMENT ON COLUMN "PAY_ORDER"."STATUS" IS '支付状态'; +COMMENT ON COLUMN "PAY_ORDER"."USER_IP" IS '用户 IP'; +COMMENT ON COLUMN "PAY_ORDER"."EXPIRE_TIME" IS '订单失效时间'; +COMMENT ON COLUMN "PAY_ORDER"."SUCCESS_TIME" IS '订单支付成功时间'; +COMMENT ON COLUMN "PAY_ORDER"."NOTIFY_TIME" IS '订单支付通知时间'; +COMMENT ON COLUMN "PAY_ORDER"."SUCCESS_EXTENSION_ID" IS '支付成功的订单拓展单编号'; +COMMENT ON COLUMN "PAY_ORDER"."REFUND_STATUS" IS '退款状态'; +COMMENT ON COLUMN "PAY_ORDER"."REFUND_TIMES" IS '退款次数'; +COMMENT ON COLUMN "PAY_ORDER"."REFUND_AMOUNT" IS '退款总金额,单位:分'; +COMMENT ON COLUMN "PAY_ORDER"."CHANNEL_USER_ID" IS '渠道用户编号'; +COMMENT ON COLUMN "PAY_ORDER"."CHANNEL_ORDER_NO" IS '渠道订单号'; +COMMENT ON COLUMN "PAY_ORDER"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "PAY_ORDER"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "PAY_ORDER"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "PAY_ORDER"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "PAY_ORDER"."TENANT_ID" IS '租户编号'; +COMMENT ON TABLE "PAY_ORDER" IS '支付订单 +'; + +-- ---------------------------- +-- Records of PAY_ORDER +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for PAY_ORDER_EXTENSION +-- ---------------------------- +DROP TABLE "PAY_ORDER_EXTENSION"; +CREATE TABLE "PAY_ORDER_EXTENSION" ( + "ID" NUMBER(20,0) NOT NULL, + "NO" NVARCHAR2(64), + "ORDER_ID" NUMBER(20,0) NOT NULL, + "CHANNEL_ID" NUMBER(20,0) NOT NULL, + "CHANNEL_CODE" NVARCHAR2(32), + "USER_IP" NVARCHAR2(50), + "STATUS" NUMBER(4,0) NOT NULL, + "CHANNEL_EXTRAS" NVARCHAR2(256), + "CHANNEL_NOTIFY_DATA" NCLOB, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "PAY_ORDER_EXTENSION"."ID" IS '支付订单编号'; +COMMENT ON COLUMN "PAY_ORDER_EXTENSION"."NO" IS '支付订单号'; +COMMENT ON COLUMN "PAY_ORDER_EXTENSION"."ORDER_ID" IS '支付订单编号'; +COMMENT ON COLUMN "PAY_ORDER_EXTENSION"."CHANNEL_ID" IS '渠道编号'; +COMMENT ON COLUMN "PAY_ORDER_EXTENSION"."CHANNEL_CODE" IS '渠道编码'; +COMMENT ON COLUMN "PAY_ORDER_EXTENSION"."USER_IP" IS '用户 IP'; +COMMENT ON COLUMN "PAY_ORDER_EXTENSION"."STATUS" IS '支付状态'; +COMMENT ON COLUMN "PAY_ORDER_EXTENSION"."CHANNEL_EXTRAS" IS '支付渠道的额外参数'; +COMMENT ON COLUMN "PAY_ORDER_EXTENSION"."CHANNEL_NOTIFY_DATA" IS '支付渠道异步通知的内容'; +COMMENT ON COLUMN "PAY_ORDER_EXTENSION"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "PAY_ORDER_EXTENSION"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "PAY_ORDER_EXTENSION"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "PAY_ORDER_EXTENSION"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "PAY_ORDER_EXTENSION"."TENANT_ID" IS '租户编号'; +COMMENT ON TABLE "PAY_ORDER_EXTENSION" IS '支付订单 +'; + +-- ---------------------------- +-- Records of PAY_ORDER_EXTENSION +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for PAY_REFUND +-- ---------------------------- +DROP TABLE "PAY_REFUND"; +CREATE TABLE "PAY_REFUND" ( + "ID" NUMBER(20,0) NOT NULL, + "MERCHANT_ID" NUMBER(20,0) NOT NULL, + "APP_ID" NUMBER(20,0) NOT NULL, + "CHANNEL_ID" NUMBER(20,0) NOT NULL, + "CHANNEL_CODE" NVARCHAR2(32), + "ORDER_ID" NUMBER(20,0) NOT NULL, + "TRADE_NO" NVARCHAR2(64), + "MERCHANT_ORDER_ID" NVARCHAR2(64), + "MERCHANT_REFUND_NO" NVARCHAR2(64), + "NOTIFY_URL" NCLOB, + "NOTIFY_STATUS" NUMBER(4,0) NOT NULL, + "STATUS" NUMBER(4,0) NOT NULL, + "TYPE" NUMBER(4,0) NOT NULL, + "PAY_AMOUNT" NUMBER(20,0) NOT NULL, + "REFUND_AMOUNT" NUMBER(20,0) NOT NULL, + "REASON" NVARCHAR2(256), + "USER_IP" NVARCHAR2(50), + "CHANNEL_ORDER_NO" NVARCHAR2(64), + "CHANNEL_REFUND_NO" NVARCHAR2(64), + "CHANNEL_ERROR_CODE" NVARCHAR2(128), + "CHANNEL_ERROR_MSG" NVARCHAR2(256), + "CHANNEL_EXTRAS" NCLOB, + "EXPIRE_TIME" DATE, + "SUCCESS_TIME" DATE, + "NOTIFY_TIME" DATE, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "PAY_REFUND"."ID" IS '支付退款编号'; +COMMENT ON COLUMN "PAY_REFUND"."MERCHANT_ID" IS '商户编号'; +COMMENT ON COLUMN "PAY_REFUND"."APP_ID" IS '应用编号'; +COMMENT ON COLUMN "PAY_REFUND"."CHANNEL_ID" IS '渠道编号'; +COMMENT ON COLUMN "PAY_REFUND"."CHANNEL_CODE" IS '渠道编码'; +COMMENT ON COLUMN "PAY_REFUND"."ORDER_ID" IS '支付订单编号 pay_order 表id'; +COMMENT ON COLUMN "PAY_REFUND"."TRADE_NO" IS '交易订单号 pay_extension 表no 字段'; +COMMENT ON COLUMN "PAY_REFUND"."MERCHANT_ORDER_ID" IS '商户订单编号(商户系统生成)'; +COMMENT ON COLUMN "PAY_REFUND"."MERCHANT_REFUND_NO" IS '商户退款订单号(商户系统生成)'; +COMMENT ON COLUMN "PAY_REFUND"."NOTIFY_URL" IS '异步通知商户地址'; +COMMENT ON COLUMN "PAY_REFUND"."NOTIFY_STATUS" IS '通知商户退款结果的回调状态'; +COMMENT ON COLUMN "PAY_REFUND"."STATUS" IS '退款状态'; +COMMENT ON COLUMN "PAY_REFUND"."TYPE" IS '退款类型(部分退款,全部退款)'; +COMMENT ON COLUMN "PAY_REFUND"."PAY_AMOUNT" IS '支付金额,单位分'; +COMMENT ON COLUMN "PAY_REFUND"."REFUND_AMOUNT" IS '退款金额,单位分'; +COMMENT ON COLUMN "PAY_REFUND"."REASON" IS '退款原因'; +COMMENT ON COLUMN "PAY_REFUND"."USER_IP" IS '用户 IP'; +COMMENT ON COLUMN "PAY_REFUND"."CHANNEL_ORDER_NO" IS '渠道订单号,pay_order 中的channel_order_no 对应'; +COMMENT ON COLUMN "PAY_REFUND"."CHANNEL_REFUND_NO" IS '渠道退款单号,渠道返回'; +COMMENT ON COLUMN "PAY_REFUND"."CHANNEL_ERROR_CODE" IS '渠道调用报错时,错误码'; +COMMENT ON COLUMN "PAY_REFUND"."CHANNEL_ERROR_MSG" IS '渠道调用报错时,错误信息'; +COMMENT ON COLUMN "PAY_REFUND"."CHANNEL_EXTRAS" IS '支付渠道的额外参数'; +COMMENT ON COLUMN "PAY_REFUND"."EXPIRE_TIME" IS '退款失效时间'; +COMMENT ON COLUMN "PAY_REFUND"."SUCCESS_TIME" IS '退款成功时间'; +COMMENT ON COLUMN "PAY_REFUND"."NOTIFY_TIME" IS '退款通知时间'; +COMMENT ON COLUMN "PAY_REFUND"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "PAY_REFUND"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "PAY_REFUND"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "PAY_REFUND"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "PAY_REFUND"."TENANT_ID" IS '租户编号'; +COMMENT ON TABLE "PAY_REFUND" IS '退款订单'; + +-- ---------------------------- +-- Records of PAY_REFUND +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_BLOB_TRIGGERS +-- ---------------------------- +DROP TABLE "QRTZ_BLOB_TRIGGERS"; +CREATE TABLE "QRTZ_BLOB_TRIGGERS" ( + "SCHED_NAME" VARCHAR2(120 BYTE) NOT NULL, + "TRIGGER_NAME" VARCHAR2(200 BYTE) NOT NULL, + "TRIGGER_GROUP" VARCHAR2(200 BYTE) NOT NULL, + "BLOB_DATA" BLOB +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; + +-- ---------------------------- +-- Records of QRTZ_BLOB_TRIGGERS +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_CALENDARS +-- ---------------------------- +DROP TABLE "QRTZ_CALENDARS"; +CREATE TABLE "QRTZ_CALENDARS" ( + "SCHED_NAME" VARCHAR2(120 BYTE) NOT NULL, + "CALENDAR_NAME" VARCHAR2(200 BYTE) NOT NULL, + "CALENDAR" BLOB NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; + +-- ---------------------------- +-- Records of QRTZ_CALENDARS +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_CRON_TRIGGERS +-- ---------------------------- +DROP TABLE "QRTZ_CRON_TRIGGERS"; +CREATE TABLE "QRTZ_CRON_TRIGGERS" ( + "SCHED_NAME" VARCHAR2(120 BYTE) NOT NULL, + "TRIGGER_NAME" VARCHAR2(200 BYTE) NOT NULL, + "TRIGGER_GROUP" VARCHAR2(200 BYTE) NOT NULL, + "CRON_EXPRESSION" VARCHAR2(120 BYTE) NOT NULL, + "TIME_ZONE_ID" VARCHAR2(80 BYTE) +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; + +-- ---------------------------- +-- Records of QRTZ_CRON_TRIGGERS +-- ---------------------------- +INSERT INTO "QRTZ_CRON_TRIGGERS" ("SCHED_NAME", "TRIGGER_NAME", "TRIGGER_GROUP", "CRON_EXPRESSION", "TIME_ZONE_ID") VALUES ('schedulerName', 'userSessionTimeoutJob', 'DEFAULT', '0 * * * * ? *', 'Asia/Shanghai'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_FIRED_TRIGGERS +-- ---------------------------- +DROP TABLE "QRTZ_FIRED_TRIGGERS"; +CREATE TABLE "QRTZ_FIRED_TRIGGERS" ( + "SCHED_NAME" VARCHAR2(120 BYTE) NOT NULL, + "ENTRY_ID" VARCHAR2(95 BYTE) NOT NULL, + "TRIGGER_NAME" VARCHAR2(200 BYTE) NOT NULL, + "TRIGGER_GROUP" VARCHAR2(200 BYTE) NOT NULL, + "INSTANCE_NAME" VARCHAR2(200 BYTE) NOT NULL, + "FIRED_TIME" NUMBER(13,0) NOT NULL, + "SCHED_TIME" NUMBER(13,0) NOT NULL, + "PRIORITY" NUMBER(13,0) NOT NULL, + "STATE" VARCHAR2(16 BYTE) NOT NULL, + "JOB_NAME" VARCHAR2(200 BYTE), + "JOB_GROUP" VARCHAR2(200 BYTE), + "IS_NONCONCURRENT" VARCHAR2(1 BYTE), + "REQUESTS_RECOVERY" VARCHAR2(1 BYTE) +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; + +-- ---------------------------- +-- Records of QRTZ_FIRED_TRIGGERS +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_JOB_DETAILS +-- ---------------------------- +DROP TABLE "QRTZ_JOB_DETAILS"; +CREATE TABLE "QRTZ_JOB_DETAILS" ( + "SCHED_NAME" VARCHAR2(120 BYTE) NOT NULL, + "JOB_NAME" VARCHAR2(200 BYTE) NOT NULL, + "JOB_GROUP" VARCHAR2(200 BYTE) NOT NULL, + "DESCRIPTION" VARCHAR2(250 BYTE), + "JOB_CLASS_NAME" VARCHAR2(250 BYTE) NOT NULL, + "IS_DURABLE" VARCHAR2(1 BYTE) NOT NULL, + "IS_NONCONCURRENT" VARCHAR2(1 BYTE) NOT NULL, + "IS_UPDATE_DATA" VARCHAR2(1 BYTE) NOT NULL, + "REQUESTS_RECOVERY" VARCHAR2(1 BYTE) NOT NULL, + "JOB_DATA" BLOB +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; + +-- ---------------------------- +-- Records of QRTZ_JOB_DETAILS +-- ---------------------------- +INSERT INTO "QRTZ_JOB_DETAILS" ("SCHED_NAME", "JOB_NAME", "JOB_GROUP", "DESCRIPTION", "JOB_CLASS_NAME", "IS_DURABLE", "IS_NONCONCURRENT", "IS_UPDATE_DATA", "REQUESTS_RECOVERY", "JOB_DATA") VALUES ('schedulerName', 'userSessionTimeoutJob', 'DEFAULT', NULL, 'cn.iocoder.yudao.framework.quartz.core.handler.JobHandlerInvoker', '0', '1', '1', '0', HEXTORAW('ACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C770800000010000000027400064A4F425F49447372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000000000000007400104A4F425F48414E444C45525F4E414D457400157573657253657373696F6E54696D656F75744A6F627800')); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_LOCKS +-- ---------------------------- +DROP TABLE "QRTZ_LOCKS"; +CREATE TABLE "QRTZ_LOCKS" ( + "SCHED_NAME" VARCHAR2(120 BYTE) NOT NULL, + "LOCK_NAME" VARCHAR2(40 BYTE) NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; + +-- ---------------------------- +-- Records of QRTZ_LOCKS +-- ---------------------------- +INSERT INTO "QRTZ_LOCKS" ("SCHED_NAME", "LOCK_NAME") VALUES ('schedulerName', 'STATE_ACCESS'); +INSERT INTO "QRTZ_LOCKS" ("SCHED_NAME", "LOCK_NAME") VALUES ('schedulerName', 'TRIGGER_ACCESS'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_PAUSED_TRIGGER_GRPS +-- ---------------------------- +DROP TABLE "QRTZ_PAUSED_TRIGGER_GRPS"; +CREATE TABLE "QRTZ_PAUSED_TRIGGER_GRPS" ( + "SCHED_NAME" VARCHAR2(120 BYTE) NOT NULL, + "TRIGGER_GROUP" VARCHAR2(200 BYTE) NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; + +-- ---------------------------- +-- Records of QRTZ_PAUSED_TRIGGER_GRPS +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_SCHEDULER_STATE +-- ---------------------------- +DROP TABLE "QRTZ_SCHEDULER_STATE"; +CREATE TABLE "QRTZ_SCHEDULER_STATE" ( + "SCHED_NAME" VARCHAR2(120 BYTE) NOT NULL, + "INSTANCE_NAME" VARCHAR2(200 BYTE) NOT NULL, + "LAST_CHECKIN_TIME" NUMBER(13,0) NOT NULL, + "CHECKIN_INTERVAL" NUMBER(13,0) NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; + +-- ---------------------------- +-- Records of QRTZ_SCHEDULER_STATE +-- ---------------------------- +INSERT INTO "QRTZ_SCHEDULER_STATE" ("SCHED_NAME", "INSTANCE_NAME", "LAST_CHECKIN_TIME", "CHECKIN_INTERVAL") VALUES ('schedulerName', 'Yunai.local1651409076356', '1651409097967', '15000'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_SIMPLE_TRIGGERS +-- ---------------------------- +DROP TABLE "QRTZ_SIMPLE_TRIGGERS"; +CREATE TABLE "QRTZ_SIMPLE_TRIGGERS" ( + "SCHED_NAME" VARCHAR2(120 BYTE) NOT NULL, + "TRIGGER_NAME" VARCHAR2(200 BYTE) NOT NULL, + "TRIGGER_GROUP" VARCHAR2(200 BYTE) NOT NULL, + "REPEAT_COUNT" NUMBER(7,0) NOT NULL, + "REPEAT_INTERVAL" NUMBER(12,0) NOT NULL, + "TIMES_TRIGGERED" NUMBER(10,0) NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; + +-- ---------------------------- +-- Records of QRTZ_SIMPLE_TRIGGERS +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_SIMPROP_TRIGGERS +-- ---------------------------- +DROP TABLE "QRTZ_SIMPROP_TRIGGERS"; +CREATE TABLE "QRTZ_SIMPROP_TRIGGERS" ( + "SCHED_NAME" VARCHAR2(120 BYTE) NOT NULL, + "TRIGGER_NAME" VARCHAR2(200 BYTE) NOT NULL, + "TRIGGER_GROUP" VARCHAR2(200 BYTE) NOT NULL, + "STR_PROP_1" VARCHAR2(512 BYTE), + "STR_PROP_2" VARCHAR2(512 BYTE), + "STR_PROP_3" VARCHAR2(512 BYTE), + "INT_PROP_1" NUMBER(10,0), + "INT_PROP_2" NUMBER(10,0), + "LONG_PROP_1" NUMBER(13,0), + "LONG_PROP_2" NUMBER(13,0), + "DEC_PROP_1" NUMBER(13,4), + "DEC_PROP_2" NUMBER(13,4), + "BOOL_PROP_1" VARCHAR2(1 BYTE), + "BOOL_PROP_2" VARCHAR2(1 BYTE) +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; + +-- ---------------------------- +-- Records of QRTZ_SIMPROP_TRIGGERS +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for QRTZ_TRIGGERS +-- ---------------------------- +DROP TABLE "QRTZ_TRIGGERS"; +CREATE TABLE "QRTZ_TRIGGERS" ( + "SCHED_NAME" VARCHAR2(120 BYTE) NOT NULL, + "TRIGGER_NAME" VARCHAR2(200 BYTE) NOT NULL, + "TRIGGER_GROUP" VARCHAR2(200 BYTE) NOT NULL, + "JOB_NAME" VARCHAR2(200 BYTE) NOT NULL, + "JOB_GROUP" VARCHAR2(200 BYTE) NOT NULL, + "DESCRIPTION" VARCHAR2(250 BYTE), + "NEXT_FIRE_TIME" NUMBER(13,0), + "PREV_FIRE_TIME" NUMBER(13,0), + "PRIORITY" NUMBER(13,0), + "TRIGGER_STATE" VARCHAR2(16 BYTE) NOT NULL, + "TRIGGER_TYPE" VARCHAR2(8 BYTE) NOT NULL, + "START_TIME" NUMBER(13,0) NOT NULL, + "END_TIME" NUMBER(13,0), + "CALENDAR_NAME" VARCHAR2(200 BYTE), + "MISFIRE_INSTR" NUMBER(2,0), + "JOB_DATA" BLOB +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; + +-- ---------------------------- +-- Records of QRTZ_TRIGGERS +-- ---------------------------- +INSERT INTO "QRTZ_TRIGGERS" ("SCHED_NAME", "TRIGGER_NAME", "TRIGGER_GROUP", "JOB_NAME", "JOB_GROUP", "DESCRIPTION", "NEXT_FIRE_TIME", "PREV_FIRE_TIME", "PRIORITY", "TRIGGER_STATE", "TRIGGER_TYPE", "START_TIME", "END_TIME", "CALENDAR_NAME", "MISFIRE_INSTR", "JOB_DATA") VALUES ('schedulerName', 'userSessionTimeoutJob', 'DEFAULT', 'userSessionTimeoutJob', 'DEFAULT', NULL, '1651409160000', '1651409100000', '5', 'WAITING', 'CRON', '1651409043000', '0', NULL, '0', HEXTORAW('ACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C770800000010000000037400114A4F425F48414E444C45525F504152414D707400124A4F425F52455452595F494E54455256414C737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000007D074000F4A4F425F52455452595F434F554E547371007E0009000000037800')); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_DEPT +-- ---------------------------- +DROP TABLE "SYSTEM_DEPT"; +CREATE TABLE "SYSTEM_DEPT" ( + "ID" NUMBER(20,0) NOT NULL, + "NAME" NVARCHAR2(30), + "PARENT_ID" NUMBER(20,0) NOT NULL, + "SORT" NUMBER(11,0) NOT NULL, + "LEADER_USER_ID" NUMBER(20,0), + "PHONE" NVARCHAR2(11), + "EMAIL" NVARCHAR2(50), + "STATUS" NUMBER(4,0) NOT NULL, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_DEPT"."ID" IS '部门id'; +COMMENT ON COLUMN "SYSTEM_DEPT"."NAME" IS '部门名称'; +COMMENT ON COLUMN "SYSTEM_DEPT"."PARENT_ID" IS '父部门id'; +COMMENT ON COLUMN "SYSTEM_DEPT"."SORT" IS '显示顺序'; +COMMENT ON COLUMN "SYSTEM_DEPT"."LEADER_USER_ID" IS '负责人'; +COMMENT ON COLUMN "SYSTEM_DEPT"."PHONE" IS '联系电话'; +COMMENT ON COLUMN "SYSTEM_DEPT"."EMAIL" IS '邮箱'; +COMMENT ON COLUMN "SYSTEM_DEPT"."STATUS" IS '部门状态(0正常 1停用)'; +COMMENT ON COLUMN "SYSTEM_DEPT"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_DEPT"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_DEPT"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_DEPT"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_DEPT"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "SYSTEM_DEPT"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_DEPT" IS '部门表'; + +-- ---------------------------- +-- Records of SYSTEM_DEPT +-- ---------------------------- +INSERT INTO "SYSTEM_DEPT" ("ID", "NAME", "PARENT_ID", "SORT", "LEADER_USER_ID", "PHONE", "EMAIL", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('100', '芋道源码', '0', '0', '1', '15888888888', 'ry@qq.com', '0', 'admin', TO_DATE('2021-01-05 17:03:47', 'SYYYY-MM-DD HH24:MI:SS'), '103', TO_DATE('2022-01-14 01:04:05', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_DEPT" ("ID", "NAME", "PARENT_ID", "SORT", "LEADER_USER_ID", "PHONE", "EMAIL", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('101', '深圳总公司', '100', '1', '104', '15888888888', 'ry@qq.com', '0', 'admin', TO_DATE('2021-01-05 17:03:47', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 19:47:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_DEPT" ("ID", "NAME", "PARENT_ID", "SORT", "LEADER_USER_ID", "PHONE", "EMAIL", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('102', '长沙分公司', '100', '2', NULL, '15888888888', 'ry@qq.com', '0', 'admin', TO_DATE('2021-01-05 17:03:47', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-15 05:01:40', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_DEPT" ("ID", "NAME", "PARENT_ID", "SORT", "LEADER_USER_ID", "PHONE", "EMAIL", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('103', '研发部门', '101', '1', '104', '15888888888', 'ry@qq.com', '0', 'admin', TO_DATE('2021-01-05 17:03:47', 'SYYYY-MM-DD HH24:MI:SS'), '103', TO_DATE('2022-01-14 01:04:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_DEPT" ("ID", "NAME", "PARENT_ID", "SORT", "LEADER_USER_ID", "PHONE", "EMAIL", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('104', '市场部门', '101', '2', NULL, '15888888888', 'ry@qq.com', '0', 'admin', TO_DATE('2021-01-05 17:03:47', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-15 05:01:38', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_DEPT" ("ID", "NAME", "PARENT_ID", "SORT", "LEADER_USER_ID", "PHONE", "EMAIL", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('105', '测试部门', '101', '3', NULL, '15888888888', 'ry@qq.com', '0', 'admin', TO_DATE('2021-01-05 17:03:47', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-15 05:01:37', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_DEPT" ("ID", "NAME", "PARENT_ID", "SORT", "LEADER_USER_ID", "PHONE", "EMAIL", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('106', '财务部门', '101', '4', '103', '15888888888', 'ry@qq.com', '0', 'admin', TO_DATE('2021-01-05 17:03:47', 'SYYYY-MM-DD HH24:MI:SS'), '103', TO_DATE('2022-01-15 21:32:22', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_DEPT" ("ID", "NAME", "PARENT_ID", "SORT", "LEADER_USER_ID", "PHONE", "EMAIL", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('107', '运维部门', '101', '5', NULL, '15888888888', 'ry@qq.com', '0', 'admin', TO_DATE('2021-01-05 17:03:47', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-15 05:01:33', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_DEPT" ("ID", "NAME", "PARENT_ID", "SORT", "LEADER_USER_ID", "PHONE", "EMAIL", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('108', '市场部门', '102', '1', NULL, '15888888888', 'ry@qq.com', '0', 'admin', TO_DATE('2021-01-05 17:03:47', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 08:35:45', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_DEPT" ("ID", "NAME", "PARENT_ID", "SORT", "LEADER_USER_ID", "PHONE", "EMAIL", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('109', '财务部门', '102', '2', NULL, '15888888888', 'ry@qq.com', '0', 'admin', TO_DATE('2021-01-05 17:03:47', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-15 05:01:29', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_DEPT" ("ID", "NAME", "PARENT_ID", "SORT", "LEADER_USER_ID", "PHONE", "EMAIL", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('110', '新部门', '0', '1', NULL, NULL, NULL, '0', '110', TO_DATE('2022-02-23 20:46:30', 'SYYYY-MM-DD HH24:MI:SS'), '110', TO_DATE('2022-02-23 20:46:30', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_DEPT" ("ID", "NAME", "PARENT_ID", "SORT", "LEADER_USER_ID", "PHONE", "EMAIL", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('111', '顶级部门', '0', '1', NULL, NULL, NULL, '0', '113', TO_DATE('2022-03-07 21:44:50', 'SYYYY-MM-DD HH24:MI:SS'), '113', TO_DATE('2022-03-07 21:44:50', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_DICT_DATA +-- ---------------------------- +DROP TABLE "SYSTEM_DICT_DATA"; +CREATE TABLE "SYSTEM_DICT_DATA" ( + "ID" NUMBER(20,0) NOT NULL, + "SORT" NUMBER(11,0) NOT NULL, + "LABEL" NVARCHAR2(100), + "VALUE" NVARCHAR2(100), + "DICT_TYPE" NVARCHAR2(100), + "STATUS" NUMBER(4,0) NOT NULL, + "COLOR_TYPE" NVARCHAR2(100), + "CSS_CLASS" NVARCHAR2(100), + "REMARK" NVARCHAR2(500), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_DICT_DATA"."ID" IS '字典编码'; +COMMENT ON COLUMN "SYSTEM_DICT_DATA"."SORT" IS '字典排序'; +COMMENT ON COLUMN "SYSTEM_DICT_DATA"."LABEL" IS '字典标签'; +COMMENT ON COLUMN "SYSTEM_DICT_DATA"."VALUE" IS '字典键值'; +COMMENT ON COLUMN "SYSTEM_DICT_DATA"."DICT_TYPE" IS '字典类型'; +COMMENT ON COLUMN "SYSTEM_DICT_DATA"."STATUS" IS '状态(0正常 1停用)'; +COMMENT ON COLUMN "SYSTEM_DICT_DATA"."COLOR_TYPE" IS '颜色类型'; +COMMENT ON COLUMN "SYSTEM_DICT_DATA"."CSS_CLASS" IS 'css 样式'; +COMMENT ON COLUMN "SYSTEM_DICT_DATA"."REMARK" IS '备注'; +COMMENT ON COLUMN "SYSTEM_DICT_DATA"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_DICT_DATA"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_DICT_DATA"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_DICT_DATA"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_DICT_DATA"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_DICT_DATA" IS '字典数据表'; + +-- ---------------------------- +-- Records of SYSTEM_DICT_DATA +-- ---------------------------- +INSERT 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', '男', '1', 'system_user_sex', '0', 'default', 'A', '性别男', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 01:30:55', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '女', '2', 'system_user_sex', '1', 'success', NULL, '性别女', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 01:30:51', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '正常', '1', 'infra_job_status', '0', 'success', NULL, '正常状态', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 19:33:38', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '暂停', '2', 'infra_job_status', '0', 'danger', NULL, '停用状态', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 19:33:45', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '系统内置', '1', 'infra_config_type', '0', 'danger', NULL, '参数类型 - 系统内置', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 19:06:02', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '自定义', '2', 'infra_config_type', '0', 'primary', NULL, '参数类型 - 自定义', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 19:06:07', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '通知', '1', 'system_notice_type', '0', 'success', NULL, '通知', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:05:57', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '公告', '2', 'system_notice_type', '0', 'info', NULL, '公告', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:06:01', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '其它', '0', 'system_operate_type', '0', 'default', NULL, '其它操作', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 09:32:46', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '查询', '1', 'system_operate_type', '0', 'info', NULL, '查询操作', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 09:33:16', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '新增', '2', 'system_operate_type', '0', 'primary', NULL, '新增操作', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 09:33:13', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '修改', '3', 'system_operate_type', '0', 'warning', NULL, '修改操作', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 09:33:22', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '删除', '4', 'system_operate_type', '0', 'danger', NULL, '删除操作', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 09:33:27', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '导出', '5', 'system_operate_type', '0', 'default', NULL, '导出操作', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 09:33:32', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '导入', '6', 'system_operate_type', '0', 'default', NULL, '导入操作', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 09:33:35', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '开启', '0', 'common_status', '0', 'primary', NULL, '开启状态', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 08:00:39', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '关闭', '1', 'common_status', '0', 'info', NULL, '关闭状态', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 08:00:44', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '目录', '1', 'system_menu_type', '0', NULL, NULL, '目录', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:43:45', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '菜单', '2', 'system_menu_type', '0', NULL, NULL, '菜单', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:43:41', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '按钮', '3', 'system_menu_type', '0', NULL, NULL, '按钮', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:43:39', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '内置', '1', 'system_role_type', '0', 'danger', NULL, '内置角色', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:02:08', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '自定义', '2', 'system_role_type', '0', 'primary', NULL, '自定义角色', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:02:12', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '全部数据权限', '1', 'system_data_scope', '0', NULL, NULL, '全部数据权限', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:47:17', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '指定部门数据权限', '2', 'system_data_scope', '0', NULL, NULL, '指定部门数据权限', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:47:18', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '本部门数据权限', '3', 'system_data_scope', '0', NULL, NULL, '本部门数据权限', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:47:16', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '本部门及以下数据权限', '4', 'system_data_scope', '0', NULL, NULL, '本部门及以下数据权限', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:47:21', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '仅本人数据权限', '5', 'system_data_scope', '0', NULL, NULL, '仅本人数据权限', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:47:23', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '成功', '0', 'system_login_result', '0', 'success', NULL, '登陆结果 - 成功', NULL, TO_DATE('2021-01-18 06:17:36', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:23:49', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '账号或密码不正确', '10', 'system_login_result', '0', 'primary', NULL, '登陆结果 - 账号或密码不正确', NULL, TO_DATE('2021-01-18 06:17:54', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:24:27', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '用户被禁用', '20', 'system_login_result', '0', 'warning', NULL, '登陆结果 - 用户被禁用', NULL, TO_DATE('2021-01-18 06:17:54', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:23:57', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '验证码不存在', '30', 'system_login_result', '0', 'info', NULL, '登陆结果 - 验证码不存在', NULL, TO_DATE('2021-01-18 06:17:54', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:24:07', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '验证码不正确', '31', 'system_login_result', '0', 'info', NULL, '登陆结果 - 验证码不正确', NULL, TO_DATE('2021-01-18 06:17:54', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:24:11', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '未知异常', '100', 'system_login_result', '0', 'danger', NULL, '登陆结果 - 未知异常', NULL, TO_DATE('2021-01-18 06:17:54', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:24:23', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '是', 'true', 'infra_boolean_string', '0', 'danger', NULL, 'Boolean 是否类型 - 是', NULL, TO_DATE('2021-01-19 03:20:55', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-15 23:01:45', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '否', 'false', 'infra_boolean_string', '0', 'info', NULL, 'Boolean 是否类型 - 否', NULL, TO_DATE('2021-01-19 03:20:55', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-15 23:09:45', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('47', '1', '永不超时', '1', 'infra_redis_timeout_type', '0', 'primary', NULL, 'Redis 未设置超时的情况', NULL, TO_DATE('2021-01-26 00:53:17', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 19:03:35', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('48', '1', '动态超时', '2', 'infra_redis_timeout_type', '0', 'info', NULL, '程序里动态传入超时时间,无法固定', NULL, TO_DATE('2021-01-26 00:55:00', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 19:03:41', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('49', '3', '固定超时', '3', 'infra_redis_timeout_type', '0', 'success', NULL, 'Redis 设置了过期时间', NULL, TO_DATE('2021-01-26 00:55:26', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 19:03:45', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '单表(增删改查)', '1', 'infra_codegen_template_type', '0', NULL, NULL, NULL, NULL, TO_DATE('2021-02-05 07:09:06', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-03-10 16:33:15', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '树表(增删改查)', '2', 'infra_codegen_template_type', '0', NULL, NULL, NULL, NULL, TO_DATE('2021-02-05 07:14:46', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-03-10 16:33:19', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '初始化中', '0', 'infra_job_status', '0', 'primary', NULL, NULL, NULL, TO_DATE('2021-02-07 07:46:49', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 19:33:29', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '运行中', '0', 'infra_job_log_status', '0', 'primary', NULL, 'RUNNING', NULL, TO_DATE('2021-02-08 10:04:24', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 19:07:48', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '成功', '1', 'infra_job_log_status', '0', 'success', NULL, NULL, NULL, TO_DATE('2021-02-08 10:06:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 19:07:52', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '失败', '2', 'infra_job_log_status', '0', 'warning', NULL, '失败', NULL, TO_DATE('2021-02-08 10:07:38', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 19:07:56', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '会员', '1', 'user_type', '0', 'primary', NULL, NULL, NULL, TO_DATE('2021-02-26 00:16:27', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 10:22:19', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '管理员', '2', 'user_type', '0', 'success', NULL, NULL, NULL, TO_DATE('2021-02-26 00:16:34', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 10:22:22', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '未处理', '0', 'infra_api_error_log_process_status', '0', 'primary', NULL, NULL, NULL, TO_DATE('2021-02-26 07:07:19', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 20:14:17', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '已处理', '1', 'infra_api_error_log_process_status', '0', 'success', NULL, NULL, NULL, TO_DATE('2021-02-26 07:07:26', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 20:14:08', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '已忽略', '2', 'infra_api_error_log_process_status', '0', 'danger', NULL, NULL, NULL, TO_DATE('2021-02-26 07:07:34', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 20:14:14', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('65', '1', '云片', 'YUN_PIAN', 'system_sms_channel_code', '0', 'success', NULL, NULL, '1', TO_DATE('2021-04-05 01:05:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 10:09:55', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '阿里云', 'ALIYUN', 'system_sms_channel_code', '0', 'primary', NULL, NULL, '1', TO_DATE('2021-04-05 01:05:26', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 10:09:52', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '验证码', '1', 'system_sms_template_type', '0', 'warning', NULL, NULL, '1', TO_DATE('2021-04-05 21:50:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 12:48:30', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '通知', '2', 'system_sms_template_type', '0', 'primary', NULL, NULL, '1', TO_DATE('2021-04-05 21:51:08', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 12:48:27', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '营销', '3', 'system_sms_template_type', '0', 'danger', NULL, NULL, '1', TO_DATE('2021-04-05 21:51:15', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 12:48:22', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '初始化', '0', 'system_sms_send_status', '0', 'primary', NULL, NULL, '1', TO_DATE('2021-04-11 20:18:33', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 10:26:07', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '发送成功', '10', 'system_sms_send_status', '0', 'success', NULL, NULL, '1', TO_DATE('2021-04-11 20:18:43', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 10:25:56', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '发送失败', '20', 'system_sms_send_status', '0', 'danger', NULL, NULL, '1', TO_DATE('2021-04-11 20:18:49', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 10:26:03', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '不发送', '30', 'system_sms_send_status', '0', 'info', NULL, NULL, '1', TO_DATE('2021-04-11 20:19:44', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 10:26:10', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '等待结果', '0', 'system_sms_receive_status', '0', 'primary', NULL, NULL, '1', TO_DATE('2021-04-11 20:27:43', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 10:28:24', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '接收成功', '10', 'system_sms_receive_status', '0', 'success', NULL, NULL, '1', TO_DATE('2021-04-11 20:29:25', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 10:28:28', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '接收失败', '20', 'system_sms_receive_status', '0', 'danger', NULL, NULL, '1', TO_DATE('2021-04-11 20:29:31', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 10:28:32', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '调试(钉钉)', 'DEBUG_DING_TALK', 'system_sms_channel_code', '0', 'info', NULL, NULL, '1', TO_DATE('2021-04-13 00:20:37', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 10:10:00', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('78', '1', '自动生成', '1', 'system_error_code_type', '0', 'warning', NULL, NULL, '1', TO_DATE('2021-04-21 00:06:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:57:20', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('79', '2', '手动编辑', '2', 'system_error_code_type', '0', 'primary', NULL, NULL, '1', TO_DATE('2021-04-21 00:07:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:57:24', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '账号登录', '100', 'system_login_type', '0', 'primary', NULL, '账号登录', '1', TO_DATE('2021-10-06 00:52:02', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:11:34', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '社交登录', '101', 'system_login_type', '0', 'info', NULL, '社交登录', '1', TO_DATE('2021-10-06 00:52:17', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:11:40', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('82', '102', 'Mock 登录', '102', 'system_login_type', '0', 'danger', NULL, 'Mock 登录', '1', TO_DATE('2021-10-06 00:52:32', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:11:44', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '主动登出', '200', 'system_login_type', '0', 'primary', NULL, '主动登出', '1', TO_DATE('2021-10-06 00:52:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:11:49', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('84', '201', '超时登出', '201', 'system_login_type', '0', 'info', NULL, '超时登出', '1', TO_DATE('2021-10-06 00:53:17', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:11:53', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '强制登出', '202', 'system_login_type', '0', 'danger', NULL, '强制退出', '1', TO_DATE('2021-10-06 00:53:41', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:11:57', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '病假', '1', 'bpm_oa_leave_type', '0', 'primary', NULL, NULL, '1', TO_DATE('2021-09-21 22:35:28', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 10:00:41', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '事假', '2', 'bpm_oa_leave_type', '0', 'info', NULL, NULL, '1', TO_DATE('2021-09-21 22:36:11', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 10:00:49', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '婚假', '3', 'bpm_oa_leave_type', '0', 'warning', NULL, NULL, '1', TO_DATE('2021-09-21 22:36:38', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 10:00:53', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('98', '1', 'v2', 'v2', 'pay_channel_wechat_version', '0', NULL, NULL, 'v2版本', '1', TO_DATE('2021-11-08 17:00:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-11-08 17:00:58', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('99', '2', 'v3', 'v3', 'pay_channel_wechat_version', '0', NULL, NULL, 'v3版本', '1', TO_DATE('2021-11-08 17:01:07', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-11-08 17:01:07', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('108', '1', 'RSA2', 'RSA2', 'pay_channel_alipay_sign_type', '0', NULL, NULL, 'RSA2', '1', TO_DATE('2021-11-18 15:39:29', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-11-18 15:39:29', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('109', '1', '公钥模式', '1', 'pay_channel_alipay_mode', '0', NULL, NULL, '公钥模式:privateKey + alipayPublicKey', '1', TO_DATE('2021-11-18 15:45:23', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-11-18 15:45:23', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('110', '2', '证书模式', '2', 'pay_channel_alipay_mode', '0', NULL, NULL, '证书模式:appCertContent + alipayPublicCertContent + rootCertContent', '1', TO_DATE('2021-11-18 15:45:40', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-11-18 15:45:40', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('111', '1', '线上', 'https://openapi.alipay.com/gateway.do', 'pay_channel_alipay_server_type', '0', NULL, NULL, '网关地址 - 线上', '1', TO_DATE('2021-11-18 16:59:32', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-11-21 17:37:29', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('112', '2', '沙箱', 'https://openapi.alipaydev.com/gateway.do', 'pay_channel_alipay_server_type', '0', NULL, NULL, '网关地址 - 沙箱', '1', TO_DATE('2021-11-18 16:59:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-11-21 17:37:39', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '微信 JSAPI 支付', 'wx_pub', 'pay_channel_code_type', '0', NULL, NULL, '微信 JSAPI(公众号) 支付', '1', TO_DATE('2021-12-03 10:40:24', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-04 16:41:00', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '微信小程序支付', 'wx_lite', 'pay_channel_code_type', '0', NULL, NULL, '微信小程序支付', '1', TO_DATE('2021-12-03 10:41:06', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-03 10:41:06', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '微信 App 支付', 'wx_app', 'pay_channel_code_type', '0', NULL, NULL, '微信 App 支付', '1', TO_DATE('2021-12-03 10:41:20', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-03 10:41:20', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '4', '支付宝 PC 网站支付', 'alipay_pc', 'pay_channel_code_type', '0', NULL, NULL, '支付宝 PC 网站支付', '1', TO_DATE('2021-12-03 10:42:09', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-03 10:42:09', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '5', '支付宝 Wap 网站支付', 'alipay_wap', 'pay_channel_code_type', '0', NULL, NULL, '支付宝 Wap 网站支付', '1', TO_DATE('2021-12-03 10:42:26', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-03 10:42:26', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '6', '支付宝App 支付', 'alipay_app', 'pay_channel_code_type', '0', NULL, NULL, '支付宝App 支付', '1', TO_DATE('2021-12-03 10:42:55', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-03 10:42:55', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '7', '支付宝扫码支付', 'alipay_qr', 'pay_channel_code_type', '0', NULL, NULL, '支付宝扫码支付', '1', TO_DATE('2021-12-03 10:43:10', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-03 10:43:10', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '1', '通知成功', '10', 'pay_order_notify_status', '0', 'success', NULL, '通知成功', '1', TO_DATE('2021-12-03 11:02:41', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:59:13', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '2', '通知失败', '20', 'pay_order_notify_status', '0', 'danger', NULL, '通知失败', '1', TO_DATE('2021-12-03 11:02:59', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:59:17', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '3', '未通知', '0', 'pay_order_notify_status', '0', 'info', NULL, '未通知', '1', TO_DATE('2021-12-03 11:03:10', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:59:23', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '1', '支付成功', '10', 'pay_order_status', '0', 'success', NULL, '支付成功', '1', TO_DATE('2021-12-03 11:18:29', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 15:24:25', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '2', '支付关闭', '20', 'pay_order_status', '0', 'danger', NULL, '支付关闭', '1', TO_DATE('2021-12-03 11:18:42', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 15:24:31', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '3', '未支付', '0', 'pay_order_status', '0', 'info', NULL, '未支付', '1', TO_DATE('2021-12-03 11:18:18', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 15:24:35', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('126', '1', '未退款', '0', 'pay_order_refund_status', '0', NULL, NULL, '未退款', '1', TO_DATE('2021-12-03 11:30:35', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-03 11:34:05', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('127', '2', '部分退款', '10', 'pay_order_refund_status', '0', NULL, NULL, '部分退款', '1', TO_DATE('2021-12-03 11:30:44', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-03 11:34:10', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('128', '3', '全部退款', '20', 'pay_order_refund_status', '0', NULL, NULL, '全部退款', '1', TO_DATE('2021-12-03 11:30:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-03 11:34:14', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('1117', '1', '退款订单生成', '0', 'pay_refund_order_status', '0', 'primary', NULL, '退款订单生成', '1', TO_DATE('2021-12-10 16:44:44', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 14:05:24', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '2', '退款成功', '1', 'pay_refund_order_status', '0', 'success', NULL, '退款成功', '1', TO_DATE('2021-12-10 16:44:59', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 14:05:28', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '3', '退款失败', '2', 'pay_refund_order_status', '0', 'danger', NULL, '退款失败', '1', TO_DATE('2021-12-10 16:45:10', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 14:05:34', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '8', '退款关闭', '99', 'pay_refund_order_status', '0', 'info', NULL, '退款关闭', '1', TO_DATE('2021-12-10 16:46:26', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 14:05:40', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('1125', '0', '默认', '1', 'bpm_model_category', '0', 'primary', NULL, '流程分类 - 默认', '1', TO_DATE('2022-01-02 08:41:11', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 20:01:42', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('1126', '0', 'OA', '2', 'bpm_model_category', '0', 'success', NULL, '流程分类 - OA', '1', TO_DATE('2022-01-02 08:41:22', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 20:01:50', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '0', '进行中', '1', 'bpm_process_instance_status', '0', 'primary', NULL, '流程实例的状态 - 进行中', '1', TO_DATE('2022-01-07 23:47:22', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 20:07:49', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '已完成', '2', 'bpm_process_instance_status', '0', 'success', NULL, '流程实例的状态 - 已完成', '1', TO_DATE('2022-01-07 23:47:49', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 20:07:54', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '处理中', '1', 'bpm_process_instance_result', '0', 'primary', NULL, '流程实例的结果 - 处理中', '1', TO_DATE('2022-01-07 23:48:32', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 09:53:26', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '通过', '2', 'bpm_process_instance_result', '0', 'success', NULL, '流程实例的结果 - 通过', '1', TO_DATE('2022-01-07 23:48:45', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 09:53:31', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '不通过', '3', 'bpm_process_instance_result', '0', 'danger', NULL, '流程实例的结果 - 不通过', '1', TO_DATE('2022-01-07 23:48:55', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 09:53:38', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '已取消', '4', 'bpm_process_instance_result', '0', 'info', NULL, '流程实例的结果 - 撤销', '1', TO_DATE('2022-01-07 23:49:06', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 09:53:42', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '流程表单', '10', 'bpm_model_form_type', '0', NULL, NULL, '流程的表单类型 - 流程表单', '103', TO_DATE('2022-01-11 23:51:30', 'SYYYY-MM-DD HH24:MI:SS'), '103', TO_DATE('2022-01-11 23:51:30', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '业务表单', '20', 'bpm_model_form_type', '0', NULL, NULL, '流程的表单类型 - 业务表单', '103', TO_DATE('2022-01-11 23:51:47', 'SYYYY-MM-DD HH24:MI:SS'), '103', TO_DATE('2022-01-11 23:51:47', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '角色', '10', 'bpm_task_assign_rule_type', '0', 'info', NULL, '任务分配规则的类型 - 角色', '103', TO_DATE('2022-01-12 23:21:22', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 20:06:14', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '部门的成员', '20', 'bpm_task_assign_rule_type', '0', 'primary', NULL, '任务分配规则的类型 - 部门的成员', '103', TO_DATE('2022-01-12 23:21:47', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 20:05:28', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '部门的负责人', '21', 'bpm_task_assign_rule_type', '0', 'primary', NULL, '任务分配规则的类型 - 部门的负责人', '103', TO_DATE('2022-01-12 23:33:36', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 20:05:31', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '用户', '30', 'bpm_task_assign_rule_type', '0', 'info', NULL, '任务分配规则的类型 - 用户', '103', TO_DATE('2022-01-12 23:34:02', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 20:05:50', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '用户组', '40', 'bpm_task_assign_rule_type', '0', 'warning', NULL, '任务分配规则的类型 - 用户组', '103', TO_DATE('2022-01-12 23:34:21', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 20:05:57', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '50', '自定义脚本', '50', 'bpm_task_assign_rule_type', '0', 'danger', NULL, '任务分配规则的类型 - 自定义脚本', '103', TO_DATE('2022-01-12 23:34:43', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 20:06:01', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '岗位', '22', 'bpm_task_assign_rule_type', '0', 'success', NULL, '任务分配规则的类型 - 岗位', '103', TO_DATE('2022-01-14 18:41:55', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 20:05:39', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('1142', '10', '流程发起人', '10', 'bpm_task_assign_script', '0', NULL, NULL, '任务分配自定义脚本 - 流程发起人', '103', TO_DATE('2022-01-15 00:10:57', 'SYYYY-MM-DD HH24:MI:SS'), '103', TO_DATE('2022-01-15 21:24:10', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('1143', '20', '流程发起人的一级领导', '20', 'bpm_task_assign_script', '0', NULL, NULL, '任务分配自定义脚本 - 流程发起人的一级领导', '103', TO_DATE('2022-01-15 21:24:31', 'SYYYY-MM-DD HH24:MI:SS'), '103', TO_DATE('2022-01-15 21:24:31', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('1144', '21', '流程发起人的二级领导', '21', 'bpm_task_assign_script', '0', NULL, NULL, '任务分配自定义脚本 - 流程发起人的二级领导', '103', TO_DATE('2022-01-15 21:24:46', 'SYYYY-MM-DD HH24:MI:SS'), '103', TO_DATE('2022-01-15 21:24:57', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '管理后台', '1', 'infra_codegen_scene', '0', NULL, NULL, '代码生成的场景枚举 - 管理后台', '1', TO_DATE('2022-02-02 13:15:06', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-10 16:32:59', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '用户 APP', '2', 'infra_codegen_scene', '0', NULL, NULL, '代码生成的场景枚举 - 用户 APP', '1', TO_DATE('2022-02-02 13:15:19', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-10 16:33:03', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('1147', '0', '未退款', '0', 'pay_refund_order_type', '0', 'info', NULL, '退款类型 - 未退款', '1', TO_DATE('2022-02-16 14:09:01', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 14:09:01', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('1148', '10', '部分退款', '10', 'pay_refund_order_type', '0', 'success', NULL, '退款类型 - 部分退款', '1', TO_DATE('2022-02-16 14:09:25', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 14:11:38', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_DATA" ("ID", "SORT", "LABEL", "VALUE", "DICT_TYPE", "STATUS", "COLOR_TYPE", "CSS_CLASS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('1149', '20', '全部退款', '20', 'pay_refund_order_type', '0', 'warning', NULL, '退款类型 - 全部退款', '1', TO_DATE('2022-02-16 14:11:33', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 14:11:33', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '数据库', '1', 'infra_file_storage', '0', 'default', NULL, NULL, '1', TO_DATE('2022-03-15 00:25:28', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-15 00:25:28', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', '本地磁盘', '10', 'infra_file_storage', '0', 'default', NULL, NULL, '1', TO_DATE('2022-03-15 00:25:41', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-15 00:25:56', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', 'FTP 服务器', '11', 'infra_file_storage', '0', 'default', NULL, NULL, '1', TO_DATE('2022-03-15 00:26:06', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-15 00:26:10', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', 'SFTP 服务器', '12', 'infra_file_storage', '0', 'default', NULL, NULL, '1', TO_DATE('2022-03-15 00:26:22', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-15 00:26:22', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT 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', 'S3 对象存储', '20', 'infra_file_storage', '0', 'default', NULL, NULL, '1', TO_DATE('2022-03-15 00:26:31', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-15 00:26:45', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_DICT_TYPE +-- ---------------------------- +DROP TABLE "SYSTEM_DICT_TYPE"; +CREATE TABLE "SYSTEM_DICT_TYPE" ( + "ID" NUMBER(20,0) NOT NULL, + "NAME" NVARCHAR2(100), + "TYPE" NVARCHAR2(100), + "STATUS" NUMBER(4,0) NOT NULL, + "REMARK" NVARCHAR2(500), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_DICT_TYPE"."ID" IS '字典主键'; +COMMENT ON COLUMN "SYSTEM_DICT_TYPE"."NAME" IS '字典名称'; +COMMENT ON COLUMN "SYSTEM_DICT_TYPE"."TYPE" IS '字典类型'; +COMMENT ON COLUMN "SYSTEM_DICT_TYPE"."STATUS" IS '状态(0正常 1停用)'; +COMMENT ON COLUMN "SYSTEM_DICT_TYPE"."REMARK" IS '备注'; +COMMENT ON COLUMN "SYSTEM_DICT_TYPE"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_DICT_TYPE"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_DICT_TYPE"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_DICT_TYPE"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_DICT_TYPE"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_DICT_TYPE" IS '字典类型表'; + +-- ---------------------------- +-- Records of SYSTEM_DICT_TYPE +-- ---------------------------- +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('1', '用户性别', 'system_user_sex', '0', NULL, 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-05-01 12:55:56', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('6', '参数类型', 'infra_config_type', '0', NULL, 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:36:54', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('7', '通知类型', 'system_notice_type', '0', NULL, 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:35:26', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('9', '操作类型', 'system_operate_type', '0', NULL, 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 09:32:21', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('10', '系统状态', 'common_status', '0', NULL, 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:21:28', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('11', 'Boolean 是否类型', 'infra_boolean_string', '0', 'boolean 转是否', NULL, TO_DATE('2021-01-19 03:20:08', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:37:10', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('104', '登陆结果', 'system_login_result', '0', '登陆结果', NULL, TO_DATE('2021-01-18 06:17:11', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:36:00', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('105', 'Redis 超时类型', 'infra_redis_timeout_type', '0', 'RedisKeyDefine.TimeoutTypeEnum', NULL, TO_DATE('2021-01-26 00:52:50', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:50:29', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('106', '代码生成模板类型', 'infra_codegen_template_type', '0', NULL, NULL, TO_DATE('2021-02-05 07:08:06', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-03-10 16:33:42', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('107', '定时任务状态', 'infra_job_status', '0', NULL, NULL, TO_DATE('2021-02-07 07:44:16', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:51:11', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('108', '定时任务日志状态', 'infra_job_log_status', '0', NULL, NULL, TO_DATE('2021-02-08 10:03:51', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:50:43', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('109', '用户类型', 'user_type', '0', NULL, NULL, TO_DATE('2021-02-26 00:15:51', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-02-26 00:15:51', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('110', 'API 异常数据的处理状态', 'infra_api_error_log_process_status', '0', NULL, NULL, TO_DATE('2021-02-26 07:07:01', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-01 16:50:53', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('111', '短信渠道编码', 'system_sms_channel_code', '0', NULL, '1', TO_DATE('2021-04-05 01:04:50', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 02:09:08', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('112', '短信模板的类型', 'system_sms_template_type', '0', NULL, '1', TO_DATE('2021-04-05 21:50:43', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-01 16:35:06', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('113', '短信发送状态', 'system_sms_send_status', '0', NULL, '1', TO_DATE('2021-04-11 20:18:03', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-01 16:35:09', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('114', '短信接收状态', 'system_sms_receive_status', '0', NULL, '1', TO_DATE('2021-04-11 20:27:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-01 16:35:14', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('115', '错误码的类型', 'system_error_code_type', '0', NULL, '1', TO_DATE('2021-04-21 00:06:30', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-01 16:36:49', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('116', '登陆日志的类型', 'system_login_type', '0', '登陆日志的类型', '1', TO_DATE('2021-10-06 00:50:46', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-01 16:35:56', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('117', 'OA 请假类型', 'bpm_oa_leave_type', '0', NULL, '1', TO_DATE('2021-09-21 22:34:33', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-22 10:41:37', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('122', '支付渠道微信版本', 'pay_channel_wechat_version', '0', '支付渠道微信版本', '1', TO_DATE('2021-11-08 17:00:26', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-11-08 17:00:26', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('127', '支付渠道支付宝算法类型', 'pay_channel_alipay_sign_type', '0', '支付渠道支付宝算法类型', '1', TO_DATE('2021-11-18 15:39:09', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-11-18 15:39:09', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('128', '支付渠道支付宝公钥类型', 'pay_channel_alipay_mode', '0', '支付渠道支付宝公钥类型', '1', TO_DATE('2021-11-18 15:44:28', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-11-18 15:44:28', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('129', '支付宝网关地址', 'pay_channel_alipay_server_type', '0', '支付宝网关地址', '1', TO_DATE('2021-11-18 16:58:55', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-11-18 17:01:34', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('130', '支付渠道编码类型', 'pay_channel_code_type', '0', '支付渠道的编码', '1', TO_DATE('2021-12-03 10:35:08', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-03 10:35:08', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('131', '支付订单回调状态', 'pay_order_notify_status', '0', '支付订单回调状态', '1', TO_DATE('2021-12-03 10:53:29', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-03 10:53:29', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('132', '支付订单状态', 'pay_order_status', '0', '支付订单状态', '1', TO_DATE('2021-12-03 11:17:50', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-03 11:17:50', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('133', '支付订单退款状态', 'pay_order_refund_status', '0', '支付订单退款状态', '1', TO_DATE('2021-12-03 11:27:31', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-03 11:27:31', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('134', '退款订单状态', 'pay_refund_order_status', '0', '退款订单状态', '1', TO_DATE('2021-12-10 16:42:50', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-10 16:42:50', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('135', '退款订单类别', 'pay_refund_order_type', '0', '退款订单类别', '1', TO_DATE('2021-12-10 17:14:53', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-10 17:14:53', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('138', '流程分类', 'bpm_model_category', '0', '流程分类', '1', TO_DATE('2022-01-02 08:40:45', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-02 08:40:45', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('139', '流程实例的状态', 'bpm_process_instance_status', '0', '流程实例的状态', '1', TO_DATE('2022-01-07 23:46:42', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-07 23:46:42', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('140', '流程实例的结果', 'bpm_process_instance_result', '0', '流程实例的结果', '1', TO_DATE('2022-01-07 23:48:10', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-07 23:48:10', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('141', '流程的表单类型', 'bpm_model_form_type', '0', '流程的表单类型', '103', TO_DATE('2022-01-11 23:50:45', 'SYYYY-MM-DD HH24:MI:SS'), '103', TO_DATE('2022-01-11 23:50:45', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('142', '任务分配规则的类型', 'bpm_task_assign_rule_type', '0', '任务分配规则的类型', '103', TO_DATE('2022-01-12 23:21:04', 'SYYYY-MM-DD HH24:MI:SS'), '103', TO_DATE('2022-01-12 15:46:10', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('143', '任务分配自定义脚本', 'bpm_task_assign_script', '0', '任务分配自定义脚本', '103', TO_DATE('2022-01-15 00:10:35', 'SYYYY-MM-DD HH24:MI:SS'), '103', TO_DATE('2022-01-15 00:10:35', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('144', '代码生成的场景枚举', 'infra_codegen_scene', '0', '代码生成的场景枚举', '1', TO_DATE('2022-02-02 13:14:45', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-10 16:33:46', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('145', '角色类型', 'system_role_type', '0', '角色类型', '1', TO_DATE('2022-02-16 13:01:46', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-16 13:01:46', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_DICT_TYPE" ("ID", "NAME", "TYPE", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('146', '文件存储器', 'infra_file_storage', '0', '文件存储器', '1', TO_DATE('2022-03-15 00:24:38', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-15 00:24:38', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_ERROR_CODE +-- ---------------------------- +DROP TABLE "SYSTEM_ERROR_CODE"; +CREATE TABLE "SYSTEM_ERROR_CODE" ( + "ID" NUMBER(20,0) NOT NULL, + "TYPE" NUMBER(4,0) NOT NULL, + "APPLICATION_NAME" NVARCHAR2(50), + "CODE" NUMBER(11,0) NOT NULL, + "MESSAGE" NVARCHAR2(512), + "MEMO" NVARCHAR2(512), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_ERROR_CODE"."ID" IS '错误码编号'; +COMMENT ON COLUMN "SYSTEM_ERROR_CODE"."TYPE" IS '错误码类型'; +COMMENT ON COLUMN "SYSTEM_ERROR_CODE"."APPLICATION_NAME" IS '应用名'; +COMMENT ON COLUMN "SYSTEM_ERROR_CODE"."CODE" IS '错误码编码'; +COMMENT ON COLUMN "SYSTEM_ERROR_CODE"."MESSAGE" IS '错误码错误提示'; +COMMENT ON COLUMN "SYSTEM_ERROR_CODE"."MEMO" IS '备注'; +COMMENT ON COLUMN "SYSTEM_ERROR_CODE"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_ERROR_CODE"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_ERROR_CODE"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_ERROR_CODE"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_ERROR_CODE"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_ERROR_CODE" IS '错误码表'; + +-- ---------------------------- +-- Records of SYSTEM_ERROR_CODE +-- ---------------------------- +INSERT INTO "SYSTEM_ERROR_CODE" ("ID", "TYPE", "APPLICATION_NAME", "CODE", "MESSAGE", "MEMO", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('0', '1', 'yudao-server', '1001007000', '数据源配置不存在', NULL, NULL, TO_DATE('2022-05-01 01:08:31', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-05-01 01:08:31', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_LOGIN_LOG +-- ---------------------------- +DROP TABLE "SYSTEM_LOGIN_LOG"; +CREATE TABLE "SYSTEM_LOGIN_LOG" ( + "ID" NUMBER(20,0) NOT NULL, + "LOG_TYPE" NUMBER(20,0) NOT NULL, + "TRACE_ID" NVARCHAR2(64), + "USER_ID" NUMBER(20,0) NOT NULL, + "USER_TYPE" NUMBER(4,0) NOT NULL, + "USERNAME" NVARCHAR2(50), + "RESULT" NUMBER(4,0) NOT NULL, + "USER_IP" NVARCHAR2(50), + "USER_AGENT" NVARCHAR2(512), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_LOGIN_LOG"."ID" IS '访问ID'; +COMMENT ON COLUMN "SYSTEM_LOGIN_LOG"."LOG_TYPE" IS '日志类型'; +COMMENT ON COLUMN "SYSTEM_LOGIN_LOG"."TRACE_ID" IS '链路追踪编号'; +COMMENT ON COLUMN "SYSTEM_LOGIN_LOG"."USER_ID" IS '用户编号'; +COMMENT ON COLUMN "SYSTEM_LOGIN_LOG"."USER_TYPE" IS '用户类型'; +COMMENT ON COLUMN "SYSTEM_LOGIN_LOG"."USERNAME" IS '用户账号'; +COMMENT ON COLUMN "SYSTEM_LOGIN_LOG"."RESULT" IS '登陆结果'; +COMMENT ON COLUMN "SYSTEM_LOGIN_LOG"."USER_IP" IS '用户 IP'; +COMMENT ON COLUMN "SYSTEM_LOGIN_LOG"."USER_AGENT" IS '浏览器 UA'; +COMMENT ON COLUMN "SYSTEM_LOGIN_LOG"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_LOGIN_LOG"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_LOGIN_LOG"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_LOGIN_LOG"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_LOGIN_LOG"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "SYSTEM_LOGIN_LOG"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_LOGIN_LOG" IS '系统访问记录'; + +-- ---------------------------- +-- Records of SYSTEM_LOGIN_LOG +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_MENU +-- ---------------------------- +DROP TABLE "SYSTEM_MENU"; +CREATE TABLE "SYSTEM_MENU" ( + "ID" NUMBER(20,0) NOT NULL, + "NAME" NVARCHAR2(50), + "PERMISSION" NVARCHAR2(100), + "TYPE" NUMBER(4,0) NOT NULL, + "SORT" NUMBER(11,0) NOT NULL, + "PARENT_ID" NUMBER(20,0) NOT NULL, + "PATH" NVARCHAR2(200), + "ICON" NVARCHAR2(100), + "COMPONENT" NVARCHAR2(255), + "STATUS" NUMBER(4,0) NOT NULL, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER DEFAULT 0 NOT NULL, + "VISIBLE" NUMBER(1,0) DEFAULT 1 NOT NULL, + "KEEP_ALIVE" NUMBER(1,0) DEFAULT 1 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_MENU"."ID" IS '菜单ID'; +COMMENT ON COLUMN "SYSTEM_MENU"."NAME" IS '菜单名称'; +COMMENT ON COLUMN "SYSTEM_MENU"."PERMISSION" IS '权限标识'; +COMMENT ON COLUMN "SYSTEM_MENU"."TYPE" IS '菜单类型(1目录 2菜单 3按钮)'; +COMMENT ON COLUMN "SYSTEM_MENU"."SORT" IS '显示顺序'; +COMMENT ON COLUMN "SYSTEM_MENU"."PARENT_ID" IS '父菜单ID'; +COMMENT ON COLUMN "SYSTEM_MENU"."PATH" IS '路由地址'; +COMMENT ON COLUMN "SYSTEM_MENU"."ICON" IS '菜单图标'; +COMMENT ON COLUMN "SYSTEM_MENU"."COMPONENT" IS '组件路径'; +COMMENT ON COLUMN "SYSTEM_MENU"."STATUS" IS '菜单状态(0正常 1停用)'; +COMMENT ON COLUMN "SYSTEM_MENU"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_MENU"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_MENU"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_MENU"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_MENU"."DELETED" IS '是否删除'; +COMMENT ON COLUMN "SYSTEM_MENU"."VISIBLE" IS '是否可见'; +COMMENT ON COLUMN "SYSTEM_MENU"."KEEP_ALIVE" IS '是否缓存'; +COMMENT ON TABLE "SYSTEM_MENU" IS '菜单权限表'; + +-- ---------------------------- +-- Records of SYSTEM_MENU +-- ---------------------------- +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1114', '错误码删除', 'system:error-code:delete', '3', '4', '1110', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-04-13 21:46:42', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-04-13 22:09:51', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1115', '错误码导出', 'system:error-code:export', '3', '5', '1110', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-04-13 21:46:42', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-04-13 22:09:55', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1116', '日志中心', NULL, '2', '14', '2', 'log-center', 'log', 'infra/skywalking/log', '0', '1', TO_DATE('2021-04-26 22:35:45', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:31:27', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1117', '支付管理', NULL, '1', '11', '0', '/pay', 'money', NULL, '0', '1', TO_DATE('2021-12-25 16:43:41', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-25 16:46:40', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1118', '请假查询', NULL, '2', '0', '5', 'leave', 'user', 'bpm/oa/leave/index', '0', NULL, TO_DATE('2021-09-20 08:51:03', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-22 21:36:06', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1119', '请假申请查询', 'bpm:oa-leave:query', '3', '1', '1118', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-09-20 08:51:03', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-23 00:14:20', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1120', '请假申请创建', 'bpm:oa-leave:create', '3', '2', '1118', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-09-20 08:51:03', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-23 00:14:49', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1126', '应用信息', NULL, '2', '1', '1117', 'app', 'table', 'pay/app/index', '0', NULL, TO_DATE('2021-11-10 01:13:30', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-25 16:56:41', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1127', '支付应用信息查询', 'pay:app:query', '3', '1', '1126', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-11-10 01:13:31', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-11-10 01:13:31', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1128', '支付应用信息创建', 'pay:app:create', '3', '2', '1126', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-11-10 01:13:31', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-11-10 01:13:31', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1129', '支付应用信息更新', 'pay:app:update', '3', '3', '1126', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-11-10 01:13:31', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-11-10 01:13:31', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1130', '支付应用信息删除', 'pay:app:delete', '3', '4', '1126', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-11-10 01:13:31', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-11-10 01:13:31', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1131', '支付应用信息导出', 'pay:app:export', '3', '5', '1126', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-11-10 01:13:31', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-11-10 01:13:31', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1132', '秘钥解析', 'pay:channel:parsing', '3', '6', '1129', NULL, NULL, NULL, '0', '1', TO_DATE('2021-11-08 15:15:47', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-11-08 15:15:47', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1133', '支付商户信息查询', 'pay:merchant:query', '3', '1', '1132', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-11-10 01:13:41', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-11-10 01:13:41', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1134', '支付商户信息创建', 'pay:merchant:create', '3', '2', '1132', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-11-10 01:13:41', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-11-10 01:13:41', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1135', '支付商户信息更新', 'pay:merchant:update', '3', '3', '1132', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-11-10 01:13:41', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-11-10 01:13:41', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1136', '支付商户信息删除', 'pay:merchant:delete', '3', '4', '1132', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-11-10 01:13:41', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-11-10 01:13:41', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1137', '支付商户信息导出', 'pay:merchant:export', '3', '5', '1132', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-11-10 01:13:41', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-11-10 01:13:41', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1138', '租户列表', NULL, '2', '0', '1224', 'list', 'peoples', 'system/tenant/index', '0', NULL, TO_DATE('2021-12-14 12:31:43', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-20 01:42:43', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1139', '租户查询', 'system:tenant:query', '3', '1', '1138', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-14 12:31:44', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-14 12:31:44', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1140', '租户创建', 'system:tenant:create', '3', '2', '1138', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-14 12:31:44', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-14 12:31:44', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1141', '租户更新', 'system:tenant:update', '3', '3', '1138', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-14 12:31:44', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-14 12:31:44', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1142', '租户删除', 'system:tenant:delete', '3', '4', '1138', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-14 12:31:44', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-14 12:31:44', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1143', '租户导出', 'system:tenant:export', '3', '5', '1138', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-14 12:31:44', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-14 12:31:44', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1150', '秘钥解析', 'pay:channel:parsing', '3', '6', '1129', NULL, NULL, NULL, '0', '1', TO_DATE('2021-11-08 15:15:47', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-11-08 15:15:47', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1156', '支付订单查询', 'pay:order:query', '3', '1', '1155', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 08:29:01', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 08:29:01', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1157', '支付订单创建', 'pay:order:create', '3', '2', '1155', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 08:29:01', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 08:29:01', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1158', '支付订单更新', 'pay:order:update', '3', '3', '1155', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 08:29:01', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 08:29:01', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1159', '支付订单删除', 'pay:order:delete', '3', '4', '1155', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 08:29:01', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 08:29:01', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1160', '支付订单导出', 'pay:order:export', '3', '5', '1155', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 08:29:01', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 08:29:01', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1161', '退款订单', NULL, '2', '3', '1117', 'refund', 'order', 'pay/refund/index', '0', NULL, TO_DATE('2021-12-25 08:29:07', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-25 19:30:22', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1162', '退款订单查询', 'pay:refund:query', '3', '1', '1161', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 08:29:07', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 08:29:07', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1163', '退款订单创建', 'pay:refund:create', '3', '2', '1161', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 08:29:07', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 08:29:07', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1164', '退款订单更新', 'pay:refund:update', '3', '3', '1161', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 08:29:07', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 08:29:07', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1165', '退款订单删除', 'pay:refund:delete', '3', '4', '1161', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 08:29:07', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 08:29:07', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1166', '退款订单导出', 'pay:refund:export', '3', '5', '1161', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 08:29:07', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 08:29:07', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1173', '支付订单', NULL, '2', '2', '1117', 'order', 'pay', 'pay/order/index', '0', NULL, TO_DATE('2021-12-25 08:49:43', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-25 19:29:54', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1174', '支付订单查询', 'pay:order:query', '3', '1', '1173', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 08:49:43', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 08:49:43', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1175', '支付订单创建', 'pay:order:create', '3', '2', '1173', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 08:49:43', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 08:49:43', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1176', '支付订单更新', 'pay:order:update', '3', '3', '1173', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 08:49:43', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 08:49:43', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1177', '支付订单删除', 'pay:order:delete', '3', '4', '1173', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 08:49:43', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 08:49:43', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1178', '支付订单导出', 'pay:order:export', '3', '5', '1173', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 08:49:43', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 08:49:43', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1179', '商户信息', NULL, '2', '0', '1117', 'merchant', 'merchant', 'pay/merchant/index', '0', NULL, TO_DATE('2021-12-25 09:01:44', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-25 17:02:13', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1180', '支付商户信息查询', 'pay:merchant:query', '3', '1', '1179', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 09:01:44', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 09:01:44', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1181', '支付商户信息创建', 'pay:merchant:create', '3', '2', '1179', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 09:01:44', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 09:01:44', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1182', '支付商户信息更新', 'pay:merchant:update', '3', '3', '1179', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 09:01:44', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 09:01:44', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1183', '支付商户信息删除', 'pay:merchant:delete', '3', '4', '1179', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 09:01:44', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 09:01:44', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1184', '支付商户信息导出', 'pay:merchant:export', '3', '5', '1179', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-25 09:01:44', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-25 09:01:44', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1185', '工作流程', NULL, '1', '50', '0', '/bpm', 'tool', NULL, '0', '1', TO_DATE('2021-12-30 20:26:36', 'SYYYY-MM-DD HH24:MI:SS'), '103', TO_DATE('2022-01-14 18:44:00', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1186', '流程管理', NULL, '1', '10', '1185', 'manager', 'nested', NULL, '0', '1', TO_DATE('2021-12-30 20:28:30', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-30 20:28:57', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1187', '流程表单', NULL, '2', '0', '1186', 'form', 'form', 'bpm/form/index', '0', NULL, TO_DATE('2021-12-30 12:38:22', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-31 23:20:38', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1188', '表单查询', 'bpm:form:query', '3', '1', '1187', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-30 12:38:22', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-03 18:59:53', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1189', '表单创建', 'bpm:form:create', '3', '2', '1187', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-30 12:38:22', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-03 18:59:59', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1190', '表单更新', 'bpm:form:update', '3', '3', '1187', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-30 12:38:22', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-03 19:00:21', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1191', '表单删除', 'bpm:form:delete', '3', '4', '1187', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-30 12:38:22', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-03 19:00:26', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1192', '表单导出', 'bpm:form:export', '3', '5', '1187', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-12-30 12:38:22', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-03 19:00:33', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1193', '流程模型', NULL, '2', '5', '1186', 'model', 'guide', 'bpm/model/index', '0', '1', TO_DATE('2021-12-31 23:24:58', 'SYYYY-MM-DD HH24:MI:SS'), '103', TO_DATE('2022-01-14 10:14:38', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1194', '模型查询', 'bpm:model:query', '3', '1', '1193', NULL, NULL, NULL, '0', '1', TO_DATE('2022-01-03 19:01:10', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-03 19:01:10', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1195', '模型创建', 'bpm:model:create', '3', '2', '1193', NULL, NULL, NULL, '0', '1', TO_DATE('2022-01-03 19:01:24', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-03 19:02:02', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1196', '模型导入', 'bpm:model:import', '3', '3', '1193', NULL, NULL, NULL, '0', '1', TO_DATE('2022-01-03 19:01:35', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-03 19:02:11', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1197', '模型更新', 'bpm:model:update', '3', '4', '1193', NULL, NULL, NULL, '0', '1', TO_DATE('2022-01-03 19:02:28', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-03 19:02:28', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1198', '模型删除', 'bpm:model:delete', '3', '5', '1193', NULL, NULL, NULL, '0', '1', TO_DATE('2022-01-03 19:02:43', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-03 19:02:43', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1199', '模型发布', 'bpm:model:deploy', '3', '6', '1193', NULL, NULL, NULL, '0', '1', TO_DATE('2022-01-03 19:03:24', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-03 19:03:24', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1200', '任务管理', NULL, '1', '20', '1185', 'task', 'cascader', NULL, '0', '1', TO_DATE('2022-01-07 23:51:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-07 23:51:48', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1201', '我的流程', NULL, '2', '0', '1200', 'my', 'people', 'bpm/processInstance/index', '0', NULL, TO_DATE('2022-01-07 15:53:44', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-08 16:44:41', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1202', '流程实例的查询', 'bpm:process-instance:query', '3', '1', '1201', NULL, NULL, NULL, '0', NULL, TO_DATE('2022-01-07 15:53:44', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-07 23:56:29', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1207', '待办任务', NULL, '2', '10', '1200', 'todo', 'eye-open', 'bpm/task/todo', '0', '1', TO_DATE('2022-01-08 10:33:37', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-08 10:33:48', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1208', '已办任务', NULL, '2', '20', '1200', 'done', 'eye', 'bpm/task/done', '0', '1', TO_DATE('2022-01-08 10:34:13', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-08 10:34:13', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1209', '用户分组', NULL, '2', '2', '1186', 'user-group', 'people', 'bpm/group/index', '0', NULL, TO_DATE('2022-01-14 02:14:20', 'SYYYY-MM-DD HH24:MI:SS'), '103', TO_DATE('2022-01-14 10:15:43', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1210', '用户组查询', 'bpm:user-group:query', '3', '1', '1209', NULL, NULL, NULL, '0', NULL, TO_DATE('2022-01-14 02:14:20', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-01-14 02:14:20', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1211', '用户组创建', 'bpm:user-group:create', '3', '2', '1209', NULL, NULL, NULL, '0', NULL, TO_DATE('2022-01-14 02:14:20', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-01-14 02:14:20', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1212', '用户组更新', 'bpm:user-group:update', '3', '3', '1209', NULL, NULL, NULL, '0', NULL, TO_DATE('2022-01-14 02:14:20', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-01-14 02:14:20', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1213', '用户组删除', 'bpm:user-group:delete', '3', '4', '1209', NULL, NULL, NULL, '0', NULL, TO_DATE('2022-01-14 02:14:20', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-01-14 02:14:20', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1215', '流程定义查询', 'bpm:process-definition:query', '3', '10', '1193', NULL, NULL, NULL, '0', '1', TO_DATE('2022-01-23 00:21:43', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-23 00:26:30', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1216', '流程任务分配规则查询', 'bpm:task-assign-rule:query', '3', '20', '1193', NULL, NULL, NULL, '0', '1', TO_DATE('2022-01-23 00:26:53', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-23 00:26:53', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1217', '流程任务分配规则创建', 'bpm:task-assign-rule:create', '3', '21', '1193', NULL, NULL, NULL, '0', '1', TO_DATE('2022-01-23 00:28:15', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-23 00:28:15', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1218', '流程任务分配规则更新', 'bpm:task-assign-rule:update', '3', '22', '1193', NULL, NULL, NULL, '0', '1', TO_DATE('2022-01-23 00:28:41', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-23 00:28:41', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1219', '流程实例的创建', 'bpm:process-instance:create', '3', '2', '1201', NULL, NULL, NULL, '0', '1', TO_DATE('2022-01-23 00:36:15', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-23 00:36:15', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1220', '流程实例的取消', 'bpm:process-instance:cancel', '3', '3', '1201', NULL, NULL, NULL, '0', '1', TO_DATE('2022-01-23 00:36:33', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-23 00:36:33', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1221', '流程任务的查询', 'bpm:task:query', '3', '1', '1207', NULL, NULL, NULL, '0', '1', TO_DATE('2022-01-23 00:38:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-23 00:38:52', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1222', '流程任务的更新', 'bpm:task:update', '3', '2', '1207', NULL, NULL, NULL, '0', '1', TO_DATE('2022-01-23 00:39:24', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-23 00:39:30', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1224', '租户管理', NULL, '2', '0', '1', 'tenant', 'peoples', NULL, '0', '1', TO_DATE('2022-02-20 01:41:13', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-20 01:42:47', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1225', '租户套餐', NULL, '2', '0', '1224', 'package', 'eye', 'system/tenantPackage/index', '0', NULL, TO_DATE('2022-02-19 17:44:06', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-20 01:45:13', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1226', '租户套餐查询', 'system:tenant-package:query', '3', '1', '1225', NULL, NULL, NULL, '0', NULL, TO_DATE('2022-02-19 17:44:06', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-19 17:44:06', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1227', '租户套餐创建', 'system:tenant-package:create', '3', '2', '1225', NULL, NULL, NULL, '0', NULL, TO_DATE('2022-02-19 17:44:06', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-19 17:44:06', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1228', '租户套餐更新', 'system:tenant-package:update', '3', '3', '1225', NULL, NULL, NULL, '0', NULL, TO_DATE('2022-02-19 17:44:06', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-19 17:44:06', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1229', '租户套餐删除', 'system:tenant-package:delete', '3', '4', '1225', NULL, NULL, NULL, '0', NULL, TO_DATE('2022-02-19 17:44:06', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-19 17:44:06', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1237', '文件配置', NULL, '2', '0', '1243', 'file-config', 'config', 'infra/fileConfig/index', '0', NULL, TO_DATE('2022-03-15 14:35:28', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-16 23:49:31', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1238', '文件配置查询', 'infra:file-config:query', '3', '1', '1237', NULL, NULL, NULL, '0', NULL, TO_DATE('2022-03-15 14:35:28', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-03-15 14:35:28', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1239', '文件配置创建', 'infra:file-config:create', '3', '2', '1237', NULL, NULL, NULL, '0', NULL, TO_DATE('2022-03-15 14:35:28', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-03-15 14:35:28', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1240', '文件配置更新', 'infra:file-config:update', '3', '3', '1237', NULL, NULL, NULL, '0', NULL, TO_DATE('2022-03-15 14:35:28', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-03-15 14:35:28', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1241', '文件配置删除', 'infra:file-config:delete', '3', '4', '1237', NULL, NULL, NULL, '0', NULL, TO_DATE('2022-03-15 14:35:28', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-03-15 14:35:28', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1242', '文件配置导出', 'infra:file-config:export', '3', '5', '1237', NULL, NULL, NULL, '0', NULL, TO_DATE('2022-03-15 14:35:28', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-03-15 14:35:28', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1243', '文件管理', NULL, '2', '5', '2', 'file', 'download', NULL, '0', '1', TO_DATE('2022-03-16 23:47:40', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-16 23:48:27', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1', '系统管理', NULL, '1', '10', '0', '/system', 'system', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-25 16:43:08', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('2', '基础设施', NULL, '1', '20', '0', '/infra', 'monitor', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-25 16:43:18', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('5', 'OA 示例', NULL, '1', '40', '1185', 'oa', 'people', NULL, '0', 'admin', TO_DATE('2021-09-20 16:26:19', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-22 18:32:50', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('100', '用户管理', 'system:user:list', '2', '1', '1', 'user', 'user', 'system/user/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-05 22:36:45', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('101', '角色管理', NULL, '2', '2', '1', 'role', 'peoples', 'system/role/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 22:04:49', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('102', '菜单管理', NULL, '2', '3', '1', 'menu', 'tree-table', 'system/menu/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 22:04:28', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('103', '部门管理', NULL, '2', '4', '1', 'dept', 'tree', 'system/dept/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 20:25:19', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('104', '岗位管理', NULL, '2', '5', '1', 'post', 'post', 'system/post/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 20:38:23', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('105', '字典管理', NULL, '2', '6', '1', 'dict', 'dict', 'system/dict/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 21:16:58', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('106', '配置管理', NULL, '2', '6', '2', 'config', 'edit', 'infra/config/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:30:22', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('107', '通知公告', NULL, '2', '8', '1', 'notice', 'message', 'system/notice/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 21:51:39', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('108', '审计日志', NULL, '1', '9', '1', 'log', 'log', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-04-26 22:34:58', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('109', '在线用户', 'system:user-session:list', '2', '10', '1', 'user-session', 'online', 'system/session/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-26 08:21:20', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('110', '定时任务', NULL, '2', '12', '2', 'job', 'job', 'infra/job/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:31:08', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('111', 'MySQL 监控', NULL, '2', '9', '2', 'druid', 'druid', 'infra/druid/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:30:47', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('112', 'Java 监控', NULL, '2', '11', '2', 'admin-server', 'server', 'infra/server', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:31:01', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('113', 'Redis 监控', NULL, '2', '10', '2', 'redis', 'redis', 'infra/redis/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:30:52', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('114', '表单构建', 'infra:build:list', '2', '2', '2', 'build', 'build', 'infra/build/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:29:59', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('115', '代码生成', 'infra:codegen:query', '2', '1', '2', 'codegen', 'code', 'infra/codegen/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:29:33', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('116', '系统接口', 'infra:swagger:list', '2', '3', '2', 'swagger', 'swagger', 'infra/swagger/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:30:03', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('500', '操作日志', NULL, '2', '1', '108', 'operate-log', 'form', 'system/operatelog/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 21:42:56', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('501', '登录日志', NULL, '2', '2', '108', 'login-log', 'logininfor', 'system/loginlog/index', '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 21:39:23', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1001', '用户查询', 'system:user:query', '3', '1', '100', NULL, '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-05 22:36:55', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1002', '用户新增', 'system:user:create', '3', '2', '100', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 22:21:47', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1003', '用户修改', 'system:user:update', '3', '3', '100', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 22:21:54', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1004', '用户删除', 'system:user:delete', '3', '4', '100', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 22:22:03', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1005', '用户导出', 'system:user:export', '3', '5', '100', NULL, '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-05 22:36:55', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1006', '用户导入', 'system:user:import', '3', '6', '100', NULL, '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-05 22:36:55', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1007', '重置密码', 'system:user:update-password', '3', '7', '100', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 22:20:55', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1008', '角色查询', 'system:role:query', '3', '1', '101', NULL, '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-05 22:36:55', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1009', '角色新增', 'system:role:create', '3', '2', '101', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 22:05:24', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1010', '角色修改', 'system:role:update', '3', '3', '101', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 22:05:14', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1011', '角色删除', 'system:role:delete', '3', '4', '101', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 22:05:05', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1012', '角色导出', 'system:role:export', '3', '5', '101', NULL, '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-05 22:36:55', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1013', '菜单查询', 'system:menu:query', '3', '1', '102', NULL, '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-05 22:36:55', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1014', '菜单新增', 'system:menu:create', '3', '2', '102', NULL, '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-03-13 15:49:36', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1015', '菜单修改', 'system:menu:update', '3', '3', '102', NULL, '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-03-13 15:49:30', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1016', '菜单删除', 'system:menu:delete', '3', '4', '102', NULL, '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-03-13 15:49:45', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1017', '部门查询', 'system:dept:query', '3', '1', '103', NULL, '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-05 22:36:55', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1018', '部门新增', 'system:dept:create', '3', '2', '103', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 20:25:30', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1019', '部门修改', 'system:dept:update', '3', '3', '103', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 20:25:37', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1020', '部门删除', 'system:dept:delete', '3', '4', '103', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 20:25:43', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1021', '岗位查询', 'system:post:query', '3', '1', '104', NULL, '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-05 22:36:55', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1022', '岗位新增', 'system:post:create', '3', '2', '104', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 20:38:34', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1023', '岗位修改', 'system:post:update', '3', '3', '104', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 20:38:41', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1024', '岗位删除', 'system:post:delete', '3', '4', '104', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 20:38:48', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1025', '岗位导出', 'system:post:export', '3', '5', '104', NULL, '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-05 22:36:55', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1026', '字典查询', 'system:dict:query', '3', '1', '105', '#', '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-05 22:36:55', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1027', '字典新增', 'system:dict:create', '3', '2', '105', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 21:19:29', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1028', '字典修改', 'system:dict:update', '3', '3', '105', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 21:19:36', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1029', '字典删除', 'system:dict:delete', '3', '4', '105', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 21:19:45', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1030', '字典导出', 'system:dict:export', '3', '5', '105', '#', '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-05 22:36:55', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1031', '配置查询', 'infra:config:query', '3', '1', '106', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-20 14:34:00', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1032', '配置新增', 'infra:config:create', '3', '2', '106', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-10 01:12:18', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1033', '配置修改', 'infra:config:update', '3', '3', '106', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-10 01:12:30', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1034', '配置删除', 'infra:config:delete', '3', '4', '106', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-10 01:12:36', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1035', '配置导出', 'infra:config:export', '3', '5', '106', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-20 14:34:19', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1036', '公告查询', 'system:notice:query', '3', '1', '107', '#', '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-05 22:36:55', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1037', '公告新增', 'system:notice:create', '3', '2', '107', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 21:51:48', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1038', '公告修改', 'system:notice:update', '3', '3', '107', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 21:51:55', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1039', '公告删除', 'system:notice:delete', '3', '4', '107', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-14 21:52:01', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1040', '操作查询', 'system:operate-log:query', '3', '1', '500', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-16 18:28:10', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1042', '日志导出', 'system:operate-log:export', '3', '2', '500', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-16 18:28:23', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1043', '登录查询', 'system:login-log:query', '3', '1', '501', '#', '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-18 05:29:26', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1045', '日志导出', 'system:login-log:export', '3', '3', '501', '#', '#', NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-18 05:29:30', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1046', '在线查询', 'system:user-session:list', '3', '1', '109', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-26 08:22:37', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1048', '单条强退', 'system:user-session:delete', '3', '3', '109', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-26 08:22:54', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1050', '任务新增', 'infra:job:create', '3', '2', '110', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-02-07 13:01:58', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1051', '任务修改', 'infra:job:update', '3', '3', '110', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-02-07 13:02:10', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1052', '任务删除', 'infra:job:delete', '3', '4', '110', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-02-07 13:02:22', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1053', '状态修改', 'infra:job:update', '3', '5', '110', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-02-07 13:02:38', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1054', '任务导出', 'infra:job:export', '3', '7', '110', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-02-07 13:02:51', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1056', '生成修改', 'infra:codegen:update', '3', '2', '115', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:26:19', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1057', '生成删除', 'infra:codegen:delete', '3', '3', '115', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:26:32', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1058', '导入代码', 'infra:codegen:create', '3', '2', '115', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:26:24', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1059', '预览代码', 'infra:codegen:preview', '3', '4', '115', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:26:37', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1060', '生成代码', 'infra:codegen:download', '3', '5', '115', NULL, NULL, NULL, '0', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:26:44', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1063', '设置角色菜单权限', 'system:permission:assign-role-menu', '3', '6', '101', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-01-06 17:53:44', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-06 17:55:23', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1064', '设置角色数据权限', 'system:permission:assign-role-data-scope', '3', '7', '101', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-01-06 17:56:31', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-06 17:56:31', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1065', '设置用户角色', 'system:permission:assign-user-role', '3', '8', '101', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-01-07 10:23:28', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-07 10:23:28', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1066', '获得 Redis 监控信息', 'infra:redis:get-monitor-info', '3', '1', '113', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-01-26 01:02:31', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-26 01:02:31', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1067', '获得 Redis Key 列表', 'infra:redis:get-key-list', '3', '2', '113', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-01-26 01:02:52', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-26 01:02:52', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1070', '代码生成示例', 'infra:test-demo:query', '2', '1', '2', 'test-demo', 'validCode', 'infra/testDemo/index', '0', NULL, TO_DATE('2021-02-06 12:42:49', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:29:37', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1071', '测试示例表创建', 'infra:test-demo:create', '3', '1', '1070', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-02-06 12:42:49', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:26:51', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1072', '测试示例表更新', 'infra:test-demo:update', '3', '2', '1070', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-02-06 12:42:49', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:27:00', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1073', '测试示例表删除', 'infra:test-demo:delete', '3', '3', '1070', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-02-06 12:42:49', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:27:11', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1074', '测试示例表导出', 'infra:test-demo:export', '3', '4', '1070', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-02-06 12:42:49', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:27:17', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1075', '任务触发', 'infra:job:trigger', '3', '8', '110', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-02-07 13:03:10', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-02-07 13:03:10', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1076', '数据库文档', NULL, '2', '4', '2', 'db-doc', 'table', 'infra/dbDoc/index', '0', NULL, TO_DATE('2021-02-08 01:41:47', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:30:06', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1077', '链路追踪', NULL, '2', '13', '2', 'skywalking', 'eye-open', 'infra/skywalking', '0', NULL, TO_DATE('2021-02-08 20:41:31', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:31:12', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1078', '访问日志', NULL, '2', '1', '1083', 'api-access-log', 'log', 'infra/apiAccessLog/index', '0', NULL, TO_DATE('2021-02-26 01:32:59', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-10 01:28:09', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1082', '日志导出', 'infra:api-access-log:export', '3', '2', '1078', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-02-26 01:32:59', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-10 01:28:13', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1083', 'API 日志', NULL, '2', '8', '2', 'log', 'log', NULL, '0', NULL, TO_DATE('2021-02-26 02:18:24', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-11 00:30:41', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1084', '错误日志', 'infra:api-error-log:query', '2', '2', '1083', 'api-error-log', 'log', 'infra/apiErrorLog/index', '0', NULL, TO_DATE('2021-02-26 07:53:20', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-02-26 07:54:40', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1085', '日志处理', 'infra:api-error-log:update-status', '3', '2', '1084', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-02-26 07:53:20', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-10 01:28:18', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1086', '日志导出', 'infra:api-error-log:export', '3', '3', '1084', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-02-26 07:53:20', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-10 01:28:21', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1087', '任务查询', 'infra:job:query', '3', '1', '110', NULL, NULL, NULL, '0', '1', TO_DATE('2021-03-10 01:26:19', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-10 01:26:19', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1088', '日志查询', 'infra:api-access-log:query', '3', '1', '1078', NULL, NULL, NULL, '0', '1', TO_DATE('2021-03-10 01:28:04', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-10 01:29:38', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1089', '日志查询', 'infra:api-error-log:query', '3', '1', '1084', NULL, NULL, NULL, '0', '1', TO_DATE('2021-03-10 01:29:09', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-03-10 01:29:09', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1090', '文件列表', NULL, '2', '5', '1243', 'file', 'upload', 'infra/file/index', '0', NULL, TO_DATE('2021-03-12 20:16:20', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-16 23:48:19', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1091', '文件查询', 'infra:file:query', '3', '1', '1090', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-03-12 20:16:20', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-03-12 20:16:20', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1092', '文件删除', 'infra:file:delete', '3', '4', '1090', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-03-12 20:16:20', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-03-12 20:16:20', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1093', '短信管理', NULL, '1', '11', '1', 'sms', 'validCode', NULL, '0', '1', TO_DATE('2021-04-05 01:10:16', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-04-05 01:11:38', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1094', '短信渠道', NULL, '2', '0', '1093', 'sms-channel', 'phone', 'system/sms/smsChannel', '0', NULL, TO_DATE('2021-04-01 11:07:15', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-04-09 23:44:07', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1095', '短信渠道查询', 'system:sms-channel:query', '3', '1', '1094', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-04-01 11:07:15', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-04-01 11:07:15', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1096', '短信渠道创建', 'system:sms-channel:create', '3', '2', '1094', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-04-01 11:07:15', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-04-01 11:07:15', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1097', '短信渠道更新', 'system:sms-channel:update', '3', '3', '1094', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-04-01 11:07:15', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-04-01 11:07:15', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1098', '短信渠道删除', 'system:sms-channel:delete', '3', '4', '1094', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-04-01 11:07:15', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-04-01 11:07:15', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1100', '短信模板', NULL, '2', '1', '1093', 'sms-template', 'phone', 'system/sms/smsTemplate', '0', NULL, TO_DATE('2021-04-01 17:35:17', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-04-11 19:34:21', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1101', '短信模板查询', 'system:sms-template:query', '3', '1', '1100', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-04-01 17:35:17', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-04-01 17:35:17', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1102', '短信模板创建', 'system:sms-template:create', '3', '2', '1100', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-04-01 17:35:17', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-04-01 17:35:17', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1103', '短信模板更新', 'system:sms-template:update', '3', '3', '1100', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-04-01 17:35:17', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-04-01 17:35:17', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1104', '短信模板删除', 'system:sms-template:delete', '3', '4', '1100', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-04-01 17:35:17', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-04-01 17:35:17', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1105', '短信模板导出', 'system:sms-template:export', '3', '5', '1100', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-04-01 17:35:17', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-04-01 17:35:17', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1106', '发送测试短信', 'system:sms-template:send-sms', '3', '6', '1100', NULL, NULL, NULL, '0', '1', TO_DATE('2021-04-11 00:26:40', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-04-11 00:26:40', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1107', '短信日志', NULL, '2', '2', '1093', 'sms-log', 'phone', 'system/sms/smsLog', '0', NULL, TO_DATE('2021-04-11 08:37:05', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-04-11 19:34:25', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1108', '短信日志查询', 'system:sms-log:query', '3', '1', '1107', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-04-11 08:37:05', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-04-11 08:37:05', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1109', '短信日志导出', 'system:sms-log:export', '3', '5', '1107', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-04-11 08:37:05', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-04-11 08:37:05', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1110', '错误码管理', NULL, '2', '12', '1', 'error-code', 'code', 'system/errorCode/index', '0', NULL, TO_DATE('2021-04-13 21:46:42', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-04-22 00:04:35', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1111', '错误码查询', 'system:error-code:query', '3', '1', '1110', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-04-13 21:46:42', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-04-13 22:09:37', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1112', '错误码创建', 'system:error-code:create', '3', '2', '1110', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-04-13 21:46:42', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-04-13 22:09:43', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +INSERT INTO "SYSTEM_MENU" ("ID", "NAME", "PERMISSION", "TYPE", "SORT", "PARENT_ID", "PATH", "ICON", "COMPONENT", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED", "VISIBLE", "KEEP_ALIVE") VALUES ('1113', '错误码更新', 'system:error-code:update', '3', '3', '1110', NULL, NULL, NULL, '0', NULL, TO_DATE('2021-04-13 21:46:42', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-04-13 22:09:47', 'SYYYY-MM-DD HH24:MI:SS'), '0', '1', '1'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_NOTICE +-- ---------------------------- +DROP TABLE "SYSTEM_NOTICE"; +CREATE TABLE "SYSTEM_NOTICE" ( + "ID" NUMBER(20,0) NOT NULL, + "TITLE" NVARCHAR2(50), + "CONTENT" NCLOB NOT NULL, + "NOTICE_TYPE" NUMBER(4,0) NOT NULL, + "STATUS" NUMBER(4,0) NOT NULL, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_NOTICE"."ID" IS '公告ID'; +COMMENT ON COLUMN "SYSTEM_NOTICE"."TITLE" IS '公告标题'; +COMMENT ON COLUMN "SYSTEM_NOTICE"."CONTENT" IS '公告内容'; +COMMENT ON COLUMN "SYSTEM_NOTICE"."NOTICE_TYPE" IS '公告类型(1通知 2公告)'; +COMMENT ON COLUMN "SYSTEM_NOTICE"."STATUS" IS '公告状态(0正常 1关闭)'; +COMMENT ON COLUMN "SYSTEM_NOTICE"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_NOTICE"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_NOTICE"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_NOTICE"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_NOTICE"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "SYSTEM_NOTICE"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_NOTICE" IS '通知公告表'; + +-- ---------------------------- +-- Records of SYSTEM_NOTICE +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_OPERATE_LOG +-- ---------------------------- +DROP TABLE "SYSTEM_OPERATE_LOG"; +CREATE TABLE "SYSTEM_OPERATE_LOG" ( + "ID" NUMBER(20,0) NOT NULL, + "TRACE_ID" NVARCHAR2(64), + "USER_ID" NUMBER(20,0) NOT NULL, + "USER_TYPE" NUMBER(4,0) NOT NULL, + "MODULE" NVARCHAR2(50), + "NAME" NVARCHAR2(50), + "TYPE" NUMBER(20,0) NOT NULL, + "CONTENT" NCLOB, + "EXTS" NVARCHAR2(512), + "REQUEST_METHOD" NVARCHAR2(16), + "REQUEST_URL" NVARCHAR2(255), + "USER_IP" NVARCHAR2(50), + "USER_AGENT" NVARCHAR2(200), + "JAVA_METHOD" NVARCHAR2(512), + "JAVA_METHOD_ARGS" NCLOB, + "START_TIME" DATE NOT NULL, + "DURATION" NUMBER(11,0) NOT NULL, + "RESULT_CODE" NUMBER(11,0) NOT NULL, + "RESULT_MSG" NVARCHAR2(512), + "RESULT_DATA" NCLOB, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."ID" IS '日志主键'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."TRACE_ID" IS '链路追踪编号'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."USER_ID" IS '用户编号'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."USER_TYPE" IS '用户类型'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."MODULE" IS '模块标题'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."NAME" IS '操作名'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."TYPE" IS '操作分类'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."CONTENT" IS '操作内容'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."EXTS" IS '拓展字段'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."REQUEST_METHOD" IS '请求方法名'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."REQUEST_URL" IS '请求地址'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."USER_IP" IS '用户 IP'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."USER_AGENT" IS '浏览器 UA'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."JAVA_METHOD" IS 'Java 方法名'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."JAVA_METHOD_ARGS" IS 'Java 方法的参数'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."START_TIME" IS '操作时间'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."DURATION" IS '执行时长'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."RESULT_CODE" IS '结果码'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."RESULT_MSG" IS '结果提示'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."RESULT_DATA" IS '结果数据'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "SYSTEM_OPERATE_LOG"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_OPERATE_LOG" IS '操作日志记录'; + +-- ---------------------------- +-- Records of SYSTEM_OPERATE_LOG +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_POST +-- ---------------------------- +DROP TABLE "SYSTEM_POST"; +CREATE TABLE "SYSTEM_POST" ( + "ID" NUMBER(20,0) NOT NULL, + "CODE" NVARCHAR2(64), + "NAME" NVARCHAR2(50), + "SORT" NUMBER(11,0) NOT NULL, + "STATUS" NUMBER(4,0) NOT NULL, + "REMARK" NVARCHAR2(500), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_POST"."ID" IS '岗位ID'; +COMMENT ON COLUMN "SYSTEM_POST"."CODE" IS '岗位编码'; +COMMENT ON COLUMN "SYSTEM_POST"."NAME" IS '岗位名称'; +COMMENT ON COLUMN "SYSTEM_POST"."SORT" IS '显示顺序'; +COMMENT ON COLUMN "SYSTEM_POST"."STATUS" IS '状态(0正常 1停用)'; +COMMENT ON COLUMN "SYSTEM_POST"."REMARK" IS '备注'; +COMMENT ON COLUMN "SYSTEM_POST"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_POST"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_POST"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_POST"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_POST"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "SYSTEM_POST"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_POST" IS '岗位信息表'; + +-- ---------------------------- +-- Records of SYSTEM_POST +-- ---------------------------- +INSERT INTO "SYSTEM_POST" ("ID", "CODE", "NAME", "SORT", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1', 'ceo', '董事长', '1', '0', NULL, 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-04 17:50:40', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_POST" ("ID", "CODE", "NAME", "SORT", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('2', 'se', '项目经理', '2', '0', NULL, 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-12-12 10:47:47', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_POST" ("ID", "CODE", "NAME", "SORT", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('3', 'hr', '人力资源', '3', '0', NULL, 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-12 10:47:50', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_POST" ("ID", "CODE", "NAME", "SORT", "STATUS", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('4', 'user', '普通员工', '4', '0', NULL, 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-12-12 10:47:51', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_ROLE +-- ---------------------------- +DROP TABLE "SYSTEM_ROLE"; +CREATE TABLE "SYSTEM_ROLE" ( + "ID" NUMBER(20,0) NOT NULL, + "NAME" NVARCHAR2(30), + "CODE" NVARCHAR2(100), + "SORT" NUMBER(11,0) NOT NULL, + "DATA_SCOPE" NUMBER(4,0) NOT NULL, + "DATA_SCOPE_DEPT_IDS" NVARCHAR2(500), + "STATUS" NUMBER(4,0) NOT NULL, + "TYPE" NUMBER(4,0) NOT NULL, + "REMARK" NVARCHAR2(500), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_ROLE"."ID" IS '角色ID'; +COMMENT ON COLUMN "SYSTEM_ROLE"."NAME" IS '角色名称'; +COMMENT ON COLUMN "SYSTEM_ROLE"."CODE" IS '角色权限字符串'; +COMMENT ON COLUMN "SYSTEM_ROLE"."SORT" IS '显示顺序'; +COMMENT ON COLUMN "SYSTEM_ROLE"."DATA_SCOPE" IS '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)'; +COMMENT ON COLUMN "SYSTEM_ROLE"."DATA_SCOPE_DEPT_IDS" IS '数据范围(指定部门数组)'; +COMMENT ON COLUMN "SYSTEM_ROLE"."STATUS" IS '角色状态(0正常 1停用)'; +COMMENT ON COLUMN "SYSTEM_ROLE"."TYPE" IS '角色类型'; +COMMENT ON COLUMN "SYSTEM_ROLE"."REMARK" IS '备注'; +COMMENT ON COLUMN "SYSTEM_ROLE"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_ROLE"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_ROLE"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_ROLE"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_ROLE"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "SYSTEM_ROLE"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_ROLE" IS '角色信息表'; + +-- ---------------------------- +-- Records of SYSTEM_ROLE +-- ---------------------------- +INSERT INTO "SYSTEM_ROLE" ("ID", "NAME", "CODE", "SORT", "DATA_SCOPE", "DATA_SCOPE_DEPT_IDS", "STATUS", "TYPE", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1', '超级管理员', 'super_admin', '1', '1', NULL, '0', '1', '超级管理员', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-22 05:08:21', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE" ("ID", "NAME", "CODE", "SORT", "DATA_SCOPE", "DATA_SCOPE_DEPT_IDS", "STATUS", "TYPE", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('2', '普通角色', 'common', '2', '2', NULL, '0', '1', '普通角色', 'admin', TO_DATE('2021-01-05 17:03:48', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-22 05:08:20', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE" ("ID", "NAME", "CODE", "SORT", "DATA_SCOPE", "DATA_SCOPE_DEPT_IDS", "STATUS", "TYPE", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('101', '测试账号', 'test', '0', '1', '[]', '0', '2', '132', NULL, TO_DATE('2021-01-06 13:49:35', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 22:00:41', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE" ("ID", "NAME", "CODE", "SORT", "DATA_SCOPE", "DATA_SCOPE_DEPT_IDS", "STATUS", "TYPE", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('109', '租户管理员', 'tenant_admin', '0', '1', NULL, '0', '1', '系统自动生成', '1', TO_DATE('2022-02-22 00:56:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 00:56:14', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE" ("ID", "NAME", "CODE", "SORT", "DATA_SCOPE", "DATA_SCOPE_DEPT_IDS", "STATUS", "TYPE", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('110', '测试角色', 'test', '0', '1', '[]', '0', '2', '嘿嘿', '110', TO_DATE('2022-02-23 00:14:34', 'SYYYY-MM-DD HH24:MI:SS'), '110', TO_DATE('2022-02-23 13:14:58', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE" ("ID", "NAME", "CODE", "SORT", "DATA_SCOPE", "DATA_SCOPE_DEPT_IDS", "STATUS", "TYPE", "REMARK", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('111', '租户管理员', 'tenant_admin', '0', '1', NULL, '0', '1', '系统自动生成', '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_ROLE_MENU +-- ---------------------------- +DROP TABLE "SYSTEM_ROLE_MENU"; +CREATE TABLE "SYSTEM_ROLE_MENU" ( + "ID" NUMBER(20,0) NOT NULL, + "ROLE_ID" NUMBER(20,0) NOT NULL, + "MENU_ID" NUMBER(20,0) NOT NULL, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_ROLE_MENU"."ID" IS '自增编号'; +COMMENT ON COLUMN "SYSTEM_ROLE_MENU"."ROLE_ID" IS '角色ID'; +COMMENT ON COLUMN "SYSTEM_ROLE_MENU"."MENU_ID" IS '菜单ID'; +COMMENT ON COLUMN "SYSTEM_ROLE_MENU"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_ROLE_MENU"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_ROLE_MENU"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_ROLE_MENU"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_ROLE_MENU"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "SYSTEM_ROLE_MENU"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_ROLE_MENU" IS '角色和菜单关联表'; + +-- ---------------------------- +-- Records of SYSTEM_ROLE_MENU +-- ---------------------------- +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('434', '2', '1', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('454', '2', '1093', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('455', '2', '1094', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('460', '2', '1100', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('467', '2', '1107', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('470', '2', '1110', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('476', '2', '1117', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('477', '2', '100', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('478', '2', '101', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('479', '2', '102', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('480', '2', '1126', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('481', '2', '103', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('483', '2', '104', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('485', '2', '105', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('488', '2', '107', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('490', '2', '108', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('492', '2', '109', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('498', '2', '1138', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('523', '2', '1224', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('524', '2', '1225', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('541', '2', '500', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('543', '2', '501', '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:09:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('675', '2', '2', '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('689', '2', '1077', '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('690', '2', '1078', '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('692', '2', '1083', '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('693', '2', '1084', '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('699', '2', '1090', '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('702', '2', '1116', '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('703', '2', '106', '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('704', '2', '110', '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('705', '2', '111', '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('706', '2', '112', '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('707', '2', '113', '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 13:16:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('263', '109', '1', '1', TO_DATE('2022-02-22 00:56:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 00:56:14', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1486', '109', '103', '1', TO_DATE('2022-02-23 19:32:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 19:32:14', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1487', '109', '104', '1', TO_DATE('2022-02-23 19:32:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 19:32:14', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1489', '1', '1', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1490', '1', '2', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1494', '1', '1077', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1495', '1', '1078', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1496', '1', '1083', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1497', '1', '1084', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1498', '1', '1090', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1499', '1', '1093', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1500', '1', '1094', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1501', '1', '1100', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1502', '1', '1107', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1503', '1', '1110', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1504', '1', '1116', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1505', '1', '1117', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1506', '1', '100', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1507', '1', '101', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1508', '1', '102', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1509', '1', '1126', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1510', '1', '103', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1511', '1', '104', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1512', '1', '105', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1513', '1', '106', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1514', '1', '107', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1515', '1', '108', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1516', '1', '109', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1517', '1', '110', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1518', '1', '111', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1519', '1', '112', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1520', '1', '113', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1522', '1', '1138', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1525', '1', '1224', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1526', '1', '1225', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1527', '1', '500', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1528', '1', '501', '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:03:57', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1529', '109', '1024', '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1530', '109', '1025', '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1536', '109', '1017', '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1537', '109', '1018', '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1538', '109', '1019', '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1539', '109', '1020', '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1540', '109', '1021', '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1541', '109', '1022', '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1542', '109', '1023', '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 20:30:14', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1576', '111', '1024', '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1577', '111', '1025', '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1578', '111', '1', '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1584', '111', '103', '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1585', '111', '104', '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1587', '111', '1017', '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1588', '111', '1018', '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1589', '111', '1019', '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1590', '111', '1020', '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1591', '111', '1021', '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1592', '111', '1022', '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1593', '111', '1023', '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1594', '109', '102', '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1595', '109', '1013', '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1596', '109', '1014', '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1597', '109', '1015', '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1598', '109', '1016', '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1599', '111', '102', '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1600', '111', '1013', '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1601', '111', '1014', '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1602', '111', '1015', '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1603', '111', '1016', '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1604', '101', '1216', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1605', '101', '1217', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1606', '101', '1218', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1607', '101', '1219', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1608', '101', '1220', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1609', '101', '1221', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1610', '101', '5', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1611', '101', '1222', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1612', '101', '1118', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1613', '101', '1119', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1614', '101', '1120', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1615', '101', '1185', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1616', '101', '1186', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1617', '101', '1187', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1618', '101', '1188', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1619', '101', '1189', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1620', '101', '1190', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1621', '101', '1191', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1622', '101', '1192', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1623', '101', '1193', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1624', '101', '1194', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1625', '101', '1195', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1626', '101', '1196', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1627', '101', '1197', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1628', '101', '1198', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1629', '101', '1199', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1630', '101', '1200', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1631', '101', '1201', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1632', '101', '1202', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1633', '101', '1207', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1634', '101', '1208', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1635', '101', '1209', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1636', '101', '1210', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1637', '101', '1211', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1638', '101', '1212', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1639', '101', '1213', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1640', '101', '1215', '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:45:52', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_ROLE_MENU" ("ID", "ROLE_ID", "MENU_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1296', '110', '1', '110', TO_DATE('2022-02-23 00:23:55', 'SYYYY-MM-DD HH24:MI:SS'), '110', TO_DATE('2022-02-23 00:23:55', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_SENSITIVE_WORD +-- ---------------------------- +DROP TABLE "SYSTEM_SENSITIVE_WORD"; +CREATE TABLE "SYSTEM_SENSITIVE_WORD" ( + "ID" NUMBER(20,0) NOT NULL, + "NAME" NVARCHAR2(255) NOT NULL, + "DESCRIPTION" NVARCHAR2(512), + "TAGS" NVARCHAR2(255), + "STATUS" NUMBER(4,0) NOT NULL, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_SENSITIVE_WORD"."ID" IS '编号'; +COMMENT ON COLUMN "SYSTEM_SENSITIVE_WORD"."NAME" IS '敏感词'; +COMMENT ON COLUMN "SYSTEM_SENSITIVE_WORD"."DESCRIPTION" IS '描述'; +COMMENT ON COLUMN "SYSTEM_SENSITIVE_WORD"."TAGS" IS '标签数组'; +COMMENT ON COLUMN "SYSTEM_SENSITIVE_WORD"."STATUS" IS '状态'; +COMMENT ON COLUMN "SYSTEM_SENSITIVE_WORD"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_SENSITIVE_WORD"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_SENSITIVE_WORD"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_SENSITIVE_WORD"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_SENSITIVE_WORD"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_SENSITIVE_WORD" IS '敏感词'; + +-- ---------------------------- +-- Records of SYSTEM_SENSITIVE_WORD +-- ---------------------------- +INSERT INTO "SYSTEM_SENSITIVE_WORD" ("ID", "NAME", "DESCRIPTION", "TAGS", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('1', '测试', '啊哈哈', '论坛,吃瓜', '0', '1', TO_DATE('2022-04-08 19:51:45', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-04-08 12:10:45', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_SENSITIVE_WORD" ("ID", "NAME", "DESCRIPTION", "TAGS", "STATUS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('2', '测试', '哈哈', '论坛,吃瓜,蔬菜', '0', '1', TO_DATE('2022-04-08 20:10:27', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-04-08 13:13:52', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_SMS_CHANNEL +-- ---------------------------- +DROP TABLE "SYSTEM_SMS_CHANNEL"; +CREATE TABLE "SYSTEM_SMS_CHANNEL" ( + "ID" NUMBER(20,0) NOT NULL, + "SIGNATURE" NVARCHAR2(10), + "CODE" NVARCHAR2(63), + "STATUS" NUMBER(4,0) NOT NULL, + "REMARK" NVARCHAR2(255), + "API_KEY" NVARCHAR2(128), + "API_SECRET" NVARCHAR2(128), + "CALLBACK_URL" NVARCHAR2(255), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_SMS_CHANNEL"."ID" IS '编号'; +COMMENT ON COLUMN "SYSTEM_SMS_CHANNEL"."SIGNATURE" IS '短信签名'; +COMMENT ON COLUMN "SYSTEM_SMS_CHANNEL"."CODE" IS '渠道编码'; +COMMENT ON COLUMN "SYSTEM_SMS_CHANNEL"."STATUS" IS '开启状态'; +COMMENT ON COLUMN "SYSTEM_SMS_CHANNEL"."REMARK" IS '备注'; +COMMENT ON COLUMN "SYSTEM_SMS_CHANNEL"."API_KEY" IS '短信 API 的账号'; +COMMENT ON COLUMN "SYSTEM_SMS_CHANNEL"."API_SECRET" IS '短信 API 的秘钥'; +COMMENT ON COLUMN "SYSTEM_SMS_CHANNEL"."CALLBACK_URL" IS '短信发送回调 URL'; +COMMENT ON COLUMN "SYSTEM_SMS_CHANNEL"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_SMS_CHANNEL"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_SMS_CHANNEL"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_SMS_CHANNEL"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_SMS_CHANNEL"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_SMS_CHANNEL" IS '短信渠道'; + +-- ---------------------------- +-- Records of SYSTEM_SMS_CHANNEL +-- ---------------------------- +INSERT INTO "SYSTEM_SMS_CHANNEL" ("ID", "SIGNATURE", "CODE", "STATUS", "REMARK", "API_KEY", "API_SECRET", "CALLBACK_URL", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('1', '芋道', 'YUN_PIAN', '0', '呵呵呵哒', '1555a14277cb8a608cf45a9e6a80d510', NULL, 'http://vdwapu.natappfree.cc/admin-api/system/sms/callback/yunpian', NULL, TO_DATE('2021-03-31 06:12:20', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 16:48:44', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +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', 'Ballcat', 'ALIYUN', '0', '啦啦啦', 'LTAI5tCnKso2uG3kJ5gRav88', 'fGJ5SNXL7P1NHNRmJ7DJaMJGPyE55C', NULL, NULL, TO_DATE('2021-03-31 11:53:10', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-04-14 00:08:37', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +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', '测试渠道', 'DEBUG_DING_TALK', '0', '123', '696b5d8ead48071237e4aa5861ff08dbadb2b4ded1c688a7b7c9afc615579859', 'SEC5c4e5ff888bc8a9923ae47f59e7ccd30af1f14d93c55b4e2c9cb094e35aeed67', NULL, '1', TO_DATE('2021-04-13 00:23:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-04-14 00:07:10', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_SMS_CODE +-- ---------------------------- +DROP TABLE "SYSTEM_SMS_CODE"; +CREATE TABLE "SYSTEM_SMS_CODE" ( + "ID" NUMBER(20,0) NOT NULL, + "MOBILE" NVARCHAR2(11), + "CODE" NVARCHAR2(6), + "CREATE_IP" NVARCHAR2(15), + "SCENE" NUMBER(4,0) NOT NULL, + "TODAY_INDEX" NUMBER(4,0) NOT NULL, + "USED" NUMBER(4,0) NOT NULL, + "USED_TIME" DATE, + "USED_IP" NVARCHAR2(255), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_SMS_CODE"."ID" IS '编号'; +COMMENT ON COLUMN "SYSTEM_SMS_CODE"."MOBILE" IS '手机号'; +COMMENT ON COLUMN "SYSTEM_SMS_CODE"."CODE" IS '验证码'; +COMMENT ON COLUMN "SYSTEM_SMS_CODE"."CREATE_IP" IS '创建 IP'; +COMMENT ON COLUMN "SYSTEM_SMS_CODE"."SCENE" IS '发送场景'; +COMMENT ON COLUMN "SYSTEM_SMS_CODE"."TODAY_INDEX" IS '今日发送的第几条'; +COMMENT ON COLUMN "SYSTEM_SMS_CODE"."USED" IS '是否使用'; +COMMENT ON COLUMN "SYSTEM_SMS_CODE"."USED_TIME" IS '使用时间'; +COMMENT ON COLUMN "SYSTEM_SMS_CODE"."USED_IP" IS '使用 IP'; +COMMENT ON COLUMN "SYSTEM_SMS_CODE"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_SMS_CODE"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_SMS_CODE"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_SMS_CODE"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_SMS_CODE"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "SYSTEM_SMS_CODE"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_SMS_CODE" IS '手机验证码'; + +-- ---------------------------- +-- Records of SYSTEM_SMS_CODE +-- ---------------------------- +INSERT INTO "SYSTEM_SMS_CODE" ("ID", "MOBILE", "CODE", "CREATE_IP", "SCENE", "TODAY_INDEX", "USED", "USED_TIME", "USED_IP", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('0', '15601691399', '9999', '127.0.0.1', '1', '1', '0', NULL, NULL, NULL, TO_DATE('2022-05-01 17:52:58', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-05-01 17:52:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_SMS_LOG +-- ---------------------------- +DROP TABLE "SYSTEM_SMS_LOG"; +CREATE TABLE "SYSTEM_SMS_LOG" ( + "ID" NUMBER(20,0) NOT NULL, + "CHANNEL_ID" NUMBER(20,0) NOT NULL, + "CHANNEL_CODE" NVARCHAR2(63), + "TEMPLATE_ID" NUMBER(20,0) NOT NULL, + "TEMPLATE_CODE" NVARCHAR2(63), + "TEMPLATE_TYPE" NUMBER(4,0) NOT NULL, + "TEMPLATE_CONTENT" NVARCHAR2(255), + "TEMPLATE_PARAMS" NVARCHAR2(255), + "API_TEMPLATE_ID" NVARCHAR2(63), + "MOBILE" NVARCHAR2(11), + "USER_ID" NUMBER(20,0), + "USER_TYPE" NUMBER(4,0), + "SEND_STATUS" NUMBER(4,0) NOT NULL, + "SEND_TIME" DATE, + "SEND_CODE" NUMBER(11,0), + "SEND_MSG" NVARCHAR2(255), + "API_SEND_CODE" NVARCHAR2(63), + "API_SEND_MSG" NVARCHAR2(255), + "API_REQUEST_ID" NVARCHAR2(255), + "API_SERIAL_NO" NVARCHAR2(255), + "RECEIVE_STATUS" NUMBER(4,0) NOT NULL, + "RECEIVE_TIME" DATE, + "API_RECEIVE_CODE" NVARCHAR2(63), + "API_RECEIVE_MSG" NVARCHAR2(255), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."ID" IS '编号'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."CHANNEL_ID" IS '短信渠道编号'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."CHANNEL_CODE" IS '短信渠道编码'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."TEMPLATE_ID" IS '模板编号'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."TEMPLATE_CODE" IS '模板编码'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."TEMPLATE_TYPE" IS '短信类型'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."TEMPLATE_CONTENT" IS '短信内容'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."TEMPLATE_PARAMS" IS '短信参数'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."API_TEMPLATE_ID" IS '短信 API 的模板编号'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."MOBILE" IS '手机号'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."USER_ID" IS '用户编号'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."USER_TYPE" IS '用户类型'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."SEND_STATUS" IS '发送状态'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."SEND_TIME" IS '发送时间'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."SEND_CODE" IS '发送结果的编码'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."SEND_MSG" IS '发送结果的提示'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."API_SEND_CODE" IS '短信 API 发送结果的编码'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."API_SEND_MSG" IS '短信 API 发送失败的提示'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."API_REQUEST_ID" IS '短信 API 发送返回的唯一请求 ID'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."API_SERIAL_NO" IS '短信 API 发送返回的序号'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."RECEIVE_STATUS" IS '接收状态'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."RECEIVE_TIME" IS '接收时间'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."API_RECEIVE_CODE" IS 'API 接收结果的编码'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."API_RECEIVE_MSG" IS 'API 接收结果的说明'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_SMS_LOG"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_SMS_LOG" IS '短信日志'; + +-- ---------------------------- +-- Records of SYSTEM_SMS_LOG +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_SMS_TEMPLATE +-- ---------------------------- +DROP TABLE "SYSTEM_SMS_TEMPLATE"; +CREATE TABLE "SYSTEM_SMS_TEMPLATE" ( + "ID" NUMBER(20,0) NOT NULL, + "TYPE" NUMBER(4,0) NOT NULL, + "STATUS" NUMBER(4,0) NOT NULL, + "CODE" NVARCHAR2(63), + "NAME" NVARCHAR2(63), + "CONTENT" NVARCHAR2(255), + "PARAMS" NVARCHAR2(255), + "REMARK" NVARCHAR2(255), + "API_TEMPLATE_ID" NVARCHAR2(63), + "CHANNEL_ID" NUMBER(20,0) NOT NULL, + "CHANNEL_CODE" NVARCHAR2(63), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_SMS_TEMPLATE"."ID" IS '编号'; +COMMENT ON COLUMN "SYSTEM_SMS_TEMPLATE"."TYPE" IS '短信签名'; +COMMENT ON COLUMN "SYSTEM_SMS_TEMPLATE"."STATUS" IS '开启状态'; +COMMENT ON COLUMN "SYSTEM_SMS_TEMPLATE"."CODE" IS '模板编码'; +COMMENT ON COLUMN "SYSTEM_SMS_TEMPLATE"."NAME" IS '模板名称'; +COMMENT ON COLUMN "SYSTEM_SMS_TEMPLATE"."CONTENT" IS '模板内容'; +COMMENT ON COLUMN "SYSTEM_SMS_TEMPLATE"."PARAMS" IS '参数数组'; +COMMENT ON COLUMN "SYSTEM_SMS_TEMPLATE"."REMARK" IS '备注'; +COMMENT ON COLUMN "SYSTEM_SMS_TEMPLATE"."API_TEMPLATE_ID" IS '短信 API 的模板编号'; +COMMENT ON COLUMN "SYSTEM_SMS_TEMPLATE"."CHANNEL_ID" IS '短信渠道编号'; +COMMENT ON COLUMN "SYSTEM_SMS_TEMPLATE"."CHANNEL_CODE" IS '短信渠道编码'; +COMMENT ON COLUMN "SYSTEM_SMS_TEMPLATE"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_SMS_TEMPLATE"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_SMS_TEMPLATE"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_SMS_TEMPLATE"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_SMS_TEMPLATE"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_SMS_TEMPLATE" IS '短信模板'; + +-- ---------------------------- +-- Records of SYSTEM_SMS_TEMPLATE +-- ---------------------------- +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', 'test_01', '测试验证码短信', '正在进行登录操作{operation},您的验证码是{code}', '["operation","code"]', NULL, '4383920', '1', 'YUN_PIAN', NULL, TO_DATE('2021-03-31 10:49:38', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-04-10 01:22:00', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +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', 'test_02', '公告通知', '您的验证码{code},该验证码5分钟内有效,请勿泄漏于他人!', '["code"]', NULL, 'SMS_207945135', '2', 'ALIYUN', NULL, TO_DATE('2021-03-31 11:56:30', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-04-10 01:22:02', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +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', 'test-01', '测试模板', '哈哈哈 {name}', '["name"]', 'f哈哈哈', '4383920', '1', 'YUN_PIAN', '1', TO_DATE('2021-04-10 01:07:21', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-04-10 01:22:05', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +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', 'test-04', '测试下', '老鸡{name},牛逼{code}', '["name","code"]', NULL, 'suibian', '4', 'DEBUG_DING_TALK', '1', TO_DATE('2021-04-13 00:29:53', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-04-14 00:30:38', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +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', 'user-sms-login', '前台用户短信登录', '您的验证码是{code}', '["code"]', NULL, '4372216', '1', 'YUN_PIAN', '1', TO_DATE('2021-10-11 08:10:00', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2021-10-11 08:10:00', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +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', 'bpm_task_assigned', '【工作流】任务被分配', '您收到了一条新的待办任务:{processInstanceName}-{taskName},申请人:{startUserNickname},处理链接:{detailUrl}', '["processInstanceName","taskName","startUserNickname","detailUrl"]', NULL, 'suibian', '4', 'DEBUG_DING_TALK', '1', TO_DATE('2022-01-21 22:31:19', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-22 00:03:36', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +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', 'bpm_process_instance_reject', '【工作流】流程被不通过', '您的流程被审批不通过:{processInstanceName},原因:{reason},查看链接:{detailUrl}', '["processInstanceName","reason","detailUrl"]', NULL, 'suibian', '4', 'DEBUG_DING_TALK', '1', TO_DATE('2022-01-22 00:03:31', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-22 00:24:31', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +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', 'bpm_process_instance_approve', '【工作流】流程被通过', '您的流程被审批通过:{processInstanceName},查看链接:{detailUrl}', '["processInstanceName","detailUrl"]', NULL, 'suibian', '4', 'DEBUG_DING_TALK', '1', TO_DATE('2022-01-22 00:04:31', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-22 00:24:23', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_SOCIAL_USER +-- ---------------------------- +DROP TABLE "SYSTEM_SOCIAL_USER"; +CREATE TABLE "SYSTEM_SOCIAL_USER" ( + "ID" NUMBER(20,0) NOT NULL, + "USER_ID" NUMBER(20,0) NOT NULL, + "USER_TYPE" NUMBER(4,0) NOT NULL, + "TYPE" NUMBER(4,0) NOT NULL, + "OPENID" NVARCHAR2(32), + "TOKEN" NVARCHAR2(256), + "UNION_ID" NVARCHAR2(32), + "RAW_TOKEN_INFO" NCLOB, + "NICKNAME" NVARCHAR2(32), + "AVATAR" NVARCHAR2(255), + "RAW_USER_INFO" NCLOB, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."ID" IS '主键(自增策略)'; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."USER_ID" IS '关联的用户编号'; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."USER_TYPE" IS '用户类型'; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."TYPE" IS '社交平台的类型'; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."OPENID" IS '社交 openid'; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."TOKEN" IS '社交 token'; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."UNION_ID" IS '社交的全局编号'; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."RAW_TOKEN_INFO" IS '原始 Token 数据,一般是 JSON 格式'; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."NICKNAME" IS '用户昵称'; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."AVATAR" IS '用户头像'; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."RAW_USER_INFO" IS '原始用户数据,一般是 JSON 格式'; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "SYSTEM_SOCIAL_USER"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_SOCIAL_USER" IS '社交用户'; + +-- ---------------------------- +-- Records of SYSTEM_SOCIAL_USER +-- ---------------------------- +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_TENANT +-- ---------------------------- +DROP TABLE "SYSTEM_TENANT"; +CREATE TABLE "SYSTEM_TENANT" ( + "ID" NUMBER(20,0) NOT NULL, + "NAME" NVARCHAR2(30), + "CONTACT_USER_ID" NUMBER(20,0), + "CONTACT_NAME" NVARCHAR2(30), + "CONTACT_MOBILE" NVARCHAR2(500), + "STATUS" NUMBER(4,0) NOT NULL, + "DOMAIN" NVARCHAR2(256), + "PACKAGE_ID" NUMBER(20,0) NOT NULL, + "EXPIRE_TIME" DATE NOT NULL, + "ACCOUNT_COUNT" NUMBER(11,0) NOT NULL, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_TENANT"."ID" IS '租户编号'; +COMMENT ON COLUMN "SYSTEM_TENANT"."NAME" IS '租户名'; +COMMENT ON COLUMN "SYSTEM_TENANT"."CONTACT_USER_ID" IS '联系人的用户编号'; +COMMENT ON COLUMN "SYSTEM_TENANT"."CONTACT_NAME" IS '联系人'; +COMMENT ON COLUMN "SYSTEM_TENANT"."CONTACT_MOBILE" IS '联系手机'; +COMMENT ON COLUMN "SYSTEM_TENANT"."STATUS" IS '租户状态(0正常 1停用)'; +COMMENT ON COLUMN "SYSTEM_TENANT"."DOMAIN" IS '绑定域名'; +COMMENT ON COLUMN "SYSTEM_TENANT"."PACKAGE_ID" IS '租户套餐编号'; +COMMENT ON COLUMN "SYSTEM_TENANT"."EXPIRE_TIME" IS '过期时间'; +COMMENT ON COLUMN "SYSTEM_TENANT"."ACCOUNT_COUNT" IS '账号数量'; +COMMENT ON COLUMN "SYSTEM_TENANT"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_TENANT"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_TENANT"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_TENANT"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_TENANT"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_TENANT" IS '租户表'; + +-- ---------------------------- +-- Records of SYSTEM_TENANT +-- ---------------------------- +INSERT INTO "SYSTEM_TENANT" ("ID", "NAME", "CONTACT_USER_ID", "CONTACT_NAME", "CONTACT_MOBILE", "STATUS", "DOMAIN", "PACKAGE_ID", "EXPIRE_TIME", "ACCOUNT_COUNT", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('1', '芋道源码', NULL, '芋艿', '17321315478', '0', 'https://www.iocoder.cn', '0', TO_DATE('2099-02-19 17:14:16', 'SYYYY-MM-DD HH24:MI:SS'), '9999', '1', TO_DATE('2021-01-05 17:03:47', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 12:15:11', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_TENANT" ("ID", "NAME", "CONTACT_USER_ID", "CONTACT_NAME", "CONTACT_MOBILE", "STATUS", "DOMAIN", "PACKAGE_ID", "EXPIRE_TIME", "ACCOUNT_COUNT", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('121', '小租户', '110', '小王2', '15601691300', '0', 'http://www.iocoder.cn', '111', TO_DATE('2024-03-11 00:00:00', 'SYYYY-MM-DD HH24:MI:SS'), '20', '1', TO_DATE('2022-02-22 00:56:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 18:37:20', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +INSERT INTO "SYSTEM_TENANT" ("ID", "NAME", "CONTACT_USER_ID", "CONTACT_NAME", "CONTACT_MOBILE", "STATUS", "DOMAIN", "PACKAGE_ID", "EXPIRE_TIME", "ACCOUNT_COUNT", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('122', '测试租户', '113', '芋道', '15601691300', '0', 'https://www.iocoder.cn', '111', TO_DATE('2022-04-30 00:00:00', 'SYYYY-MM-DD HH24:MI:SS'), '50', '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_TENANT_PACKAGE +-- ---------------------------- +DROP TABLE "SYSTEM_TENANT_PACKAGE"; +CREATE TABLE "SYSTEM_TENANT_PACKAGE" ( + "ID" NUMBER(20,0) NOT NULL, + "NAME" NVARCHAR2(30), + "STATUS" NUMBER(4,0) NOT NULL, + "REMARK" NVARCHAR2(256), + "MENU_IDS" NCLOB, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "DELETED" NUMBER(4,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_TENANT_PACKAGE"."ID" IS '套餐编号'; +COMMENT ON COLUMN "SYSTEM_TENANT_PACKAGE"."NAME" IS '套餐名'; +COMMENT ON COLUMN "SYSTEM_TENANT_PACKAGE"."STATUS" IS '租户状态(0正常 1停用)'; +COMMENT ON COLUMN "SYSTEM_TENANT_PACKAGE"."REMARK" IS '备注'; +COMMENT ON COLUMN "SYSTEM_TENANT_PACKAGE"."MENU_IDS" IS '关联的菜单编号'; +COMMENT ON COLUMN "SYSTEM_TENANT_PACKAGE"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_TENANT_PACKAGE"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_TENANT_PACKAGE"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_TENANT_PACKAGE"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_TENANT_PACKAGE"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_TENANT_PACKAGE" IS '租户套餐表'; + +-- ---------------------------- +-- Records of SYSTEM_TENANT_PACKAGE +-- ---------------------------- +INSERT INTO "SYSTEM_TENANT_PACKAGE" ("ID", "NAME", "STATUS", "REMARK", "MENU_IDS", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "DELETED") VALUES ('111', '普通套餐', '0', '小功能', '[1024,1025,1,102,103,104,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023]', '1', TO_DATE('2022-02-22 00:54:00', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 18:39:13', 'SYYYY-MM-DD HH24:MI:SS'), '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_USER +-- ---------------------------- +DROP TABLE "SYSTEM_USER"; +CREATE TABLE "SYSTEM_USER" ( + "ID" NUMBER(20,0) NOT NULL, + "USERNAME" NVARCHAR2(30), + "PASSWORD" NVARCHAR2(100), + "NICKNAME" NVARCHAR2(30), + "REMARK" NVARCHAR2(500), + "DEPT_ID" NUMBER(20,0), + "POST_IDS" NVARCHAR2(255), + "EMAIL" NVARCHAR2(50), + "MOBILE" NVARCHAR2(11), + "SEX" NUMBER(4,0), + "AVATAR" NVARCHAR2(100), + "STATUS" NUMBER(4,0) NOT NULL, + "LOGIN_IP" NVARCHAR2(50), + "LOGIN_DATE" DATE, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_USER"."ID" IS '用户ID'; +COMMENT ON COLUMN "SYSTEM_USER"."USERNAME" IS '用户账号'; +COMMENT ON COLUMN "SYSTEM_USER"."PASSWORD" IS '密码'; +COMMENT ON COLUMN "SYSTEM_USER"."NICKNAME" IS '用户昵称'; +COMMENT ON COLUMN "SYSTEM_USER"."REMARK" IS '备注'; +COMMENT ON COLUMN "SYSTEM_USER"."DEPT_ID" IS '部门ID'; +COMMENT ON COLUMN "SYSTEM_USER"."POST_IDS" IS '岗位编号数组'; +COMMENT ON COLUMN "SYSTEM_USER"."EMAIL" IS '用户邮箱'; +COMMENT ON COLUMN "SYSTEM_USER"."MOBILE" IS '手机号码'; +COMMENT ON COLUMN "SYSTEM_USER"."SEX" IS '用户性别'; +COMMENT ON COLUMN "SYSTEM_USER"."AVATAR" IS '头像地址'; +COMMENT ON COLUMN "SYSTEM_USER"."STATUS" IS '帐号状态(0正常 1停用)'; +COMMENT ON COLUMN "SYSTEM_USER"."LOGIN_IP" IS '最后登录IP'; +COMMENT ON COLUMN "SYSTEM_USER"."LOGIN_DATE" IS '最后登录时间'; +COMMENT ON COLUMN "SYSTEM_USER"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_USER"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_USER"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_USER"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_USER"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "SYSTEM_USER"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_USER" IS '用户信息表'; + +-- ---------------------------- +-- Records of SYSTEM_USER +-- ---------------------------- +INSERT INTO "SYSTEM_USER" ("ID", "USERNAME", "PASSWORD", "NICKNAME", "REMARK", "DEPT_ID", "POST_IDS", "EMAIL", "MOBILE", "SEX", "AVATAR", "STATUS", "LOGIN_IP", "LOGIN_DATE", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('115', 'anzhen', '$2a$10$Qr2lBUuwvDMb98p/o7iSPuHb7GRi4zPHSq4g01ETuY.l4O5txXfvi', 'anzhen', NULL, '100', '[]', NULL, NULL, NULL, NULL, '0', NULL, NULL, '1', TO_DATE('2022-03-24 18:50:59', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-24 18:50:59', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_USER" ("ID", "USERNAME", "PASSWORD", "NICKNAME", "REMARK", "DEPT_ID", "POST_IDS", "EMAIL", "MOBILE", "SEX", "AVATAR", "STATUS", "LOGIN_IP", "LOGIN_DATE", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1', 'admin', '$2a$10$0acJOIk2D25/oC87nyclE..0lzeu9DtQ/n3geP4fkun/zIVRhHJIO', '芋道源码', '管理员', '103', '[1]', 'aoteman@126.com', '15612345678', '1', 'http://test.yudao.iocoder.cn/a294ecb2-73dd-4353-bf40-296b8931d0bf', '0', '127.0.0.1', TO_DATE('2022-05-01 20:11:47', 'SYYYY-MM-DD HH24:MI:SS'), 'admin', TO_DATE('2021-01-05 17:03:47', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-05-01 20:11:47', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_USER" ("ID", "USERNAME", "PASSWORD", "NICKNAME", "REMARK", "DEPT_ID", "POST_IDS", "EMAIL", "MOBILE", "SEX", "AVATAR", "STATUS", "LOGIN_IP", "LOGIN_DATE", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('100', 'yudao', '$2a$10$11U48RhyJ5pSBYWSn12AD./ld671.ycSzJHbyrtpeoMeYiw31eo8a', '芋道', '不要吓我', '104', '[1]', 'yudao@iocoder.cn', '15601691300', '1', NULL, '1', NULL, NULL, NULL, TO_DATE('2021-01-07 09:07:17', 'SYYYY-MM-DD HH24:MI:SS'), '104', TO_DATE('2021-12-16 09:26:10', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_USER" ("ID", "USERNAME", "PASSWORD", "NICKNAME", "REMARK", "DEPT_ID", "POST_IDS", "EMAIL", "MOBILE", "SEX", "AVATAR", "STATUS", "LOGIN_IP", "LOGIN_DATE", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('103', 'yuanma', '$2a$10$wWoPT7sqriM2O1YXRL.je.GiL538OR6ZTN8aQZr9JAGdnpCH2tpYe', '源码', NULL, '106', NULL, 'yuanma@iocoder.cn', '15601701300', '0', NULL, '0', '127.0.0.1', TO_DATE('2022-01-18 00:33:40', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-13 23:50:35', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-01-18 00:33:40', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_USER" ("ID", "USERNAME", "PASSWORD", "NICKNAME", "REMARK", "DEPT_ID", "POST_IDS", "EMAIL", "MOBILE", "SEX", "AVATAR", "STATUS", "LOGIN_IP", "LOGIN_DATE", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('104', 'test', '$2a$10$e5RpuDCC0GYSt0Hvd2.CjujIXwgGct4SnXi6dVGxdgFsnqgEryk5a', '测试号', NULL, '107', '[]', '111@qq.com', '15601691200', '1', NULL, '0', '127.0.0.1', TO_DATE('2022-03-19 21:46:19', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2021-01-21 02:13:53', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-03-19 21:46:19', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_USER" ("ID", "USERNAME", "PASSWORD", "NICKNAME", "REMARK", "DEPT_ID", "POST_IDS", "EMAIL", "MOBILE", "SEX", "AVATAR", "STATUS", "LOGIN_IP", "LOGIN_DATE", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('107', 'admin107', '$2a$10$dYOOBKMO93v/.ReCqzyFg.o67Tqk.bbc2bhrpyBGkIw9aypCtr2pm', '芋艿', NULL, NULL, NULL, NULL, '15601691300', '0', NULL, '0', NULL, NULL, '1', TO_DATE('2022-02-20 22:59:33', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-27 08:26:51', 'SYYYY-MM-DD HH24:MI:SS'), '118', '0'); +INSERT INTO "SYSTEM_USER" ("ID", "USERNAME", "PASSWORD", "NICKNAME", "REMARK", "DEPT_ID", "POST_IDS", "EMAIL", "MOBILE", "SEX", "AVATAR", "STATUS", "LOGIN_IP", "LOGIN_DATE", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('108', 'admin108', '$2a$10$y6mfvKoNYL1GXWak8nYwVOH.kCWqjactkzdoIDgiKl93WN3Ejg.Lu', '芋艿', NULL, NULL, NULL, NULL, '15601691300', '0', NULL, '0', NULL, NULL, '1', TO_DATE('2022-02-20 23:00:50', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-27 08:26:53', 'SYYYY-MM-DD HH24:MI:SS'), '119', '0'); +INSERT INTO "SYSTEM_USER" ("ID", "USERNAME", "PASSWORD", "NICKNAME", "REMARK", "DEPT_ID", "POST_IDS", "EMAIL", "MOBILE", "SEX", "AVATAR", "STATUS", "LOGIN_IP", "LOGIN_DATE", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('109', 'admin109', '$2a$10$JAqvH0tEc0I7dfDVBI7zyuB4E3j.uH6daIjV53.vUS6PknFkDJkuK', '芋艿', NULL, NULL, NULL, NULL, '15601691300', '0', NULL, '0', NULL, NULL, '1', TO_DATE('2022-02-20 23:11:50', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-27 08:26:56', 'SYYYY-MM-DD HH24:MI:SS'), '120', '0'); +INSERT INTO "SYSTEM_USER" ("ID", "USERNAME", "PASSWORD", "NICKNAME", "REMARK", "DEPT_ID", "POST_IDS", "EMAIL", "MOBILE", "SEX", "AVATAR", "STATUS", "LOGIN_IP", "LOGIN_DATE", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('110', 'admin110', '$2a$10$qYxoXs0ogPHgYllyEneYde9xcCW5hZgukrxeXZ9lmLhKse8TK6IwW', '小王', NULL, NULL, NULL, NULL, '15601691300', '0', NULL, '0', '127.0.0.1', TO_DATE('2022-02-23 19:36:28', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 00:56:14', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-02-27 08:26:59', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_USER" ("ID", "USERNAME", "PASSWORD", "NICKNAME", "REMARK", "DEPT_ID", "POST_IDS", "EMAIL", "MOBILE", "SEX", "AVATAR", "STATUS", "LOGIN_IP", "LOGIN_DATE", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('111', 'test', '$2a$10$mExveopHUx9Q4QiLtAzhDeH3n4/QlNLzEsM4AqgxKrU.ciUZDXZCy', '测试用户', NULL, NULL, '[]', NULL, NULL, '0', NULL, '0', NULL, NULL, '110', TO_DATE('2022-02-23 13:14:33', 'SYYYY-MM-DD HH24:MI:SS'), '110', TO_DATE('2022-02-23 13:14:33', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_USER" ("ID", "USERNAME", "PASSWORD", "NICKNAME", "REMARK", "DEPT_ID", "POST_IDS", "EMAIL", "MOBILE", "SEX", "AVATAR", "STATUS", "LOGIN_IP", "LOGIN_DATE", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('112', 'newobject', '$2a$10$jh5MsR.ud/gKe3mVeUp5t.nEXGDSmHyv5OYjWQwHO8wlGmMSI9Twy', '新对象', NULL, NULL, '[]', NULL, NULL, '0', NULL, '0', NULL, NULL, '1', TO_DATE('2022-02-23 19:08:03', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-23 19:08:03', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_USER" ("ID", "USERNAME", "PASSWORD", "NICKNAME", "REMARK", "DEPT_ID", "POST_IDS", "EMAIL", "MOBILE", "SEX", "AVATAR", "STATUS", "LOGIN_IP", "LOGIN_DATE", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('113', 'aoteman', '$2a$10$0acJOIk2D25/oC87nyclE..0lzeu9DtQ/n3geP4fkun/zIVRhHJIO', '芋道', NULL, NULL, NULL, NULL, '15601691300', '0', NULL, '0', '127.0.0.1', TO_DATE('2022-03-19 18:38:51', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), NULL, TO_DATE('2022-03-19 18:38:51', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_USER" ("ID", "USERNAME", "PASSWORD", "NICKNAME", "REMARK", "DEPT_ID", "POST_IDS", "EMAIL", "MOBILE", "SEX", "AVATAR", "STATUS", "LOGIN_IP", "LOGIN_DATE", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('114', 'hrmgr', '$2a$10$TR4eybBioGRhBmDBWkqWLO6NIh3mzYa8KBKDDB5woiGYFVlRAi.fu', 'hr 小姐姐', NULL, NULL, '[3]', NULL, NULL, '0', NULL, '0', '127.0.0.1', TO_DATE('2022-03-19 22:15:43', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:50:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-05-01 01:08:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_USER" ("ID", "USERNAME", "PASSWORD", "NICKNAME", "REMARK", "DEPT_ID", "POST_IDS", "EMAIL", "MOBILE", "SEX", "AVATAR", "STATUS", "LOGIN_IP", "LOGIN_DATE", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('0', 'admin2', '$2a$10$KYL8IPJPIzuZWfOgPqOuU.VeZqWistCv5pxtoaq2SwPBDgBR4uh6G', '123', NULL, NULL, '[]', NULL, NULL, NULL, NULL, '0', NULL, NULL, '1', TO_DATE('2022-05-01 01:05:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-05-01 01:05:12', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_USER_ROLE +-- ---------------------------- +DROP TABLE "SYSTEM_USER_ROLE"; +CREATE TABLE "SYSTEM_USER_ROLE" ( + "ID" NUMBER(20,0) NOT NULL, + "USER_ID" NUMBER(20,0) NOT NULL, + "ROLE_ID" NUMBER(20,0) NOT NULL, + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_USER_ROLE"."ID" IS '自增编号'; +COMMENT ON COLUMN "SYSTEM_USER_ROLE"."USER_ID" IS '用户ID'; +COMMENT ON COLUMN "SYSTEM_USER_ROLE"."ROLE_ID" IS '角色ID'; +COMMENT ON COLUMN "SYSTEM_USER_ROLE"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_USER_ROLE"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_USER_ROLE"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_USER_ROLE"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_USER_ROLE"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "SYSTEM_USER_ROLE"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_USER_ROLE" IS '用户和角色关联表'; + +-- ---------------------------- +-- Records of SYSTEM_USER_ROLE +-- ---------------------------- +INSERT INTO "SYSTEM_USER_ROLE" ("ID", "USER_ID", "ROLE_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('1', '1', '1', NULL, NULL, NULL, NULL, '1', '0'); +INSERT INTO "SYSTEM_USER_ROLE" ("ID", "USER_ID", "ROLE_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('2', '2', '2', NULL, NULL, NULL, NULL, '1', '0'); +INSERT INTO "SYSTEM_USER_ROLE" ("ID", "USER_ID", "ROLE_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('4', '100', '101', NULL, NULL, NULL, NULL, '1', '0'); +INSERT INTO "SYSTEM_USER_ROLE" ("ID", "USER_ID", "ROLE_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('5', '100', '1', NULL, NULL, NULL, NULL, '1', '0'); +INSERT INTO "SYSTEM_USER_ROLE" ("ID", "USER_ID", "ROLE_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('6', '100', '2', NULL, NULL, NULL, NULL, '1', '0'); +INSERT INTO "SYSTEM_USER_ROLE" ("ID", "USER_ID", "ROLE_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('7', '104', '101', NULL, NULL, NULL, NULL, '1', '0'); +INSERT INTO "SYSTEM_USER_ROLE" ("ID", "USER_ID", "ROLE_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('10', '103', '1', '1', TO_DATE('2022-01-11 13:19:45', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-01-11 13:19:45', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +INSERT INTO "SYSTEM_USER_ROLE" ("ID", "USER_ID", "ROLE_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('11', '107', '106', '1', TO_DATE('2022-02-20 22:59:33', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-20 22:59:33', 'SYYYY-MM-DD HH24:MI:SS'), '118', '0'); +INSERT INTO "SYSTEM_USER_ROLE" ("ID", "USER_ID", "ROLE_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('12', '108', '107', '1', TO_DATE('2022-02-20 23:00:50', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-20 23:00:50', 'SYYYY-MM-DD HH24:MI:SS'), '119', '0'); +INSERT INTO "SYSTEM_USER_ROLE" ("ID", "USER_ID", "ROLE_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('13', '109', '108', '1', TO_DATE('2022-02-20 23:11:50', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-20 23:11:50', 'SYYYY-MM-DD HH24:MI:SS'), '120', '0'); +INSERT INTO "SYSTEM_USER_ROLE" ("ID", "USER_ID", "ROLE_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('14', '110', '109', '1', TO_DATE('2022-02-22 00:56:14', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-02-22 00:56:14', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_USER_ROLE" ("ID", "USER_ID", "ROLE_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('15', '111', '110', '110', TO_DATE('2022-02-23 13:14:38', 'SYYYY-MM-DD HH24:MI:SS'), '110', TO_DATE('2022-02-23 13:14:38', 'SYYYY-MM-DD HH24:MI:SS'), '121', '0'); +INSERT INTO "SYSTEM_USER_ROLE" ("ID", "USER_ID", "ROLE_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('16', '113', '111', '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-07 21:37:58', 'SYYYY-MM-DD HH24:MI:SS'), '122', '0'); +INSERT INTO "SYSTEM_USER_ROLE" ("ID", "USER_ID", "ROLE_ID", "CREATOR", "CREATE_TIME", "UPDATER", "UPDATE_TIME", "TENANT_ID", "DELETED") VALUES ('17', '114', '101', '1', TO_DATE('2022-03-19 21:51:13', 'SYYYY-MM-DD HH24:MI:SS'), '1', TO_DATE('2022-03-19 21:51:13', 'SYYYY-MM-DD HH24:MI:SS'), '1', '0'); +COMMIT; +COMMIT; + +-- ---------------------------- +-- Table structure for SYSTEM_USER_SESSION +-- ---------------------------- +DROP TABLE "SYSTEM_USER_SESSION"; +CREATE TABLE "SYSTEM_USER_SESSION" ( + "ID" NVARCHAR2(32) NOT NULL, + "USER_ID" NUMBER(20,0) NOT NULL, + "USER_TYPE" NUMBER(4,0) NOT NULL, + "SESSION_TIMEOUT" DATE NOT NULL, + "USERNAME" NVARCHAR2(30), + "USER_IP" NVARCHAR2(50), + "USER_AGENT" NVARCHAR2(512), + "CREATOR" NVARCHAR2(64), + "CREATE_TIME" DATE NOT NULL, + "UPDATER" NVARCHAR2(64), + "UPDATE_TIME" DATE NOT NULL, + "TENANT_ID" NUMBER(20,0) NOT NULL, + "DELETED" NUMBER(1,0) DEFAULT 0 NOT NULL +) +LOGGING +NOCOMPRESS +PCTFREE 10 +INITRANS 1 +STORAGE ( + INITIAL 65536 + NEXT 1048576 + MINEXTENTS 1 + MAXEXTENTS 2147483645 + FREELISTS 1 + FREELIST GROUPS 1 + BUFFER_POOL DEFAULT +) +PARALLEL 1 +NOCACHE +DISABLE ROW MOVEMENT +; +COMMENT ON COLUMN "SYSTEM_USER_SESSION"."ID" IS '会话编号'; +COMMENT ON COLUMN "SYSTEM_USER_SESSION"."USER_ID" IS '用户编号'; +COMMENT ON COLUMN "SYSTEM_USER_SESSION"."USER_TYPE" IS '用户类型'; +COMMENT ON COLUMN "SYSTEM_USER_SESSION"."SESSION_TIMEOUT" IS '会话超时时间'; +COMMENT ON COLUMN "SYSTEM_USER_SESSION"."USERNAME" IS '用户账号'; +COMMENT ON COLUMN "SYSTEM_USER_SESSION"."USER_IP" IS '用户 IP'; +COMMENT ON COLUMN "SYSTEM_USER_SESSION"."USER_AGENT" IS '浏览器 UA'; +COMMENT ON COLUMN "SYSTEM_USER_SESSION"."CREATOR" IS '创建者'; +COMMENT ON COLUMN "SYSTEM_USER_SESSION"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "SYSTEM_USER_SESSION"."UPDATER" IS '更新者'; +COMMENT ON COLUMN "SYSTEM_USER_SESSION"."UPDATE_TIME" IS '更新时间'; +COMMENT ON COLUMN "SYSTEM_USER_SESSION"."TENANT_ID" IS '租户编号'; +COMMENT ON COLUMN "SYSTEM_USER_SESSION"."DELETED" IS '是否删除'; +COMMENT ON TABLE "SYSTEM_USER_SESSION" IS '用户在线 Session'; diff --git a/sql/postgresql/quartz.sql b/sql/postgresql/quartz.sql deleted file mode 100644 index c19ad09f7..000000000 --- a/sql/postgresql/quartz.sql +++ /dev/null @@ -1,453 +0,0 @@ -/* - Navicat Premium Data Transfer - - Source Server : 127.0.0.1 PostgreSQL - Source Server Type : PostgreSQL - Source Server Version : 140002 - Source Host : 127.0.0.1:5432 - Source Catalog : ruoyi-vue-pro - Source Schema : public - - Target Server Type : PostgreSQL - Target Server Version : 140002 - File Encoding : 65001 - - Date: 30/04/2022 23:06:11 -*/ - - --- ---------------------------- --- Table structure for qrtz_blob_triggers --- ---------------------------- -DROP TABLE IF EXISTS "public"."qrtz_blob_triggers"; -CREATE TABLE "public"."qrtz_blob_triggers" ( - "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, - "trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "blob_data" bytea -) -; -ALTER TABLE "public"."qrtz_blob_triggers" OWNER TO "postgres"; - --- ---------------------------- --- Records of qrtz_blob_triggers --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for qrtz_calendars --- ---------------------------- -DROP TABLE IF EXISTS "public"."qrtz_calendars"; -CREATE TABLE "public"."qrtz_calendars" ( - "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, - "calendar_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "calendar" bytea NOT NULL -) -; -ALTER TABLE "public"."qrtz_calendars" OWNER TO "postgres"; - --- ---------------------------- --- Records of qrtz_calendars --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for qrtz_cron_triggers --- ---------------------------- -DROP TABLE IF EXISTS "public"."qrtz_cron_triggers"; -CREATE TABLE "public"."qrtz_cron_triggers" ( - "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, - "trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "cron_expression" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, - "time_zone_id" varchar(80) COLLATE "pg_catalog"."default" -) -; -ALTER TABLE "public"."qrtz_cron_triggers" OWNER TO "postgres"; - --- ---------------------------- --- Records of qrtz_cron_triggers --- ---------------------------- -BEGIN; -INSERT INTO "public"."qrtz_cron_triggers" ("sched_name", "trigger_name", "trigger_group", "cron_expression", "time_zone_id") VALUES ('schedulerName', 'userSessionTimeoutJob', 'DEFAULT', '0 * * * * ? *', 'Asia/Shanghai'); -COMMIT; - --- ---------------------------- --- Table structure for qrtz_fired_triggers --- ---------------------------- -DROP TABLE IF EXISTS "public"."qrtz_fired_triggers"; -CREATE TABLE "public"."qrtz_fired_triggers" ( - "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, - "entry_id" varchar(95) COLLATE "pg_catalog"."default" NOT NULL, - "trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "instance_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "fired_time" int8 NOT NULL, - "sched_time" int8 NOT NULL, - "priority" int4 NOT NULL, - "state" varchar(16) COLLATE "pg_catalog"."default" NOT NULL, - "job_name" varchar(200) COLLATE "pg_catalog"."default", - "job_group" varchar(200) COLLATE "pg_catalog"."default", - "is_nonconcurrent" bool, - "requests_recovery" bool -) -; -ALTER TABLE "public"."qrtz_fired_triggers" OWNER TO "postgres"; - --- ---------------------------- --- Records of qrtz_fired_triggers --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for qrtz_job_details --- ---------------------------- -DROP TABLE IF EXISTS "public"."qrtz_job_details"; -CREATE TABLE "public"."qrtz_job_details" ( - "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, - "job_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "job_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "description" varchar(250) COLLATE "pg_catalog"."default", - "job_class_name" varchar(250) COLLATE "pg_catalog"."default" NOT NULL, - "is_durable" bool NOT NULL, - "is_nonconcurrent" bool NOT NULL, - "is_update_data" bool NOT NULL, - "requests_recovery" bool NOT NULL, - "job_data" bytea -) -; -ALTER TABLE "public"."qrtz_job_details" OWNER TO "postgres"; - --- ---------------------------- --- Records of qrtz_job_details --- ---------------------------- -BEGIN; -INSERT INTO "public"."qrtz_job_details" ("sched_name", "job_name", "job_group", "description", "job_class_name", "is_durable", "is_nonconcurrent", "is_update_data", "requests_recovery", "job_data") VALUES ('schedulerName', 'userSessionTimeoutJob', 'DEFAULT', NULL, 'cn.iocoder.yudao.framework.quartz.core.handler.JobHandlerInvoker', 'f', 't', 't', 'f', E'\\254\\355\\000\\005sr\\000\\025org.quartz.JobDataMap\\237\\260\\203\\350\\277\\251\\260\\313\\002\\000\\000xr\\000&org.quartz.utils.StringKeyDirtyFlagMap\\202\\010\\350\\303\\373\\305](\\002\\000\\001Z\\000\\023allowsTransientDataxr\\000\\035org.quartz.utils.DirtyFlagMap\\023\\346.\\255(v\\012\\316\\002\\000\\002Z\\000\\005dirtyL\\000\\003mapt\\000\\017Ljava/util/Map;xp\\001sr\\000\\021java.util.HashMap\\005\\007\\332\\301\\303\\026`\\321\\003\\000\\002F\\000\\012loadFactorI\\000\\011thresholdxp?@\\000\\000\\000\\000\\000\\014w\\010\\000\\000\\000\\020\\000\\000\\000\\002t\\000\\006JOB_IDsr\\000\\016java.lang.Long;\\213\\344\\220\\314\\217#\\337\\002\\000\\001J\\000\\005valuexr\\000\\020java.lang.Number\\206\\254\\225\\035\\013\\224\\340\\213\\002\\000\\000xp\\000\\000\\000\\000\\000\\000\\000\\002t\\000\\020JOB_HANDLER_NAMEt\\000\\025userSessionTimeoutJobx\\000'); -COMMIT; - --- ---------------------------- --- Table structure for qrtz_locks --- ---------------------------- -DROP TABLE IF EXISTS "public"."qrtz_locks"; -CREATE TABLE "public"."qrtz_locks" ( - "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, - "lock_name" varchar(40) COLLATE "pg_catalog"."default" NOT NULL -) -; -ALTER TABLE "public"."qrtz_locks" OWNER TO "postgres"; - --- ---------------------------- --- Records of qrtz_locks --- ---------------------------- -BEGIN; -INSERT INTO "public"."qrtz_locks" ("sched_name", "lock_name") VALUES ('schedulerName', 'TRIGGER_ACCESS'); -INSERT INTO "public"."qrtz_locks" ("sched_name", "lock_name") VALUES ('schedulerName', 'STATE_ACCESS'); -COMMIT; - --- ---------------------------- --- Table structure for qrtz_paused_trigger_grps --- ---------------------------- -DROP TABLE IF EXISTS "public"."qrtz_paused_trigger_grps"; -CREATE TABLE "public"."qrtz_paused_trigger_grps" ( - "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, - "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL -) -; -ALTER TABLE "public"."qrtz_paused_trigger_grps" OWNER TO "postgres"; - --- ---------------------------- --- Records of qrtz_paused_trigger_grps --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for qrtz_scheduler_state --- ---------------------------- -DROP TABLE IF EXISTS "public"."qrtz_scheduler_state"; -CREATE TABLE "public"."qrtz_scheduler_state" ( - "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, - "instance_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "last_checkin_time" int8 NOT NULL, - "checkin_interval" int8 NOT NULL -) -; -ALTER TABLE "public"."qrtz_scheduler_state" OWNER TO "postgres"; - --- ---------------------------- --- Records of qrtz_scheduler_state --- ---------------------------- -BEGIN; -INSERT INTO "public"."qrtz_scheduler_state" ("sched_name", "instance_name", "last_checkin_time", "checkin_interval") VALUES ('schedulerName', 'Yunai.local1651328569660', 1651328650075, 15000); -COMMIT; - --- ---------------------------- --- Table structure for qrtz_simple_triggers --- ---------------------------- -DROP TABLE IF EXISTS "public"."qrtz_simple_triggers"; -CREATE TABLE "public"."qrtz_simple_triggers" ( - "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, - "trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "repeat_count" int8 NOT NULL, - "repeat_interval" int8 NOT NULL, - "times_triggered" int8 NOT NULL -) -; -ALTER TABLE "public"."qrtz_simple_triggers" OWNER TO "postgres"; - --- ---------------------------- --- Records of qrtz_simple_triggers --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for qrtz_simprop_triggers --- ---------------------------- -DROP TABLE IF EXISTS "public"."qrtz_simprop_triggers"; -CREATE TABLE "public"."qrtz_simprop_triggers" ( - "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, - "trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "str_prop_1" varchar(512) COLLATE "pg_catalog"."default", - "str_prop_2" varchar(512) COLLATE "pg_catalog"."default", - "str_prop_3" varchar(512) COLLATE "pg_catalog"."default", - "int_prop_1" int4, - "int_prop_2" int4, - "long_prop_1" int8, - "long_prop_2" int8, - "dec_prop_1" numeric(13,4), - "dec_prop_2" numeric(13,4), - "bool_prop_1" bool, - "bool_prop_2" bool -) -; -ALTER TABLE "public"."qrtz_simprop_triggers" OWNER TO "postgres"; - --- ---------------------------- --- Records of qrtz_simprop_triggers --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for qrtz_triggers --- ---------------------------- -DROP TABLE IF EXISTS "public"."qrtz_triggers"; -CREATE TABLE "public"."qrtz_triggers" ( - "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, - "trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "job_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "job_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "description" varchar(250) COLLATE "pg_catalog"."default", - "next_fire_time" int8, - "prev_fire_time" int8, - "priority" int4, - "trigger_state" varchar(16) COLLATE "pg_catalog"."default" NOT NULL, - "trigger_type" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, - "start_time" int8 NOT NULL, - "end_time" int8, - "calendar_name" varchar(200) COLLATE "pg_catalog"."default", - "misfire_instr" int2, - "job_data" bytea -) -; -ALTER TABLE "public"."qrtz_triggers" OWNER TO "postgres"; - --- ---------------------------- --- Records of qrtz_triggers --- ---------------------------- -BEGIN; -INSERT INTO "public"."qrtz_triggers" ("sched_name", "trigger_name", "trigger_group", "job_name", "job_group", "description", "next_fire_time", "prev_fire_time", "priority", "trigger_state", "trigger_type", "start_time", "end_time", "calendar_name", "misfire_instr", "job_data") VALUES ('schedulerName', 'userSessionTimeoutJob', 'DEFAULT', 'userSessionTimeoutJob', 'DEFAULT', NULL, 1651328700000, 1651328640000, 5, 'WAITING', 'CRON', 1651328526000, 0, NULL, 0, E'\\254\\355\\000\\005sr\\000\\025org.quartz.JobDataMap\\237\\260\\203\\350\\277\\251\\260\\313\\002\\000\\000xr\\000&org.quartz.utils.StringKeyDirtyFlagMap\\202\\010\\350\\303\\373\\305](\\002\\000\\001Z\\000\\023allowsTransientDataxr\\000\\035org.quartz.utils.DirtyFlagMap\\023\\346.\\255(v\\012\\316\\002\\000\\002Z\\000\\005dirtyL\\000\\003mapt\\000\\017Ljava/util/Map;xp\\001sr\\000\\021java.util.HashMap\\005\\007\\332\\301\\303\\026`\\321\\003\\000\\002F\\000\\012loadFactorI\\000\\011thresholdxp?@\\000\\000\\000\\000\\000\\014w\\010\\000\\000\\000\\020\\000\\000\\000\\003t\\000\\021JOB_HANDLER_PARAMpt\\000\\022JOB_RETRY_INTERVALsr\\000\\021java.lang.Integer\\022\\342\\240\\244\\367\\201\\2078\\002\\000\\001I\\000\\005valuexr\\000\\020java.lang.Number\\206\\254\\225\\035\\013\\224\\340\\213\\002\\000\\000xp\\000\\000\\007\\320t\\000\\017JOB_RETRY_COUNTsq\\000~\\000\\011\\000\\000\\000\\003x\\000'); -COMMIT; - --- ---------------------------- --- Primary Key structure for table qrtz_blob_triggers --- ---------------------------- -ALTER TABLE "public"."qrtz_blob_triggers" ADD CONSTRAINT "qrtz_blob_triggers_pkey" PRIMARY KEY ("sched_name", "trigger_name", "trigger_group"); - --- ---------------------------- --- Primary Key structure for table qrtz_calendars --- ---------------------------- -ALTER TABLE "public"."qrtz_calendars" ADD CONSTRAINT "qrtz_calendars_pkey" PRIMARY KEY ("sched_name", "calendar_name"); - --- ---------------------------- --- Primary Key structure for table qrtz_cron_triggers --- ---------------------------- -ALTER TABLE "public"."qrtz_cron_triggers" ADD CONSTRAINT "qrtz_cron_triggers_pkey" PRIMARY KEY ("sched_name", "trigger_name", "trigger_group"); - --- ---------------------------- --- Indexes structure for table qrtz_fired_triggers --- ---------------------------- -CREATE INDEX "idx_qrtz_ft_inst_job_req_rcvry" ON "public"."qrtz_fired_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "instance_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "requests_recovery" "pg_catalog"."bool_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_ft_j_g" ON "public"."qrtz_fired_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "job_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "job_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_ft_jg" ON "public"."qrtz_fired_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "job_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_ft_t_g" ON "public"."qrtz_fired_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "trigger_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_ft_tg" ON "public"."qrtz_fired_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_ft_trig_inst_name" ON "public"."qrtz_fired_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "instance_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST -); - --- ---------------------------- --- Primary Key structure for table qrtz_fired_triggers --- ---------------------------- -ALTER TABLE "public"."qrtz_fired_triggers" ADD CONSTRAINT "qrtz_fired_triggers_pkey" PRIMARY KEY ("sched_name", "entry_id"); - --- ---------------------------- --- Indexes structure for table qrtz_job_details --- ---------------------------- -CREATE INDEX "idx_qrtz_j_grp" ON "public"."qrtz_job_details" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "job_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_j_req_recovery" ON "public"."qrtz_job_details" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "requests_recovery" "pg_catalog"."bool_ops" ASC NULLS LAST -); - --- ---------------------------- --- Primary Key structure for table qrtz_job_details --- ---------------------------- -ALTER TABLE "public"."qrtz_job_details" ADD CONSTRAINT "qrtz_job_details_pkey" PRIMARY KEY ("sched_name", "job_name", "job_group"); - --- ---------------------------- --- Primary Key structure for table qrtz_locks --- ---------------------------- -ALTER TABLE "public"."qrtz_locks" ADD CONSTRAINT "qrtz_locks_pkey" PRIMARY KEY ("sched_name", "lock_name"); - --- ---------------------------- --- Primary Key structure for table qrtz_paused_trigger_grps --- ---------------------------- -ALTER TABLE "public"."qrtz_paused_trigger_grps" ADD CONSTRAINT "qrtz_paused_trigger_grps_pkey" PRIMARY KEY ("sched_name", "trigger_group"); - --- ---------------------------- --- Primary Key structure for table qrtz_scheduler_state --- ---------------------------- -ALTER TABLE "public"."qrtz_scheduler_state" ADD CONSTRAINT "qrtz_scheduler_state_pkey" PRIMARY KEY ("sched_name", "instance_name"); - --- ---------------------------- --- Primary Key structure for table qrtz_simple_triggers --- ---------------------------- -ALTER TABLE "public"."qrtz_simple_triggers" ADD CONSTRAINT "qrtz_simple_triggers_pkey" PRIMARY KEY ("sched_name", "trigger_name", "trigger_group"); - --- ---------------------------- --- Primary Key structure for table qrtz_simprop_triggers --- ---------------------------- -ALTER TABLE "public"."qrtz_simprop_triggers" ADD CONSTRAINT "qrtz_simprop_triggers_pkey" PRIMARY KEY ("sched_name", "trigger_name", "trigger_group"); - --- ---------------------------- --- Indexes structure for table qrtz_triggers --- ---------------------------- -CREATE INDEX "idx_qrtz_t_c" ON "public"."qrtz_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "calendar_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_t_g" ON "public"."qrtz_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_t_j" ON "public"."qrtz_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "job_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "job_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_t_jg" ON "public"."qrtz_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "job_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_t_n_g_state" ON "public"."qrtz_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_t_n_state" ON "public"."qrtz_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "trigger_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_t_next_fire_time" ON "public"."qrtz_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "next_fire_time" "pg_catalog"."int8_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_t_nft_misfire" ON "public"."qrtz_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "misfire_instr" "pg_catalog"."int2_ops" ASC NULLS LAST, - "next_fire_time" "pg_catalog"."int8_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_t_nft_st" ON "public"."qrtz_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "next_fire_time" "pg_catalog"."int8_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_t_nft_st_misfire" ON "public"."qrtz_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "misfire_instr" "pg_catalog"."int2_ops" ASC NULLS LAST, - "next_fire_time" "pg_catalog"."int8_ops" ASC NULLS LAST, - "trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_t_nft_st_misfire_grp" ON "public"."qrtz_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "misfire_instr" "pg_catalog"."int2_ops" ASC NULLS LAST, - "next_fire_time" "pg_catalog"."int8_ops" ASC NULLS LAST, - "trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST -); -CREATE INDEX "idx_qrtz_t_state" ON "public"."qrtz_triggers" USING btree ( - "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, - "trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST -); - --- ---------------------------- --- Primary Key structure for table qrtz_triggers --- ---------------------------- -ALTER TABLE "public"."qrtz_triggers" ADD CONSTRAINT "qrtz_triggers_pkey" PRIMARY KEY ("sched_name", "trigger_name", "trigger_group"); - --- ---------------------------- --- Foreign Keys structure for table qrtz_blob_triggers --- ---------------------------- -ALTER TABLE "public"."qrtz_blob_triggers" ADD CONSTRAINT "qrtz_blob_triggers_sched_name_trigger_name_trigger_group_fkey" FOREIGN KEY ("sched_name", "trigger_name", "trigger_group") REFERENCES "public"."qrtz_triggers" ("sched_name", "trigger_name", "trigger_group") ON DELETE NO ACTION ON UPDATE NO ACTION; - --- ---------------------------- --- Foreign Keys structure for table qrtz_cron_triggers --- ---------------------------- -ALTER TABLE "public"."qrtz_cron_triggers" ADD CONSTRAINT "qrtz_cron_triggers_sched_name_trigger_name_trigger_group_fkey" FOREIGN KEY ("sched_name", "trigger_name", "trigger_group") REFERENCES "public"."qrtz_triggers" ("sched_name", "trigger_name", "trigger_group") ON DELETE NO ACTION ON UPDATE NO ACTION; - --- ---------------------------- --- Foreign Keys structure for table qrtz_simple_triggers --- ---------------------------- -ALTER TABLE "public"."qrtz_simple_triggers" ADD CONSTRAINT "qrtz_simple_triggers_sched_name_trigger_name_trigger_group_fkey" FOREIGN KEY ("sched_name", "trigger_name", "trigger_group") REFERENCES "public"."qrtz_triggers" ("sched_name", "trigger_name", "trigger_group") ON DELETE NO ACTION ON UPDATE NO ACTION; - --- ---------------------------- --- Foreign Keys structure for table qrtz_simprop_triggers --- ---------------------------- -ALTER TABLE "public"."qrtz_simprop_triggers" ADD CONSTRAINT "qrtz_simprop_triggers_sched_name_trigger_name_trigger_grou_fkey" FOREIGN KEY ("sched_name", "trigger_name", "trigger_group") REFERENCES "public"."qrtz_triggers" ("sched_name", "trigger_name", "trigger_group") ON DELETE NO ACTION ON UPDATE NO ACTION; - --- ---------------------------- --- Foreign Keys structure for table qrtz_triggers --- ---------------------------- -ALTER TABLE "public"."qrtz_triggers" ADD CONSTRAINT "qrtz_triggers_sched_name_job_name_job_group_fkey" FOREIGN KEY ("sched_name", "job_name", "job_group") REFERENCES "public"."qrtz_job_details" ("sched_name", "job_name", "job_group") ON DELETE NO ACTION ON UPDATE NO ACTION; diff --git a/sql/postgresql/ruoyi-vue-pro.sql b/sql/postgresql/ruoyi-vue-pro.sql index 6cfc58e6b..3abc1a95b 100644 --- a/sql/postgresql/ruoyi-vue-pro.sql +++ b/sql/postgresql/ruoyi-vue-pro.sql @@ -12,22 +12,522 @@ Target Server Version : 140002 File Encoding : 65001 - Date: 30/04/2022 23:07:57 + Date: 01/05/2022 23:17:07 */ -- ---------------------------- --- Table structure for bpm_form +-- Sequence structure for act_evt_log_log_nr__seq -- ---------------------------- +DROP SEQUENCE IF EXISTS "act_evt_log_log_nr__seq"; +CREATE SEQUENCE "act_evt_log_log_nr__seq" +INCREMENT 1 +MINVALUE 1 +MAXVALUE 2147483647 +START 1 +CACHE 1; -DROP TABLE IF EXISTS "public"."dual"; -CREATE TABLE "public"."dual" ( +-- ---------------------------- +-- Sequence structure for act_hi_tsk_log_id__seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "act_hi_tsk_log_id__seq"; +CREATE SEQUENCE "act_hi_tsk_log_id__seq" +INCREMENT 1 +MINVALUE 1 +MAXVALUE 2147483647 +START 1 +CACHE 1; +-- ---------------------------- +-- Sequence structure for bpm_form_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "bpm_form_seq"; +CREATE SEQUENCE "bpm_form_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for bpm_oa_leave_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "bpm_oa_leave_seq"; +CREATE SEQUENCE "bpm_oa_leave_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for bpm_process_definition_ext_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "bpm_process_definition_ext_seq"; +CREATE SEQUENCE "bpm_process_definition_ext_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for bpm_process_instance_ext_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "bpm_process_instance_ext_seq"; +CREATE SEQUENCE "bpm_process_instance_ext_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for bpm_task_assign_rule_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "bpm_task_assign_rule_seq"; +CREATE SEQUENCE "bpm_task_assign_rule_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for bpm_task_ext_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "bpm_task_ext_seq"; +CREATE SEQUENCE "bpm_task_ext_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for bpm_user_group_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "bpm_user_group_seq"; +CREATE SEQUENCE "bpm_user_group_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for infra_api_access_log_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "infra_api_access_log_seq"; +CREATE SEQUENCE "infra_api_access_log_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for infra_api_error_log_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "infra_api_error_log_seq"; +CREATE SEQUENCE "infra_api_error_log_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for infra_codegen_column_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "infra_codegen_column_seq"; +CREATE SEQUENCE "infra_codegen_column_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for infra_codegen_table_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "infra_codegen_table_seq"; +CREATE SEQUENCE "infra_codegen_table_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for infra_config_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "infra_config_seq"; +CREATE SEQUENCE "infra_config_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for infra_data_source_config_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "infra_data_source_config_seq"; +CREATE SEQUENCE "infra_data_source_config_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for infra_file_config_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "infra_file_config_seq"; +CREATE SEQUENCE "infra_file_config_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for infra_file_content_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "infra_file_content_seq"; +CREATE SEQUENCE "infra_file_content_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for infra_file_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "infra_file_seq"; +CREATE SEQUENCE "infra_file_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for infra_job_log_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "infra_job_log_seq"; +CREATE SEQUENCE "infra_job_log_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for infra_job_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "infra_job_seq"; +CREATE SEQUENCE "infra_job_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for infra_test_demo_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "infra_test_demo_seq"; +CREATE SEQUENCE "infra_test_demo_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for member_user_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "member_user_seq"; +CREATE SEQUENCE "member_user_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for pay_app_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "pay_app_seq"; +CREATE SEQUENCE "pay_app_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for pay_channel_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "pay_channel_seq"; +CREATE SEQUENCE "pay_channel_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for pay_merchant_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "pay_merchant_seq"; +CREATE SEQUENCE "pay_merchant_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for pay_notify_log_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "pay_notify_log_seq"; +CREATE SEQUENCE "pay_notify_log_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for pay_notify_task_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "pay_notify_task_seq"; +CREATE SEQUENCE "pay_notify_task_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for pay_order_extension_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "pay_order_extension_seq"; +CREATE SEQUENCE "pay_order_extension_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for pay_order_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "pay_order_seq"; +CREATE SEQUENCE "pay_order_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for pay_refund_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "pay_refund_seq"; +CREATE SEQUENCE "pay_refund_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_dept_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_dept_seq"; +CREATE SEQUENCE "system_dept_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_dict_data_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_dict_data_seq"; +CREATE SEQUENCE "system_dict_data_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_dict_type_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_dict_type_seq"; +CREATE SEQUENCE "system_dict_type_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_error_code_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_error_code_seq"; +CREATE SEQUENCE "system_error_code_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_login_log_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_login_log_seq"; +CREATE SEQUENCE "system_login_log_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_menu_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_menu_seq"; +CREATE SEQUENCE "system_menu_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_notice_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_notice_seq"; +CREATE SEQUENCE "system_notice_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_operate_log_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_operate_log_seq"; +CREATE SEQUENCE "system_operate_log_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_post_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_post_seq"; +CREATE SEQUENCE "system_post_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_role_menu_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_role_menu_seq"; +CREATE SEQUENCE "system_role_menu_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_role_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_role_seq"; +CREATE SEQUENCE "system_role_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_sensitive_word_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_sensitive_word_seq"; +CREATE SEQUENCE "system_sensitive_word_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_sms_channel_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_sms_channel_seq"; +CREATE SEQUENCE "system_sms_channel_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_sms_code_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_sms_code_seq"; +CREATE SEQUENCE "system_sms_code_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_sms_log_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_sms_log_seq"; +CREATE SEQUENCE "system_sms_log_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_sms_template_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_sms_template_seq"; +CREATE SEQUENCE "system_sms_template_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_social_user_bind_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_social_user_bind_seq"; +CREATE SEQUENCE "system_social_user_bind_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_social_user_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_social_user_seq"; +CREATE SEQUENCE "system_social_user_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_tenant_package_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_tenant_package_seq"; +CREATE SEQUENCE "system_tenant_package_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_tenant_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_tenant_seq"; +CREATE SEQUENCE "system_tenant_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_user_role_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_user_role_seq"; +CREATE SEQUENCE "system_user_role_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_user_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_user_seq"; +CREATE SEQUENCE "system_user_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Sequence structure for system_user_session_seq +-- ---------------------------- +DROP SEQUENCE IF EXISTS "system_user_session_seq"; +CREATE SEQUENCE "system_user_session_seq" +INCREMENT 1 +MAXVALUE 9223372036854775807 +CACHE 1; + +-- ---------------------------- +-- Table structure for act_evt_log +-- ---------------------------- +DROP TABLE IF EXISTS "act_evt_log"; +CREATE TABLE "act_evt_log" ( + "log_nr_" int4 NOT NULL DEFAULT nextval('act_evt_log_log_nr__seq'::regclass), + "type_" varchar(64) COLLATE "pg_catalog"."default", + "proc_def_id_" varchar(64) COLLATE "pg_catalog"."default", + "proc_inst_id_" varchar(64) COLLATE "pg_catalog"."default", + "execution_id_" varchar(64) COLLATE "pg_catalog"."default", + "task_id_" varchar(64) COLLATE "pg_catalog"."default", + "time_stamp_" timestamp(6) NOT NULL, + "user_id_" varchar(255) COLLATE "pg_catalog"."default", + "data_" bytea, + "lock_owner_" varchar(255) COLLATE "pg_catalog"."default", + "lock_time_" timestamp(6), + "is_processed_" int2 DEFAULT 0 ) ; -DROP TABLE IF EXISTS "public"."bpm_form"; -CREATE TABLE "public"."bpm_form" ( +-- ---------------------------- +-- Records of act_evt_log +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for bpm_form +-- ---------------------------- +DROP TABLE IF EXISTS "bpm_form"; +CREATE TABLE "bpm_form" ( "id" int8 NOT NULL, "name" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, "status" int2 NOT NULL, @@ -42,20 +542,19 @@ CREATE TABLE "public"."bpm_form" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."bpm_form" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."bpm_form"."id" IS '编号'; -COMMENT ON COLUMN "public"."bpm_form"."name" IS '表单名'; -COMMENT ON COLUMN "public"."bpm_form"."status" IS '开启状态'; -COMMENT ON COLUMN "public"."bpm_form"."conf" IS '表单的配置'; -COMMENT ON COLUMN "public"."bpm_form"."fields" IS '表单项的数组'; -COMMENT ON COLUMN "public"."bpm_form"."remark" IS '备注'; -COMMENT ON COLUMN "public"."bpm_form"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."bpm_form"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."bpm_form"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."bpm_form"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."bpm_form"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."bpm_form"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."bpm_form" IS '工作流的表单定义'; +COMMENT ON COLUMN "bpm_form"."id" IS '编号'; +COMMENT ON COLUMN "bpm_form"."name" IS '表单名'; +COMMENT ON COLUMN "bpm_form"."status" IS '开启状态'; +COMMENT ON COLUMN "bpm_form"."conf" IS '表单的配置'; +COMMENT ON COLUMN "bpm_form"."fields" IS '表单项的数组'; +COMMENT ON COLUMN "bpm_form"."remark" IS '备注'; +COMMENT ON COLUMN "bpm_form"."creator" IS '创建者'; +COMMENT ON COLUMN "bpm_form"."create_time" IS '创建时间'; +COMMENT ON COLUMN "bpm_form"."updater" IS '更新者'; +COMMENT ON COLUMN "bpm_form"."update_time" IS '更新时间'; +COMMENT ON COLUMN "bpm_form"."deleted" IS '是否删除'; +COMMENT ON COLUMN "bpm_form"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "bpm_form" IS '工作流的表单定义'; -- ---------------------------- -- Records of bpm_form @@ -66,8 +565,8 @@ COMMIT; -- ---------------------------- -- Table structure for bpm_oa_leave -- ---------------------------- -DROP TABLE IF EXISTS "public"."bpm_oa_leave"; -CREATE TABLE "public"."bpm_oa_leave" ( +DROP TABLE IF EXISTS "bpm_oa_leave"; +CREATE TABLE "bpm_oa_leave" ( "id" int8 NOT NULL, "user_id" int8 NOT NULL, "type" int2 NOT NULL, @@ -85,36 +584,35 @@ CREATE TABLE "public"."bpm_oa_leave" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."bpm_oa_leave" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."bpm_oa_leave"."id" IS '请假表单主键'; -COMMENT ON COLUMN "public"."bpm_oa_leave"."user_id" IS '申请人的用户编号'; -COMMENT ON COLUMN "public"."bpm_oa_leave"."type" IS '请假类型'; -COMMENT ON COLUMN "public"."bpm_oa_leave"."reason" IS '请假原因'; -COMMENT ON COLUMN "public"."bpm_oa_leave"."start_time" IS '开始时间'; -COMMENT ON COLUMN "public"."bpm_oa_leave"."end_time" IS '结束时间'; -COMMENT ON COLUMN "public"."bpm_oa_leave"."day" IS '请假天数'; -COMMENT ON COLUMN "public"."bpm_oa_leave"."result" IS '请假结果'; -COMMENT ON COLUMN "public"."bpm_oa_leave"."process_instance_id" IS '流程实例的编号'; -COMMENT ON COLUMN "public"."bpm_oa_leave"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."bpm_oa_leave"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."bpm_oa_leave"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."bpm_oa_leave"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."bpm_oa_leave"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."bpm_oa_leave"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."bpm_oa_leave" IS 'OA 请假申请表'; +COMMENT ON COLUMN "bpm_oa_leave"."id" IS '请假表单主键'; +COMMENT ON COLUMN "bpm_oa_leave"."user_id" IS '申请人的用户编号'; +COMMENT ON COLUMN "bpm_oa_leave"."type" IS '请假类型'; +COMMENT ON COLUMN "bpm_oa_leave"."reason" IS '请假原因'; +COMMENT ON COLUMN "bpm_oa_leave"."start_time" IS '开始时间'; +COMMENT ON COLUMN "bpm_oa_leave"."end_time" IS '结束时间'; +COMMENT ON COLUMN "bpm_oa_leave"."day" IS '请假天数'; +COMMENT ON COLUMN "bpm_oa_leave"."result" IS '请假结果'; +COMMENT ON COLUMN "bpm_oa_leave"."process_instance_id" IS '流程实例的编号'; +COMMENT ON COLUMN "bpm_oa_leave"."creator" IS '创建者'; +COMMENT ON COLUMN "bpm_oa_leave"."create_time" IS '创建时间'; +COMMENT ON COLUMN "bpm_oa_leave"."updater" IS '更新者'; +COMMENT ON COLUMN "bpm_oa_leave"."update_time" IS '更新时间'; +COMMENT ON COLUMN "bpm_oa_leave"."deleted" IS '是否删除'; +COMMENT ON COLUMN "bpm_oa_leave"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "bpm_oa_leave" IS 'OA 请假申请表'; -- ---------------------------- -- Records of bpm_oa_leave -- ---------------------------- BEGIN; -INSERT INTO "public"."bpm_oa_leave" ("id", "user_id", "type", "reason", "start_time", "end_time", "day", "result", "process_instance_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1, 1, 2, '222', '2022-04-04 00:00:00', '2022-04-19 00:00:00', 15, 2, '0d23cbd6-c893-11ec-8a1d-3e2374911326', '1', '2022-04-30 22:37:24.589', '1', '2022-04-30 22:40:30.538', 0, 1); +INSERT INTO "bpm_oa_leave" ("id", "user_id", "type", "reason", "start_time", "end_time", "day", "result", "process_instance_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1, 1, 2, '222', '2022-04-04 00:00:00', '2022-04-19 00:00:00', 15, 2, '0d23cbd6-c893-11ec-8a1d-3e2374911326', '1', '2022-04-30 22:37:24.589', '1', '2022-04-30 22:40:30.538', 0, 1); COMMIT; -- ---------------------------- -- Table structure for bpm_process_definition_ext -- ---------------------------- -DROP TABLE IF EXISTS "public"."bpm_process_definition_ext"; -CREATE TABLE "public"."bpm_process_definition_ext" ( +DROP TABLE IF EXISTS "bpm_process_definition_ext"; +CREATE TABLE "bpm_process_definition_ext" ( "id" int8 NOT NULL, "process_definition_id" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, "model_id" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, @@ -133,38 +631,37 @@ CREATE TABLE "public"."bpm_process_definition_ext" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."bpm_process_definition_ext" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."bpm_process_definition_ext"."id" IS '编号'; -COMMENT ON COLUMN "public"."bpm_process_definition_ext"."process_definition_id" IS '流程定义的编号'; -COMMENT ON COLUMN "public"."bpm_process_definition_ext"."model_id" IS '流程模型的编号'; -COMMENT ON COLUMN "public"."bpm_process_definition_ext"."description" IS '描述'; -COMMENT ON COLUMN "public"."bpm_process_definition_ext"."form_type" IS '表单类型'; -COMMENT ON COLUMN "public"."bpm_process_definition_ext"."form_id" IS '表单编号'; -COMMENT ON COLUMN "public"."bpm_process_definition_ext"."form_conf" IS '表单的配置'; -COMMENT ON COLUMN "public"."bpm_process_definition_ext"."form_fields" IS '表单项的数组'; -COMMENT ON COLUMN "public"."bpm_process_definition_ext"."form_custom_create_path" IS '自定义表单的提交路径'; -COMMENT ON COLUMN "public"."bpm_process_definition_ext"."form_custom_view_path" IS '自定义表单的查看路径'; -COMMENT ON COLUMN "public"."bpm_process_definition_ext"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."bpm_process_definition_ext"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."bpm_process_definition_ext"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."bpm_process_definition_ext"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."bpm_process_definition_ext"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."bpm_process_definition_ext"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."bpm_process_definition_ext" IS 'Bpm 流程定义的拓展表 +COMMENT ON COLUMN "bpm_process_definition_ext"."id" IS '编号'; +COMMENT ON COLUMN "bpm_process_definition_ext"."process_definition_id" IS '流程定义的编号'; +COMMENT ON COLUMN "bpm_process_definition_ext"."model_id" IS '流程模型的编号'; +COMMENT ON COLUMN "bpm_process_definition_ext"."description" IS '描述'; +COMMENT ON COLUMN "bpm_process_definition_ext"."form_type" IS '表单类型'; +COMMENT ON COLUMN "bpm_process_definition_ext"."form_id" IS '表单编号'; +COMMENT ON COLUMN "bpm_process_definition_ext"."form_conf" IS '表单的配置'; +COMMENT ON COLUMN "bpm_process_definition_ext"."form_fields" IS '表单项的数组'; +COMMENT ON COLUMN "bpm_process_definition_ext"."form_custom_create_path" IS '自定义表单的提交路径'; +COMMENT ON COLUMN "bpm_process_definition_ext"."form_custom_view_path" IS '自定义表单的查看路径'; +COMMENT ON COLUMN "bpm_process_definition_ext"."creator" IS '创建者'; +COMMENT ON COLUMN "bpm_process_definition_ext"."create_time" IS '创建时间'; +COMMENT ON COLUMN "bpm_process_definition_ext"."updater" IS '更新者'; +COMMENT ON COLUMN "bpm_process_definition_ext"."update_time" IS '更新时间'; +COMMENT ON COLUMN "bpm_process_definition_ext"."deleted" IS '是否删除'; +COMMENT ON COLUMN "bpm_process_definition_ext"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "bpm_process_definition_ext" IS 'Bpm 流程定义的拓展表 '; -- ---------------------------- -- Records of bpm_process_definition_ext -- ---------------------------- BEGIN; -INSERT INTO "public"."bpm_process_definition_ext" ("id", "process_definition_id", "model_id", "description", "form_type", "form_id", "form_conf", "form_fields", "form_custom_create_path", "form_custom_view_path", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (0, 'oa_leave:1:934362e3-c892-11ec-a15b-3e2374911326', '2d3151fa-c892-11ec-a15b-3e2374911326', NULL, 20, NULL, NULL, NULL, '/bpm/oa/leave/create', '/bpm/oa/leave/detail', '1', '2022-04-30 22:34:00.342', '1', '2022-04-30 22:34:00.342', 0, 1); +INSERT INTO "bpm_process_definition_ext" ("id", "process_definition_id", "model_id", "description", "form_type", "form_id", "form_conf", "form_fields", "form_custom_create_path", "form_custom_view_path", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (0, 'oa_leave:1:934362e3-c892-11ec-a15b-3e2374911326', '2d3151fa-c892-11ec-a15b-3e2374911326', NULL, 20, NULL, NULL, NULL, '/bpm/oa/leave/create', '/bpm/oa/leave/detail', '1', '2022-04-30 22:34:00.342', '1', '2022-04-30 22:34:00.342', 0, 1); COMMIT; -- ---------------------------- -- Table structure for bpm_process_instance_ext -- ---------------------------- -DROP TABLE IF EXISTS "public"."bpm_process_instance_ext"; -CREATE TABLE "public"."bpm_process_instance_ext" ( +DROP TABLE IF EXISTS "bpm_process_instance_ext"; +CREATE TABLE "bpm_process_instance_ext" ( "id" int8 NOT NULL, "start_user_id" int8 NOT NULL, "name" varchar(64) COLLATE "pg_catalog"."default", @@ -183,37 +680,36 @@ CREATE TABLE "public"."bpm_process_instance_ext" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."bpm_process_instance_ext" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."bpm_process_instance_ext"."id" IS '编号'; -COMMENT ON COLUMN "public"."bpm_process_instance_ext"."start_user_id" IS '发起流程的用户编号'; -COMMENT ON COLUMN "public"."bpm_process_instance_ext"."name" IS '流程实例的名字'; -COMMENT ON COLUMN "public"."bpm_process_instance_ext"."process_instance_id" IS '流程实例的编号'; -COMMENT ON COLUMN "public"."bpm_process_instance_ext"."process_definition_id" IS '流程定义的编号'; -COMMENT ON COLUMN "public"."bpm_process_instance_ext"."category" IS '流程分类'; -COMMENT ON COLUMN "public"."bpm_process_instance_ext"."status" IS '流程实例的状态'; -COMMENT ON COLUMN "public"."bpm_process_instance_ext"."result" IS '流程实例的结果'; -COMMENT ON COLUMN "public"."bpm_process_instance_ext"."end_time" IS '结束时间'; -COMMENT ON COLUMN "public"."bpm_process_instance_ext"."form_variables" IS '表单值'; -COMMENT ON COLUMN "public"."bpm_process_instance_ext"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."bpm_process_instance_ext"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."bpm_process_instance_ext"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."bpm_process_instance_ext"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."bpm_process_instance_ext"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."bpm_process_instance_ext"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."bpm_process_instance_ext" IS '工作流的流程实例的拓展'; +COMMENT ON COLUMN "bpm_process_instance_ext"."id" IS '编号'; +COMMENT ON COLUMN "bpm_process_instance_ext"."start_user_id" IS '发起流程的用户编号'; +COMMENT ON COLUMN "bpm_process_instance_ext"."name" IS '流程实例的名字'; +COMMENT ON COLUMN "bpm_process_instance_ext"."process_instance_id" IS '流程实例的编号'; +COMMENT ON COLUMN "bpm_process_instance_ext"."process_definition_id" IS '流程定义的编号'; +COMMENT ON COLUMN "bpm_process_instance_ext"."category" IS '流程分类'; +COMMENT ON COLUMN "bpm_process_instance_ext"."status" IS '流程实例的状态'; +COMMENT ON COLUMN "bpm_process_instance_ext"."result" IS '流程实例的结果'; +COMMENT ON COLUMN "bpm_process_instance_ext"."end_time" IS '结束时间'; +COMMENT ON COLUMN "bpm_process_instance_ext"."form_variables" IS '表单值'; +COMMENT ON COLUMN "bpm_process_instance_ext"."creator" IS '创建者'; +COMMENT ON COLUMN "bpm_process_instance_ext"."create_time" IS '创建时间'; +COMMENT ON COLUMN "bpm_process_instance_ext"."updater" IS '更新者'; +COMMENT ON COLUMN "bpm_process_instance_ext"."update_time" IS '更新时间'; +COMMENT ON COLUMN "bpm_process_instance_ext"."deleted" IS '是否删除'; +COMMENT ON COLUMN "bpm_process_instance_ext"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "bpm_process_instance_ext" IS '工作流的流程实例的拓展'; -- ---------------------------- -- Records of bpm_process_instance_ext -- ---------------------------- BEGIN; -INSERT INTO "public"."bpm_process_instance_ext" ("id", "start_user_id", "name", "process_instance_id", "process_definition_id", "category", "status", "result", "end_time", "form_variables", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (0, 1, 'OA 请假', '0d23cbd6-c893-11ec-8a1d-3e2374911326', 'oa_leave:1:934362e3-c892-11ec-a15b-3e2374911326', '2', 2, 2, '2022-04-30 22:40:30.428', '{"day":15}', '1', '2022-04-30 22:37:24.802', '1', '2022-04-30 22:40:30.432', 0, 1); +INSERT INTO "bpm_process_instance_ext" ("id", "start_user_id", "name", "process_instance_id", "process_definition_id", "category", "status", "result", "end_time", "form_variables", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (0, 1, 'OA 请假', '0d23cbd6-c893-11ec-8a1d-3e2374911326', 'oa_leave:1:934362e3-c892-11ec-a15b-3e2374911326', '2', 2, 2, '2022-04-30 22:40:30.428', '{"day":15}', '1', '2022-04-30 22:37:24.802', '1', '2022-04-30 22:40:30.432', 0, 1); COMMIT; -- ---------------------------- -- Table structure for bpm_task_assign_rule -- ---------------------------- -DROP TABLE IF EXISTS "public"."bpm_task_assign_rule"; -CREATE TABLE "public"."bpm_task_assign_rule" ( +DROP TABLE IF EXISTS "bpm_task_assign_rule"; +CREATE TABLE "bpm_task_assign_rule" ( "id" int8 NOT NULL, "model_id" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, "process_definition_id" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, @@ -228,40 +724,39 @@ CREATE TABLE "public"."bpm_task_assign_rule" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."bpm_task_assign_rule" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."bpm_task_assign_rule"."id" IS '编号'; -COMMENT ON COLUMN "public"."bpm_task_assign_rule"."model_id" IS '流程模型的编号'; -COMMENT ON COLUMN "public"."bpm_task_assign_rule"."process_definition_id" IS '流程定义的编号'; -COMMENT ON COLUMN "public"."bpm_task_assign_rule"."task_definition_key" IS '流程任务定义的 key'; -COMMENT ON COLUMN "public"."bpm_task_assign_rule"."type" IS '规则类型'; -COMMENT ON COLUMN "public"."bpm_task_assign_rule"."options" IS '规则值,JSON 数组'; -COMMENT ON COLUMN "public"."bpm_task_assign_rule"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."bpm_task_assign_rule"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."bpm_task_assign_rule"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."bpm_task_assign_rule"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."bpm_task_assign_rule"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."bpm_task_assign_rule"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."bpm_task_assign_rule" IS 'Bpm 任务规则表'; +COMMENT ON COLUMN "bpm_task_assign_rule"."id" IS '编号'; +COMMENT ON COLUMN "bpm_task_assign_rule"."model_id" IS '流程模型的编号'; +COMMENT ON COLUMN "bpm_task_assign_rule"."process_definition_id" IS '流程定义的编号'; +COMMENT ON COLUMN "bpm_task_assign_rule"."task_definition_key" IS '流程任务定义的 key'; +COMMENT ON COLUMN "bpm_task_assign_rule"."type" IS '规则类型'; +COMMENT ON COLUMN "bpm_task_assign_rule"."options" IS '规则值,JSON 数组'; +COMMENT ON COLUMN "bpm_task_assign_rule"."creator" IS '创建者'; +COMMENT ON COLUMN "bpm_task_assign_rule"."create_time" IS '创建时间'; +COMMENT ON COLUMN "bpm_task_assign_rule"."updater" IS '更新者'; +COMMENT ON COLUMN "bpm_task_assign_rule"."update_time" IS '更新时间'; +COMMENT ON COLUMN "bpm_task_assign_rule"."deleted" IS '是否删除'; +COMMENT ON COLUMN "bpm_task_assign_rule"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "bpm_task_assign_rule" IS 'Bpm 任务规则表'; -- ---------------------------- -- Records of bpm_task_assign_rule -- ---------------------------- BEGIN; -INSERT INTO "public"."bpm_task_assign_rule" ("id", "model_id", "process_definition_id", "task_definition_key", "type", "options", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (0, '2d3151fa-c892-11ec-a15b-3e2374911326', '', 'task01', 30, '[1]', '1', '2022-04-30 22:32:55.005', '1', '2022-04-30 22:32:55.005', 0, 1); -INSERT INTO "public"."bpm_task_assign_rule" ("id", "model_id", "process_definition_id", "task_definition_key", "type", "options", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1, '2d3151fa-c892-11ec-a15b-3e2374911326', 'oa_leave:1:934362e3-c892-11ec-a15b-3e2374911326', 'task01', 30, '[1]', '1', '2022-04-30 22:34:00.401', '1', '2022-04-30 22:34:00.401', 0, 1); +INSERT INTO "bpm_task_assign_rule" ("id", "model_id", "process_definition_id", "task_definition_key", "type", "options", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (0, '2d3151fa-c892-11ec-a15b-3e2374911326', '', 'task01', 30, '[1]', '1', '2022-04-30 22:32:55.005', '1', '2022-04-30 22:32:55.005', 0, 1); +INSERT INTO "bpm_task_assign_rule" ("id", "model_id", "process_definition_id", "task_definition_key", "type", "options", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1, '2d3151fa-c892-11ec-a15b-3e2374911326', 'oa_leave:1:934362e3-c892-11ec-a15b-3e2374911326', 'task01', 30, '[1]', '1', '2022-04-30 22:34:00.401', '1', '2022-04-30 22:34:00.401', 0, 1); COMMIT; -- ---------------------------- -- Table structure for bpm_task_ext -- ---------------------------- -DROP TABLE IF EXISTS "public"."bpm_task_ext"; -CREATE TABLE "public"."bpm_task_ext" ( +DROP TABLE IF EXISTS "bpm_task_ext"; +CREATE TABLE "bpm_task_ext" ( "id" int8 NOT NULL, "assignee_user_id" int8, "name" varchar(64) COLLATE "pg_catalog"."default", "task_id" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, "result" int2 NOT NULL, - "comment" varchar(255) COLLATE "pg_catalog"."default", + "reason" varchar(255) COLLATE "pg_catalog"."default", "end_time" timestamp(6), "process_instance_id" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, "process_definition_id" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, @@ -273,36 +768,35 @@ CREATE TABLE "public"."bpm_task_ext" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."bpm_task_ext" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."bpm_task_ext"."id" IS '编号'; -COMMENT ON COLUMN "public"."bpm_task_ext"."assignee_user_id" IS '任务的审批人'; -COMMENT ON COLUMN "public"."bpm_task_ext"."name" IS '任务的名字'; -COMMENT ON COLUMN "public"."bpm_task_ext"."task_id" IS '任务的编号'; -COMMENT ON COLUMN "public"."bpm_task_ext"."result" IS '任务的结果'; -COMMENT ON COLUMN "public"."bpm_task_ext"."comment" IS '审批建议'; -COMMENT ON COLUMN "public"."bpm_task_ext"."end_time" IS '任务的结束时间'; -COMMENT ON COLUMN "public"."bpm_task_ext"."process_instance_id" IS '流程实例的编号'; -COMMENT ON COLUMN "public"."bpm_task_ext"."process_definition_id" IS '流程定义的编号'; -COMMENT ON COLUMN "public"."bpm_task_ext"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."bpm_task_ext"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."bpm_task_ext"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."bpm_task_ext"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."bpm_task_ext"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."bpm_task_ext"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."bpm_task_ext" IS '工作流的流程任务的拓展表'; +COMMENT ON COLUMN "bpm_task_ext"."id" IS '编号'; +COMMENT ON COLUMN "bpm_task_ext"."assignee_user_id" IS '任务的审批人'; +COMMENT ON COLUMN "bpm_task_ext"."name" IS '任务的名字'; +COMMENT ON COLUMN "bpm_task_ext"."task_id" IS '任务的编号'; +COMMENT ON COLUMN "bpm_task_ext"."result" IS '任务的结果'; +COMMENT ON COLUMN "bpm_task_ext"."reason" IS '审批建议'; +COMMENT ON COLUMN "bpm_task_ext"."end_time" IS '任务的结束时间'; +COMMENT ON COLUMN "bpm_task_ext"."process_instance_id" IS '流程实例的编号'; +COMMENT ON COLUMN "bpm_task_ext"."process_definition_id" IS '流程定义的编号'; +COMMENT ON COLUMN "bpm_task_ext"."creator" IS '创建者'; +COMMENT ON COLUMN "bpm_task_ext"."create_time" IS '创建时间'; +COMMENT ON COLUMN "bpm_task_ext"."updater" IS '更新者'; +COMMENT ON COLUMN "bpm_task_ext"."update_time" IS '更新时间'; +COMMENT ON COLUMN "bpm_task_ext"."deleted" IS '是否删除'; +COMMENT ON COLUMN "bpm_task_ext"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "bpm_task_ext" IS '工作流的流程任务的拓展表'; -- ---------------------------- -- Records of bpm_task_ext -- ---------------------------- BEGIN; -INSERT INTO "public"."bpm_task_ext" ("id", "assignee_user_id", "name", "task_id", "result", "comment", "end_time", "process_instance_id", "process_definition_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (0, 1, 'task01', '0d2f167e-c893-11ec-8a1d-3e2374911326', 2, 'A', '2022-04-30 22:40:30.328', '0d23cbd6-c893-11ec-8a1d-3e2374911326', 'oa_leave:1:934362e3-c892-11ec-a15b-3e2374911326', '1', '2022-04-30 22:37:24.822', '1', '2022-04-30 22:40:30.687', 0, 1); +INSERT INTO "bpm_task_ext" ("id", "assignee_user_id", "name", "task_id", "result", "reason", "end_time", "process_instance_id", "process_definition_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (0, 1, 'task01', '0d2f167e-c893-11ec-8a1d-3e2374911326', 2, 'A', '2022-04-30 22:40:30.328', '0d23cbd6-c893-11ec-8a1d-3e2374911326', 'oa_leave:1:934362e3-c892-11ec-a15b-3e2374911326', '1', '2022-04-30 22:37:24.822', '1', '2022-04-30 22:40:30.687', 0, 1); COMMIT; -- ---------------------------- -- Table structure for bpm_user_group -- ---------------------------- -DROP TABLE IF EXISTS "public"."bpm_user_group"; -CREATE TABLE "public"."bpm_user_group" ( +DROP TABLE IF EXISTS "bpm_user_group"; +CREATE TABLE "bpm_user_group" ( "id" int8 NOT NULL, "name" varchar(30) COLLATE "pg_catalog"."default" NOT NULL, "description" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, @@ -316,19 +810,18 @@ CREATE TABLE "public"."bpm_user_group" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."bpm_user_group" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."bpm_user_group"."id" IS '编号'; -COMMENT ON COLUMN "public"."bpm_user_group"."name" IS '组名'; -COMMENT ON COLUMN "public"."bpm_user_group"."description" IS '描述'; -COMMENT ON COLUMN "public"."bpm_user_group"."member_user_ids" IS '成员编号数组'; -COMMENT ON COLUMN "public"."bpm_user_group"."status" IS '状态(0正常 1停用)'; -COMMENT ON COLUMN "public"."bpm_user_group"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."bpm_user_group"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."bpm_user_group"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."bpm_user_group"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."bpm_user_group"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."bpm_user_group"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."bpm_user_group" IS '用户组'; +COMMENT ON COLUMN "bpm_user_group"."id" IS '编号'; +COMMENT ON COLUMN "bpm_user_group"."name" IS '组名'; +COMMENT ON COLUMN "bpm_user_group"."description" IS '描述'; +COMMENT ON COLUMN "bpm_user_group"."member_user_ids" IS '成员编号数组'; +COMMENT ON COLUMN "bpm_user_group"."status" IS '状态(0正常 1停用)'; +COMMENT ON COLUMN "bpm_user_group"."creator" IS '创建者'; +COMMENT ON COLUMN "bpm_user_group"."create_time" IS '创建时间'; +COMMENT ON COLUMN "bpm_user_group"."updater" IS '更新者'; +COMMENT ON COLUMN "bpm_user_group"."update_time" IS '更新时间'; +COMMENT ON COLUMN "bpm_user_group"."deleted" IS '是否删除'; +COMMENT ON COLUMN "bpm_user_group"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "bpm_user_group" IS '用户组'; -- ---------------------------- -- Records of bpm_user_group @@ -336,11 +829,26 @@ COMMENT ON TABLE "public"."bpm_user_group" IS '用户组'; BEGIN; COMMIT; +-- ---------------------------- +-- Table structure for dual +-- ---------------------------- +DROP TABLE IF EXISTS "dual"; +CREATE TABLE "dual" ( + +) +; + +-- ---------------------------- +-- Records of dual +-- ---------------------------- +BEGIN; +COMMIT; + -- ---------------------------- -- Table structure for infra_api_access_log -- ---------------------------- -DROP TABLE IF EXISTS "public"."infra_api_access_log"; -CREATE TABLE "public"."infra_api_access_log" ( +DROP TABLE IF EXISTS "infra_api_access_log"; +CREATE TABLE "infra_api_access_log" ( "id" int8 NOT NULL, "trace_id" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, "user_id" int8 NOT NULL DEFAULT 0, @@ -364,1107 +872,40 @@ CREATE TABLE "public"."infra_api_access_log" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."infra_api_access_log" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."infra_api_access_log"."id" IS '日志主键'; -COMMENT ON COLUMN "public"."infra_api_access_log"."trace_id" IS '链路追踪编号'; -COMMENT ON COLUMN "public"."infra_api_access_log"."user_id" IS '用户编号'; -COMMENT ON COLUMN "public"."infra_api_access_log"."user_type" IS '用户类型'; -COMMENT ON COLUMN "public"."infra_api_access_log"."application_name" IS '应用名'; -COMMENT ON COLUMN "public"."infra_api_access_log"."request_method" IS '请求方法名'; -COMMENT ON COLUMN "public"."infra_api_access_log"."request_url" IS '请求地址'; -COMMENT ON COLUMN "public"."infra_api_access_log"."request_params" IS '请求参数'; -COMMENT ON COLUMN "public"."infra_api_access_log"."user_ip" IS '用户 IP'; -COMMENT ON COLUMN "public"."infra_api_access_log"."user_agent" IS '浏览器 UA'; -COMMENT ON COLUMN "public"."infra_api_access_log"."begin_time" IS '开始请求时间'; -COMMENT ON COLUMN "public"."infra_api_access_log"."end_time" IS '结束请求时间'; -COMMENT ON COLUMN "public"."infra_api_access_log"."duration" IS '执行时长'; -COMMENT ON COLUMN "public"."infra_api_access_log"."result_code" IS '结果码'; -COMMENT ON COLUMN "public"."infra_api_access_log"."result_msg" IS '结果提示'; -COMMENT ON COLUMN "public"."infra_api_access_log"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."infra_api_access_log"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."infra_api_access_log"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."infra_api_access_log"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."infra_api_access_log"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."infra_api_access_log"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."infra_api_access_log" IS 'API 访问日志表'; +COMMENT ON COLUMN "infra_api_access_log"."id" IS '日志主键'; +COMMENT ON COLUMN "infra_api_access_log"."trace_id" IS '链路追踪编号'; +COMMENT ON COLUMN "infra_api_access_log"."user_id" IS '用户编号'; +COMMENT ON COLUMN "infra_api_access_log"."user_type" IS '用户类型'; +COMMENT ON COLUMN "infra_api_access_log"."application_name" IS '应用名'; +COMMENT ON COLUMN "infra_api_access_log"."request_method" IS '请求方法名'; +COMMENT ON COLUMN "infra_api_access_log"."request_url" IS '请求地址'; +COMMENT ON COLUMN "infra_api_access_log"."request_params" IS '请求参数'; +COMMENT ON COLUMN "infra_api_access_log"."user_ip" IS '用户 IP'; +COMMENT ON COLUMN "infra_api_access_log"."user_agent" IS '浏览器 UA'; +COMMENT ON COLUMN "infra_api_access_log"."begin_time" IS '开始请求时间'; +COMMENT ON COLUMN "infra_api_access_log"."end_time" IS '结束请求时间'; +COMMENT ON COLUMN "infra_api_access_log"."duration" IS '执行时长'; +COMMENT ON COLUMN "infra_api_access_log"."result_code" IS '结果码'; +COMMENT ON COLUMN "infra_api_access_log"."result_msg" IS '结果提示'; +COMMENT ON COLUMN "infra_api_access_log"."creator" IS '创建者'; +COMMENT ON COLUMN "infra_api_access_log"."create_time" IS '创建时间'; +COMMENT ON COLUMN "infra_api_access_log"."updater" IS '更新者'; +COMMENT ON COLUMN "infra_api_access_log"."update_time" IS '更新时间'; +COMMENT ON COLUMN "infra_api_access_log"."deleted" IS '是否删除'; +COMMENT ON COLUMN "infra_api_access_log"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "infra_api_access_log" IS 'API 访问日志表'; -- ---------------------------- -- Records of infra_api_access_log -- ---------------------------- BEGIN; -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25940, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:43:38', '2022-04-27 21:43:38', 176, 0, '', NULL, '2022-04-27 21:43:38', NULL, '2022-04-27 21:43:38', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25941, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:43:38', '2022-04-27 21:43:38', 171, 0, '', NULL, '2022-04-27 21:43:38', NULL, '2022-04-27 21:43:38', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25942, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:43:38', '2022-04-27 21:43:38', 13, 0, '', NULL, '2022-04-27 21:43:38', NULL, '2022-04-27 21:43:38', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25943, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:34', '2022-04-27 21:44:34', 103, 0, '', NULL, '2022-04-27 21:44:34', NULL, '2022-04-27 21:44:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25944, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:38', '2022-04-27 21:44:38', 58, 0, '', NULL, '2022-04-27 21:44:38', NULL, '2022-04-27 21:44:38', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25945, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"tableName":"infra"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:51', '2022-04-27 21:44:51', 33, 0, '', NULL, '2022-04-27 21:44:51', NULL, '2022-04-27 21:44:51', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25946, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"tableName":"infra"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:51', '2022-04-27 21:44:51', 24, 0, '', NULL, '2022-04-27 21:44:51', NULL, '2022-04-27 21:44:51', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25947, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"infra_data_source_config"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:54', '2022-04-27 21:44:54', 166, 0, '', NULL, '2022-04-27 21:44:54', NULL, '2022-04-27 21:44:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25948, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:54', '2022-04-27 21:44:54', 28, 0, '', NULL, '2022-04-27 21:44:54', NULL, '2022-04-27 21:44:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25949, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:58', '2022-04-27 21:44:58', 23, 0, '', NULL, '2022-04-27 21:44:58', NULL, '2022-04-27 21:44:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25950, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:58', '2022-04-27 21:44:58', 30, 0, '', NULL, '2022-04-27 21:44:58', NULL, '2022-04-27 21:44:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25951, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:58', '2022-04-27 21:44:58', 6, 0, '', NULL, '2022-04-27 21:44:58', NULL, '2022-04-27 21:44:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25952, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:44:59', '2022-04-27 21:44:59', 31, 0, '', NULL, '2022-04-27 21:44:59', NULL, '2022-04-27 21:44:59', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25953, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:45:09', '2022-04-27 21:45:09', 33, 0, '', NULL, '2022-04-27 21:45:09', NULL, '2022-04-27 21:45:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25954, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/detail', '{"query":{"tableId":"70"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:45:09', '2022-04-27 21:45:09', 63, 0, '', NULL, '2022-04-27 21:45:09', NULL, '2022-04-27 21:45:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25955, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:45:09', '2022-04-27 21:45:10', 249, 0, '', NULL, '2022-04-27 21:45:10', NULL, '2022-04-27 21:45:10', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25956, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/codegen/update', '{"query":{},"body":"{\"table\":{\"importType\":1,\"scene\":1,\"tableName\":\"infra_data_source_config\",\"tableComment\":\"数据源配置表\",\"remark\":null,\"moduleName\":\"infra\",\"businessName\":\"dataSourceConfig\",\"className\":\"DataSourceConfig\",\"classComment\":\"数据源配置\",\"author\":\"芋道源码\",\"templateType\":1,\"parentMenuId\":null,\"id\":70,\"createTime\":1651038084000,\"updateTime\":1651067094000},\"columns\":[{\"tableId\":70,\"columnName\":\"id\",\"columnType\":\"int\",\"columnComment\":\"主键编号\",\"nullable\":false,\"primaryKey\":true,\"autoIncrement\":\"true\",\"ordinalPosition\":1,\"javaType\":\"Integer\",\"javaField\":\"id\",\"dictType\":\"\",\"example\":\"1024\",\"createOperation\":false,\"updateOperation\":true,\"listOperation\":false,\"listOperationCondition\":\"=\",\"listOperationResult\":true,\"htmlType\":\"input\",\"id\":824,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"name\",\"columnType\":\"varchar(100)\",\"columnComment\":\"参数名称\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":2,\"javaType\":\"String\",\"javaField\":\"name\",\"dictType\":\"\",\"example\":\"test\",\"createOperation\":true,\"updateOperation\":true,\"listOperation\":true,\"listOperationCondition\":\"LIKE\",\"listOperationResult\":true,\"htmlType\":\"input\",\"id\":825,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"url\",\"columnType\":\"varchar(1024)\",\"columnComment\":\"数据源连接\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":3,\"javaType\":\"String\",\"javaField\":\"url\",\"dictType\":\"\",\"example\":\"jdbc:mysql://127.0.0.1:3306/ruoyi-vue-pro\",\"createOperation\":true,\"updateOperation\":true,\"listOperation\":true,\"listOperationCondition\":\"LIKE\",\"listOperationResult\":true,\"htmlType\":\"input\",\"id\":826,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"username\",\"columnType\":\"varchar(255)\",\"columnComment\":\"用户名\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":4,\"javaType\":\"String\",\"javaField\":\"username\",\"dictType\":\"\",\"example\":\"root\",\"createOperation\":true,\"updateOperation\":true,\"listOperation\":\"false\",\"listOperationCondition\":\"LIKE\",\"listOperationResult\":true,\"htmlType\":\"input\",\"id\":827,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"password\",\"columnType\":\"varchar(255)\",\"columnComment\":\"密码\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":5,\"javaType\":\"String\",\"javaField\":\"password\",\"dictType\":\"\",\"example\":\"123456\",\"createOperation\":true,\"updateOperation\":true,\"listOperation\":\"false\",\"listOperationCondition\":\"=\",\"listOperationResult\":\"false\",\"htmlType\":\"input\",\"id\":828,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"creator\",\"columnType\":\"varchar(64)\",\"columnComment\":\"创建者\",\"nullable\":true,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":6,\"javaType\":\"String\",\"javaField\":\"creator\",\"dictType\":\"\",\"example\":null,\"createOperation\":false,\"updateOperation\":false,\"listOperation\":false,\"listOperationCondition\":\"=\",\"listOperationResult\":false,\"htmlType\":\"input\",\"id\":829,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"create_time\",\"columnType\":\"datetime\",\"columnComment\":\"创建时间\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":7,\"javaType\":\"Date\",\"javaField\":\"createTime\",\"dictType\":\"\",\"example\":null,\"createOperation\":false,\"updateOperation\":false,\"listOperation\":true,\"listOperationCondition\":\"BETWEEN\",\"listOperationResult\":true,\"htmlType\":\"datetime\",\"id\":830,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"updater\",\"columnType\":\"varchar(64)\",\"columnComment\":\"更新者\",\"nullable\":true,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":8,\"javaType\":\"String\",\"javaField\":\"updater\",\"dictType\":\"\",\"example\":null,\"createOperation\":false,\"updateOperation\":false,\"listOperation\":false,\"listOperationCondition\":\"=\",\"listOperationResult\":false,\"htmlType\":\"input\",\"id\":831,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"update_time\",\"columnType\":\"datetime\",\"columnComment\":\"更新时间\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":9,\"javaType\":\"Date\",\"javaField\":\"updateTime\",\"dictType\":\"\",\"example\":null,\"createOperation\":false,\"updateOperation\":false,\"listOperation\":false,\"listOperationCondition\":\"BETWEEN\",\"listOperationResult\":false,\"htmlType\":\"datetime\",\"id\":832,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"deleted\",\"columnType\":\"bit(1)\",\"columnComment\":\"是否删除\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":10,\"javaType\":\"Boolean\",\"javaField\":\"deleted\",\"dictType\":\"\",\"example\":null,\"createOperation\":false,\"updateOperation\":false,\"listOperation\":false,\"listOperationCondition\":\"=\",\"listOperationResult\":false,\"htmlType\":\"radio\",\"id\":833,\"createTime\":1651067094000}],\"params\":{}}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:49:28', '2022-04-27 21:49:29', 79, 400, '请求参数不正确:上级菜单不能为空', NULL, '2022-04-27 21:49:29', NULL, '2022-04-27 21:49:29', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25976, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/system/menu/update', '{"query":{},"body":"{\"name\":\"数据源配置管理\",\"permission\":\"\",\"type\":2,\"sort\":1,\"parentId\":2,\"path\":\"data-source-config\",\"icon\":\"\",\"component\":\"infra/dataSourceConfig/index\",\"status\":0,\"visible\":true,\"keepAlive\":true,\"id\":1255,\"createTime\":1651041452000}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:28', '2022-04-27 22:41:28', 106, 0, '', NULL, '2022-04-27 22:41:28', NULL, '2022-04-27 22:41:28', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25977, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:28', '2022-04-27 22:41:28', 24, 0, '', NULL, '2022-04-27 22:41:28', NULL, '2022-04-27 22:41:28', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25957, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/codegen/update', '{"query":{},"body":"{\"table\":{\"importType\":1,\"scene\":1,\"tableName\":\"infra_data_source_config\",\"tableComment\":\"数据源配置表\",\"remark\":null,\"moduleName\":\"infra\",\"businessName\":\"db\",\"className\":\"DataSourceConfig\",\"classComment\":\"数据源配置\",\"author\":\"芋道源码\",\"templateType\":1,\"parentMenuId\":2,\"id\":70,\"createTime\":1651038084000,\"updateTime\":1651067094000},\"columns\":[{\"tableId\":70,\"columnName\":\"id\",\"columnType\":\"int\",\"columnComment\":\"主键编号\",\"nullable\":false,\"primaryKey\":true,\"autoIncrement\":\"true\",\"ordinalPosition\":1,\"javaType\":\"Integer\",\"javaField\":\"id\",\"dictType\":\"\",\"example\":\"1024\",\"createOperation\":false,\"updateOperation\":true,\"listOperation\":false,\"listOperationCondition\":\"=\",\"listOperationResult\":true,\"htmlType\":\"input\",\"id\":824,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"name\",\"columnType\":\"varchar(100)\",\"columnComment\":\"参数名称\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":2,\"javaType\":\"String\",\"javaField\":\"name\",\"dictType\":\"\",\"example\":\"test\",\"createOperation\":true,\"updateOperation\":true,\"listOperation\":true,\"listOperationCondition\":\"LIKE\",\"listOperationResult\":true,\"htmlType\":\"input\",\"id\":825,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"url\",\"columnType\":\"varchar(1024)\",\"columnComment\":\"数据源连接\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":3,\"javaType\":\"String\",\"javaField\":\"url\",\"dictType\":\"\",\"example\":\"jdbc:mysql://127.0.0.1:3306/ruoyi-vue-pro\",\"createOperation\":true,\"updateOperation\":true,\"listOperation\":true,\"listOperationCondition\":\"LIKE\",\"listOperationResult\":true,\"htmlType\":\"input\",\"id\":826,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"username\",\"columnType\":\"varchar(255)\",\"columnComment\":\"用户名\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":4,\"javaType\":\"String\",\"javaField\":\"username\",\"dictType\":\"\",\"example\":\"root\",\"createOperation\":true,\"updateOperation\":true,\"listOperation\":\"false\",\"listOperationCondition\":\"LIKE\",\"listOperationResult\":true,\"htmlType\":\"input\",\"id\":827,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"password\",\"columnType\":\"varchar(255)\",\"columnComment\":\"密码\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":5,\"javaType\":\"String\",\"javaField\":\"password\",\"dictType\":\"\",\"example\":\"123456\",\"createOperation\":true,\"updateOperation\":true,\"listOperation\":\"false\",\"listOperationCondition\":\"=\",\"listOperationResult\":\"false\",\"htmlType\":\"input\",\"id\":828,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"creator\",\"columnType\":\"varchar(64)\",\"columnComment\":\"创建者\",\"nullable\":true,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":6,\"javaType\":\"String\",\"javaField\":\"creator\",\"dictType\":\"\",\"example\":null,\"createOperation\":false,\"updateOperation\":false,\"listOperation\":false,\"listOperationCondition\":\"=\",\"listOperationResult\":false,\"htmlType\":\"input\",\"id\":829,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"create_time\",\"columnType\":\"datetime\",\"columnComment\":\"创建时间\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":7,\"javaType\":\"Date\",\"javaField\":\"createTime\",\"dictType\":\"\",\"example\":null,\"createOperation\":false,\"updateOperation\":false,\"listOperation\":true,\"listOperationCondition\":\"BETWEEN\",\"listOperationResult\":true,\"htmlType\":\"datetime\",\"id\":830,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"updater\",\"columnType\":\"varchar(64)\",\"columnComment\":\"更新者\",\"nullable\":true,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":8,\"javaType\":\"String\",\"javaField\":\"updater\",\"dictType\":\"\",\"example\":null,\"createOperation\":false,\"updateOperation\":false,\"listOperation\":false,\"listOperationCondition\":\"=\",\"listOperationResult\":false,\"htmlType\":\"input\",\"id\":831,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"update_time\",\"columnType\":\"datetime\",\"columnComment\":\"更新时间\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":9,\"javaType\":\"Date\",\"javaField\":\"updateTime\",\"dictType\":\"\",\"example\":null,\"createOperation\":false,\"updateOperation\":false,\"listOperation\":false,\"listOperationCondition\":\"BETWEEN\",\"listOperationResult\":false,\"htmlType\":\"datetime\",\"id\":832,\"createTime\":1651067094000},{\"tableId\":70,\"columnName\":\"deleted\",\"columnType\":\"bit(1)\",\"columnComment\":\"是否删除\",\"nullable\":false,\"primaryKey\":false,\"autoIncrement\":\"false\",\"ordinalPosition\":10,\"javaType\":\"Boolean\",\"javaField\":\"deleted\",\"dictType\":\"\",\"example\":null,\"createOperation\":false,\"updateOperation\":false,\"listOperation\":false,\"listOperationCondition\":\"=\",\"listOperationResult\":false,\"htmlType\":\"radio\",\"id\":833,\"createTime\":1651067094000}],\"params\":{}}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:50:04', '2022-04-27 21:50:04', 103, 0, '', NULL, '2022-04-27 21:50:04', NULL, '2022-04-27 21:50:04', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25958, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:50:04', '2022-04-27 21:50:04', 26, 0, '', NULL, '2022-04-27 21:50:04', NULL, '2022-04-27 21:50:04', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25959, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"70"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:50:07', '2022-04-27 21:50:08', 239, 0, '', NULL, '2022-04-27 21:50:08', NULL, '2022-04-27 21:50:08', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25960, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/download', '{"query":{"tableId":"70"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 21:50:23', '2022-04-27 21:50:23', 76, 0, '', NULL, '2022-04-27 21:50:23', NULL, '2022-04-27 21:50:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25961, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:38:08', '2022-04-27 22:38:08', 115, 0, '', NULL, '2022-04-27 22:38:08', NULL, '2022-04-27 22:38:08', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25962, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:38:08', '2022-04-27 22:38:08', 137, 0, '', NULL, '2022-04-27 22:38:08', NULL, '2022-04-27 22:38:08', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25963, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:38:08', '2022-04-27 22:38:08', 14, 0, '', NULL, '2022-04-27 22:38:08', NULL, '2022-04-27 22:38:08', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25964, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:38:09', '2022-04-27 22:38:09', 141, 0, '', NULL, '2022-04-27 22:38:09', NULL, '2022-04-27 22:38:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25965, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:09', '2022-04-27 22:41:09', 23, 0, '', NULL, '2022-04-27 22:41:09', NULL, '2022-04-27 22:41:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25966, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:09', '2022-04-27 22:41:09', 29, 0, '', NULL, '2022-04-27 22:41:09', NULL, '2022-04-27 22:41:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25967, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:09', '2022-04-27 22:41:09', 7, 0, '', NULL, '2022-04-27 22:41:09', NULL, '2022-04-27 22:41:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25968, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:09', '2022-04-27 22:41:09', 41, 0, '', NULL, '2022-04-27 22:41:09', NULL, '2022-04-27 22:41:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25969, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:13', '2022-04-27 22:41:13', 34, 0, '', NULL, '2022-04-27 22:41:13', NULL, '2022-04-27 22:41:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25970, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:13', '2022-04-27 22:41:13', 43, 0, '', NULL, '2022-04-27 22:41:13', NULL, '2022-04-27 22:41:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25971, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:13', '2022-04-27 22:41:13', 8, 0, '', NULL, '2022-04-27 22:41:13', NULL, '2022-04-27 22:41:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25972, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:14', '2022-04-27 22:41:14', 30, 0, '', NULL, '2022-04-27 22:41:14', NULL, '2022-04-27 22:41:14', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25973, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:19', '2022-04-27 22:41:19', 53, 0, '', NULL, '2022-04-27 22:41:19', NULL, '2022-04-27 22:41:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25974, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:25', '2022-04-27 22:41:25', 28, 0, '', NULL, '2022-04-27 22:41:25', NULL, '2022-04-27 22:41:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25975, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/get', '{"query":{"id":"1255"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:25', '2022-04-27 22:41:25', 29, 0, '', NULL, '2022-04-27 22:41:25', NULL, '2022-04-27 22:41:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25978, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/get', '{"query":{"id":"1255"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:34', '2022-04-27 22:41:34', 16, 0, '', NULL, '2022-04-27 22:41:34', NULL, '2022-04-27 22:41:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25979, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:34', '2022-04-27 22:41:34', 25, 0, '', NULL, '2022-04-27 22:41:34', NULL, '2022-04-27 22:41:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25980, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/system/menu/update', '{"query":{},"body":"{\"name\":\"数据源配置\",\"permission\":\"\",\"type\":2,\"sort\":1,\"parentId\":2,\"path\":\"data-source-config\",\"icon\":\"\",\"component\":\"infra/dataSourceConfig/index\",\"status\":0,\"visible\":true,\"keepAlive\":true,\"id\":1255,\"createTime\":1651041452000}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:37', '2022-04-27 22:41:37', 62, 0, '', NULL, '2022-04-27 22:41:37', NULL, '2022-04-27 22:41:37', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25981, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:37', '2022-04-27 22:41:37', 60, 0, '', NULL, '2022-04-27 22:41:37', NULL, '2022-04-27 22:41:37', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25982, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/get', '{"query":{"id":"1255"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:45', '2022-04-27 22:41:45', 18, 0, '', NULL, '2022-04-27 22:41:45', NULL, '2022-04-27 22:41:45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25983, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:41:45', '2022-04-27 22:41:45', 28, 0, '', NULL, '2022-04-27 22:41:45', NULL, '2022-04-27 22:41:45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25984, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/system/menu/update', '{"query":{},"body":"{\"name\":\"数据源配置\",\"permission\":\"\",\"type\":2,\"sort\":1,\"parentId\":2,\"path\":\"data-source-config\",\"icon\":\"rate\",\"component\":\"infra/dataSourceConfig/index\",\"status\":0,\"visible\":true,\"keepAlive\":true,\"id\":1255,\"createTime\":1651041452000}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:06', '2022-04-27 22:42:06', 50, 0, '', NULL, '2022-04-27 22:42:06', NULL, '2022-04-27 22:42:06', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25985, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:06', '2022-04-27 22:42:06', 25, 0, '', NULL, '2022-04-27 22:42:06', NULL, '2022-04-27 22:42:06', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25986, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:07', '2022-04-27 22:42:07', 20, 0, '', NULL, '2022-04-27 22:42:07', NULL, '2022-04-27 22:42:07', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25987, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:07', '2022-04-27 22:42:07', 29, 0, '', NULL, '2022-04-27 22:42:07', NULL, '2022-04-27 22:42:07', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25988, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:07', '2022-04-27 22:42:07', 6, 0, '', NULL, '2022-04-27 22:42:07', NULL, '2022-04-27 22:42:07', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25989, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:08', '2022-04-27 22:42:08', 25, 0, '', NULL, '2022-04-27 22:42:08', NULL, '2022-04-27 22:42:08', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25990, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:25', '2022-04-27 22:42:25', 26, 0, '', NULL, '2022-04-27 22:42:25', NULL, '2022-04-27 22:42:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25991, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:25', '2022-04-27 22:42:25', 38, 0, '', NULL, '2022-04-27 22:42:25', NULL, '2022-04-27 22:42:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25992, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:26', '2022-04-27 22:42:26', 31, 0, '', NULL, '2022-04-27 22:42:26', NULL, '2022-04-27 22:42:26', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25993, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:26', '2022-04-27 22:42:26', 33, 0, '', NULL, '2022-04-27 22:42:26', NULL, '2022-04-27 22:42:26', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25994, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:42:26', '2022-04-27 22:42:26', 7, 0, '', NULL, '2022-04-27 22:42:26', NULL, '2022-04-27 22:42:26', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25995, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:07', '2022-04-27 22:43:07', 140, 500, '系统异常', NULL, '2022-04-27 22:43:07', NULL, '2022-04-27 22:43:07', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25996, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:31', '2022-04-27 22:43:31', 27, 0, '', NULL, '2022-04-27 22:43:31', NULL, '2022-04-27 22:43:31', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25997, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:31', '2022-04-27 22:43:31', 38, 0, '', NULL, '2022-04-27 22:43:31', NULL, '2022-04-27 22:43:31', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25998, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:31', '2022-04-27 22:43:31', 9, 0, '', NULL, '2022-04-27 22:43:31', NULL, '2022-04-27 22:43:31', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25999, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:32', '2022-04-27 22:43:32', 21, 500, '系统异常', NULL, '2022-04-27 22:43:32', NULL, '2022-04-27 22:43:32', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26000, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:46', '2022-04-27 22:43:46', 25, 0, '', NULL, '2022-04-27 22:43:46', NULL, '2022-04-27 22:43:46', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26001, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:46', '2022-04-27 22:43:46', 38, 0, '', NULL, '2022-04-27 22:43:46', NULL, '2022-04-27 22:43:46', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26002, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:46', '2022-04-27 22:43:46', 8, 0, '', NULL, '2022-04-27 22:43:46', NULL, '2022-04-27 22:43:46', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26003, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:47', '2022-04-27 22:43:47', 39, 500, '系统异常', NULL, '2022-04-27 22:43:47', NULL, '2022-04-27 22:43:47', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26004, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:45:55', '2022-04-27 22:45:55', 98, 0, '', NULL, '2022-04-27 22:45:55', NULL, '2022-04-27 22:45:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26005, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:45:55', '2022-04-27 22:45:55', 119, 0, '', NULL, '2022-04-27 22:45:55', NULL, '2022-04-27 22:45:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26006, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:45:55', '2022-04-27 22:45:55', 14, 0, '', NULL, '2022-04-27 22:45:55', NULL, '2022-04-27 22:45:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26007, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:45:56', '2022-04-27 22:45:56', 46, 0, '', NULL, '2022-04-27 22:45:56', NULL, '2022-04-27 22:45:56', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26008, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:46:01', '2022-04-27 22:46:01', 28, 0, '', NULL, '2022-04-27 22:46:01', NULL, '2022-04-27 22:46:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26009, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:46:01', '2022-04-27 22:46:01', 39, 0, '', NULL, '2022-04-27 22:46:01', NULL, '2022-04-27 22:46:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26010, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:46:01', '2022-04-27 22:46:01', 6, 0, '', NULL, '2022-04-27 22:46:01', NULL, '2022-04-27 22:46:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26011, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:46:02', '2022-04-27 22:46:02', 20, 0, '', NULL, '2022-04-27 22:46:02', NULL, '2022-04-27 22:46:02', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26012, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:46:21', '2022-04-27 22:46:21', 29, 0, '', NULL, '2022-04-27 22:46:21', NULL, '2022-04-27 22:46:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26013, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:46:21', '2022-04-27 22:46:21', 112, 0, '', NULL, '2022-04-27 22:46:21', NULL, '2022-04-27 22:46:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26014, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:46:21', '2022-04-27 22:46:21', 15, 0, '', NULL, '2022-04-27 22:46:21', NULL, '2022-04-27 22:46:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26015, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:46:22', '2022-04-27 22:46:22', 20, 0, '', NULL, '2022-04-27 22:46:22', NULL, '2022-04-27 22:46:22', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26016, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:47:23', '2022-04-27 22:47:23', 20, 0, '', NULL, '2022-04-27 22:47:23', NULL, '2022-04-27 22:47:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26017, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:47:23', '2022-04-27 22:47:23', 27, 0, '', NULL, '2022-04-27 22:47:23', NULL, '2022-04-27 22:47:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26018, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:47:23', '2022-04-27 22:47:23', 7, 0, '', NULL, '2022-04-27 22:47:23', NULL, '2022-04-27 22:47:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26019, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:47:24', '2022-04-27 22:47:24', 16, 0, '', NULL, '2022-04-27 22:47:24', NULL, '2022-04-27 22:47:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26020, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/data-source-config/create', '{"query":{},"body":"{\"name\":\"test\",\"url\":\"jdbc:mysql://127.0.0.1:3306/testb5f4\",\"username\":\"root\",\"password\":\"123456\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:20', '2022-04-27 22:48:20', 110, 0, '', NULL, '2022-04-27 22:48:20', NULL, '2022-04-27 22:48:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26021, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:20', '2022-04-27 22:48:20', 16, 0, '', NULL, '2022-04-27 22:48:20', NULL, '2022-04-27 22:48:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26022, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:22', '2022-04-27 22:48:22', 20, 0, '', NULL, '2022-04-27 22:48:22', NULL, '2022-04-27 22:48:22', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26023, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:22', '2022-04-27 22:48:22', 28, 0, '', NULL, '2022-04-27 22:48:22', NULL, '2022-04-27 22:48:22', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26024, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:22', '2022-04-27 22:48:22', 5, 0, '', NULL, '2022-04-27 22:48:22', NULL, '2022-04-27 22:48:22', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26025, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:23', '2022-04-27 22:48:23', 16, 0, '', NULL, '2022-04-27 22:48:23', NULL, '2022-04-27 22:48:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26026, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:29', '2022-04-27 22:48:29', 27, 0, '', NULL, '2022-04-27 22:48:29', NULL, '2022-04-27 22:48:29', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26027, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:29', '2022-04-27 22:48:29', 38, 0, '', NULL, '2022-04-27 22:48:29', NULL, '2022-04-27 22:48:29', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26028, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:29', '2022-04-27 22:48:29', 7, 0, '', NULL, '2022-04-27 22:48:29', NULL, '2022-04-27 22:48:29', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26029, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:48:30', '2022-04-27 22:48:30', 20, 0, '', NULL, '2022-04-27 22:48:30', NULL, '2022-04-27 22:48:30', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26030, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:49:08', '2022-04-27 22:49:09', 25, 0, '', NULL, '2022-04-27 22:49:09', NULL, '2022-04-27 22:49:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26031, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:49:09', '2022-04-27 22:49:09', 37, 0, '', NULL, '2022-04-27 22:49:09', NULL, '2022-04-27 22:49:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26032, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:49:09', '2022-04-27 22:49:09', 5, 0, '', NULL, '2022-04-27 22:49:09', NULL, '2022-04-27 22:49:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26033, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:49:09', '2022-04-27 22:49:09', 16, 0, '', NULL, '2022-04-27 22:49:09', NULL, '2022-04-27 22:49:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26034, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/get', '{"query":{"id":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:49:18', '2022-04-27 22:49:19', 27, 0, '', NULL, '2022-04-27 22:49:19', NULL, '2022-04-27 22:49:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26035, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/data-source-config/update', '{"query":{},"body":"{\"name\":\"test\",\"url\":\"jdbc:mysql://127.0.0.1:3306/testb5f4\",\"username\":\"root\",\"id\":8,\"createTime\":1651070900000,\"password\":\"123456\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:49:22', '2022-04-27 22:49:22', 40, 0, '', NULL, '2022-04-27 22:49:22', NULL, '2022-04-27 22:49:22', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26036, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:49:22', '2022-04-27 22:49:22', 14, 0, '', NULL, '2022-04-27 22:49:22', NULL, '2022-04-27 22:49:22', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26037, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 23:04:18', '2022-04-27 23:04:18', 88, 0, '', NULL, '2022-04-27 23:04:18', NULL, '2022-04-27 23:04:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26038, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 23:04:18', '2022-04-27 23:04:18', 117, 0, '', NULL, '2022-04-27 23:04:18', NULL, '2022-04-27 23:04:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26039, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 23:04:18', '2022-04-27 23:04:18', 14, 0, '', NULL, '2022-04-27 23:04:18', NULL, '2022-04-27 23:04:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26040, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 23:04:19', '2022-04-27 23:04:19', 50, 0, '', NULL, '2022-04-27 23:04:19', NULL, '2022-04-27 23:04:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26041, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/get', '{"query":{"id":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 23:04:20', '2022-04-27 23:04:20', 80, 0, '', NULL, '2022-04-27 23:04:20', NULL, '2022-04-27 23:04:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26042, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/data-source-config/update', '{"query":{},"body":"{\"name\":\"test\",\"url\":\"jdbc:mysql://127.0.0.1:3306/testb5f4\",\"username\":\"root\",\"id\":8,\"createTime\":1651070900000,\"password\":\"1\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 23:04:21', '2022-04-27 23:04:22', 173, 1001007001, '数据源配置不正确,无法进行连接', NULL, '2022-04-27 23:04:22', NULL, '2022-04-27 23:04:22', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26043, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/data-source-config/update', '{"query":{},"body":"{\"name\":\"test\",\"url\":\"jdbc:mysql://127.0.0.1:3306/testb5f4\",\"username\":\"root\",\"id\":8,\"createTime\":1651070900000,\"password\":\"123456\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 23:04:24', '2022-04-27 23:04:24', 87, 0, '', NULL, '2022-04-27 23:04:24', NULL, '2022-04-27 23:04:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26044, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 23:04:24', '2022-04-27 23:04:24', 16, 0, '', NULL, '2022-04-27 23:04:24', NULL, '2022-04-27 23:04:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26045, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:47:55', '2022-04-28 10:47:55', 128, 0, '', NULL, '2022-04-28 10:47:55', NULL, '2022-04-28 10:47:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26046, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:47:55', '2022-04-28 10:47:55', 173, 0, '', NULL, '2022-04-28 10:47:55', NULL, '2022-04-28 10:47:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26047, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/logout', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:47:55', '2022-04-28 10:47:55', 91, 0, '', NULL, '2022-04-28 10:47:55', NULL, '2022-04-28 10:47:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26048, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:47:55', '2022-04-28 10:47:57', 1651, 0, '', NULL, '2022-04-28 10:47:57', NULL, '2022-04-28 10:47:57', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26049, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:47:59', '2022-04-28 10:47:59', 24, 0, '', NULL, '2022-04-28 10:47:59', NULL, '2022-04-28 10:47:59', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26050, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/tenant/get-id-by-name', '{"query":{"name":"芋道源码"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:04', '2022-04-28 10:48:04', 35, 0, '', NULL, '2022-04-28 10:48:04', NULL, '2022-04-28 10:48:04', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26051, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/login', '{"query":{},"body":"{\"username\":\"admin\",\"password\":\"admin123\",\"code\":\"qmqy0\",\"uuid\":\"baf9d07446d84e55abc6e5952ba9e6a5\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:04', '2022-04-28 10:48:04', 4, 0, '', NULL, '2022-04-28 10:48:04', NULL, '2022-04-28 10:48:04', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26052, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:04', '2022-04-28 10:48:04', 13, 0, '', NULL, '2022-04-28 10:48:04', NULL, '2022-04-28 10:48:04', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26053, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/logout', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:05', '2022-04-28 10:48:05', 2, 0, '', NULL, '2022-04-28 10:48:05', NULL, '2022-04-28 10:48:05', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26054, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:06', '2022-04-28 10:48:06', 20, 0, '', NULL, '2022-04-28 10:48:06', NULL, '2022-04-28 10:48:06', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26055, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:12', '2022-04-28 10:48:12', 15, 0, '', NULL, '2022-04-28 10:48:12', NULL, '2022-04-28 10:48:12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26056, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/tenant/get-id-by-name', '{"query":{"name":"芋道源码"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:15', '2022-04-28 10:48:15', 12, 0, '', NULL, '2022-04-28 10:48:15', NULL, '2022-04-28 10:48:15', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26057, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/auth/login', '{"query":{},"body":"{\"username\":\"admin\",\"password\":\"admin123\",\"code\":\"07wd7\",\"uuid\":\"2cee3479acf345f5938b2a9be688a260\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:15', '2022-04-28 10:48:15', 239, 0, '', NULL, '2022-04-28 10:48:15', NULL, '2022-04-28 10:48:15', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26058, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:15', '2022-04-28 10:48:15', 19, 0, '', NULL, '2022-04-28 10:48:15', NULL, '2022-04-28 10:48:15', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26059, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:15', '2022-04-28 10:48:15', 41, 0, '', NULL, '2022-04-28 10:48:15', NULL, '2022-04-28 10:48:15', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26060, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:15', '2022-04-28 10:48:16', 10, 0, '', NULL, '2022-04-28 10:48:16', NULL, '2022-04-28 10:48:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26061, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:54', '2022-04-28 10:48:54', 109, 0, '', NULL, '2022-04-28 10:48:54', NULL, '2022-04-28 10:48:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26062, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:48:56', '2022-04-28 10:57:52', 535817, 500, '系统异常', NULL, '2022-04-28 10:57:52', NULL, '2022-04-28 10:57:52', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26063, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:05:10', '2022-04-28 11:05:10', 107, 0, '', NULL, '2022-04-28 11:05:10', NULL, '2022-04-28 11:05:10', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26064, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:05:10', '2022-04-28 11:05:10', 86, 0, '', NULL, '2022-04-28 11:05:10', NULL, '2022-04-28 11:05:10', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26065, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:05:10', '2022-04-28 11:05:10', 14, 0, '', NULL, '2022-04-28 11:05:10', NULL, '2022-04-28 11:05:10', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26066, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:05:10', '2022-04-28 11:05:10', 113, 0, '', NULL, '2022-04-28 11:05:10', NULL, '2022-04-28 11:05:10', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26067, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:05:11', '2022-04-28 11:05:54', 42421, 500, '系统异常', NULL, '2022-04-28 11:05:54', NULL, '2022-04-28 11:05:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26068, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:18:18', '2022-04-28 11:18:18', 74, 0, '', NULL, '2022-04-28 11:18:18', NULL, '2022-04-28 11:18:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26069, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:18:18', '2022-04-28 11:18:18', 68, 0, '', NULL, '2022-04-28 11:18:18', NULL, '2022-04-28 11:18:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26070, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:18:18', '2022-04-28 11:18:18', 10, 0, '', NULL, '2022-04-28 11:18:18', NULL, '2022-04-28 11:18:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26071, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:18:19', '2022-04-28 11:18:19', 126, 0, '', NULL, '2022-04-28 11:18:19', NULL, '2022-04-28 11:18:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26072, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:28:34', '2022-04-28 11:28:34', 21, 0, '', NULL, '2022-04-28 11:28:34', NULL, '2022-04-28 11:28:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26073, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:28:34', '2022-04-28 11:28:34', 31, 0, '', NULL, '2022-04-28 11:28:34', NULL, '2022-04-28 11:28:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26074, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:28:34', '2022-04-28 11:28:34', 6, 0, '', NULL, '2022-04-28 11:28:34', NULL, '2022-04-28 11:28:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26075, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:28:34', '2022-04-28 11:28:34', 39, 0, '', NULL, '2022-04-28 11:28:34', NULL, '2022-04-28 11:28:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26076, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:28:50', '2022-04-28 11:41:03', 733029, 500, '系统异常', NULL, '2022-04-28 11:41:03', NULL, '2022-04-28 11:41:03', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26077, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:41:52', '2022-04-28 11:41:53', 105, 0, '', NULL, '2022-04-28 11:41:53', NULL, '2022-04-28 11:41:53', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26078, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:41:52', '2022-04-28 11:41:53', 88, 0, '', NULL, '2022-04-28 11:41:53', NULL, '2022-04-28 11:41:53', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26079, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:41:53', '2022-04-28 11:41:53', 15, 0, '', NULL, '2022-04-28 11:41:53', NULL, '2022-04-28 11:41:53', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26080, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:41:53', '2022-04-28 11:41:53', 128, 0, '', NULL, '2022-04-28 11:41:53', NULL, '2022-04-28 11:41:53', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26081, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:42:20', '2022-04-28 11:47:34', 314086, 500, '系统异常', NULL, '2022-04-28 11:47:34', NULL, '2022-04-28 11:47:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26082, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:13', '2022-04-28 11:49:13', 86, 0, '', NULL, '2022-04-28 11:49:13', NULL, '2022-04-28 11:49:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26083, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:13', '2022-04-28 11:49:13', 105, 0, '', NULL, '2022-04-28 11:49:13', NULL, '2022-04-28 11:49:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26084, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:13', '2022-04-28 11:49:13', 12, 0, '', NULL, '2022-04-28 11:49:13', NULL, '2022-04-28 11:49:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26085, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:14', '2022-04-28 11:49:14', 110, 0, '', NULL, '2022-04-28 11:49:14', NULL, '2022-04-28 11:49:14', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26086, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:16', '2022-04-28 11:49:46', 29006, 0, '', NULL, '2022-04-28 11:49:46', NULL, '2022-04-28 11:49:46', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26087, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:51', '2022-04-28 11:49:51', 25, 0, '', NULL, '2022-04-28 11:49:51', NULL, '2022-04-28 11:49:51', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26088, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:51', '2022-04-28 11:49:51', 34, 0, '', NULL, '2022-04-28 11:49:51', NULL, '2022-04-28 11:49:51', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26089, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:51', '2022-04-28 11:49:51', 6, 0, '', NULL, '2022-04-28 11:49:51', NULL, '2022-04-28 11:49:51', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26090, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:52', '2022-04-28 11:49:52', 37, 0, '', NULL, '2022-04-28 11:49:52', NULL, '2022-04-28 11:49:52', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26091, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:49:56', '2022-04-28 11:49:58', 2261, 0, '', NULL, '2022-04-28 11:49:58', NULL, '2022-04-28 11:49:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26092, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:33:33', '2022-04-28 12:33:33', 98, 0, '', NULL, '2022-04-28 12:33:33', NULL, '2022-04-28 12:33:33', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26093, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:33:33', '2022-04-28 12:33:33', 118, 0, '', NULL, '2022-04-28 12:33:33', NULL, '2022-04-28 12:33:33', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26094, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:33:33', '2022-04-28 12:33:33', 14, 0, '', NULL, '2022-04-28 12:33:33', NULL, '2022-04-28 12:33:33', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26095, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:33:33', '2022-04-28 12:33:33', 122, 0, '', NULL, '2022-04-28 12:33:33', NULL, '2022-04-28 12:33:33', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26096, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:34:17', '2022-04-28 12:34:17', 79, 500, '系统异常', NULL, '2022-04-28 12:34:17', NULL, '2022-04-28 12:34:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26097, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:34:42', '2022-04-28 12:34:42', 22, 0, '', NULL, '2022-04-28 12:34:42', NULL, '2022-04-28 12:34:42', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26098, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:34:42', '2022-04-28 12:34:42', 27, 0, '', NULL, '2022-04-28 12:34:42', NULL, '2022-04-28 12:34:42', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26099, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:34:43', '2022-04-28 12:34:43', 8, 0, '', NULL, '2022-04-28 12:34:43', NULL, '2022-04-28 12:34:43', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26100, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:34:43', '2022-04-28 12:34:43', 38, 0, '', NULL, '2022-04-28 12:34:43', NULL, '2022-04-28 12:34:43', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26101, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:34:48', '2022-04-28 12:37:35', 166291, 500, '系统异常', NULL, '2022-04-28 12:37:35', NULL, '2022-04-28 12:37:35', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26102, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:38:27', '2022-04-28 12:38:27', 90, 0, '', NULL, '2022-04-28 12:38:27', NULL, '2022-04-28 12:38:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26103, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:38:27', '2022-04-28 12:38:27', 108, 0, '', NULL, '2022-04-28 12:38:27', NULL, '2022-04-28 12:38:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26104, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:38:27', '2022-04-28 12:38:27', 14, 0, '', NULL, '2022-04-28 12:38:27', NULL, '2022-04-28 12:38:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26105, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:38:28', '2022-04-28 12:38:28', 113, 0, '', NULL, '2022-04-28 12:38:28', NULL, '2022-04-28 12:38:28', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26106, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:38:29', '2022-04-28 12:38:29', 85, 0, '', NULL, '2022-04-28 12:38:29', NULL, '2022-04-28 12:38:29', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26107, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:50:23', '2022-04-28 12:50:23', 104, 0, '', NULL, '2022-04-28 12:50:23', NULL, '2022-04-28 12:50:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26108, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:50:23', '2022-04-28 12:50:23', 87, 0, '', NULL, '2022-04-28 12:50:23', NULL, '2022-04-28 12:50:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26109, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:50:23', '2022-04-28 12:50:23', 15, 0, '', NULL, '2022-04-28 12:50:23', NULL, '2022-04-28 12:50:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26110, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:50:23', '2022-04-28 12:50:23', 115, 0, '', NULL, '2022-04-28 12:50:23', NULL, '2022-04-28 12:50:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26111, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:50:25', '2022-04-28 12:51:14', 49283, 0, '', NULL, '2022-04-28 12:51:14', NULL, '2022-04-28 12:51:14', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26112, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:51:18', '2022-04-28 12:51:18', 23, 0, '', NULL, '2022-04-28 12:51:18', NULL, '2022-04-28 12:51:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26113, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:51:18', '2022-04-28 12:51:18', 30, 0, '', NULL, '2022-04-28 12:51:18', NULL, '2022-04-28 12:51:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26114, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:51:18', '2022-04-28 12:51:18', 6, 0, '', NULL, '2022-04-28 12:51:18', NULL, '2022-04-28 12:51:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26115, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:51:19', '2022-04-28 12:51:19', 34, 0, '', NULL, '2022-04-28 12:51:19', NULL, '2022-04-28 12:51:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26116, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:51:20', '2022-04-28 12:51:21', 35, 0, '', NULL, '2022-04-28 12:51:21', NULL, '2022-04-28 12:51:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26117, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 13:04:23', '2022-04-28 13:04:23', 108, 0, '', NULL, '2022-04-28 13:04:23', NULL, '2022-04-28 13:04:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26118, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 13:04:23', '2022-04-28 13:04:23', 88, 0, '', NULL, '2022-04-28 13:04:23', NULL, '2022-04-28 13:04:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26119, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 13:04:23', '2022-04-28 13:04:23', 15, 0, '', NULL, '2022-04-28 13:04:23', NULL, '2022-04-28 13:04:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26120, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 13:04:24', '2022-04-28 13:04:24', 120, 0, '', NULL, '2022-04-28 13:04:24', NULL, '2022-04-28 13:04:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26121, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 13:04:24', '2022-04-28 13:04:25', 62, 0, '', NULL, '2022-04-28 13:04:25', NULL, '2022-04-28 13:04:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26122, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"53"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:01:28', '2022-04-28 19:01:28', 221, 500, '系统异常', NULL, '2022-04-28 19:01:28', NULL, '2022-04-28 19:01:28', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26123, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:19:06', '2022-04-28 19:19:06', 110, 0, '', NULL, '2022-04-28 19:19:06', NULL, '2022-04-28 19:19:06', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26124, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:19:06', '2022-04-28 19:19:06', 91, 0, '', NULL, '2022-04-28 19:19:06', NULL, '2022-04-28 19:19:06', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26125, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:19:06', '2022-04-28 19:19:06', 13, 0, '', NULL, '2022-04-28 19:19:06', NULL, '2022-04-28 19:19:06', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26126, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:19:06', '2022-04-28 19:19:06', 113, 0, '', NULL, '2022-04-28 19:19:06', NULL, '2022-04-28 19:19:06', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26127, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:19:11', '2022-04-28 19:19:11', 63, 0, '', NULL, '2022-04-28 19:19:11', NULL, '2022-04-28 19:19:11', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26128, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:19:14', '2022-04-28 19:19:14', 69, 500, '系统异常', NULL, '2022-04-28 19:19:14', NULL, '2022-04-28 19:19:14', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26129, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:21:13', '2022-04-28 19:21:13', 105, 0, '', NULL, '2022-04-28 19:21:13', NULL, '2022-04-28 19:21:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26130, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:21:13', '2022-04-28 19:21:13', 89, 0, '', NULL, '2022-04-28 19:21:13', NULL, '2022-04-28 19:21:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26131, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:21:13', '2022-04-28 19:21:13', 12, 0, '', NULL, '2022-04-28 19:21:13', NULL, '2022-04-28 19:21:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26132, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:21:13', '2022-04-28 19:21:14', 117, 0, '', NULL, '2022-04-28 19:21:14', NULL, '2022-04-28 19:21:14', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26133, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:21:16', '2022-04-28 19:21:16', 66, 0, '', NULL, '2022-04-28 19:21:16', NULL, '2022-04-28 19:21:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26134, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:21:18', '2022-04-28 19:21:18', 70, 500, '系统异常', NULL, '2022-04-28 19:21:18', NULL, '2022-04-28 19:21:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26135, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:22:34', '2022-04-28 19:22:34', 107, 0, '', NULL, '2022-04-28 19:22:34', NULL, '2022-04-28 19:22:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26136, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:22:34', '2022-04-28 19:22:34', 88, 0, '', NULL, '2022-04-28 19:22:34', NULL, '2022-04-28 19:22:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26137, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:22:34', '2022-04-28 19:22:34', 12, 0, '', NULL, '2022-04-28 19:22:34', NULL, '2022-04-28 19:22:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26138, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:22:34', '2022-04-28 19:22:35', 111, 0, '', NULL, '2022-04-28 19:22:35', NULL, '2022-04-28 19:22:35', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26139, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:22:36', '2022-04-28 19:22:36', 67, 0, '', NULL, '2022-04-28 19:22:36', NULL, '2022-04-28 19:22:36', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26140, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:22:38', '2022-04-28 19:22:39', 69, 500, '系统异常', NULL, '2022-04-28 19:22:39', NULL, '2022-04-28 19:22:39', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26141, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:23:20', '2022-04-28 19:23:51', 31422, 500, '系统异常', NULL, '2022-04-28 19:23:51', NULL, '2022-04-28 19:23:51', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26142, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:23:51', '2022-04-28 19:23:53', 2169, 500, '系统异常', NULL, '2022-04-28 19:23:53', NULL, '2022-04-28 19:23:53', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26143, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:23:56', '2022-04-28 19:23:57', 47, 500, '系统异常', NULL, '2022-04-28 19:23:57', NULL, '2022-04-28 19:23:57', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26144, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:25:47', '2022-04-28 19:25:51', 4334, 0, '', NULL, '2022-04-28 19:25:51', NULL, '2022-04-28 19:25:51', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26145, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:25:51', '2022-04-28 19:25:52', 109, 0, '', NULL, '2022-04-28 19:25:52', NULL, '2022-04-28 19:25:52', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26146, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"53"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:25:57', '2022-04-28 19:25:57', 54, 0, '', NULL, '2022-04-28 19:25:57', NULL, '2022-04-28 19:25:57', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26147, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:25:57', '2022-04-28 19:25:57', 35, 0, '', NULL, '2022-04-28 19:25:57', NULL, '2022-04-28 19:25:57', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26148, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"54"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:00', '2022-04-28 19:26:00', 39, 0, '', NULL, '2022-04-28 19:26:00', NULL, '2022-04-28 19:26:00', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26149, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:00', '2022-04-28 19:26:00', 29, 0, '', NULL, '2022-04-28 19:26:00', NULL, '2022-04-28 19:26:00', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26150, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"55"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:02', '2022-04-28 19:26:02', 42, 0, '', NULL, '2022-04-28 19:26:02', NULL, '2022-04-28 19:26:02', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26151, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:02', '2022-04-28 19:26:02', 28, 0, '', NULL, '2022-04-28 19:26:02', NULL, '2022-04-28 19:26:02', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26152, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"59"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:03', '2022-04-28 19:26:03', 41, 0, '', NULL, '2022-04-28 19:26:03', NULL, '2022-04-28 19:26:03', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26153, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:03', '2022-04-28 19:26:04', 30, 0, '', NULL, '2022-04-28 19:26:04', NULL, '2022-04-28 19:26:04', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26154, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"62"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:05', '2022-04-28 19:26:05', 41, 0, '', NULL, '2022-04-28 19:26:05', NULL, '2022-04-28 19:26:05', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26155, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:05', '2022-04-28 19:26:05', 31, 0, '', NULL, '2022-04-28 19:26:05', NULL, '2022-04-28 19:26:05', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26156, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"64"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:07', '2022-04-28 19:26:07', 42, 0, '', NULL, '2022-04-28 19:26:07', NULL, '2022-04-28 19:26:07', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26157, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:07', '2022-04-28 19:26:07', 29, 0, '', NULL, '2022-04-28 19:26:07', NULL, '2022-04-28 19:26:07', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26158, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"67"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:09', '2022-04-28 19:26:09', 40, 0, '', NULL, '2022-04-28 19:26:09', NULL, '2022-04-28 19:26:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26159, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:09', '2022-04-28 19:26:09', 31, 0, '', NULL, '2022-04-28 19:26:09', NULL, '2022-04-28 19:26:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26160, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"68"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:11', '2022-04-28 19:26:11', 39, 0, '', NULL, '2022-04-28 19:26:11', NULL, '2022-04-28 19:26:11', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26161, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:11', '2022-04-28 19:26:11', 28, 0, '', NULL, '2022-04-28 19:26:11', NULL, '2022-04-28 19:26:11', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26162, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"69"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:12', '2022-04-28 19:26:12', 39, 0, '', NULL, '2022-04-28 19:26:12', NULL, '2022-04-28 19:26:12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26163, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:12', '2022-04-28 19:26:12', 30, 0, '', NULL, '2022-04-28 19:26:12', NULL, '2022-04-28 19:26:12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26164, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"70"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:14', '2022-04-28 19:26:14', 38, 0, '', NULL, '2022-04-28 19:26:14', NULL, '2022-04-28 19:26:14', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26165, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:14', '2022-04-28 19:26:14', 29, 0, '', NULL, '2022-04-28 19:26:14', NULL, '2022-04-28 19:26:14', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26166, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"71"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:16', '2022-04-28 19:26:16', 42, 0, '', NULL, '2022-04-28 19:26:16', NULL, '2022-04-28 19:26:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26167, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:16', '2022-04-28 19:26:16', 26, 0, '', NULL, '2022-04-28 19:26:16', NULL, '2022-04-28 19:26:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26168, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:17', '2022-04-28 19:26:17', 41, 0, '', NULL, '2022-04-28 19:26:17', NULL, '2022-04-28 19:26:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26169, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:20', '2022-04-28 19:26:20', 37, 0, '', NULL, '2022-04-28 19:26:20', NULL, '2022-04-28 19:26:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26170, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:44', '2022-04-28 19:26:44', 39, 0, '', NULL, '2022-04-28 19:26:44', NULL, '2022-04-28 19:26:44', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26171, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:49', '2022-04-28 19:26:49', 36, 0, '', NULL, '2022-04-28 19:26:49', NULL, '2022-04-28 19:26:49', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26172, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:26:50', '2022-04-28 19:26:50', 37, 0, '', NULL, '2022-04-28 19:26:50', NULL, '2022-04-28 19:26:50', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26173, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:55:10', '2022-04-28 19:55:10', 37, 0, '', NULL, '2022-04-28 19:55:10', NULL, '2022-04-28 19:55:10', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26174, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:01:25', '2022-04-28 20:01:25', 62, 0, '', NULL, '2022-04-28 20:01:25', NULL, '2022-04-28 20:01:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26175, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:01:25', '2022-04-28 20:01:25', 65, 0, '', NULL, '2022-04-28 20:01:25', NULL, '2022-04-28 20:01:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26176, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:01:25', '2022-04-28 20:01:25', 21, 0, '', NULL, '2022-04-28 20:01:25', NULL, '2022-04-28 20:01:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26177, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:01:25', '2022-04-28 20:01:25', 35, 0, '', NULL, '2022-04-28 20:01:25', NULL, '2022-04-28 20:01:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26178, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:01:26', '2022-04-28 20:01:26', 44, 0, '', NULL, '2022-04-28 20:01:26', NULL, '2022-04-28 20:01:26', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26179, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:01:26', '2022-04-28 20:01:26', 34, 0, '', NULL, '2022-04-28 20:01:26', NULL, '2022-04-28 20:01:26', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26180, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:09', '2022-04-28 20:02:09', 14, 0, '', NULL, '2022-04-28 20:02:09', NULL, '2022-04-28 20:02:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26181, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:09', '2022-04-28 20:02:09', 31, 0, '', NULL, '2022-04-28 20:02:09', NULL, '2022-04-28 20:02:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26182, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:11', '2022-04-28 20:02:11', 25, 0, '', NULL, '2022-04-28 20:02:11', NULL, '2022-04-28 20:02:11', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26183, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:11', '2022-04-28 20:02:11', 32, 0, '', NULL, '2022-04-28 20:02:11', NULL, '2022-04-28 20:02:11', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26184, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:11', '2022-04-28 20:02:11', 6, 0, '', NULL, '2022-04-28 20:02:11', NULL, '2022-04-28 20:02:11', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26185, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:12', '2022-04-28 20:02:12', 28, 0, '', NULL, '2022-04-28 20:02:12', NULL, '2022-04-28 20:02:12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26186, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:13', '2022-04-28 20:02:13', 14, 0, '', NULL, '2022-04-28 20:02:13', NULL, '2022-04-28 20:02:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26187, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:13', '2022-04-28 20:02:13', 33, 0, '', NULL, '2022-04-28 20:02:13', NULL, '2022-04-28 20:02:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26188, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:16', '2022-04-28 20:02:17', 31, 0, '', NULL, '2022-04-28 20:02:17', NULL, '2022-04-28 20:02:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26189, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:19', '2022-04-28 20:02:19', 37, 0, '', NULL, '2022-04-28 20:02:19', NULL, '2022-04-28 20:02:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26190, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:02:20', '2022-04-28 20:02:20', 43, 0, '', NULL, '2022-04-28 20:02:20', NULL, '2022-04-28 20:02:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26191, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":""},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:16', '2022-04-28 20:03:16', 11, 0, '', NULL, '2022-04-28 20:03:16', NULL, '2022-04-28 20:03:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26192, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:16', '2022-04-28 20:03:16', 47, 0, '', NULL, '2022-04-28 20:03:16', NULL, '2022-04-28 20:03:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26193, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":""},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:16', '2022-04-28 20:03:16', 11, 0, '', NULL, '2022-04-28 20:03:16', NULL, '2022-04-28 20:03:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26194, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:16', '2022-04-28 20:03:16', 26, 0, '', NULL, '2022-04-28 20:03:16', NULL, '2022-04-28 20:03:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26195, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:17', '2022-04-28 20:03:17', 14, 0, '', NULL, '2022-04-28 20:03:17', NULL, '2022-04-28 20:03:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26196, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:17', '2022-04-28 20:03:17', 40, 0, '', NULL, '2022-04-28 20:03:17', NULL, '2022-04-28 20:03:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26197, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":""},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:19', '2022-04-28 20:03:19', 10, 0, '', NULL, '2022-04-28 20:03:19', NULL, '2022-04-28 20:03:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26198, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:19', '2022-04-28 20:03:19', 23, 0, '', NULL, '2022-04-28 20:03:19', NULL, '2022-04-28 20:03:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26199, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:20', '2022-04-28 20:03:20', 13, 0, '', NULL, '2022-04-28 20:03:20', NULL, '2022-04-28 20:03:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26200, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:21', '2022-04-28 20:03:21', 32, 0, '', NULL, '2022-04-28 20:03:21', NULL, '2022-04-28 20:03:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26201, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:27', '2022-04-28 20:03:27', 37, 0, '', NULL, '2022-04-28 20:03:27', NULL, '2022-04-28 20:03:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26202, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:28', '2022-04-28 20:03:28', 35, 0, '', NULL, '2022-04-28 20:03:28', NULL, '2022-04-28 20:03:28', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26203, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:34', '2022-04-28 20:03:34', 31, 0, '', NULL, '2022-04-28 20:03:34', NULL, '2022-04-28 20:03:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26204, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:41', '2022-04-28 20:03:41', 31, 0, '', NULL, '2022-04-28 20:03:41', NULL, '2022-04-28 20:03:41', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26205, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:03:47', '2022-04-28 20:03:47', 16, 0, '', NULL, '2022-04-28 20:03:47', NULL, '2022-04-28 20:03:47', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26206, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/get', '{"query":{"id":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:01', '2022-04-28 20:04:01', 115, 0, '', NULL, '2022-04-28 20:04:01', NULL, '2022-04-28 20:04:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26207, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/data-source-config/update', '{"query":{},"body":"{\"name\":\"test\",\"url\":\"jdbc:mysql://127.0.0.1:3306/testb5f4\",\"username\":\"root\",\"id\":8,\"createTime\":1651070900000,\"password\":\"123456\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:05', '2022-04-28 20:04:06', 268, 0, '', NULL, '2022-04-28 20:04:06', NULL, '2022-04-28 20:04:06', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26208, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:06', '2022-04-28 20:04:06', 20, 0, '', NULL, '2022-04-28 20:04:06', NULL, '2022-04-28 20:04:06', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26209, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/test-demo/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:10', '2022-04-28 20:04:10', 85, 0, '', NULL, '2022-04-28 20:04:10', NULL, '2022-04-28 20:04:10', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26210, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:13', '2022-04-28 20:04:13', 14, 0, '', NULL, '2022-04-28 20:04:13', NULL, '2022-04-28 20:04:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26211, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:17', '2022-04-28 20:04:17', 24, 0, '', NULL, '2022-04-28 20:04:17', NULL, '2022-04-28 20:04:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26212, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:18', '2022-04-28 20:04:18', 13, 0, '', NULL, '2022-04-28 20:04:18', NULL, '2022-04-28 20:04:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26213, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:18', '2022-04-28 20:04:18', 34, 0, '', NULL, '2022-04-28 20:04:18', NULL, '2022-04-28 20:04:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26214, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:24', '2022-04-28 20:04:25', 55, 0, '', NULL, '2022-04-28 20:04:25', NULL, '2022-04-28 20:04:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26215, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:25', '2022-04-28 20:04:25', 34, 0, '', NULL, '2022-04-28 20:04:25', NULL, '2022-04-28 20:04:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26216, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:04:29', '2022-04-28 20:04:29', 34, 0, '', NULL, '2022-04-28 20:04:29', NULL, '2022-04-28 20:04:29', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26217, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:08:31', '2022-04-28 20:08:31', 176, 0, '', NULL, '2022-04-28 20:08:31', NULL, '2022-04-28 20:08:31', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26218, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:08:31', '2022-04-28 20:08:31', 152, 0, '', NULL, '2022-04-28 20:08:31', NULL, '2022-04-28 20:08:31', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26219, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:08:31', '2022-04-28 20:08:31', 23, 0, '', NULL, '2022-04-28 20:08:31', NULL, '2022-04-28 20:08:31', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26220, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:08:33', '2022-04-28 20:08:33', 161, 0, '', NULL, '2022-04-28 20:08:33', NULL, '2022-04-28 20:08:33', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26221, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:08:38', '2022-04-28 20:08:38', 36, 0, '', NULL, '2022-04-28 20:08:38', NULL, '2022-04-28 20:08:38', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26222, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:08:38', '2022-04-28 20:08:38', 53, 0, '', NULL, '2022-04-28 20:08:38', NULL, '2022-04-28 20:08:38', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26223, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:09:27', '2022-04-28 20:09:27', 16, 0, '', NULL, '2022-04-28 20:09:27', NULL, '2022-04-28 20:09:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26224, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:09:27', '2022-04-28 20:09:27', 34, 0, '', NULL, '2022-04-28 20:09:27', NULL, '2022-04-28 20:09:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26225, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:09:51', '2022-04-28 20:09:51', 22, 0, '', NULL, '2022-04-28 20:09:51', NULL, '2022-04-28 20:09:51', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26226, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:09:54', '2022-04-28 20:09:54', 15, 0, '', NULL, '2022-04-28 20:09:54', NULL, '2022-04-28 20:09:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26227, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:09:54', '2022-04-28 20:09:54', 40, 0, '', NULL, '2022-04-28 20:09:54', NULL, '2022-04-28 20:09:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26228, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:09:59', '2022-04-28 20:09:59', 264, 0, '', NULL, '2022-04-28 20:09:59', NULL, '2022-04-28 20:09:59', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26229, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:01', '2022-04-28 20:10:01', 14, 400, '请求参数缺失:dataSourceConfigId', NULL, '2022-04-28 20:10:01', NULL, '2022-04-28 20:10:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26230, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:35', '2022-04-28 20:10:35', 36, 0, '', NULL, '2022-04-28 20:10:35', NULL, '2022-04-28 20:10:35', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26231, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:35', '2022-04-28 20:10:35', 51, 0, '', NULL, '2022-04-28 20:10:35', NULL, '2022-04-28 20:10:35', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26232, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:35', '2022-04-28 20:10:35', 14, 0, '', NULL, '2022-04-28 20:10:35', NULL, '2022-04-28 20:10:35', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26233, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:36', '2022-04-28 20:10:36', 42, 0, '', NULL, '2022-04-28 20:10:36', NULL, '2022-04-28 20:10:36', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26234, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:37', '2022-04-28 20:10:37', 17, 0, '', NULL, '2022-04-28 20:10:37', NULL, '2022-04-28 20:10:37', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26235, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:37', '2022-04-28 20:10:37', 36, 0, '', NULL, '2022-04-28 20:10:37', NULL, '2022-04-28 20:10:37', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26236, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:39', '2022-04-28 20:10:39', 36, 0, '', NULL, '2022-04-28 20:10:39', NULL, '2022-04-28 20:10:39', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26237, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:41', '2022-04-28 20:10:41', 39, 0, '', NULL, '2022-04-28 20:10:41', NULL, '2022-04-28 20:10:41', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26238, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:42', '2022-04-28 20:10:42', 36, 0, '', NULL, '2022-04-28 20:10:42', NULL, '2022-04-28 20:10:42', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26239, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:44', '2022-04-28 20:10:44', 90, 0, '', NULL, '2022-04-28 20:10:44', NULL, '2022-04-28 20:10:44', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26240, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:57', '2022-04-28 20:10:57', 13, 0, '', NULL, '2022-04-28 20:10:57', NULL, '2022-04-28 20:10:57', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26241, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:10:57', '2022-04-28 20:10:57', 36, 0, '', NULL, '2022-04-28 20:10:57', NULL, '2022-04-28 20:10:57', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26242, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:11:01', '2022-04-28 20:11:01', 89, 0, '', NULL, '2022-04-28 20:11:01', NULL, '2022-04-28 20:11:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26243, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"user_profile"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:11:02', '2022-04-28 20:11:02', 56, 1003001001, '导入的表不存在', NULL, '2022-04-28 20:11:02', NULL, '2022-04-28 20:11:02', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26244, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:35:41', '2022-04-28 20:35:41', 87, 0, '', NULL, '2022-04-28 20:35:41', NULL, '2022-04-28 20:35:41', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26245, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:35:41', '2022-04-28 20:35:41', 106, 0, '', NULL, '2022-04-28 20:35:41', NULL, '2022-04-28 20:35:41', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26246, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:35:41', '2022-04-28 20:35:41', 12, 0, '', NULL, '2022-04-28 20:35:41', NULL, '2022-04-28 20:35:41', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26247, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:35:42', '2022-04-28 20:35:42', 105, 0, '', NULL, '2022-04-28 20:35:42', NULL, '2022-04-28 20:35:42', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26248, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:35:46', '2022-04-28 20:35:46', 34, 0, '', NULL, '2022-04-28 20:35:46', NULL, '2022-04-28 20:35:46', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26249, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:37:29', '2022-04-28 20:37:29', 15, 0, '', NULL, '2022-04-28 20:37:29', NULL, '2022-04-28 20:37:29', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26250, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:37:29', '2022-04-28 20:37:29', 16, 0, '', NULL, '2022-04-28 20:37:29', NULL, '2022-04-28 20:37:29', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26251, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:40:20', '2022-04-28 20:40:20', 24, 0, '', NULL, '2022-04-28 20:40:20', NULL, '2022-04-28 20:40:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26252, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:40:20', '2022-04-28 20:40:20', 29, 0, '', NULL, '2022-04-28 20:40:20', NULL, '2022-04-28 20:40:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26253, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:40:20', '2022-04-28 20:40:20', 6, 0, '', NULL, '2022-04-28 20:40:20', NULL, '2022-04-28 20:40:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26254, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:40:21', '2022-04-28 20:40:21', 20, 0, '', NULL, '2022-04-28 20:40:21', NULL, '2022-04-28 20:40:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26255, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/data-source-config/create', '{"query":{},"body":"{\"name\":\"oracle_test\",\"url\":\"jdbc:oracle:thin:@127.0.0.1:1521:orcl\",\"username\":\"root\",\"password\":\"123456\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:41:07', '2022-04-28 20:41:07', 140, 1001007001, '数据源配置不正确,无法进行连接', NULL, '2022-04-28 20:41:07', NULL, '2022-04-28 20:41:07', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26256, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/data-source-config/create', '{"query":{},"body":"{\"name\":\"oracle_test\",\"url\":\"jdbc:oracle:thin:@127.0.0.1:1521:xe\",\"username\":\"root\",\"password\":\"123456\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:41:26', '2022-04-28 20:41:26', 255, 0, '', NULL, '2022-04-28 20:41:26', NULL, '2022-04-28 20:41:26', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26257, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 20:41:26', '2022-04-28 20:41:26', 13, 0, '', NULL, '2022-04-28 20:41:26', NULL, '2022-04-28 20:41:26', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26258, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:11:58', '2022-04-28 21:11:58', 107, 0, '', NULL, '2022-04-28 21:11:58', NULL, '2022-04-28 21:11:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26259, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:11:58', '2022-04-28 21:11:58', 89, 0, '', NULL, '2022-04-28 21:11:58', NULL, '2022-04-28 21:11:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26260, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:11:58', '2022-04-28 21:11:58', 15, 0, '', NULL, '2022-04-28 21:11:58', NULL, '2022-04-28 21:11:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26261, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:11:58', '2022-04-28 21:11:58', 51, 0, '', NULL, '2022-04-28 21:11:58', NULL, '2022-04-28 21:11:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26262, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:00', '2022-04-28 21:12:00', 97, 0, '', NULL, '2022-04-28 21:12:00', NULL, '2022-04-28 21:12:00', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26263, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:01', '2022-04-28 21:12:01', 14, 0, '', NULL, '2022-04-28 21:12:01', NULL, '2022-04-28 21:12:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26264, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:01', '2022-04-28 21:12:01', 52, 0, '', NULL, '2022-04-28 21:12:01', NULL, '2022-04-28 21:12:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26265, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:05', '2022-04-28 21:12:05', 541, 500, '系统异常', NULL, '2022-04-28 21:12:05', NULL, '2022-04-28 21:12:05', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26266, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:05', '2022-04-28 21:12:05', 113, 500, '系统异常', NULL, '2022-04-28 21:12:05', NULL, '2022-04-28 21:12:05', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26267, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:05', '2022-04-28 21:12:05', 102, 500, '系统异常', NULL, '2022-04-28 21:12:05', NULL, '2022-04-28 21:12:05', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26268, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:05', '2022-04-28 21:12:05', 98, 500, '系统异常', NULL, '2022-04-28 21:12:05', NULL, '2022-04-28 21:12:05', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26269, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:13:13', '2022-04-28 21:13:14', 1481, 0, '', NULL, '2022-04-28 21:13:14', NULL, '2022-04-28 21:13:14', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26270, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9","tableName":"1"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:13:38', '2022-04-28 21:13:39', 468, 0, '', NULL, '2022-04-28 21:13:39', NULL, '2022-04-28 21:13:39', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26271, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9","tableName":""},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:13:41', '2022-04-28 21:13:41', 667, 0, '', NULL, '2022-04-28 21:13:41', NULL, '2022-04-28 21:13:41', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26272, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9","tableComment":"支付订单","tableName":""},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:13:46', '2022-04-28 21:13:46', 106, 500, '系统异常', NULL, '2022-04-28 21:13:46', NULL, '2022-04-28 21:13:46', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26273, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":""},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:15:57', '2022-04-28 21:15:57', 25, 0, '', NULL, '2022-04-28 21:15:57', NULL, '2022-04-28 21:15:57', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26274, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:15:58', '2022-04-28 21:15:58', 136, 0, '', NULL, '2022-04-28 21:15:58', NULL, '2022-04-28 21:15:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26275, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:15:59', '2022-04-28 21:15:59', 84, 0, '', NULL, '2022-04-28 21:15:59', NULL, '2022-04-28 21:15:59', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26276, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0","tableComment":"支付订单","tableName":""},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:15:59', '2022-04-28 21:15:59', 60, 0, '', NULL, '2022-04-28 21:15:59', NULL, '2022-04-28 21:15:59', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26277, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:16:02', '2022-04-28 21:16:03', 37, 0, '', NULL, '2022-04-28 21:16:03', NULL, '2022-04-28 21:16:03', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26278, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:16:06', '2022-04-28 21:16:06', 194, 0, '', NULL, '2022-04-28 21:16:06', NULL, '2022-04-28 21:16:06', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26279, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:16:07', '2022-04-28 21:16:08', 737, 0, '', NULL, '2022-04-28 21:16:08', NULL, '2022-04-28 21:16:08', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26280, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9","tableName":"支付订单"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:16:15', '2022-04-28 21:16:15', 312, 0, '', NULL, '2022-04-28 21:16:15', NULL, '2022-04-28 21:16:15', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26281, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:16:16', '2022-04-28 21:16:16', 33, 0, '', NULL, '2022-04-28 21:16:16', NULL, '2022-04-28 21:16:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26282, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0","tableName":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:16:20', '2022-04-28 21:16:20', 32, 0, '', NULL, '2022-04-28 21:16:20', NULL, '2022-04-28 21:16:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26283, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:16:21', '2022-04-28 21:16:21', 30, 0, '', NULL, '2022-04-28 21:16:21', NULL, '2022-04-28 21:16:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26284, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:17:47', '2022-04-28 21:17:47', 41, 0, '', NULL, '2022-04-28 21:17:47', NULL, '2022-04-28 21:17:47', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26285, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:17:47', '2022-04-28 21:17:47', 56, 0, '', NULL, '2022-04-28 21:17:47', NULL, '2022-04-28 21:17:47', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26286, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:17:47', '2022-04-28 21:17:47', 11, 0, '', NULL, '2022-04-28 21:17:47', NULL, '2022-04-28 21:17:47', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26287, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:17:47', '2022-04-28 21:17:47', 26, 0, '', NULL, '2022-04-28 21:17:47', NULL, '2022-04-28 21:17:47', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26288, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:17:51', '2022-04-28 21:17:51', 12, 0, '', NULL, '2022-04-28 21:17:51', NULL, '2022-04-28 21:17:51', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26289, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:17:51', '2022-04-28 21:17:51', 32, 0, '', NULL, '2022-04-28 21:17:51', NULL, '2022-04-28 21:17:51', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26290, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:22', '2022-04-29 00:18:22', 108, 0, '', NULL, '2022-04-29 00:18:22', NULL, '2022-04-29 00:18:22', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26291, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:22', '2022-04-29 00:18:22', 92, 0, '', NULL, '2022-04-29 00:18:22', NULL, '2022-04-29 00:18:22', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26292, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:22', '2022-04-29 00:18:22', 16, 0, '', NULL, '2022-04-29 00:18:22', NULL, '2022-04-29 00:18:22', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26293, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:23', '2022-04-29 00:18:23', 110, 0, '', NULL, '2022-04-29 00:18:23', NULL, '2022-04-29 00:18:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26294, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:23', '2022-04-29 00:18:23', 34, 0, '', NULL, '2022-04-29 00:18:23', NULL, '2022-04-29 00:18:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26295, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:23', '2022-04-29 00:18:24', 53, 0, '', NULL, '2022-04-29 00:18:24', NULL, '2022-04-29 00:18:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26296, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:27', '2022-04-29 00:18:29', 1175, 0, '', NULL, '2022-04-29 00:18:29', NULL, '2022-04-29 00:18:29', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26297, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:31', '2022-04-29 00:18:31', 70, 500, '系统异常', NULL, '2022-04-29 00:18:31', NULL, '2022-04-29 00:18:31', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26298, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:53', '2022-04-29 00:18:53', 41, 500, '系统异常', NULL, '2022-04-29 00:18:53', NULL, '2022-04-29 00:18:53', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26299, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:19:05', '2022-04-29 00:19:05', 38, 500, '系统异常', NULL, '2022-04-29 00:19:05', NULL, '2022-04-29 00:19:05', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26300, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:19:12', '2022-04-29 00:19:12', 22, 0, '', NULL, '2022-04-29 00:19:12', NULL, '2022-04-29 00:19:12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26301, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:19:12', '2022-04-29 00:19:12', 29, 0, '', NULL, '2022-04-29 00:19:12', NULL, '2022-04-29 00:19:12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26302, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:19:12', '2022-04-29 00:19:12', 7, 0, '', NULL, '2022-04-29 00:19:12', NULL, '2022-04-29 00:19:12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26303, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:19:12', '2022-04-29 00:19:12', 15, 0, '', NULL, '2022-04-29 00:19:12', NULL, '2022-04-29 00:19:12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26304, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:19:15', '2022-04-29 00:19:15', 22, 0, '', NULL, '2022-04-29 00:19:15', NULL, '2022-04-29 00:19:15', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26305, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:19:17', '2022-04-29 00:19:17', 16, 0, '', NULL, '2022-04-29 00:19:17', NULL, '2022-04-29 00:19:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26306, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:20:01', '2022-04-29 00:20:01', 94, 500, '系统异常', NULL, '2022-04-29 00:20:01', NULL, '2022-04-29 00:20:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26307, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:20:24', '2022-04-29 00:20:24', 65, 500, '系统异常', NULL, '2022-04-29 00:20:24', NULL, '2022-04-29 00:20:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26308, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:20:51', '2022-04-29 00:20:58', 7613, 500, '系统异常', NULL, '2022-04-29 00:20:58', NULL, '2022-04-29 00:20:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26309, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:21:20', '2022-04-29 00:22:43', 82607, 500, '系统异常', NULL, '2022-04-29 00:22:43', NULL, '2022-04-29 00:22:43', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26310, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:22:45', '2022-04-29 00:23:00', 15731, 500, '系统异常', NULL, '2022-04-29 00:23:00', NULL, '2022-04-29 00:23:00', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26311, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:23:42', '2022-04-29 00:23:43', 619, 500, '系统异常', NULL, '2022-04-29 00:23:43', NULL, '2022-04-29 00:23:43', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26312, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:24:05', '2022-04-29 00:24:35', 30328, 500, '系统异常', NULL, '2022-04-29 00:24:35', NULL, '2022-04-29 00:24:35', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26313, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:25:57', '2022-04-29 00:26:00', 3827, 500, '系统异常', NULL, '2022-04-29 00:26:00', NULL, '2022-04-29 00:26:00', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26314, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:26:25', '2022-04-29 00:26:25', 240, 500, '系统异常', NULL, '2022-04-29 00:26:25', NULL, '2022-04-29 00:26:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26315, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:26:36', '2022-04-29 00:28:34', 118280, 500, '系统异常', NULL, '2022-04-29 00:28:34', NULL, '2022-04-29 00:28:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26316, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:28:42', '2022-04-29 00:28:46', 3694, 500, '系统异常', NULL, '2022-04-29 00:28:46', NULL, '2022-04-29 00:28:46', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26317, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:29:54', '2022-04-29 00:30:44', 49492, 500, '系统异常', NULL, '2022-04-29 00:30:44', NULL, '2022-04-29 00:30:44', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26318, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:40:15', '2022-04-29 00:40:16', 110, 0, '', NULL, '2022-04-29 00:40:16', NULL, '2022-04-29 00:40:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26319, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:40:16', '2022-04-29 00:40:16', 83, 0, '', NULL, '2022-04-29 00:40:16', NULL, '2022-04-29 00:40:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26320, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:40:18', '2022-04-29 00:40:18', 73, 500, '系统异常', NULL, '2022-04-29 00:40:18', NULL, '2022-04-29 00:40:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26321, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:40:50', '2022-04-29 00:40:50', 49, 500, '系统异常', NULL, '2022-04-29 00:40:50', NULL, '2022-04-29 00:40:50', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26322, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:40:54', '2022-04-29 00:40:54', 40, 500, '系统异常', NULL, '2022-04-29 00:40:54', NULL, '2022-04-29 00:40:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26323, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:41:51', '2022-04-29 00:41:51', 191, 0, '', NULL, '2022-04-29 00:41:51', NULL, '2022-04-29 00:41:51', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26324, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:41:51', '2022-04-29 00:41:51', 99, 0, '', NULL, '2022-04-29 00:41:51', NULL, '2022-04-29 00:41:51', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26325, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"74"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:41:53', '2022-04-29 00:41:54', 300, 0, '', NULL, '2022-04-29 00:41:54', NULL, '2022-04-29 00:41:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26326, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:42:58', '2022-04-29 00:42:58', 25, 0, '', NULL, '2022-04-29 00:42:58', NULL, '2022-04-29 00:42:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26327, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:42:58', '2022-04-29 00:42:58', 39, 0, '', NULL, '2022-04-29 00:42:58', NULL, '2022-04-29 00:42:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26328, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:43:00', '2022-04-29 00:43:02', 1196, 0, '', NULL, '2022-04-29 00:43:02', NULL, '2022-04-29 00:43:02', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26329, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:43:04', '2022-04-29 00:43:05', 493, 500, '系统异常', NULL, '2022-04-29 00:43:05', NULL, '2022-04-29 00:43:05', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26330, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:43:15', '2022-04-29 00:43:27', 11978, 500, '系统异常', NULL, '2022-04-29 00:43:27', NULL, '2022-04-29 00:43:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26331, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:44:16', '2022-04-29 00:44:40', 24093, 500, '系统异常', NULL, '2022-04-29 00:44:40', NULL, '2022-04-29 00:44:40', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26332, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:47:21', '2022-04-29 00:47:22', 1170, 0, '', NULL, '2022-04-29 00:47:22', NULL, '2022-04-29 00:47:22', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26333, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:47:22', '2022-04-29 00:47:22', 106, 0, '', NULL, '2022-04-29 00:47:22', NULL, '2022-04-29 00:47:22', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26334, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:47:27', '2022-04-29 00:47:27', 36, 0, '', NULL, '2022-04-29 00:47:27', NULL, '2022-04-29 00:47:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26335, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/detail', '{"query":{"tableId":"79"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:47:27', '2022-04-29 00:47:27', 70, 0, '', NULL, '2022-04-29 00:47:27', NULL, '2022-04-29 00:47:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26336, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:47:27', '2022-04-29 00:47:27', 102, 0, '', NULL, '2022-04-29 00:47:27', NULL, '2022-04-29 00:47:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26337, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 18:06:09', '2022-04-29 18:06:09', 219, 0, '', NULL, '2022-04-29 18:06:09', NULL, '2022-04-29 18:06:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26338, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 18:06:09', '2022-04-29 18:06:09', 208, 0, '', NULL, '2022-04-29 18:06:09', NULL, '2022-04-29 18:06:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26339, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 18:06:09', '2022-04-29 18:06:09', 14, 0, '', NULL, '2022-04-29 18:06:09', NULL, '2022-04-29 18:06:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26340, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/role/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 18:06:15', '2022-04-29 18:06:15', 83, 0, '', NULL, '2022-04-29 18:06:15', NULL, '2022-04-29 18:06:15', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26341, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:06:56', '2022-04-29 20:06:57', 132, 0, '', NULL, '2022-04-29 20:06:57', NULL, '2022-04-29 20:06:57', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26342, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:06:56', '2022-04-29 20:06:57', 110, 0, '', NULL, '2022-04-29 20:06:57', NULL, '2022-04-29 20:06:57', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26343, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:06:57', '2022-04-29 20:06:57', 16, 0, '', NULL, '2022-04-29 20:06:57', NULL, '2022-04-29 20:06:57', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26344, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/role/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:06:57', '2022-04-29 20:06:57', 75, 0, '', NULL, '2022-04-29 20:06:57', NULL, '2022-04-29 20:06:57', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26345, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:05', '2022-04-29 20:07:05', 89, 0, '', NULL, '2022-04-29 20:07:05', NULL, '2022-04-29 20:07:05', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26346, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:05', '2022-04-29 20:07:06', 42, 0, '', NULL, '2022-04-29 20:07:06', NULL, '2022-04-29 20:07:06', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26347, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:07', '2022-04-29 20:07:07', 14, 0, '', NULL, '2022-04-29 20:07:07', NULL, '2022-04-29 20:07:07', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26348, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:06', '2022-04-29 20:07:07', 1764, 0, '', NULL, '2022-04-29 20:07:07', NULL, '2022-04-29 20:07:07', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26349, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:07', '2022-04-29 20:07:09', 1364, 0, '', NULL, '2022-04-29 20:07:09', NULL, '2022-04-29 20:07:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26350, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:10', '2022-04-29 20:07:10', 313, 0, '', NULL, '2022-04-29 20:07:10', NULL, '2022-04-29 20:07:10', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26351, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:16', '2022-04-29 20:07:16', 92, 0, '', NULL, '2022-04-29 20:07:16', NULL, '2022-04-29 20:07:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26352, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:38', '2022-04-29 20:07:38', 94, 0, '', NULL, '2022-04-29 20:07:38', NULL, '2022-04-29 20:07:38', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26353, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:48', '2022-04-29 20:07:48', 93, 0, '', NULL, '2022-04-29 20:07:48', NULL, '2022-04-29 20:07:48', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26354, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:07:12', '2022-04-29 20:08:00', 47634, 0, '', NULL, '2022-04-29 20:08:00', NULL, '2022-04-29 20:08:00', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26355, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:10', '2022-04-29 20:09:11', 1403, 0, '', NULL, '2022-04-29 20:09:11', NULL, '2022-04-29 20:09:11', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26356, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:14', '2022-04-29 20:09:15', 1452, 0, '', NULL, '2022-04-29 20:09:15', NULL, '2022-04-29 20:09:15', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26357, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:15', '2022-04-29 20:09:17', 1443, 0, '', NULL, '2022-04-29 20:09:17', NULL, '2022-04-29 20:09:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26358, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:18', '2022-04-29 20:09:19', 1500, 0, '', NULL, '2022-04-29 20:09:19', NULL, '2022-04-29 20:09:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26359, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:23', '2022-04-29 20:09:23', 223, 0, '', NULL, '2022-04-29 20:09:23', NULL, '2022-04-29 20:09:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26360, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:27', '2022-04-29 20:09:27', 97, 0, '', NULL, '2022-04-29 20:09:27', NULL, '2022-04-29 20:09:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26361, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:08:53', '2022-04-29 20:09:33', 40171, 0, '', NULL, '2022-04-29 20:09:33', NULL, '2022-04-29 20:09:33', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26362, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:40', '2022-04-29 20:09:40', 92, 0, '', NULL, '2022-04-29 20:09:40', NULL, '2022-04-29 20:09:40', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26363, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:05', '2022-04-29 20:09:41', 36470, 0, '', NULL, '2022-04-29 20:09:41', NULL, '2022-04-29 20:09:41', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26364, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:50', '2022-04-29 20:09:51', 1308, 0, '', NULL, '2022-04-29 20:09:51', NULL, '2022-04-29 20:09:51', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26365, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:09:53', '2022-04-29 20:10:21', 28089, 0, '', NULL, '2022-04-29 20:10:21', NULL, '2022-04-29 20:10:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26366, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:10:28', '2022-04-29 20:10:56', 27692, 0, '', NULL, '2022-04-29 20:10:56', NULL, '2022-04-29 20:10:56', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26367, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:25:10', '2022-04-29 20:25:10', 116, 0, '', NULL, '2022-04-29 20:25:10', NULL, '2022-04-29 20:25:10', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26368, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:25:10', '2022-04-29 20:25:10', 96, 0, '', NULL, '2022-04-29 20:25:10', NULL, '2022-04-29 20:25:10', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26369, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:25:10', '2022-04-29 20:25:10', 13, 0, '', NULL, '2022-04-29 20:25:10', NULL, '2022-04-29 20:25:10', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26370, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:25:11', '2022-04-29 20:25:11', 138, 0, '', NULL, '2022-04-29 20:25:11', NULL, '2022-04-29 20:25:11', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26371, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:25:12', '2022-04-29 20:25:12', 32, 0, '', NULL, '2022-04-29 20:25:12', NULL, '2022-04-29 20:25:12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26372, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:25:12', '2022-04-29 20:25:14', 1492, 0, '', NULL, '2022-04-29 20:25:14', NULL, '2022-04-29 20:25:14', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26373, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:25:18', '2022-04-29 20:25:18', 308, 0, '', NULL, '2022-04-29 20:25:18', NULL, '2022-04-29 20:25:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26374, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:25:51', '2022-04-29 20:25:52', 1011, 0, '', NULL, '2022-04-29 20:25:52', NULL, '2022-04-29 20:25:52', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26375, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:26:11', '2022-04-29 20:26:12', 601, 0, '', NULL, '2022-04-29 20:26:12', NULL, '2022-04-29 20:26:12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26376, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:26:13', '2022-04-29 20:26:14', 1247, 0, '', NULL, '2022-04-29 20:26:14', NULL, '2022-04-29 20:26:14', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26377, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:26:17', '2022-04-29 20:26:19', 1152, 0, '', NULL, '2022-04-29 20:26:19', NULL, '2022-04-29 20:26:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26378, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:26:27', '2022-04-29 20:26:27', 96, 0, '', NULL, '2022-04-29 20:26:27', NULL, '2022-04-29 20:26:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26379, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:26:29', '2022-04-29 20:26:30', 1169, 0, '', NULL, '2022-04-29 20:26:30', NULL, '2022-04-29 20:26:30', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26380, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:27:43', '2022-04-29 20:27:43', 23, 0, '', NULL, '2022-04-29 20:27:43', NULL, '2022-04-29 20:27:43', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26381, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:27:43', '2022-04-29 20:27:43', 30, 0, '', NULL, '2022-04-29 20:27:43', NULL, '2022-04-29 20:27:43', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26382, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:27:43', '2022-04-29 20:27:43', 9, 0, '', NULL, '2022-04-29 20:27:43', NULL, '2022-04-29 20:27:43', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26383, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:27:43', '2022-04-29 20:27:43', 35, 0, '', NULL, '2022-04-29 20:27:43', NULL, '2022-04-29 20:27:43', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26384, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:27:47', '2022-04-29 20:27:47', 13, 0, '', NULL, '2022-04-29 20:27:47', NULL, '2022-04-29 20:27:47', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26385, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:27:47', '2022-04-29 20:27:48', 1260, 0, '', NULL, '2022-04-29 20:27:48', NULL, '2022-04-29 20:27:48', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26386, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:27:51', '2022-04-29 20:27:53', 1382, 0, '', NULL, '2022-04-29 20:27:53', NULL, '2022-04-29 20:27:53', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26387, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:19', '2022-04-29 20:28:19', 15, 0, '', NULL, '2022-04-29 20:28:19', NULL, '2022-04-29 20:28:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26388, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:19', '2022-04-29 20:28:21', 1412, 0, '', NULL, '2022-04-29 20:28:21', NULL, '2022-04-29 20:28:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26389, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:25', '2022-04-29 20:28:25', 23, 0, '', NULL, '2022-04-29 20:28:25', NULL, '2022-04-29 20:28:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26390, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:25', '2022-04-29 20:28:25', 30, 0, '', NULL, '2022-04-29 20:28:25', NULL, '2022-04-29 20:28:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26391, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:25', '2022-04-29 20:28:25', 5, 0, '', NULL, '2022-04-29 20:28:25', NULL, '2022-04-29 20:28:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26392, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:26', '2022-04-29 20:28:26', 29, 0, '', NULL, '2022-04-29 20:28:26', NULL, '2022-04-29 20:28:26', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26393, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:29', '2022-04-29 20:28:29', 14, 0, '', NULL, '2022-04-29 20:28:29', NULL, '2022-04-29 20:28:29', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26394, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:29', '2022-04-29 20:28:30', 1344, 0, '', NULL, '2022-04-29 20:28:30', NULL, '2022-04-29 20:28:30', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26395, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:34', '2022-04-29 20:28:34', 103, 0, '', NULL, '2022-04-29 20:28:34', NULL, '2022-04-29 20:28:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26396, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:28:36', '2022-04-29 20:28:37', 608, 0, '', NULL, '2022-04-29 20:28:37', NULL, '2022-04-29 20:28:37', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26397, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:29:13', '2022-04-29 20:29:13', 15, 0, '', NULL, '2022-04-29 20:29:13', NULL, '2022-04-29 20:29:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26398, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:29:13', '2022-04-29 20:29:14', 1399, 0, '', NULL, '2022-04-29 20:29:14', NULL, '2022-04-29 20:29:14', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26399, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:29:17', '2022-04-29 20:29:18', 588, 0, '', NULL, '2022-04-29 20:29:18', NULL, '2022-04-29 20:29:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26400, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:29:44', '2022-04-29 20:29:45', 1414, 0, '', NULL, '2022-04-29 20:29:45', NULL, '2022-04-29 20:29:45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26401, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:29:46', '2022-04-29 20:29:47', 1381, 0, '', NULL, '2022-04-29 20:29:47', NULL, '2022-04-29 20:29:47', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26402, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:32:43', '2022-04-29 20:32:45', 1351, 0, '', NULL, '2022-04-29 20:32:45', NULL, '2022-04-29 20:32:45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26403, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0","name":"bpm"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:32:47', '2022-04-29 20:32:49', 1441, 500, '系统异常', NULL, '2022-04-29 20:32:49', NULL, '2022-04-29 20:32:49', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26404, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0","name":"apy"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:32:51', '2022-04-29 20:32:53', 1397, 500, '系统异常', NULL, '2022-04-29 20:32:53', NULL, '2022-04-29 20:32:53', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26405, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:33:03', '2022-04-29 20:33:04', 1343, 0, '', NULL, '2022-04-29 20:33:04', NULL, '2022-04-29 20:33:04', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26406, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:33:49', '2022-04-29 20:33:51', 1427, 0, '', NULL, '2022-04-29 20:33:51', NULL, '2022-04-29 20:33:51', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26407, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0","name":"pay"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:33:54', '2022-04-29 20:33:55', 1333, 500, '系统异常', NULL, '2022-04-29 20:33:55', NULL, '2022-04-29 20:33:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26408, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":""},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:34:21', '2022-04-29 20:34:21', 26, 0, '', NULL, '2022-04-29 20:34:21', NULL, '2022-04-29 20:34:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26409, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:34:21', '2022-04-29 20:34:21', 31, 0, '', NULL, '2022-04-29 20:34:21', NULL, '2022-04-29 20:34:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26410, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:34:23', '2022-04-29 20:34:23', 15, 0, '', NULL, '2022-04-29 20:34:23', NULL, '2022-04-29 20:34:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26411, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0","name":"pay"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:34:23', '2022-04-29 20:34:26', 3596, 0, '', NULL, '2022-04-29 20:34:26', NULL, '2022-04-29 20:34:26', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26412, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0","name":"pay"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:34:49', '2022-04-29 20:34:50', 1345, 0, '', NULL, '2022-04-29 20:34:50', NULL, '2022-04-29 20:34:50', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26413, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:34:53', '2022-04-29 20:34:54', 1409, 0, '', NULL, '2022-04-29 20:34:54', NULL, '2022-04-29 20:34:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26414, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0","comment":"OA"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:34:56', '2022-04-29 20:34:58', 1442, 0, '', NULL, '2022-04-29 20:34:58', NULL, '2022-04-29 20:34:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26415, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8","comment":"OA"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:35:05', '2022-04-29 20:35:05', 99, 0, '', NULL, '2022-04-29 20:35:05', NULL, '2022-04-29 20:35:05', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26416, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:35:07', '2022-04-29 20:35:09', 1338, 0, '', NULL, '2022-04-29 20:35:09', NULL, '2022-04-29 20:35:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26417, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:35:10', '2022-04-29 20:35:10', 89, 0, '', NULL, '2022-04-29 20:35:10', NULL, '2022-04-29 20:35:10', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26418, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"8","name":"profile"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:35:17', '2022-04-29 20:35:17', 90, 0, '', NULL, '2022-04-29 20:35:17', NULL, '2022-04-29 20:35:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26419, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:35:18', '2022-04-29 20:35:19', 1364, 0, '', NULL, '2022-04-29 20:35:19', NULL, '2022-04-29 20:35:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26420, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:35:21', '2022-04-29 20:35:22', 603, 0, '', NULL, '2022-04-29 20:35:22', NULL, '2022-04-29 20:35:22', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26421, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:36:59', '2022-04-29 20:37:01', 1408, 0, '', NULL, '2022-04-29 20:37:01', NULL, '2022-04-29 20:37:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26444, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"80"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:53', '2022-04-29 21:36:53', 61, 0, '', NULL, '2022-04-29 21:36:53', NULL, '2022-04-29 21:36:53', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26422, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_merchant"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:28:40', '2022-04-29 21:28:41', 1282, 1003001000, '表定义已经存在', NULL, '2022-04-29 21:28:41', NULL, '2022-04-29 21:28:41', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26423, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_log"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:28:49', '2022-04-29 21:28:50', 583, 1003001000, '表定义已经存在', NULL, '2022-04-29 21:28:50', NULL, '2022-04-29 21:28:50', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26424, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_log"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:10', '2022-04-29 21:29:27', 16861, 1003001000, '表定义已经存在', NULL, '2022-04-29 21:29:27', NULL, '2022-04-29 21:29:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26425, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:27', '2022-04-29 21:29:27', 59, 0, '', NULL, '2022-04-29 21:29:27', NULL, '2022-04-29 21:29:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26426, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:27', '2022-04-29 21:29:27', 77, 0, '', NULL, '2022-04-29 21:29:27', NULL, '2022-04-29 21:29:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26427, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:27', '2022-04-29 21:29:27', 12, 0, '', NULL, '2022-04-29 21:29:27', NULL, '2022-04-29 21:29:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26428, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:28', '2022-04-29 21:29:28', 109, 0, '', NULL, '2022-04-29 21:29:28', NULL, '2022-04-29 21:29:28', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26429, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:29', '2022-04-29 21:29:29', 20, 0, '', NULL, '2022-04-29 21:29:29', NULL, '2022-04-29 21:29:29', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26430, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:29', '2022-04-29 21:29:29', 26, 0, '', NULL, '2022-04-29 21:29:29', NULL, '2022-04-29 21:29:29', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26431, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:29', '2022-04-29 21:29:29', 8, 0, '', NULL, '2022-04-29 21:29:29', NULL, '2022-04-29 21:29:29', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26432, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:30', '2022-04-29 21:29:30', 36, 0, '', NULL, '2022-04-29 21:29:30', NULL, '2022-04-29 21:29:30', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26433, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"74"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:32', '2022-04-29 21:29:32', 62, 0, '', NULL, '2022-04-29 21:29:32', NULL, '2022-04-29 21:29:32', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26434, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:32', '2022-04-29 21:29:32', 28, 0, '', NULL, '2022-04-29 21:29:32', NULL, '2022-04-29 21:29:32', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26435, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"79"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:34', '2022-04-29 21:29:34', 40, 0, '', NULL, '2022-04-29 21:29:34', NULL, '2022-04-29 21:29:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26436, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:34', '2022-04-29 21:29:34', 23, 0, '', NULL, '2022-04-29 21:29:34', NULL, '2022-04-29 21:29:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26437, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:35', '2022-04-29 21:29:35', 30, 0, '', NULL, '2022-04-29 21:29:35', NULL, '2022-04-29 21:29:35', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26438, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:35', '2022-04-29 21:29:36', 1523, 0, '', NULL, '2022-04-29 21:29:36', NULL, '2022-04-29 21:29:36', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26439, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:29:40', '2022-04-29 21:31:44', 124794, 0, '', NULL, '2022-04-29 21:31:44', NULL, '2022-04-29 21:31:44', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26440, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:49', '2022-04-29 21:36:49', 94, 0, '', NULL, '2022-04-29 21:36:49', NULL, '2022-04-29 21:36:49', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26441, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:49', '2022-04-29 21:36:49', 123, 0, '', NULL, '2022-04-29 21:36:49', NULL, '2022-04-29 21:36:49', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26442, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:49', '2022-04-29 21:36:49', 14, 0, '', NULL, '2022-04-29 21:36:49', NULL, '2022-04-29 21:36:49', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26443, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:50', '2022-04-29 21:36:50', 130, 0, '', NULL, '2022-04-29 21:36:50', NULL, '2022-04-29 21:36:50', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26445, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:53', '2022-04-29 21:36:53', 26, 0, '', NULL, '2022-04-29 21:36:53', NULL, '2022-04-29 21:36:53', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26446, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:54', '2022-04-29 21:36:54', 33, 0, '', NULL, '2022-04-29 21:36:54', NULL, '2022-04-29 21:36:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26447, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:54', '2022-04-29 21:36:55', 1648, 0, '', NULL, '2022-04-29 21:36:55', NULL, '2022-04-29 21:36:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26448, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:36:58', '2022-04-29 21:37:41', 43021, 0, '', NULL, '2022-04-29 21:37:41', NULL, '2022-04-29 21:37:41', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26449, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:37:48', '2022-04-29 21:37:48', 20, 0, '', NULL, '2022-04-29 21:37:48', NULL, '2022-04-29 21:37:48', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26450, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:37:48', '2022-04-29 21:37:48', 29, 0, '', NULL, '2022-04-29 21:37:48', NULL, '2022-04-29 21:37:48', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26451, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:37:48', '2022-04-29 21:37:48', 7, 0, '', NULL, '2022-04-29 21:37:48', NULL, '2022-04-29 21:37:48', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26452, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:37:49', '2022-04-29 21:37:49', 32, 0, '', NULL, '2022-04-29 21:37:49', NULL, '2022-04-29 21:37:49', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26453, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"81"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:37:52', '2022-04-29 21:37:52', 39, 0, '', NULL, '2022-04-29 21:37:52', NULL, '2022-04-29 21:37:52', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26454, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:37:52', '2022-04-29 21:37:52', 23, 0, '', NULL, '2022-04-29 21:37:52', NULL, '2022-04-29 21:37:52', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26455, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:38:54', '2022-04-29 21:38:54', 32, 0, '', NULL, '2022-04-29 21:38:54', NULL, '2022-04-29 21:38:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26456, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:38:54', '2022-04-29 21:38:54', 36, 0, '', NULL, '2022-04-29 21:38:54', NULL, '2022-04-29 21:38:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26457, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:38:54', '2022-04-29 21:38:54', 7, 0, '', NULL, '2022-04-29 21:38:54', NULL, '2022-04-29 21:38:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26458, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:38:55', '2022-04-29 21:38:55', 28, 0, '', NULL, '2022-04-29 21:38:55', NULL, '2022-04-29 21:38:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26459, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:38:59', '2022-04-29 21:38:59', 16, 0, '', NULL, '2022-04-29 21:38:59', NULL, '2022-04-29 21:38:59', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26460, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:39:00', '2022-04-29 21:39:00', 15, 0, '', NULL, '2022-04-29 21:39:00', NULL, '2022-04-29 21:39:00', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26461, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:38:59', '2022-04-29 21:39:00', 1449, 0, '', NULL, '2022-04-29 21:39:00', NULL, '2022-04-29 21:39:00', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26462, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:39:00', '2022-04-29 21:39:02', 1350, 0, '', NULL, '2022-04-29 21:39:02', NULL, '2022-04-29 21:39:02', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26463, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:39:04', '2022-04-29 21:39:51', 46587, 0, '', NULL, '2022-04-29 21:39:51', NULL, '2022-04-29 21:39:51', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26464, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:39:57', '2022-04-29 21:39:57', 66, 1003001000, '表定义已经存在', NULL, '2022-04-29 21:39:57', NULL, '2022-04-29 21:39:57', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26465, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:39:58', '2022-04-29 21:39:58', 22, 0, '', NULL, '2022-04-29 21:39:58', NULL, '2022-04-29 21:39:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26466, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:39:58', '2022-04-29 21:39:58', 29, 0, '', NULL, '2022-04-29 21:39:58', NULL, '2022-04-29 21:39:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26467, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:39:58', '2022-04-29 21:39:58', 5, 0, '', NULL, '2022-04-29 21:39:58', NULL, '2022-04-29 21:39:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26468, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:39:59', '2022-04-29 21:39:59', 30, 0, '', NULL, '2022-04-29 21:39:59', NULL, '2022-04-29 21:39:59', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26469, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"82"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:40:03', '2022-04-29 21:40:04', 295, 0, '', NULL, '2022-04-29 21:40:04', NULL, '2022-04-29 21:40:04', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26470, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"82"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:40:37', '2022-04-29 21:40:37', 38, 0, '', NULL, '2022-04-29 21:40:37', NULL, '2022-04-29 21:40:37', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26471, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:40:37', '2022-04-29 21:40:37', 23, 0, '', NULL, '2022-04-29 21:40:37', NULL, '2022-04-29 21:40:37', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26472, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:40:39', '2022-04-29 21:40:39', 13, 0, '', NULL, '2022-04-29 21:40:39', NULL, '2022-04-29 21:40:39', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26473, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:40:39', '2022-04-29 21:40:40', 1388, 0, '', NULL, '2022-04-29 21:40:40', NULL, '2022-04-29 21:40:40', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26474, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:08', '2022-04-29 21:41:08', 32, 0, '', NULL, '2022-04-29 21:41:08', NULL, '2022-04-29 21:41:08', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26475, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:08', '2022-04-29 21:41:09', 1468, 0, '', NULL, '2022-04-29 21:41:09', NULL, '2022-04-29 21:41:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26476, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:11', '2022-04-29 21:41:12', 1249, 0, '', NULL, '2022-04-29 21:41:12', NULL, '2022-04-29 21:41:12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26477, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:15', '2022-04-29 21:41:15', 153, 0, '', NULL, '2022-04-29 21:41:15', NULL, '2022-04-29 21:41:15', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26478, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:15', '2022-04-29 21:41:15', 25, 0, '', NULL, '2022-04-29 21:41:15', NULL, '2022-04-29 21:41:15', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26479, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"83"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:17', '2022-04-29 21:41:17', 91, 0, '', NULL, '2022-04-29 21:41:17', NULL, '2022-04-29 21:41:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26480, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:36', '2022-04-29 21:41:36', 14, 0, '', NULL, '2022-04-29 21:41:36', NULL, '2022-04-29 21:41:36', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26481, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:36', '2022-04-29 21:41:37', 1410, 0, '', NULL, '2022-04-29 21:41:37', NULL, '2022-04-29 21:41:37', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26482, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:38', '2022-04-29 21:41:38', 14, 0, '', NULL, '2022-04-29 21:41:38', NULL, '2022-04-29 21:41:38', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26483, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:38', '2022-04-29 21:41:40', 1486, 0, '', NULL, '2022-04-29 21:41:40', NULL, '2022-04-29 21:41:40', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26484, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"83"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:51', '2022-04-29 21:41:51', 104, 0, '', NULL, '2022-04-29 21:41:51', NULL, '2022-04-29 21:41:51', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26485, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/detail', '{"query":{"tableId":"83"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:54', '2022-04-29 21:41:54', 42, 0, '', NULL, '2022-04-29 21:41:54', NULL, '2022-04-29 21:41:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26486, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:54', '2022-04-29 21:41:54', 43, 0, '', NULL, '2022-04-29 21:41:54', NULL, '2022-04-29 21:41:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26487, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:41:54', '2022-04-29 21:41:54', 101, 0, '', NULL, '2022-04-29 21:41:54', NULL, '2022-04-29 21:41:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26488, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:13', '2022-04-29 21:42:14', 30, 0, '', NULL, '2022-04-29 21:42:14', NULL, '2022-04-29 21:42:14', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26489, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"83"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:16', '2022-04-29 21:42:16', 38, 0, '', NULL, '2022-04-29 21:42:16', NULL, '2022-04-29 21:42:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26490, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:16', '2022-04-29 21:42:16', 23, 0, '', NULL, '2022-04-29 21:42:16', NULL, '2022-04-29 21:42:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26491, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:17', '2022-04-29 21:42:17', 14, 0, '', NULL, '2022-04-29 21:42:17', NULL, '2022-04-29 21:42:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26492, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:17', '2022-04-29 21:42:18', 1430, 0, '', NULL, '2022-04-29 21:42:18', NULL, '2022-04-29 21:42:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26493, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:22', '2022-04-29 21:42:53', 30584, 0, '', NULL, '2022-04-29 21:42:53', NULL, '2022-04-29 21:42:53', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26494, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:56', '2022-04-29 21:42:56', 26, 0, '', NULL, '2022-04-29 21:42:56', NULL, '2022-04-29 21:42:56', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26495, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:56', '2022-04-29 21:42:56', 36, 0, '', NULL, '2022-04-29 21:42:56', NULL, '2022-04-29 21:42:56', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26496, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:56', '2022-04-29 21:42:56', 6, 0, '', NULL, '2022-04-29 21:42:56', NULL, '2022-04-29 21:42:56', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26497, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:56', '2022-04-29 21:42:57', 35, 0, '', NULL, '2022-04-29 21:42:57', NULL, '2022-04-29 21:42:57', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26498, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"84"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:42:58', '2022-04-29 21:42:58', 107, 0, '', NULL, '2022-04-29 21:42:58', NULL, '2022-04-29 21:42:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26499, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:01', '2022-04-29 21:43:01', 20, 0, '', NULL, '2022-04-29 21:43:01', NULL, '2022-04-29 21:43:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26500, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/detail', '{"query":{"tableId":"84"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:01', '2022-04-29 21:43:01', 51, 0, '', NULL, '2022-04-29 21:43:01', NULL, '2022-04-29 21:43:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26501, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:01', '2022-04-29 21:43:01', 66, 0, '', NULL, '2022-04-29 21:43:01', NULL, '2022-04-29 21:43:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26502, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:16', '2022-04-29 21:43:16', 31, 0, '', NULL, '2022-04-29 21:43:16', NULL, '2022-04-29 21:43:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26503, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:16', '2022-04-29 21:43:16', 57, 0, '', NULL, '2022-04-29 21:43:16', NULL, '2022-04-29 21:43:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26504, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:17', '2022-04-29 21:43:17', 6, 0, '', NULL, '2022-04-29 21:43:17', NULL, '2022-04-29 21:43:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26505, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:17', '2022-04-29 21:43:17', 26, 0, '', NULL, '2022-04-29 21:43:17', NULL, '2022-04-29 21:43:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26506, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/detail', '{"query":{"tableId":"84"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:17', '2022-04-29 21:43:17', 52, 0, '', NULL, '2022-04-29 21:43:17', NULL, '2022-04-29 21:43:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26507, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:43:17', '2022-04-29 21:43:17', 95, 0, '', NULL, '2022-04-29 21:43:17', NULL, '2022-04-29 21:43:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26508, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:44:32', '2022-04-29 21:44:32', 27, 0, '', NULL, '2022-04-29 21:44:32', NULL, '2022-04-29 21:44:32', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26509, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:44:32', '2022-04-29 21:44:32', 44, 0, '', NULL, '2022-04-29 21:44:32', NULL, '2022-04-29 21:44:32', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26510, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:44:32', '2022-04-29 21:44:32', 7, 0, '', NULL, '2022-04-29 21:44:32', NULL, '2022-04-29 21:44:32', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26511, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:44:33', '2022-04-29 21:44:33', 24, 0, '', NULL, '2022-04-29 21:44:33', NULL, '2022-04-29 21:44:33', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26512, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/detail', '{"query":{"tableId":"84"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:44:33', '2022-04-29 21:44:33', 59, 0, '', NULL, '2022-04-29 21:44:33', NULL, '2022-04-29 21:44:33', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26513, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:44:33', '2022-04-29 21:44:33', 90, 0, '', NULL, '2022-04-29 21:44:33', NULL, '2022-04-29 21:44:33', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26514, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:44:44', '2022-04-29 21:44:44', 27, 0, '', NULL, '2022-04-29 21:44:44', NULL, '2022-04-29 21:44:44', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26515, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"84"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:06', '2022-04-29 21:45:06', 97, 0, '', NULL, '2022-04-29 21:45:06', NULL, '2022-04-29 21:45:06', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26516, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"84"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:08', '2022-04-29 21:45:08', 87, 0, '', NULL, '2022-04-29 21:45:08', NULL, '2022-04-29 21:45:08', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26517, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"84"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:19', '2022-04-29 21:45:19', 38, 0, '', NULL, '2022-04-29 21:45:19', NULL, '2022-04-29 21:45:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26518, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:19', '2022-04-29 21:45:19', 23, 0, '', NULL, '2022-04-29 21:45:19', NULL, '2022-04-29 21:45:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26519, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:20', '2022-04-29 21:45:20', 14, 0, '', NULL, '2022-04-29 21:45:20', NULL, '2022-04-29 21:45:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26520, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:20', '2022-04-29 21:45:21', 1432, 0, '', NULL, '2022-04-29 21:45:21', NULL, '2022-04-29 21:45:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26521, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:25', '2022-04-29 21:45:49', 23564, 0, '', NULL, '2022-04-29 21:45:49', NULL, '2022-04-29 21:45:49', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26522, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:52', '2022-04-29 21:45:52', 22, 0, '', NULL, '2022-04-29 21:45:52', NULL, '2022-04-29 21:45:52', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26523, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:52', '2022-04-29 21:45:52', 30, 0, '', NULL, '2022-04-29 21:45:52', NULL, '2022-04-29 21:45:52', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26524, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:52', '2022-04-29 21:45:52', 6, 0, '', NULL, '2022-04-29 21:45:52', NULL, '2022-04-29 21:45:52', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26525, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:52', '2022-04-29 21:45:52', 33, 0, '', NULL, '2022-04-29 21:45:52', NULL, '2022-04-29 21:45:52', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26526, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"85"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:45:54', '2022-04-29 21:45:54', 89, 0, '', NULL, '2022-04-29 21:45:54', NULL, '2022-04-29 21:45:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26527, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"85"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:46:03', '2022-04-29 21:46:03', 41, 0, '', NULL, '2022-04-29 21:46:03', NULL, '2022-04-29 21:46:03', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26528, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:46:03', '2022-04-29 21:46:03', 25, 0, '', NULL, '2022-04-29 21:46:03', NULL, '2022-04-29 21:46:03', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26529, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:46:04', '2022-04-29 21:46:04', 14, 0, '', NULL, '2022-04-29 21:46:04', NULL, '2022-04-29 21:46:04', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26530, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:46:04', '2022-04-29 21:46:05', 1509, 0, '', NULL, '2022-04-29 21:46:05', NULL, '2022-04-29 21:46:05', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26531, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:46:07', '2022-04-29 21:46:08', 900, 0, '', NULL, '2022-04-29 21:46:08', NULL, '2022-04-29 21:46:08', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26532, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:46:10', '2022-04-29 21:47:24', 73382, 0, '', NULL, '2022-04-29 21:47:24', NULL, '2022-04-29 21:47:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26533, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:00', '2022-04-29 21:48:00', 27, 0, '', NULL, '2022-04-29 21:48:00', NULL, '2022-04-29 21:48:00', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26534, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:00', '2022-04-29 21:48:00', 35, 0, '', NULL, '2022-04-29 21:48:00', NULL, '2022-04-29 21:48:00', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26535, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:00', '2022-04-29 21:48:00', 7, 0, '', NULL, '2022-04-29 21:48:00', NULL, '2022-04-29 21:48:00', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26536, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:01', '2022-04-29 21:48:01', 68, 0, '', NULL, '2022-04-29 21:48:01', NULL, '2022-04-29 21:48:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26537, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:13', '2022-04-29 21:48:13', 13, 0, '', NULL, '2022-04-29 21:48:13', NULL, '2022-04-29 21:48:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26538, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:13', '2022-04-29 21:48:14', 1430, 0, '', NULL, '2022-04-29 21:48:14', NULL, '2022-04-29 21:48:14', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26539, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:19', '2022-04-29 21:48:20', 719, 0, '', NULL, '2022-04-29 21:48:20', NULL, '2022-04-29 21:48:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26540, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_oa_leave"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:22', '2022-04-29 21:48:48', 25844, 0, '', NULL, '2022-04-29 21:48:48', NULL, '2022-04-29 21:48:48', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26541, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:54', '2022-04-29 21:48:54', 27, 0, '', NULL, '2022-04-29 21:48:54', NULL, '2022-04-29 21:48:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26542, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:54', '2022-04-29 21:48:54', 36, 0, '', NULL, '2022-04-29 21:48:54', NULL, '2022-04-29 21:48:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26543, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:55', '2022-04-29 21:48:55', 8, 0, '', NULL, '2022-04-29 21:48:55', NULL, '2022-04-29 21:48:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26544, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:55', '2022-04-29 21:48:55', 42, 0, '', NULL, '2022-04-29 21:48:55', NULL, '2022-04-29 21:48:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26545, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"87"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:48:58', '2022-04-29 21:48:58', 112, 0, '', NULL, '2022-04-29 21:48:58', NULL, '2022-04-29 21:48:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26546, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"86"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:50:13', '2022-04-29 21:50:13', 44, 0, '', NULL, '2022-04-29 21:50:13', NULL, '2022-04-29 21:50:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26547, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:50:13', '2022-04-29 21:50:13', 30, 0, '', NULL, '2022-04-29 21:50:13', NULL, '2022-04-29 21:50:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26548, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"87"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:50:15', '2022-04-29 21:50:15', 38, 0, '', NULL, '2022-04-29 21:50:15', NULL, '2022-04-29 21:50:15', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26549, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 21:50:15', '2022-04-29 21:50:15', 23, 0, '', NULL, '2022-04-29 21:50:15', NULL, '2022-04-29 21:50:15', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26550, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:11', '2022-04-29 22:04:11', 118, 0, '', NULL, '2022-04-29 22:04:11', NULL, '2022-04-29 22:04:11', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26551, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:11', '2022-04-29 22:04:11', 101, 0, '', NULL, '2022-04-29 22:04:11', NULL, '2022-04-29 22:04:11', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26552, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:11', '2022-04-29 22:04:11', 15, 0, '', NULL, '2022-04-29 22:04:11', NULL, '2022-04-29 22:04:11', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26553, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:12', '2022-04-29 22:04:12', 138, 0, '', NULL, '2022-04-29 22:04:12', NULL, '2022-04-29 22:04:12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26554, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:40', '2022-04-29 22:04:40', 34, 0, '', NULL, '2022-04-29 22:04:40', NULL, '2022-04-29 22:04:40', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26555, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:40', '2022-04-29 22:04:40', 35, 0, '', NULL, '2022-04-29 22:04:40', NULL, '2022-04-29 22:04:40', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26556, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:40', '2022-04-29 22:04:40', 8, 0, '', NULL, '2022-04-29 22:04:40', NULL, '2022-04-29 22:04:40', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26557, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:41', '2022-04-29 22:04:41', 26, 0, '', NULL, '2022-04-29 22:04:41', NULL, '2022-04-29 22:04:41', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26558, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:43', '2022-04-29 22:04:43', 45, 0, '', NULL, '2022-04-29 22:04:43', NULL, '2022-04-29 22:04:43', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26559, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:43', '2022-04-29 22:04:45', 1543, 0, '', NULL, '2022-04-29 22:04:45', NULL, '2022-04-29 22:04:45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26560, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:47', '2022-04-29 22:04:47', 188, 0, '', NULL, '2022-04-29 22:04:47', NULL, '2022-04-29 22:04:47', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26561, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:47', '2022-04-29 22:04:47', 39, 0, '', NULL, '2022-04-29 22:04:47', NULL, '2022-04-29 22:04:47', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26562, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"88"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:49', '2022-04-29 22:04:50', 292, 0, '', NULL, '2022-04-29 22:04:50', NULL, '2022-04-29 22:04:50', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26563, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/codegen/sync-from-db', '{"query":{"tableId":"88"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:04:53', '2022-04-29 22:04:54', 673, 1003001007, '同步失败,不存在改变', NULL, '2022-04-29 22:04:54', NULL, '2022-04-29 22:04:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26564, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/codegen/sync-from-db', '{"query":{"tableId":"88"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:05:23', '2022-04-29 22:05:23', 114, 1003001007, '同步失败,不存在改变', NULL, '2022-04-29 22:05:23', NULL, '2022-04-29 22:05:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26565, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/codegen/sync-from-db', '{"query":{"tableId":"88"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:05:44', '2022-04-29 22:05:44', 93, 0, '', NULL, '2022-04-29 22:05:44', NULL, '2022-04-29 22:05:44', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26566, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"88"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:05:49', '2022-04-29 22:05:49', 98, 0, '', NULL, '2022-04-29 22:05:49', NULL, '2022-04-29 22:05:49', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26567, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/detail', '{"query":{"tableId":"88"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:05:52', '2022-04-29 22:05:52', 42, 0, '', NULL, '2022-04-29 22:05:52', NULL, '2022-04-29 22:05:52', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26568, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:05:52', '2022-04-29 22:05:52', 43, 0, '', NULL, '2022-04-29 22:05:52', NULL, '2022-04-29 22:05:52', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26569, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:05:52', '2022-04-29 22:05:53', 105, 0, '', NULL, '2022-04-29 22:05:53', NULL, '2022-04-29 22:05:53', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26570, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:06:01', '2022-04-29 22:06:01', 26, 0, '', NULL, '2022-04-29 22:06:01', NULL, '2022-04-29 22:06:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26571, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"88"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:06:17', '2022-04-29 22:06:17', 45, 0, '', NULL, '2022-04-29 22:06:17', NULL, '2022-04-29 22:06:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26572, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:06:17', '2022-04-29 22:06:17', 23, 0, '', NULL, '2022-04-29 22:06:17', NULL, '2022-04-29 22:06:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26573, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:29:39', '2022-04-29 22:29:39', 195, 0, '', NULL, '2022-04-29 22:29:39', NULL, '2022-04-29 22:29:39', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26574, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:30:36', '2022-04-29 22:30:36', 44, 0, '', NULL, '2022-04-29 22:30:36', NULL, '2022-04-29 22:30:36', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26575, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:30:36', '2022-04-29 22:30:36', 64, 0, '', NULL, '2022-04-29 22:30:36', NULL, '2022-04-29 22:30:36', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26576, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:30:36', '2022-04-29 22:30:36', 19, 0, '', NULL, '2022-04-29 22:30:36', NULL, '2022-04-29 22:30:36', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26577, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:30:37', '2022-04-29 22:30:37', 34, 0, '', NULL, '2022-04-29 22:30:37', NULL, '2022-04-29 22:30:37', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26578, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:30:38', '2022-04-29 22:30:38', 37, 0, '', NULL, '2022-04-29 22:30:38', NULL, '2022-04-29 22:30:38', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26579, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:30:38', '2022-04-29 22:30:40', 1608, 0, '', NULL, '2022-04-29 22:30:40', NULL, '2022-04-29 22:30:40', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26580, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{},"body":"{\"dataSourceConfigId\":0,\"tableNames\":[\"bpm_form\"]}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:30:44', '2022-04-29 22:30:44', 172, 500, '系统异常', NULL, '2022-04-29 22:30:44', NULL, '2022-04-29 22:30:44', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26581, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:47', '2022-04-29 22:33:48', 156, 0, '', NULL, '2022-04-29 22:33:48', NULL, '2022-04-29 22:33:48', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26582, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:47', '2022-04-29 22:33:47', 126, 0, '', NULL, '2022-04-29 22:33:48', NULL, '2022-04-29 22:33:48', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26583, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:48', '2022-04-29 22:33:48', 19, 0, '', NULL, '2022-04-29 22:33:48', NULL, '2022-04-29 22:33:48', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26584, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:48', '2022-04-29 22:33:48', 172, 0, '', NULL, '2022-04-29 22:33:48', NULL, '2022-04-29 22:33:48', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26585, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:50', '2022-04-29 22:33:50', 43, 0, '', NULL, '2022-04-29 22:33:50', NULL, '2022-04-29 22:33:50', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26586, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:50', '2022-04-29 22:33:52', 1755, 0, '', NULL, '2022-04-29 22:33:52', NULL, '2022-04-29 22:33:52', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26587, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{},"body":"{\"dataSourceConfigId\":0,\"tableNames\":[\"bpm_form\"]}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:54', '2022-04-29 22:33:54', 203, 0, '', NULL, '2022-04-29 22:33:54', NULL, '2022-04-29 22:33:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26588, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:54', '2022-04-29 22:33:54', 40, 0, '', NULL, '2022-04-29 22:33:54', NULL, '2022-04-29 22:33:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26589, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"89"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:57', '2022-04-29 22:33:57', 383, 0, '', NULL, '2022-04-29 22:33:57', NULL, '2022-04-29 22:33:57', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26590, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"89"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:33:59', '2022-04-29 22:33:59', 103, 0, '', NULL, '2022-04-29 22:33:59', NULL, '2022-04-29 22:33:59', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26591, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:01', '2022-04-29 22:34:01', 16, 0, '', NULL, '2022-04-29 22:34:01', NULL, '2022-04-29 22:34:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26592, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:01', '2022-04-29 22:34:02', 1526, 0, '', NULL, '2022-04-29 22:34:02', NULL, '2022-04-29 22:34:02', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26593, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:07', '2022-04-29 22:34:08', 1421, 0, '', NULL, '2022-04-29 22:34:08', NULL, '2022-04-29 22:34:08', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26594, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:08', '2022-04-29 22:34:09', 654, 0, '', NULL, '2022-04-29 22:34:09', NULL, '2022-04-29 22:34:09', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26595, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{},"body":"{\"dataSourceConfigId\":9,\"tableNames\":[\"bpm_oa_leave\"]}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:12', '2022-04-29 22:34:12', 204, 0, '', NULL, '2022-04-29 22:34:12', NULL, '2022-04-29 22:34:12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26596, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:12', '2022-04-29 22:34:12', 35, 0, '', NULL, '2022-04-29 22:34:12', NULL, '2022-04-29 22:34:12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26597, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:47', '2022-04-29 22:34:47', 15, 0, '', NULL, '2022-04-29 22:34:47', NULL, '2022-04-29 22:34:47', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26598, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:47', '2022-04-29 22:34:48', 1419, 0, '', NULL, '2022-04-29 22:34:48', NULL, '2022-04-29 22:34:48', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26599, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"beginCreateTime":"2022-03-31 00:00:00","pageNo":"1","pageSize":"10","endCreateTime":"2022-04-05 23:59:59"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:54', '2022-04-29 22:34:54', 112, 0, '', NULL, '2022-04-29 22:34:54', NULL, '2022-04-29 22:34:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26600, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:34:55', '2022-04-29 22:34:55', 27, 0, '', NULL, '2022-04-29 22:34:55', NULL, '2022-04-29 22:34:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26601, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:43:05', '2022-04-29 22:43:05', 459, 0, '', NULL, '2022-04-29 22:43:05', NULL, '2022-04-29 22:43:05', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26602, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:43:25', '2022-04-29 22:43:25', 36, 0, '', NULL, '2022-04-29 22:43:25', NULL, '2022-04-29 22:43:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26603, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:43:25', '2022-04-29 22:43:25', 66, 0, '', NULL, '2022-04-29 22:43:25', NULL, '2022-04-29 22:43:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26604, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"dataSourceConfigId":"0","pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:43:25', '2022-04-29 22:43:25', 37, 0, '', NULL, '2022-04-29 22:43:25', NULL, '2022-04-29 22:43:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26605, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:43:55', '2022-04-29 22:43:55', 27, 0, '', NULL, '2022-04-29 22:43:55', NULL, '2022-04-29 22:43:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26606, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:43:55', '2022-04-29 22:43:55', 55, 0, '', NULL, '2022-04-29 22:43:55', NULL, '2022-04-29 22:43:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26607, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:44:04', '2022-04-29 22:44:04', 18, 0, '', NULL, '2022-04-29 22:44:04', NULL, '2022-04-29 22:44:04', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26608, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:44:04', '2022-04-29 22:44:04', 38, 0, '', NULL, '2022-04-29 22:44:04', NULL, '2022-04-29 22:44:04', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26609, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:44:20', '2022-04-29 22:44:20', 39, 0, '', NULL, '2022-04-29 22:44:20', NULL, '2022-04-29 22:44:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26610, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:44:20', '2022-04-29 22:44:20', 60, 0, '', NULL, '2022-04-29 22:44:20', NULL, '2022-04-29 22:44:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26611, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:44:20', '2022-04-29 22:44:20', 11, 0, '', NULL, '2022-04-29 22:44:20', NULL, '2022-04-29 22:44:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26612, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:44:21', '2022-04-29 22:44:21', 18, 0, '', NULL, '2022-04-29 22:44:21', NULL, '2022-04-29 22:44:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26613, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:44:21', '2022-04-29 22:44:21', 37, 0, '', NULL, '2022-04-29 22:44:21', NULL, '2022-04-29 22:44:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26614, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:46:44', '2022-04-29 22:46:44', 18, 0, '', NULL, '2022-04-29 22:46:44', NULL, '2022-04-29 22:46:44', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26615, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:46:44', '2022-04-29 22:46:44', 53, 0, '', NULL, '2022-04-29 22:46:44', NULL, '2022-04-29 22:46:44', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26616, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:19', '2022-04-29 22:47:19', 18, 0, '', NULL, '2022-04-29 22:47:19', NULL, '2022-04-29 22:47:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26617, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:19', '2022-04-29 22:47:19', 43, 0, '', NULL, '2022-04-29 22:47:19', NULL, '2022-04-29 22:47:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26618, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:24', '2022-04-29 22:47:24', 27, 0, '', NULL, '2022-04-29 22:47:24', NULL, '2022-04-29 22:47:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26619, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:24', '2022-04-29 22:47:24', 33, 0, '', NULL, '2022-04-29 22:47:24', NULL, '2022-04-29 22:47:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26620, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:24', '2022-04-29 22:47:24', 7, 0, '', NULL, '2022-04-29 22:47:24', NULL, '2022-04-29 22:47:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26621, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:24', '2022-04-29 22:47:24', 20, 0, '', NULL, '2022-04-29 22:47:24', NULL, '2022-04-29 22:47:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26622, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:24', '2022-04-29 22:47:24', 41, 0, '', NULL, '2022-04-29 22:47:24', NULL, '2022-04-29 22:47:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26623, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:55', '2022-04-29 22:47:55', 30, 0, '', NULL, '2022-04-29 22:47:55', NULL, '2022-04-29 22:47:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26624, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:55', '2022-04-29 22:47:55', 40, 0, '', NULL, '2022-04-29 22:47:55', NULL, '2022-04-29 22:47:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26625, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:55', '2022-04-29 22:47:55', 9, 0, '', NULL, '2022-04-29 22:47:55', NULL, '2022-04-29 22:47:55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26626, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:56', '2022-04-29 22:47:56', 21, 0, '', NULL, '2022-04-29 22:47:56', NULL, '2022-04-29 22:47:56', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26627, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:47:56', '2022-04-29 22:47:56', 47, 0, '', NULL, '2022-04-29 22:47:56', NULL, '2022-04-29 22:47:56', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26628, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:48:01', '2022-04-29 22:48:01', 23, 0, '', NULL, '2022-04-29 22:48:01', NULL, '2022-04-29 22:48:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26629, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:48:01', '2022-04-29 22:48:01', 29, 0, '', NULL, '2022-04-29 22:48:01', NULL, '2022-04-29 22:48:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26630, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:48:01', '2022-04-29 22:48:01', 8, 0, '', NULL, '2022-04-29 22:48:01', NULL, '2022-04-29 22:48:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26631, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:48:02', '2022-04-29 22:48:02', 16, 0, '', NULL, '2022-04-29 22:48:02', NULL, '2022-04-29 22:48:02', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26632, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:48:02', '2022-04-29 22:48:02', 38, 0, '', NULL, '2022-04-29 22:48:02', NULL, '2022-04-29 22:48:02', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26633, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:55:59', '2022-04-29 22:55:59', 12, 0, '', NULL, '2022-04-29 22:55:59', NULL, '2022-04-29 22:55:59', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26634, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:55:59', '2022-04-29 22:56:01', 1535, 0, '', NULL, '2022-04-29 22:56:01', NULL, '2022-04-29 22:56:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26635, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:06', '2022-04-29 22:56:07', 1288, 0, '', NULL, '2022-04-29 22:56:07', NULL, '2022-04-29 22:56:07', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26636, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{},"body":"{\"dataSourceConfigId\":9,\"tableNames\":[\"bpm_form\"]}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:11', '2022-04-29 22:56:11', 225, 0, '', NULL, '2022-04-29 22:56:11', NULL, '2022-04-29 22:56:11', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26637, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:11', '2022-04-29 22:56:11', 27, 0, '', NULL, '2022-04-29 22:56:11', NULL, '2022-04-29 22:56:11', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26638, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"91"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:21', '2022-04-29 22:56:21', 51, 0, '', NULL, '2022-04-29 22:56:21', NULL, '2022-04-29 22:56:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26639, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:21', '2022-04-29 22:56:21', 26, 0, '', NULL, '2022-04-29 22:56:21', NULL, '2022-04-29 22:56:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26640, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"90"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:23', '2022-04-29 22:56:24', 36, 0, '', NULL, '2022-04-29 22:56:24', NULL, '2022-04-29 22:56:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26641, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:24', '2022-04-29 22:56:24', 26, 0, '', NULL, '2022-04-29 22:56:24', NULL, '2022-04-29 22:56:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26642, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"89"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:25', '2022-04-29 22:56:25', 38, 0, '', NULL, '2022-04-29 22:56:25', NULL, '2022-04-29 22:56:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26643, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:56:25', '2022-04-29 22:56:25', 22, 0, '', NULL, '2022-04-29 22:56:25', NULL, '2022-04-29 22:56:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26644, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:05:18', '2022-04-29 23:05:18', 21, 0, '', NULL, '2022-04-29 23:05:18', NULL, '2022-04-29 23:05:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26645, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:05:18', '2022-04-29 23:05:18', 40, 0, '', NULL, '2022-04-29 23:05:18', NULL, '2022-04-29 23:05:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26646, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:05:27', '2022-04-29 23:05:27', 23, 0, '', NULL, '2022-04-29 23:05:27', NULL, '2022-04-29 23:05:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26647, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:05:27', '2022-04-29 23:05:27', 40, 0, '', NULL, '2022-04-29 23:05:27', NULL, '2022-04-29 23:05:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26648, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:05:34', '2022-04-29 23:05:34', 15, 0, '', NULL, '2022-04-29 23:05:34', NULL, '2022-04-29 23:05:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26649, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:05:34', '2022-04-29 23:05:34', 28, 0, '', NULL, '2022-04-29 23:05:34', NULL, '2022-04-29 23:05:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26650, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:06:33', '2022-04-29 23:06:33', 27, 0, '', NULL, '2022-04-29 23:06:33', NULL, '2022-04-29 23:06:33', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26651, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:06:33', '2022-04-29 23:06:33', 35, 0, '', NULL, '2022-04-29 23:06:33', NULL, '2022-04-29 23:06:33', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26652, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:06:33', '2022-04-29 23:06:33', 8, 0, '', NULL, '2022-04-29 23:06:33', NULL, '2022-04-29 23:06:33', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26653, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:06:34', '2022-04-29 23:06:34', 19, 0, '', NULL, '2022-04-29 23:06:34', NULL, '2022-04-29 23:06:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26654, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:06:34', '2022-04-29 23:06:34', 40, 0, '', NULL, '2022-04-29 23:06:34', NULL, '2022-04-29 23:06:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26655, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:06:35', '2022-04-29 23:06:35', 17, 0, '', NULL, '2022-04-29 23:06:35', NULL, '2022-04-29 23:06:35', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26656, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:06:35', '2022-04-29 23:06:37', 1687, 500, '系统异常', NULL, '2022-04-29 23:06:37', NULL, '2022-04-29 23:06:37', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26657, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:16', '2022-04-29 23:11:17', 114, 0, '', NULL, '2022-04-29 23:11:17', NULL, '2022-04-29 23:11:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26658, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:16', '2022-04-29 23:11:16', 93, 0, '', NULL, '2022-04-29 23:11:17', NULL, '2022-04-29 23:11:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26659, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:17', '2022-04-29 23:11:17', 16, 0, '', NULL, '2022-04-29 23:11:17', NULL, '2022-04-29 23:11:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26660, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:17', '2022-04-29 23:11:17', 63, 0, '', NULL, '2022-04-29 23:11:17', NULL, '2022-04-29 23:11:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26661, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:17', '2022-04-29 23:11:17', 115, 0, '', NULL, '2022-04-29 23:11:17', NULL, '2022-04-29 23:11:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26662, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:21', '2022-04-29 23:11:21', 22, 0, '', NULL, '2022-04-29 23:11:21', NULL, '2022-04-29 23:11:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26663, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:21', '2022-04-29 23:11:21', 28, 0, '', NULL, '2022-04-29 23:11:21', NULL, '2022-04-29 23:11:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26664, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:21', '2022-04-29 23:11:21', 7, 0, '', NULL, '2022-04-29 23:11:21', NULL, '2022-04-29 23:11:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26665, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:22', '2022-04-29 23:11:22', 17, 0, '', NULL, '2022-04-29 23:11:22', NULL, '2022-04-29 23:11:22', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26666, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:22', '2022-04-29 23:11:22', 30, 0, '', NULL, '2022-04-29 23:11:22', NULL, '2022-04-29 23:11:22', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26667, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:23', '2022-04-29 23:11:23', 15, 0, '', NULL, '2022-04-29 23:11:23', NULL, '2022-04-29 23:11:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26668, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:23', '2022-04-29 23:11:25', 1664, 0, '', NULL, '2022-04-29 23:11:25', NULL, '2022-04-29 23:11:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26669, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{},"body":"{\"dataSourceConfigId\":0,\"tableNames\":[\"bpm_form\"]}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:11:27', '2022-04-29 23:11:27', 12, 0, '', NULL, '2022-04-29 23:11:27', NULL, '2022-04-29 23:11:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26670, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:07', '2022-04-29 23:12:07', 32, 0, '', NULL, '2022-04-29 23:12:07', NULL, '2022-04-29 23:12:07', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26671, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:07', '2022-04-29 23:12:07', 40, 0, '', NULL, '2022-04-29 23:12:07', NULL, '2022-04-29 23:12:07', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26672, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:07', '2022-04-29 23:12:07', 8, 0, '', NULL, '2022-04-29 23:12:07', NULL, '2022-04-29 23:12:07', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26673, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:08', '2022-04-29 23:12:08', 22, 0, '', NULL, '2022-04-29 23:12:08', NULL, '2022-04-29 23:12:08', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26674, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:08', '2022-04-29 23:12:08', 42, 0, '', NULL, '2022-04-29 23:12:08', NULL, '2022-04-29 23:12:08', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26675, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:08', '2022-04-29 23:12:08', 14, 0, '', NULL, '2022-04-29 23:12:08', NULL, '2022-04-29 23:12:08', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26676, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:08', '2022-04-29 23:12:10', 1443, 0, '', NULL, '2022-04-29 23:12:10', NULL, '2022-04-29 23:12:10', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26677, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list', '{"query":{},"body":"{\"dataSourceConfigId\":0,\"tableNames\":[\"bpm_form\"]}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:12', '2022-04-29 23:12:12', 182, 0, '', NULL, '2022-04-29 23:12:12', NULL, '2022-04-29 23:12:12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26678, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:12', '2022-04-29 23:12:12', 34, 0, '', NULL, '2022-04-29 23:12:12', NULL, '2022-04-29 23:12:12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26679, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/codegen/sync-from-db', '{"query":{"tableId":"92"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:12:16', '2022-04-29 23:12:16', 94, 1003001007, '同步失败,不存在改变', NULL, '2022-04-29 23:12:16', NULL, '2022-04-29 23:12:16', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26680, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:17', '2022-04-29 23:13:17', 17, 0, '', NULL, '2022-04-29 23:13:17', NULL, '2022-04-29 23:13:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26681, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:17', '2022-04-29 23:13:17', 34, 0, '', NULL, '2022-04-29 23:13:17', NULL, '2022-04-29 23:13:17', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26682, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:37', '2022-04-29 23:13:37', 14, 0, '', NULL, '2022-04-29 23:13:37', NULL, '2022-04-29 23:13:37', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26683, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:37', '2022-04-29 23:13:37', 29, 0, '', NULL, '2022-04-29 23:13:37', NULL, '2022-04-29 23:13:37', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26684, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:45', '2022-04-29 23:13:45', 29, 0, '', NULL, '2022-04-29 23:13:45', NULL, '2022-04-29 23:13:45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26685, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:45', '2022-04-29 23:13:45', 41, 0, '', NULL, '2022-04-29 23:13:45', NULL, '2022-04-29 23:13:45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26686, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:45', '2022-04-29 23:13:45', 8, 0, '', NULL, '2022-04-29 23:13:45', NULL, '2022-04-29 23:13:45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26687, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:46', '2022-04-29 23:13:46', 22, 0, '', NULL, '2022-04-29 23:13:46', NULL, '2022-04-29 23:13:46', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26688, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:46', '2022-04-29 23:13:46', 39, 0, '', NULL, '2022-04-29 23:13:46', NULL, '2022-04-29 23:13:46', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26689, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:46', '2022-04-29 23:13:46', 15, 0, '', NULL, '2022-04-29 23:13:46', NULL, '2022-04-29 23:13:46', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26690, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:46', '2022-04-29 23:13:48', 1537, 0, '', NULL, '2022-04-29 23:13:48', NULL, '2022-04-29 23:13:48', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26691, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:49', '2022-04-29 23:13:49', 13, 0, '', NULL, '2022-04-29 23:13:49', NULL, '2022-04-29 23:13:49', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26692, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:49', '2022-04-29 23:13:50', 1416, 0, '', NULL, '2022-04-29 23:13:50', NULL, '2022-04-29 23:13:50', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26693, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list', '{"query":{},"body":"{\"dataSourceConfigId\":0,\"tableNames\":[\"bpm_task_assign_rule\"]}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:55', '2022-04-29 23:13:56', 135, 0, '', NULL, '2022-04-29 23:13:56', NULL, '2022-04-29 23:13:56', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26694, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:56', '2022-04-29 23:13:56', 28, 0, '', NULL, '2022-04-29 23:13:56', NULL, '2022-04-29 23:13:56', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26695, '', 1, 2, 'yudao-server', 'DELETE', '/admin-api/infra/codegen/delete', '{"query":{"tableId":"93"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:59', '2022-04-29 23:13:59', 47, 0, '', NULL, '2022-04-29 23:13:59', NULL, '2022-04-29 23:13:59', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26696, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:13:59', '2022-04-29 23:13:59', 27, 0, '', NULL, '2022-04-29 23:13:59', NULL, '2022-04-29 23:13:59', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26697, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:14:40', '2022-04-29 23:14:40', 14, 0, '', NULL, '2022-04-29 23:14:40', NULL, '2022-04-29 23:14:40', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26698, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:14:40', '2022-04-29 23:14:41', 1452, 0, '', NULL, '2022-04-29 23:14:41', NULL, '2022-04-29 23:14:41', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26699, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:14:43', '2022-04-29 23:14:44', 1244, 0, '', NULL, '2022-04-29 23:14:44', NULL, '2022-04-29 23:14:44', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26700, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list', '{"query":{},"body":"{\"dataSourceConfigId\":9,\"tableNames\":[\"bpm_form\"]}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:14:46', '2022-04-29 23:14:47', 186, 0, '', NULL, '2022-04-29 23:14:47', NULL, '2022-04-29 23:14:47', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26701, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:14:47', '2022-04-29 23:14:47', 28, 0, '', NULL, '2022-04-29 23:14:47', NULL, '2022-04-29 23:14:47', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26702, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"94"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:14:48', '2022-04-29 23:14:49', 327, 0, '', NULL, '2022-04-29 23:14:49', NULL, '2022-04-29 23:14:49', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26703, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"92"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:15:43', '2022-04-29 23:15:43', 92, 0, '', NULL, '2022-04-29 23:15:43', NULL, '2022-04-29 23:15:43', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26704, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:18:54', '2022-04-29 23:18:54', 13, 0, '', NULL, '2022-04-29 23:18:54', NULL, '2022-04-29 23:18:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26705, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:18:54', '2022-04-29 23:18:56', 1434, 0, '', NULL, '2022-04-29 23:18:56', NULL, '2022-04-29 23:18:56', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26706, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list', '{"query":{},"body":"{\"dataSourceConfigId\":0,\"tableNames\":[\"bpm_oa_leave\"]}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:18:59', '2022-04-29 23:18:59', 148, 0, '', NULL, '2022-04-29 23:18:59', NULL, '2022-04-29 23:18:59', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26707, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:18:59', '2022-04-29 23:18:59', 41, 0, '', NULL, '2022-04-29 23:18:59', NULL, '2022-04-29 23:18:59', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26708, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"94"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:19:01', '2022-04-29 23:19:01', 77, 0, '', NULL, '2022-04-29 23:19:01', NULL, '2022-04-29 23:19:01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26709, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"95"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:19:11', '2022-04-29 23:19:11', 97, 0, '', NULL, '2022-04-29 23:19:11', NULL, '2022-04-29 23:19:11', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26710, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:33:24', '2022-04-29 23:33:24', 144, 0, '', NULL, '2022-04-29 23:33:24', NULL, '2022-04-29 23:33:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26711, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:33:24', '2022-04-29 23:33:24', 123, 0, '', NULL, '2022-04-29 23:33:24', NULL, '2022-04-29 23:33:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26712, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:33:24', '2022-04-29 23:33:24', 21, 0, '', NULL, '2022-04-29 23:33:24', NULL, '2022-04-29 23:33:24', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26713, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:33:25', '2022-04-29 23:33:25', 69, 0, '', NULL, '2022-04-29 23:33:25', NULL, '2022-04-29 23:33:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26714, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:33:25', '2022-04-29 23:33:25', 134, 0, '', NULL, '2022-04-29 23:33:25', NULL, '2022-04-29 23:33:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26715, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"92"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:33:26', '2022-04-29 23:33:27', 286, 500, '系统异常', NULL, '2022-04-29 23:33:27', NULL, '2022-04-29 23:33:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26716, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:35:34', '2022-04-29 23:35:34', 120, 0, '', NULL, '2022-04-29 23:35:34', NULL, '2022-04-29 23:35:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26717, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:35:34', '2022-04-29 23:35:34', 99, 0, '', NULL, '2022-04-29 23:35:34', NULL, '2022-04-29 23:35:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26718, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:35:34', '2022-04-29 23:35:34', 14, 0, '', NULL, '2022-04-29 23:35:34', NULL, '2022-04-29 23:35:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26719, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:35:35', '2022-04-29 23:35:35', 60, 0, '', NULL, '2022-04-29 23:35:35', NULL, '2022-04-29 23:35:35', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26720, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:35:35', '2022-04-29 23:35:35', 120, 0, '', NULL, '2022-04-29 23:35:35', NULL, '2022-04-29 23:35:35', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26721, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"92"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:35:37', '2022-04-29 23:35:38', 265, 500, '系统异常', NULL, '2022-04-29 23:35:38', NULL, '2022-04-29 23:35:38', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26722, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"92"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:37:07', '2022-04-29 23:37:07', 354, 500, '系统异常', NULL, '2022-04-29 23:37:07', NULL, '2022-04-29 23:37:07', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26723, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"92"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:38:08', '2022-04-29 23:38:08', 329, 0, '', NULL, '2022-04-29 23:38:08', NULL, '2022-04-29 23:38:08', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26724, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:42:45', '2022-04-29 23:42:45', 114, 0, '', NULL, '2022-04-29 23:42:45', NULL, '2022-04-29 23:42:45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26725, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:42:45', '2022-04-29 23:42:45', 95, 0, '', NULL, '2022-04-29 23:42:45', NULL, '2022-04-29 23:42:45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26726, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:42:45', '2022-04-29 23:42:45', 19, 0, '', NULL, '2022-04-29 23:42:45', NULL, '2022-04-29 23:42:45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26727, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:42:46', '2022-04-29 23:42:46', 61, 0, '', NULL, '2022-04-29 23:42:46', NULL, '2022-04-29 23:42:46', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26728, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:42:46', '2022-04-29 23:42:46', 126, 0, '', NULL, '2022-04-29 23:42:46', NULL, '2022-04-29 23:42:46', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26729, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"92"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:42:49', '2022-04-29 23:42:50', 295, 500, '系统异常', NULL, '2022-04-29 23:42:50', NULL, '2022-04-29 23:42:50', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26730, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:44:40', '2022-04-29 23:44:40', 87, 0, '', NULL, '2022-04-29 23:44:40', NULL, '2022-04-29 23:44:40', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26731, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:44:40', '2022-04-29 23:44:40', 111, 0, '', NULL, '2022-04-29 23:44:40', NULL, '2022-04-29 23:44:40', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26732, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:44:40', '2022-04-29 23:44:40', 15, 0, '', NULL, '2022-04-29 23:44:40', NULL, '2022-04-29 23:44:40', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26733, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:44:40', '2022-04-29 23:44:41', 68, 0, '', NULL, '2022-04-29 23:44:41', NULL, '2022-04-29 23:44:41', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26734, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:44:40', '2022-04-29 23:44:41', 136, 0, '', NULL, '2022-04-29 23:44:41', NULL, '2022-04-29 23:44:41', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26735, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"94"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:44:43', '2022-04-29 23:44:43', 277, 500, '系统异常', NULL, '2022-04-29 23:44:43', NULL, '2022-04-29 23:44:43', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26736, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:46:30', '2022-04-29 23:46:30', 111, 0, '', NULL, '2022-04-29 23:46:30', NULL, '2022-04-29 23:46:30', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26737, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:46:30', '2022-04-29 23:46:30', 93, 0, '', NULL, '2022-04-29 23:46:30', NULL, '2022-04-29 23:46:30', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26738, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:46:30', '2022-04-29 23:46:30', 17, 0, '', NULL, '2022-04-29 23:46:30', NULL, '2022-04-29 23:46:30', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26739, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:46:31', '2022-04-29 23:46:31', 74, 0, '', NULL, '2022-04-29 23:46:31', NULL, '2022-04-29 23:46:31', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26740, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:46:31', '2022-04-29 23:46:31', 153, 0, '', NULL, '2022-04-29 23:46:31', NULL, '2022-04-29 23:46:31', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26741, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"94"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:46:34', '2022-04-29 23:46:34', 288, 0, '', NULL, '2022-04-29 23:46:34', NULL, '2022-04-29 23:46:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26742, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"92"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:47:53', '2022-04-29 23:47:54', 341, 0, '', NULL, '2022-04-29 23:47:54', NULL, '2022-04-29 23:47:54', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26743, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"94"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:48:14', '2022-04-29 23:48:14', 87, 0, '', NULL, '2022-04-29 23:48:14', NULL, '2022-04-29 23:48:14', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26744, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:48:48', '2022-04-29 23:48:48', 37, 0, '', NULL, '2022-04-29 23:48:48', NULL, '2022-04-29 23:48:48', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26745, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:48:48', '2022-04-29 23:48:49', 1543, 0, '', NULL, '2022-04-29 23:48:49', NULL, '2022-04-29 23:48:49', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26746, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list', '{"query":{},"body":"{\"dataSourceConfigId\":0,\"tableNames\":[\"system_user_session\"]}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:48:56', '2022-04-29 23:48:56', 173, 0, '', NULL, '2022-04-29 23:48:56', NULL, '2022-04-29 23:48:56', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26747, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:48:56', '2022-04-29 23:48:56', 86, 0, '', NULL, '2022-04-29 23:48:56', NULL, '2022-04-29 23:48:56', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26748, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"96"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:48:58', '2022-04-29 23:48:58', 83, 0, '', NULL, '2022-04-29 23:48:58', NULL, '2022-04-29 23:48:58', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26749, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:56:03', '2022-04-29 23:56:05', 1589, 0, '', NULL, '2022-04-29 23:56:05', NULL, '2022-04-29 23:56:05', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26750, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:20', '2022-04-30 00:02:20', 41, 0, '', NULL, '2022-04-30 00:02:20', NULL, '2022-04-30 00:02:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26751, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:20', '2022-04-30 00:02:20', 96, 0, '', NULL, '2022-04-30 00:02:20', NULL, '2022-04-30 00:02:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26752, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/logout', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:20', '2022-04-30 00:02:20', 112, 0, '', NULL, '2022-04-30 00:02:20', NULL, '2022-04-30 00:02:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26753, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:20', '2022-04-30 00:02:22', 1529, 0, '', NULL, '2022-04-30 00:02:22', NULL, '2022-04-30 00:02:22', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26754, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:25', '2022-04-30 00:02:25', 25, 0, '', NULL, '2022-04-30 00:02:25', NULL, '2022-04-30 00:02:25', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26755, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:27', '2022-04-30 00:02:27', 14, 0, '', NULL, '2022-04-30 00:02:27', NULL, '2022-04-30 00:02:27', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26756, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:36', '2022-04-30 00:02:36', 12, 0, '', NULL, '2022-04-30 00:02:36', NULL, '2022-04-30 00:02:36', 0, 0); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26757, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/tenant/get-id-by-name', '{"query":{"name":"芋道源码"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:39', '2022-04-30 00:02:39', 32, 0, '', NULL, '2022-04-30 00:02:39', NULL, '2022-04-30 00:02:39', 0, 0); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26758, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/login', '{"query":{},"body":"{\"username\":\"admin\",\"password\":\"admin123\",\"code\":\"j7cif\",\"uuid\":\"a1e9258429b14294b2c032fdfdd141a5\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:39', '2022-04-30 00:02:39', 5, 0, '', NULL, '2022-04-30 00:02:39', NULL, '2022-04-30 00:02:39', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26759, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:39', '2022-04-30 00:02:39', 11, 0, '', NULL, '2022-04-30 00:02:39', NULL, '2022-04-30 00:02:39', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26760, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/logout', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:40', '2022-04-30 00:02:40', 2, 0, '', NULL, '2022-04-30 00:02:40', NULL, '2022-04-30 00:02:40', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26761, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:41', '2022-04-30 00:02:41', 20, 0, '', NULL, '2022-04-30 00:02:41', NULL, '2022-04-30 00:02:41', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26762, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/tenant/get-id-by-name', '{"query":{"name":"芋道源码"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:45', '2022-04-30 00:02:45', 16, 0, '', NULL, '2022-04-30 00:02:45', NULL, '2022-04-30 00:02:45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26763, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/login', '{"query":{},"body":"{\"username\":\"admin\",\"password\":\"admin123\",\"code\":\"03p97\",\"uuid\":\"92f67d699db140c1afec2541517b34d5\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:45', '2022-04-30 00:02:45', 2, 0, '', NULL, '2022-04-30 00:02:45', NULL, '2022-04-30 00:02:45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26764, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:45', '2022-04-30 00:02:45', 14, 0, '', NULL, '2022-04-30 00:02:45', NULL, '2022-04-30 00:02:45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26765, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/logout', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:52', '2022-04-30 00:02:52', 1, 0, '', NULL, '2022-04-30 00:02:52', NULL, '2022-04-30 00:02:52', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26766, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:53', '2022-04-30 00:02:53', 19, 0, '', NULL, '2022-04-30 00:02:53', NULL, '2022-04-30 00:02:53', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26767, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/tenant/get-id-by-name', '{"query":{"name":"芋道源码"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:56', '2022-04-30 00:02:56', 14, 0, '', NULL, '2022-04-30 00:02:56', NULL, '2022-04-30 00:02:56', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26768, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/login', '{"query":{},"body":"{\"username\":\"admin\",\"password\":\"admin123\",\"code\":\"dbvcc\",\"uuid\":\"310ea712de274745ac235baba97e528a\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:56', '2022-04-30 00:02:56', 2, 0, '', NULL, '2022-04-30 00:02:56', NULL, '2022-04-30 00:02:56', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26769, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:02:56', '2022-04-30 00:02:56', 13, 0, '', NULL, '2022-04-30 00:02:56', NULL, '2022-04-30 00:02:56', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26770, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/captcha/get-image', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:06:16', '2022-04-30 00:06:18', 1387, 0, '', NULL, '2022-04-30 00:06:18', NULL, '2022-04-30 00:06:18', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26771, '', 0, 0, 'yudao-server', 'GET', '/admin-api/system/tenant/get-id-by-name', '{"query":{"name":"芋道源码"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:06:20', '2022-04-30 00:06:20', 50, 0, '', NULL, '2022-04-30 00:06:20', NULL, '2022-04-30 00:06:20', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26772, '', 0, 0, 'yudao-server', 'POST', '/admin-api/system/auth/login', '{"query":{},"body":"{\"username\":\"admin\",\"password\":\"admin123\",\"code\":\"ib7z7\",\"uuid\":\"b9d3d0218ed2466f86a9d76f127b91f6\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:06:20', '2022-04-30 00:06:21', 340, 0, '', NULL, '2022-04-30 00:06:21', NULL, '2022-04-30 00:06:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26773, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:06:21', '2022-04-30 00:06:21', 55, 0, '', NULL, '2022-04-30 00:06:21', NULL, '2022-04-30 00:06:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26774, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:06:21', '2022-04-30 00:06:21', 61, 0, '', NULL, '2022-04-30 00:06:21', NULL, '2022-04-30 00:06:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26775, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 00:06:21', '2022-04-30 00:06:21', 18, 0, '', NULL, '2022-04-30 00:06:21', NULL, '2022-04-30 00:06:21', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26776, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:04', '2022-04-30 02:55:04', 87, 0, '', NULL, '2022-04-30 02:55:04', NULL, '2022-04-30 02:55:04', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26777, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:04', '2022-04-30 02:55:04', 116, 0, '', NULL, '2022-04-30 02:55:04', NULL, '2022-04-30 02:55:04', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26778, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:04', '2022-04-30 02:55:04', 16, 0, '', NULL, '2022-04-30 02:55:04', NULL, '2022-04-30 02:55:04', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26779, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:13', '2022-04-30 02:55:13', 23, 0, '', NULL, '2022-04-30 02:55:13', NULL, '2022-04-30 02:55:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26780, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:13', '2022-04-30 02:55:13', 32, 0, '', NULL, '2022-04-30 02:55:13', NULL, '2022-04-30 02:55:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26781, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:13', '2022-04-30 02:55:13', 8, 0, '', NULL, '2022-04-30 02:55:13', NULL, '2022-04-30 02:55:13', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26782, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:18', '2022-04-30 02:55:19', 65, 0, '', NULL, '2022-04-30 02:55:19', NULL, '2022-04-30 02:55:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26783, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{"query":{"key":"sys.user.init-password"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:18', '2022-04-30 02:55:19', 77, 0, '', NULL, '2022-04-30 02:55:19', NULL, '2022-04-30 02:55:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26784, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:18', '2022-04-30 02:55:19', 83, 0, '', NULL, '2022-04-30 02:55:19', NULL, '2022-04-30 02:55:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26785, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:18', '2022-04-30 02:55:19', 186, 0, '', NULL, '2022-04-30 02:55:19', NULL, '2022-04-30 02:55:19', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26786, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:23', '2022-04-30 02:55:23', 17, 0, '', NULL, '2022-04-30 02:55:23', NULL, '2022-04-30 02:55:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26787, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:23', '2022-04-30 02:55:23', 29, 0, '', NULL, '2022-04-30 02:55:23', NULL, '2022-04-30 02:55:23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26788, '', 1, 2, 'yudao-server', 'POST', '/admin-api/system/user/create', '{"query":{},"body":"{\"deptId\":100,\"username\":\"admin\",\"nickname\":\"1\",\"password\":\"admin123\",\"mobile\":\"\",\"email\":\"\",\"status\":\"0\",\"remark\":\"11\",\"postIds\":[],\"roleIds\":[]}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:34', '2022-04-30 02:55:34', 100, 1002003000, '用户账号已经存在', NULL, '2022-04-30 02:55:34', NULL, '2022-04-30 02:55:34', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26789, '', 1, 2, 'yudao-server', 'POST', '/admin-api/system/user/create', '{"query":{},"body":"{\"deptId\":100,\"username\":\"aotemane\",\"nickname\":\"1\",\"password\":\"admin123\",\"mobile\":\"\",\"email\":\"\",\"status\":\"0\",\"remark\":\"11\",\"postIds\":[],\"roleIds\":[]}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:43', '2022-04-30 02:55:43', 177, 0, '', NULL, '2022-04-30 02:55:43', NULL, '2022-04-30 02:55:43', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26790, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 02:55:43', '2022-04-30 02:55:43', 55, 0, '', NULL, '2022-04-30 02:55:43', NULL, '2022-04-30 02:55:43', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (72, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:03:26.325', '2022-04-30 19:03:26.404', 79, 0, '', NULL, '2022-04-30 19:03:26.45', NULL, '2022-04-30 19:03:26.45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (73, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:03:26.326', '2022-04-30 19:03:26.425', 99, 0, '', NULL, '2022-04-30 19:03:26.45', NULL, '2022-04-30 19:03:26.45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (74, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:03:26.431', '2022-04-30 19:03:26.454', 23, 0, '', NULL, '2022-04-30 19:03:26.466', NULL, '2022-04-30 19:03:26.466', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (75, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:03:26.946', '2022-04-30 19:03:27.018', 72, 0, '', NULL, '2022-04-30 19:03:27.026', NULL, '2022-04-30 19:03:27.026', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (76, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:03:26.945', '2022-04-30 19:03:27.031', 86, 0, '', NULL, '2022-04-30 19:03:27.041', NULL, '2022-04-30 19:03:27.041', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (77, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{"query":{"key":"sys.user.init-password"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:03:26.947', '2022-04-30 19:03:27.045', 98, 500, '系统异常', NULL, '2022-04-30 19:03:27.058', NULL, '2022-04-30 19:03:27.058', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (78, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:03:26.944', '2022-04-30 19:03:27.116', 172, 0, '', NULL, '2022-04-30 19:03:27.122', NULL, '2022-04-30 19:03:27.122', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (79, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:28:14.88', '2022-04-30 19:28:14.906', 26, 0, '', NULL, '2022-04-30 19:28:14.959', NULL, '2022-04-30 19:28:14.959', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (81, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:28:14.923', '2022-04-30 19:28:14.93', 7, 0, '', NULL, '2022-04-30 19:28:14.978', NULL, '2022-04-30 19:28:14.978', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (80, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:28:14.881', '2022-04-30 19:28:14.916', 35, 0, '', NULL, '2022-04-30 19:28:14.977', NULL, '2022-04-30 19:28:14.977', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (82, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:28:15.509', '2022-04-30 19:28:15.533', 24, 0, '', NULL, '2022-04-30 19:28:15.543', NULL, '2022-04-30 19:28:15.543', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (84, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:28:15.508', '2022-04-30 19:28:15.545', 37, 0, '', NULL, '2022-04-30 19:28:15.558', NULL, '2022-04-30 19:28:15.558', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (83, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{"query":{"key":"sys.user.init-password"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:28:15.511', '2022-04-30 19:28:15.542', 31, 500, '系统异常', NULL, '2022-04-30 19:28:15.552', NULL, '2022-04-30 19:28:15.552', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (85, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:28:15.507', '2022-04-30 19:28:15.592', 85, 0, '', NULL, '2022-04-30 19:28:15.699', NULL, '2022-04-30 19:28:15.699', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (86, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:33:50.409', '2022-04-30 19:33:50.488', 79, 0, '', NULL, '2022-04-30 19:33:50.532', NULL, '2022-04-30 19:33:50.532', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (87, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:33:50.41', '2022-04-30 19:33:50.507', 97, 0, '', NULL, '2022-04-30 19:33:50.532', NULL, '2022-04-30 19:33:50.532', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (88, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:33:50.516', '2022-04-30 19:33:50.535', 19, 0, '', NULL, '2022-04-30 19:33:50.548', NULL, '2022-04-30 19:33:50.548', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (89, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:33:51.025', '2022-04-30 19:33:51.094', 69, 0, '', NULL, '2022-04-30 19:33:51.102', NULL, '2022-04-30 19:33:51.102', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (90, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:33:51.024', '2022-04-30 19:33:51.109', 85, 0, '', NULL, '2022-04-30 19:33:51.117', NULL, '2022-04-30 19:33:51.117', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (91, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{"query":{"key":"sys.user.init-password"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:33:51.028', '2022-04-30 19:33:51.131', 103, 500, '系统异常', NULL, '2022-04-30 19:33:51.141', NULL, '2022-04-30 19:33:51.141', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (92, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:33:51.023', '2022-04-30 19:33:51.203', 180, 0, '', NULL, '2022-04-30 19:33:51.209', NULL, '2022-04-30 19:33:51.209', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (93, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:05.414', '2022-04-30 19:44:05.592', 178, 0, '', NULL, '2022-04-30 19:44:05.64', NULL, '2022-04-30 19:44:05.64', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (94, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:05.415', '2022-04-30 19:44:05.598', 183, 0, '', NULL, '2022-04-30 19:44:05.64', NULL, '2022-04-30 19:44:05.64', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (95, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:05.604', '2022-04-30 19:44:05.624', 20, 0, '', NULL, '2022-04-30 19:44:05.645', NULL, '2022-04-30 19:44:05.645', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (96, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:06.175', '2022-04-30 19:44:06.245', 70, 0, '', NULL, '2022-04-30 19:44:06.255', NULL, '2022-04-30 19:44:06.255', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (97, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:06.174', '2022-04-30 19:44:06.261', 87, 0, '', NULL, '2022-04-30 19:44:06.269', NULL, '2022-04-30 19:44:06.269', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (98, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{"query":{"key":"sys.user.init-password"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:06.178', '2022-04-30 19:44:06.266', 88, 0, '', NULL, '2022-04-30 19:44:06.278', NULL, '2022-04-30 19:44:06.278', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (99, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:06.173', '2022-04-30 19:44:06.34', 167, 0, '', NULL, '2022-04-30 19:44:06.346', NULL, '2022-04-30 19:44:06.346', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (100, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:10.409', '2022-04-30 19:44:10.433', 24, 0, '', NULL, '2022-04-30 19:44:10.44', NULL, '2022-04-30 19:44:10.44', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (101, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:10.409', '2022-04-30 19:44:10.44', 31, 0, '', NULL, '2022-04-30 19:44:10.449', NULL, '2022-04-30 19:44:10.449', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (102, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:10.446', '2022-04-30 19:44:10.452', 6, 0, '', NULL, '2022-04-30 19:44:10.457', NULL, '2022-04-30 19:44:10.457', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (103, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:10.919', '2022-04-30 19:44:10.945', 26, 0, '', NULL, '2022-04-30 19:44:10.954', NULL, '2022-04-30 19:44:10.954', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (104, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{"query":{"key":"sys.user.init-password"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:10.924', '2022-04-30 19:44:10.95', 26, 0, '', NULL, '2022-04-30 19:44:10.959', NULL, '2022-04-30 19:44:10.959', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (105, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:10.918', '2022-04-30 19:44:10.957', 39, 0, '', NULL, '2022-04-30 19:44:10.965', NULL, '2022-04-30 19:44:10.965', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (106, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:10.917', '2022-04-30 19:44:11.004', 87, 0, '', NULL, '2022-04-30 19:44:11.012', NULL, '2022-04-30 19:44:11.012', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (107, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/tenant-package/get-simple-list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:14.963', '2022-04-30 19:44:15.005', 42, 0, '', NULL, '2022-04-30 19:44:15.01', NULL, '2022-04-30 19:44:15.01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (108, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/tenant/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:14.962', '2022-04-30 19:44:15.021', 59, 0, '', NULL, '2022-04-30 19:44:15.028', NULL, '2022-04-30 19:44:15.028', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (113, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:17.779', '2022-04-30 19:44:17.815', 36, 0, '', NULL, '2022-04-30 19:44:17.824', NULL, '2022-04-30 19:44:17.824', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (117, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:21.079', '2022-04-30 19:44:21.102', 23, 0, '', NULL, '2022-04-30 19:44:21.108', NULL, '2022-04-30 19:44:21.108', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (122, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:24.801', '2022-04-30 19:44:24.831', 30, 500, '系统异常', NULL, '2022-04-30 19:44:24.837', NULL, '2022-04-30 19:44:24.837', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (109, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/tenant-package/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:16.4', '2022-04-30 19:44:16.44', 40, 0, '', NULL, '2022-04-30 19:44:16.448', NULL, '2022-04-30 19:44:16.448', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (110, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:16.4', '2022-04-30 19:44:16.487', 87, 0, '', NULL, '2022-04-30 19:44:16.493', NULL, '2022-04-30 19:44:16.493', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (111, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:17.78', '2022-04-30 19:44:17.805', 25, 0, '', NULL, '2022-04-30 19:44:17.813', NULL, '2022-04-30 19:44:17.813', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (112, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{"query":{"key":"sys.user.init-password"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:17.781', '2022-04-30 19:44:17.806', 25, 0, '', NULL, '2022-04-30 19:44:17.814', NULL, '2022-04-30 19:44:17.814', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (114, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:17.779', '2022-04-30 19:44:17.857', 78, 0, '', NULL, '2022-04-30 19:44:17.862', NULL, '2022-04-30 19:44:17.862', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (115, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/role/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:19.012', '2022-04-30 19:44:19.051', 39, 0, '', NULL, '2022-04-30 19:44:19.057', NULL, '2022-04-30 19:44:19.057', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (116, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:20.049', '2022-04-30 19:44:20.08', 31, 0, '', NULL, '2022-04-30 19:44:20.086', NULL, '2022-04-30 19:44:20.086', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (118, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:21.079', '2022-04-30 19:44:21.11', 31, 0, '', NULL, '2022-04-30 19:44:21.116', NULL, '2022-04-30 19:44:21.116', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (119, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:22.035', '2022-04-30 19:44:22.068', 33, 0, '', NULL, '2022-04-30 19:44:22.074', NULL, '2022-04-30 19:44:22.074', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (120, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:22.922', '2022-04-30 19:44:22.98', 58, 500, '系统异常', NULL, '2022-04-30 19:44:22.986', NULL, '2022-04-30 19:44:22.986', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (121, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/notice/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:23.552', '2022-04-30 19:44:23.592', 40, 0, '', NULL, '2022-04-30 19:44:23.596', NULL, '2022-04-30 19:44:23.596', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (123, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 20:02:14.9', '2022-04-30 20:02:14.985', 85, 0, '', NULL, '2022-04-30 20:02:15.043', NULL, '2022-04-30 20:02:15.043', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (124, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 20:02:14.901', '2022-04-30 20:02:15.014', 113, 0, '', NULL, '2022-04-30 20:02:15.043', NULL, '2022-04-30 20:02:15.043', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (125, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 20:02:15.024', '2022-04-30 20:02:15.048', 24, 0, '', NULL, '2022-04-30 20:02:15.06', NULL, '2022-04-30 20:02:15.06', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (126, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 20:02:15.689', '2022-04-30 20:02:15.818', 129, 0, '', NULL, '2022-04-30 20:02:15.826', NULL, '2022-04-30 20:02:15.826', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (127, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 20:05:58.695', '2022-04-30 20:05:58.775', 80, 0, '', NULL, '2022-04-30 20:05:58.832', NULL, '2022-04-30 20:05:58.832', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (129, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 20:05:58.796', '2022-04-30 20:05:58.81', 14, 0, '', NULL, '2022-04-30 20:05:58.832', NULL, '2022-04-30 20:05:58.832', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (128, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 20:05:58.695', '2022-04-30 20:05:58.79', 95, 0, '', NULL, '2022-04-30 20:05:58.832', NULL, '2022-04-30 20:05:58.832', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (130, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 20:05:59.278', '2022-04-30 20:05:59.403', 125, 0, '', NULL, '2022-04-30 20:05:59.41', NULL, '2022-04-30 20:05:59.41', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (131, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 20:06:00.701', '2022-04-30 20:06:00.753', 52, 0, '', NULL, '2022-04-30 20:06:00.765', NULL, '2022-04-30 20:06:00.765', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (132, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 20:06:00.7', '2022-04-30 20:06:00.771', 71, 0, '', NULL, '2022-04-30 20:06:00.784', NULL, '2022-04-30 20:06:00.784', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (133, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{"query":{"key":"sys.user.init-password"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 20:06:00.701', '2022-04-30 20:06:00.771', 70, 0, '', NULL, '2022-04-30 20:06:00.784', NULL, '2022-04-30 20:06:00.784', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (134, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 20:06:00.699', '2022-04-30 20:06:00.811', 112, 0, '', NULL, '2022-04-30 20:06:00.818', NULL, '2022-04-30 20:06:00.818', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (135, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 20:06:04.271', '2022-04-30 20:06:04.289', 18, 0, '', NULL, '2022-04-30 20:06:04.296', NULL, '2022-04-30 20:06:04.296', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (136, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 20:06:04.271', '2022-04-30 20:06:04.298', 27, 0, '', NULL, '2022-04-30 20:06:04.304', NULL, '2022-04-30 20:06:04.304', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (138, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 20:06:11.144', '2022-04-30 20:06:11.201', 57, 0, '', NULL, '2022-04-30 20:06:11.207', NULL, '2022-04-30 20:06:11.207', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (137, '', 1, 2, 'yudao-server', 'POST', '/admin-api/system/user/create', '{"query":{},"body":"{\"username\":\"admin1\",\"nickname\":\"biu\",\"password\":\"admin1232\",\"status\":\"0\",\"postIds\":[],\"roleIds\":[]}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 20:06:10.925', '2022-04-30 20:06:11.123', 198, 0, '', NULL, '2022-04-30 20:06:11.129', NULL, '2022-04-30 20:06:11.129', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (139, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user-session/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:28:20.632', '2022-04-30 21:28:20.858', 226, 0, '', NULL, '2022-04-30 21:28:20.894', NULL, '2022-04-30 21:28:20.894', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (140, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/job/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:28:58.621', '2022-04-30 21:28:58.673', 52, 0, '', NULL, '2022-04-30 21:28:58.681', NULL, '2022-04-30 21:28:58.681', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (141, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/job/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:29:05.272', '2022-04-30 21:29:05.292', 20, 0, '', NULL, '2022-04-30 21:29:05.301', NULL, '2022-04-30 21:29:05.301', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (142, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/job/create', '{"query":{},"body":"{\"name\":\"用户 Session 超时 Job\",\"handlerName\":\"userSessionTimeoutJob\",\"cronExpression\":\"0 * * * * ? *\",\"retryCount\":\"3\",\"retryInterval\":\"2000\",\"monitorTimeout\":\"0\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:29:53.179', '2022-04-30 21:29:53.248', 69, 500, '系统异常', NULL, '2022-04-30 21:29:53.254', NULL, '2022-04-30 21:29:53.254', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (143, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/job/create', '{"query":{},"body":"{\"name\":\"用户 Session 超时 Job\",\"handlerName\":\"userSessionTimeoutJob\",\"cronExpression\":\"0 * * * * ? *\",\"retryCount\":\"3\",\"retryInterval\":\"2000\",\"monitorTimeout\":\"0\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:47:02.544', '2022-04-30 21:47:04.623', 2079, 500, '系统异常', NULL, '2022-04-30 21:47:04.641', NULL, '2022-04-30 21:47:04.641', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (144, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/job/create', '{"query":{},"body":"{\"name\":\"用户 Session 超时 Job\",\"handlerName\":\"userSessionTimeoutJob\",\"cronExpression\":\"0 * * * * ? *\",\"retryCount\":\"3\",\"retryInterval\":\"2000\",\"monitorTimeout\":\"0\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:47:20.02', '2022-04-30 21:47:22.072', 2052, 500, '系统异常', NULL, '2022-04-30 21:47:22.081', NULL, '2022-04-30 21:47:22.081', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (145, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/job/create', '{"query":{},"body":"{\"name\":\"用户 Session 超时 Job\",\"handlerName\":\"userSessionTimeoutJob\",\"cronExpression\":\"0 * * * * ? *\",\"retryCount\":\"3\",\"retryInterval\":\"2000\",\"monitorTimeout\":\"0\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:51:00.342', '2022-04-30 21:51:00.54', 198, 0, '', NULL, '2022-04-30 21:51:00.562', NULL, '2022-04-30 21:51:00.562', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (146, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/job/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:51:00.575', '2022-04-30 21:51:00.697', 122, 0, '', NULL, '2022-04-30 21:51:00.703', NULL, '2022-04-30 21:51:00.703', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (147, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/job/get', '{"query":{"id":"2"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:51:40.162', '2022-04-30 21:51:40.184', 22, 0, '', NULL, '2022-04-30 21:51:40.192', NULL, '2022-04-30 21:51:40.192', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (148, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/job/update', '{"query":{},"body":"{\"name\":\"用户 Session 超时 Job\",\"handlerParam\":null,\"cronExpression\":\"0 * * * * ? *\",\"retryCount\":3,\"retryInterval\":2000,\"monitorTimeout\":0,\"id\":2,\"status\":1,\"handlerName\":\"userSessionTimeoutJob\",\"createTime\":1651326660454}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:51:41.086', '2022-04-30 21:51:41.133', 47, 500, '系统异常', NULL, '2022-04-30 21:51:41.139', NULL, '2022-04-30 21:51:41.139', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (149, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/job/update', '{"query":{},"body":"{\"name\":\"用户 Session 超时 Job\",\"handlerParam\":null,\"cronExpression\":\"0 * * * * ? *\",\"retryCount\":3,\"retryInterval\":2000,\"monitorTimeout\":0,\"id\":2,\"status\":1,\"handlerName\":\"userSessionTimeoutJob\",\"createTime\":1651326660454}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:52:05.881', '2022-04-30 21:52:05.909', 28, 500, '系统异常', NULL, '2022-04-30 21:52:05.916', NULL, '2022-04-30 21:52:05.916', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (150, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/job/trigger', '{"query":{"id":"2"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:52:11.874', '2022-04-30 21:52:11.906', 32, 500, '系统异常', NULL, '2022-04-30 21:52:11.914', NULL, '2022-04-30 21:52:11.914', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (151, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/job/get', '{"query":{"id":"2"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:56:05.55', '2022-04-30 21:56:05.643', 93, 0, '', NULL, '2022-04-30 21:56:05.666', NULL, '2022-04-30 21:56:05.666', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (152, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/job/update', '{"query":{},"body":"{\"name\":\"用户 Session 超时 Job\",\"handlerParam\":null,\"cronExpression\":\"0 * * * * ? *\",\"retryCount\":3,\"retryInterval\":2000,\"monitorTimeout\":0,\"id\":2,\"status\":1,\"handlerName\":\"userSessionTimeoutJob\",\"createTime\":1651326660454}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:56:06.436', '2022-04-30 21:56:06.558', 122, 0, '', NULL, '2022-04-30 21:56:06.564', NULL, '2022-04-30 21:56:06.564', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (153, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/job/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:56:06.574', '2022-04-30 21:56:06.653', 79, 0, '', NULL, '2022-04-30 21:56:06.659', NULL, '2022-04-30 21:56:06.659', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (154, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/job/get', '{"query":{"id":"2"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:19:04.638', '2022-04-30 22:19:04.739', 101, 0, '', NULL, '2022-04-30 22:19:04.765', NULL, '2022-04-30 22:19:04.765', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (155, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/job/update', '{"query":{},"body":"{\"name\":\"用户 Session 超时 Job\",\"handlerParam\":null,\"cronExpression\":\"0 * * * * ? *\",\"retryCount\":3,\"retryInterval\":2000,\"monitorTimeout\":0,\"id\":2,\"status\":1,\"handlerName\":\"userSessionTimeoutJob\",\"createTime\":1651326660454}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:19:05.535', '2022-04-30 22:19:05.659', 124, 0, '', NULL, '2022-04-30 22:19:05.665', NULL, '2022-04-30 22:19:05.665', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (156, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/job/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:19:05.678', '2022-04-30 22:19:05.76', 82, 0, '', NULL, '2022-04-30 22:19:05.768', NULL, '2022-04-30 22:19:05.768', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (158, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:21:36.413', '2022-04-30 22:21:36.496', 83, 0, '', NULL, '2022-04-30 22:21:36.53', NULL, '2022-04-30 22:21:36.53', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (157, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:21:36.414', '2022-04-30 22:21:36.515', 101, 0, '', NULL, '2022-04-30 22:21:36.53', NULL, '2022-04-30 22:21:36.53', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (159, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:21:36.52', '2022-04-30 22:21:36.535', 15, 0, '', NULL, '2022-04-30 22:21:36.546', NULL, '2022-04-30 22:21:36.546', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (160, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/job/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:21:37.124', '2022-04-30 22:21:37.243', 119, 0, '', NULL, '2022-04-30 22:21:37.249', NULL, '2022-04-30 22:21:37.249', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (161, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/job/get', '{"query":{"id":"2"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:21:38.074', '2022-04-30 22:21:38.096', 22, 0, '', NULL, '2022-04-30 22:21:38.103', NULL, '2022-04-30 22:21:38.103', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (162, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/job/update', '{"query":{},"body":"{\"name\":\"用户 Session 超时 Job\",\"handlerParam\":null,\"cronExpression\":\"0 * * * * ? *\",\"retryCount\":3,\"retryInterval\":2000,\"monitorTimeout\":0,\"id\":2,\"status\":1,\"handlerName\":\"userSessionTimeoutJob\",\"createTime\":1651326660454}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:21:39.42', '2022-04-30 22:21:39.535', 115, 0, '', NULL, '2022-04-30 22:21:39.543', NULL, '2022-04-30 22:21:39.543', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (163, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/job/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:21:39.553', '2022-04-30 22:21:39.579', 26, 0, '', NULL, '2022-04-30 22:21:39.585', NULL, '2022-04-30 22:21:39.585', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (164, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/job/get', '{"query":{"id":"2"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:22:05.058', '2022-04-30 22:22:05.072', 14, 0, '', NULL, '2022-04-30 22:22:05.077', NULL, '2022-04-30 22:22:05.077', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (165, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/job/update', '{"query":{},"body":"{\"name\":\"用户 Session 超时 Job\",\"handlerParam\":null,\"cronExpression\":\"0 * * * * ? *\",\"retryCount\":3,\"retryInterval\":2000,\"monitorTimeout\":0,\"id\":2,\"status\":1,\"handlerName\":\"userSessionTimeoutJob\",\"createTime\":1651326660454}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:22:06.021', '2022-04-30 22:22:06.076', 55, 0, '', NULL, '2022-04-30 22:22:06.081', NULL, '2022-04-30 22:22:06.081', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (166, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/job/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:22:06.091', '2022-04-30 22:22:06.115', 24, 0, '', NULL, '2022-04-30 22:22:06.12', NULL, '2022-04-30 22:22:06.12', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (167, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:22:12.385', '2022-04-30 22:22:12.422', 37, 0, '', NULL, '2022-04-30 22:22:12.427', NULL, '2022-04-30 22:22:12.427', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (168, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/test-demo/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:22:13.591', '2022-04-30 22:22:13.657', 66, 0, '', NULL, '2022-04-30 22:22:13.663', NULL, '2022-04-30 22:22:13.663', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (169, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/test-demo/get', '{"query":{"id":"107"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:23:56.716', '2022-04-30 22:23:56.827', 111, 0, '', NULL, '2022-04-30 22:23:56.848', NULL, '2022-04-30 22:23:56.848', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (172, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:24:56.899', '2022-04-30 22:24:56.916', 17, 0, '', NULL, '2022-04-30 22:24:56.932', NULL, '2022-04-30 22:24:56.932', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (171, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:24:56.675', '2022-04-30 22:24:56.884', 209, 0, '', NULL, '2022-04-30 22:24:56.929', NULL, '2022-04-30 22:24:56.929', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (170, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:24:56.674', '2022-04-30 22:24:56.884', 210, 0, '', NULL, '2022-04-30 22:24:56.929', NULL, '2022-04-30 22:24:56.929', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (173, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/test-demo/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:24:57.46', '2022-04-30 22:24:57.613', 153, 0, '', NULL, '2022-04-30 22:24:57.62', NULL, '2022-04-30 22:24:57.62', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (174, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:25:16.244', '2022-04-30 22:25:16.286', 42, 0, '', NULL, '2022-04-30 22:25:16.294', NULL, '2022-04-30 22:25:16.294', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (175, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:25:16.244', '2022-04-30 22:25:16.309', 65, 0, '', NULL, '2022-04-30 22:25:16.317', NULL, '2022-04-30 22:25:16.317', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (176, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"92"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:25:30.429', '2022-04-30 22:25:30.5', 71, 500, '系统异常', NULL, '2022-04-30 22:25:30.506', NULL, '2022-04-30 22:25:30.506', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (177, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:27:48.036', '2022-04-30 22:27:48.062', 26, 0, '', NULL, '2022-04-30 22:27:48.072', NULL, '2022-04-30 22:27:48.072', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (187, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/model/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:28:51.485', '2022-04-30 22:28:51.539', 54, 0, '', NULL, '2022-04-30 22:28:51.55', NULL, '2022-04-30 22:28:51.55', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (188, '', 1, 2, 'yudao-server', 'POST', '/admin-api/bpm/model/create', '{"query":{},"body":"{\"key\":\"oa_leave\",\"name\":\"OA 请假\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:31:09.042', '2022-04-30 22:31:09.077', 35, 0, '', NULL, '2022-04-30 22:31:09.084', NULL, '2022-04-30 22:31:09.084', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (189, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/model/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:31:09.098', '2022-04-30 22:31:09.117', 19, 0, '', NULL, '2022-04-30 22:31:09.123', NULL, '2022-04-30 22:31:09.123', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (190, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/model/get', '{"query":{"id":"2d3151fa-c892-11ec-a15b-3e2374911326"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:31:19.084', '2022-04-30 22:31:19.115', 31, 0, '', NULL, '2022-04-30 22:31:19.122', NULL, '2022-04-30 22:31:19.122', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (192, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/model/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:32:43.574', '2022-04-30 22:32:43.592', 18, 0, '', NULL, '2022-04-30 22:32:43.601', NULL, '2022-04-30 22:32:43.601', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (197, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/user-group/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:32:45.527', '2022-04-30 22:32:45.609', 82, 0, '', NULL, '2022-04-30 22:32:45.619', NULL, '2022-04-30 22:32:45.619', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (198, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:32:45.527', '2022-04-30 22:32:45.622', 95, 0, '', NULL, '2022-04-30 22:32:45.63', NULL, '2022-04-30 22:32:45.63', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (199, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/task-assign-rule/list', '{"query":{"modelId":"2d3151fa-c892-11ec-a15b-3e2374911326"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:32:45.524', '2022-04-30 22:32:45.89', 366, 0, '', NULL, '2022-04-30 22:32:45.895', NULL, '2022-04-30 22:32:45.895', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (202, '', 1, 2, 'yudao-server', 'POST', '/admin-api/bpm/model/deploy', '{"query":{"id":"2d3151fa-c892-11ec-a15b-3e2374911326"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:32:58.421', '2022-04-30 22:32:58.443', 22, 1009002003, '部署流程失败,原因:流程表单未配置,请点击【修改流程】按钮进行配置', NULL, '2022-04-30 22:32:58.448', NULL, '2022-04-30 22:32:58.448', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (204, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/model/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:33:35.482', '2022-04-30 22:33:35.497', 15, 0, '', NULL, '2022-04-30 22:33:35.502', NULL, '2022-04-30 22:33:35.502', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (206, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/model/get', '{"query":{"id":"2d3151fa-c892-11ec-a15b-3e2374911326"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:33:54.061', '2022-04-30 22:33:54.081', 20, 0, '', NULL, '2022-04-30 22:33:54.088', NULL, '2022-04-30 22:33:54.088', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (208, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/model/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:33:56.901', '2022-04-30 22:33:56.92', 19, 0, '', NULL, '2022-04-30 22:33:56.926', NULL, '2022-04-30 22:33:56.926', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (211, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:33:57.953', '2022-04-30 22:33:57.982', 29, 0, '', NULL, '2022-04-30 22:33:57.991', NULL, '2022-04-30 22:33:57.991', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (216, '', 1, 2, 'yudao-server', 'POST', '/admin-api/bpm/model/deploy', '{"query":{"id":"2d3151fa-c892-11ec-a15b-3e2374911326"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:34:00.154', '2022-04-30 22:34:00.409', 255, 0, '', NULL, '2022-04-30 22:34:00.414', NULL, '2022-04-30 22:34:00.414', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (178, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:27:48.036', '2022-04-30 22:27:48.07', 34, 0, '', NULL, '2022-04-30 22:27:48.078', NULL, '2022-04-30 22:27:48.078', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (179, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:27:48.076', '2022-04-30 22:27:48.083', 7, 0, '', NULL, '2022-04-30 22:27:48.089', NULL, '2022-04-30 22:27:48.089', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (180, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:27:48.57', '2022-04-30 22:27:48.6', 30, 0, '', NULL, '2022-04-30 22:27:48.615', NULL, '2022-04-30 22:27:48.615', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (181, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:27:48.569', '2022-04-30 22:27:48.629', 60, 0, '', NULL, '2022-04-30 22:27:48.642', NULL, '2022-04-30 22:27:48.642', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (182, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"92"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:27:49.666', '2022-04-30 22:27:49.947', 281, 0, '', NULL, '2022-04-30 22:27:49.952', NULL, '2022-04-30 22:27:49.952', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (183, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/test-demo/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:28:34.409', '2022-04-30 22:28:34.438', 29, 0, '', NULL, '2022-04-30 22:28:34.444', NULL, '2022-04-30 22:28:34.444', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (184, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/process-instance/my-page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:28:46.67', '2022-04-30 22:28:46.729', 59, 0, '', NULL, '2022-04-30 22:28:46.737', NULL, '2022-04-30 22:28:46.737', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (185, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/process-definition/list', '{"query":{"suspensionState":"1"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:28:48.287', '2022-04-30 22:28:48.329', 42, 0, '', NULL, '2022-04-30 22:28:48.336', NULL, '2022-04-30 22:28:48.336', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (186, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/form/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:28:51.486', '2022-04-30 22:28:51.534', 48, 0, '', NULL, '2022-04-30 22:28:51.541', NULL, '2022-04-30 22:28:51.541', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (191, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/bpm/model/update', '{"query":{},"body":"{\"key\":\"oa_leave\",\"name\":\"OA 请假\",\"description\":null,\"category\":null,\"formType\":null,\"formId\":null,\"formCustomCreatePath\":null,\"formCustomViewPath\":null,\"id\":\"2d3151fa-c892-11ec-a15b-3e2374911326\",\"bpmnXml\":\"\\nFlow_0804gmoFlow_0804gmoFlow_0cx479xFlow_0cx479x\",\"createTime\":1651329069063}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:32:42.935', '2022-04-30 22:32:42.971', 36, 0, '', NULL, '2022-04-30 22:32:42.979', NULL, '2022-04-30 22:32:42.979', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (193, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/form/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:32:43.574', '2022-04-30 22:32:43.593', 19, 0, '', NULL, '2022-04-30 22:32:43.602', NULL, '2022-04-30 22:32:43.602', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (194, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/role/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:32:45.524', '2022-04-30 22:32:45.589', 65, 0, '', NULL, '2022-04-30 22:32:45.6', NULL, '2022-04-30 22:32:45.6', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (195, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:32:45.525', '2022-04-30 22:32:45.589', 64, 0, '', NULL, '2022-04-30 22:32:45.607', NULL, '2022-04-30 22:32:45.607', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (196, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:32:45.525', '2022-04-30 22:32:45.602', 77, 0, '', NULL, '2022-04-30 22:32:45.615', NULL, '2022-04-30 22:32:45.615', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (210, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/user-group/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:33:57.955', '2022-04-30 22:33:57.978', 23, 0, '', NULL, '2022-04-30 22:33:57.988', NULL, '2022-04-30 22:33:57.988', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (213, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:33:57.952', '2022-04-30 22:33:57.994', 42, 0, '', NULL, '2022-04-30 22:33:58.002', NULL, '2022-04-30 22:33:58.002', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (214, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:33:57.955', '2022-04-30 22:33:58.005', 50, 0, '', NULL, '2022-04-30 22:33:58.012', NULL, '2022-04-30 22:33:58.012', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (215, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/task-assign-rule/list', '{"query":{"modelId":"2d3151fa-c892-11ec-a15b-3e2374911326"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:33:57.952', '2022-04-30 22:33:58.017', 65, 0, '', NULL, '2022-04-30 22:33:58.023', NULL, '2022-04-30 22:33:58.023', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (217, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/model/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:34:00.421', '2022-04-30 22:34:00.447', 26, 0, '', NULL, '2022-04-30 22:34:00.453', NULL, '2022-04-30 22:34:00.453', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (218, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/process-instance/my-page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:34:05.545', '2022-04-30 22:34:05.568', 23, 0, '', NULL, '2022-04-30 22:34:05.573', NULL, '2022-04-30 22:34:05.573', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (200, '', 1, 2, 'yudao-server', 'POST', '/admin-api/bpm/task-assign-rule/create', '{"query":{},"body":"{\"type\":30,\"options\":[1],\"id\":null,\"modelId\":\"2d3151fa-c892-11ec-a15b-3e2374911326\",\"processDefinitionId\":null,\"taskDefinitionKey\":\"task01\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:32:54.946', '2022-04-30 22:32:55.013', 67, 0, '', NULL, '2022-04-30 22:32:55.019', NULL, '2022-04-30 22:32:55.019', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (201, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/task-assign-rule/list', '{"query":{"modelId":"2d3151fa-c892-11ec-a15b-3e2374911326"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:32:55.029', '2022-04-30 22:32:55.086', 57, 0, '', NULL, '2022-04-30 22:32:55.091', NULL, '2022-04-30 22:32:55.091', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (203, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/bpm/model/update', '{"query":{},"body":"{\"key\":\"oa_leave\",\"name\":\"OA 请假\",\"description\":null,\"category\":\"2\",\"formType\":20,\"formCustomCreatePath\":\"/bpm/oa/leave/create\",\"formCustomViewPath\":\"/bpm/oa/leave/detail\",\"id\":\"2d3151fa-c892-11ec-a15b-3e2374911326\",\"formName\":null,\"createTime\":1651329069063,\"processDefinition\":null}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:33:35.442', '2022-04-30 22:33:35.459', 17, 0, '', NULL, '2022-04-30 22:33:35.465', NULL, '2022-04-30 22:33:35.465', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (205, '', 1, 2, 'yudao-server', 'POST', '/admin-api/bpm/model/deploy', '{"query":{"id":"2d3151fa-c892-11ec-a15b-3e2374911326"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:33:39.226', '2022-04-30 22:33:40.949', 1723, 1009003000, '流程定义的标识期望是(oa_leave),当前是(flowable_01),请修改 BPMN 流程图', NULL, '2022-04-30 22:33:40.956', NULL, '2022-04-30 22:33:40.956', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (207, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/bpm/model/update', '{"query":{},"body":"{\"key\":\"oa_leave\",\"name\":\"OA 请假\",\"description\":null,\"category\":\"2\",\"formType\":20,\"formId\":null,\"formCustomCreatePath\":\"/bpm/oa/leave/create\",\"formCustomViewPath\":\"/bpm/oa/leave/detail\",\"id\":\"2d3151fa-c892-11ec-a15b-3e2374911326\",\"bpmnXml\":\"\\nFlow_0804gmoFlow_0804gmoFlow_0cx479xFlow_0cx479x\",\"createTime\":1651329069063}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:33:56.288', '2022-04-30 22:33:56.308', 20, 0, '', NULL, '2022-04-30 22:33:56.314', NULL, '2022-04-30 22:33:56.314', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (209, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/form/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:33:56.902', '2022-04-30 22:33:56.92', 18, 0, '', NULL, '2022-04-30 22:33:56.926', NULL, '2022-04-30 22:33:56.926', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (212, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/role/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:33:57.952', '2022-04-30 22:33:57.986', 34, 0, '', NULL, '2022-04-30 22:33:57.997', NULL, '2022-04-30 22:33:57.997', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (220, '', 1, 2, 'yudao-server', 'POST', '/admin-api/bpm/oa/leave/create', '{"query":{},"body":"{\"startTime\":1649001600000,\"endTime\":1650297600000,\"type\":2,\"reason\":\"222\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:34:16.561', '2022-04-30 22:34:16.621', 60, 500, '系统异常', NULL, '2022-04-30 22:34:16.626', NULL, '2022-04-30 22:34:16.626', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (219, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/process-definition/list', '{"query":{"suspensionState":"1"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:34:06.833', '2022-04-30 22:34:06.865', 32, 0, '', NULL, '2022-04-30 22:34:06.871', NULL, '2022-04-30 22:34:06.871', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (221, '', 1, 2, 'yudao-server', 'POST', '/admin-api/bpm/oa/leave/create', '{"query":{},"body":"{\"startTime\":1649001600000,\"endTime\":1650297600000,\"type\":2,\"reason\":\"222\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:37:24.491', '2022-04-30 22:37:25.159', 668, 0, '', NULL, '2022-04-30 22:37:25.182', NULL, '2022-04-30 22:37:25.182', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (222, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/oa/leave/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:37:25.782', '2022-04-30 22:37:25.878', 96, 0, '', NULL, '2022-04-30 22:37:25.884', NULL, '2022-04-30 22:37:25.884', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (223, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/form/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:38:19.996', '2022-04-30 22:38:20.046', 50, 0, '', NULL, '2022-04-30 22:38:20.053', NULL, '2022-04-30 22:38:20.053', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (224, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:38:23.175', '2022-04-30 22:38:23.212', 37, 0, '', NULL, '2022-04-30 22:38:23.217', NULL, '2022-04-30 22:38:23.217', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (225, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:38:23.174', '2022-04-30 22:38:23.232', 58, 0, '', NULL, '2022-04-30 22:38:23.238', NULL, '2022-04-30 22:38:23.238', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (226, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/file-config/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:38:25.663', '2022-04-30 22:38:25.721', 58, 0, '', NULL, '2022-04-30 22:38:25.73', NULL, '2022-04-30 22:38:25.73', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (227, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/file/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:38:26.494', '2022-04-30 22:38:26.545', 51, 500, '系统异常', NULL, '2022-04-30 22:38:26.552', NULL, '2022-04-30 22:38:26.552', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (228, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-data/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:20.912', '2022-04-30 22:40:20.998', 86, 0, '', NULL, '2022-04-30 22:40:21.034', NULL, '2022-04-30 22:40:21.034', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (229, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/get-permission-info', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:20.912', '2022-04-30 22:40:21.019', 107, 0, '', NULL, '2022-04-30 22:40:21.034', NULL, '2022-04-30 22:40:21.034', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (230, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/auth/list-menus', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:21.027', '2022-04-30 22:40:21.043', 16, 0, '', NULL, '2022-04-30 22:40:21.052', NULL, '2022-04-30 22:40:21.052', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (231, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/process-instance/my-page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:21.568', '2022-04-30 22:40:21.744', 176, 0, '', NULL, '2022-04-30 22:40:21.749', NULL, '2022-04-30 22:40:21.749', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (232, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/oa/leave/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:25.335', '2022-04-30 22:40:25.408', 73, 0, '', NULL, '2022-04-30 22:40:25.415', NULL, '2022-04-30 22:40:25.415', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (233, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/task/todo-page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:25.901', '2022-04-30 22:40:25.989', 88, 0, '', NULL, '2022-04-30 22:40:25.997', NULL, '2022-04-30 22:40:25.997', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (234, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:28.313', '2022-04-30 22:40:28.355', 42, 0, '', NULL, '2022-04-30 22:40:28.362', NULL, '2022-04-30 22:40:28.362', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (235, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/task/list-by-process-instance-id', '{"query":{"processInstanceId":"0d23cbd6-c893-11ec-8a1d-3e2374911326"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:28.312', '2022-04-30 22:40:28.43', 118, 0, '', NULL, '2022-04-30 22:40:28.436', NULL, '2022-04-30 22:40:28.436', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (236, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/process-instance/get', '{"query":{"id":"0d23cbd6-c893-11ec-8a1d-3e2374911326"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:28.311', '2022-04-30 22:40:28.613', 302, 0, '', NULL, '2022-04-30 22:40:28.619', NULL, '2022-04-30 22:40:28.619', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (237, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/process-definition/get-bpmn-xml', '{"query":{"id":"oa_leave:1:934362e3-c892-11ec-a15b-3e2374911326"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:28.627', '2022-04-30 22:40:28.641', 14, 0, '', NULL, '2022-04-30 22:40:28.648', NULL, '2022-04-30 22:40:28.648', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (238, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/activity/list', '{"query":{"processInstanceId":"0d23cbd6-c893-11ec-8a1d-3e2374911326"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:28.628', '2022-04-30 22:40:28.659', 31, 0, '', NULL, '2022-04-30 22:40:28.665', NULL, '2022-04-30 22:40:28.665', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (239, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/bpm/task/approve', '{"query":{},"body":"{\"id\":\"0d2f167e-c893-11ec-8a1d-3e2374911326\",\"comment\":\"A\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:30.287', '2022-04-30 22:40:30.7', 413, 0, '', NULL, '2022-04-30 22:40:30.707', NULL, '2022-04-30 22:40:30.707', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (240, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/task/list-by-process-instance-id', '{"query":{"processInstanceId":"0d23cbd6-c893-11ec-8a1d-3e2374911326"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:30.715', '2022-04-30 22:40:30.795', 80, 0, '', NULL, '2022-04-30 22:40:30.805', NULL, '2022-04-30 22:40:30.805', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (250, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:43:56.07', '2022-04-30 22:43:56.117', 47, 0, '', NULL, '2022-04-30 22:43:56.124', NULL, '2022-04-30 22:43:56.124', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (241, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/process-instance/get', '{"query":{"id":"0d23cbd6-c893-11ec-8a1d-3e2374911326"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:30.714', '2022-04-30 22:40:30.812', 98, 0, '', NULL, '2022-04-30 22:40:30.827', NULL, '2022-04-30 22:40:30.827', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (249, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:43:56.068', '2022-04-30 22:43:56.104', 36, 0, '', NULL, '2022-04-30 22:43:56.111', NULL, '2022-04-30 22:43:56.111', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (251, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{"query":{"key":"sys.user.init-password"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:43:56.07', '2022-04-30 22:43:56.117', 47, 0, '', NULL, '2022-04-30 22:43:56.124', NULL, '2022-04-30 22:43:56.124', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (255, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dept/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:43:58.9', '2022-04-30 22:43:58.93', 30, 0, '', NULL, '2022-04-30 22:43:58.949', NULL, '2022-04-30 22:43:58.949', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (260, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/operate-log/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:03.468', '2022-04-30 22:44:03.538', 70, 0, '', NULL, '2022-04-30 22:44:03.543', NULL, '2022-04-30 22:44:03.543', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (261, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/login-log/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:04.223', '2022-04-30 22:44:04.27', 47, 0, '', NULL, '2022-04-30 22:44:04.275', NULL, '2022-04-30 22:44:04.275', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (262, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user-session/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:05.015', '2022-04-30 22:44:05.096', 81, 0, '', NULL, '2022-04-30 22:44:05.102', NULL, '2022-04-30 22:44:05.102', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (263, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/sms-channel/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:07.133', '2022-04-30 22:44:07.168', 35, 0, '', NULL, '2022-04-30 22:44:07.173', NULL, '2022-04-30 22:44:07.173', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (264, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/sms-channel/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:08.197', '2022-04-30 22:44:08.221', 24, 0, '', NULL, '2022-04-30 22:44:08.23', NULL, '2022-04-30 22:44:08.23', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (265, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/sms-template/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:08.196', '2022-04-30 22:44:08.258', 62, 0, '', NULL, '2022-04-30 22:44:08.262', NULL, '2022-04-30 22:44:08.262', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (266, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/sms-channel/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:09.288', '2022-04-30 22:44:09.304', 16, 0, '', NULL, '2022-04-30 22:44:09.31', NULL, '2022-04-30 22:44:09.31', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (267, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/sms-log/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:09.288', '2022-04-30 22:44:09.348', 60, 0, '', NULL, '2022-04-30 22:44:09.354', NULL, '2022-04-30 22:44:09.354', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (268, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/error-code/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:10.432', '2022-04-30 22:44:10.47', 38, 0, '', NULL, '2022-04-30 22:44:10.475', NULL, '2022-04-30 22:44:10.475', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (269, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/sensitive-word/get-tags', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:11.478', '2022-04-30 22:44:11.499', 21, 0, '', NULL, '2022-04-30 22:44:11.505', NULL, '2022-04-30 22:44:11.505', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (270, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/sensitive-word/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:11.478', '2022-04-30 22:44:11.527', 49, 0, '', NULL, '2022-04-30 22:44:11.533', NULL, '2022-04-30 22:44:11.533', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (271, '', 1, 2, 'yudao-server', 'GET', '/admin-api/pay/merchant/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:15.338', '2022-04-30 22:44:15.387', 49, 0, '', NULL, '2022-04-30 22:44:15.392', NULL, '2022-04-30 22:44:15.392', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (272, '', 1, 2, 'yudao-server', 'GET', '/admin-api/pay/merchant/list-by-name', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:16.414', '2022-04-30 22:44:16.44', 26, 0, '', NULL, '2022-04-30 22:44:16.446', NULL, '2022-04-30 22:44:16.446', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (273, '', 1, 2, 'yudao-server', 'GET', '/admin-api/pay/app/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:16.413', '2022-04-30 22:44:16.516', 103, 0, '', NULL, '2022-04-30 22:44:16.521', NULL, '2022-04-30 22:44:16.521', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (274, '', 1, 2, 'yudao-server', 'GET', '/admin-api/pay/merchant/list-by-name', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:17.469', '2022-04-30 22:44:17.482', 13, 0, '', NULL, '2022-04-30 22:44:17.489', NULL, '2022-04-30 22:44:17.489', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (275, '', 1, 2, 'yudao-server', 'GET', '/admin-api/pay/order/page', '{"query":{"beginCreateTime":"2022-04-30 00:00:00","pageNo":"1","pageSize":"10","endCreateTime":"2022-04-30 23:59:59"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:17.469', '2022-04-30 22:44:17.613', 144, 0, '', NULL, '2022-04-30 22:44:17.619', NULL, '2022-04-30 22:44:17.619', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (276, '', 1, 2, 'yudao-server', 'GET', '/admin-api/pay/merchant/list-by-name', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:18.535', '2022-04-30 22:44:18.55', 15, 0, '', NULL, '2022-04-30 22:44:18.557', NULL, '2022-04-30 22:44:18.557', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (277, '', 1, 2, 'yudao-server', 'GET', '/admin-api/pay/refund/page', '{"query":{"beginCreateTime":"2022-04-30 00:00:00","pageNo":"1","pageSize":"10","endCreateTime":"2022-04-30 23:59:59"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:18.535', '2022-04-30 22:44:18.602', 67, 0, '', NULL, '2022-04-30 22:44:18.608', NULL, '2022-04-30 22:44:18.608', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (242, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/process-definition/get-bpmn-xml', '{"query":{"id":"oa_leave:1:934362e3-c892-11ec-a15b-3e2374911326"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:30.843', '2022-04-30 22:40:30.855', 12, 0, '', NULL, '2022-04-30 22:40:30.864', NULL, '2022-04-30 22:40:30.864', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (243, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/activity/list', '{"query":{"processInstanceId":"0d23cbd6-c893-11ec-8a1d-3e2374911326"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:30.844', '2022-04-30 22:40:30.869', 25, 0, '', NULL, '2022-04-30 22:40:30.883', NULL, '2022-04-30 22:40:30.883', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (244, '', 1, 2, 'yudao-server', 'GET', '/admin-api/bpm/form/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:40:34.76', '2022-04-30 22:40:34.806', 46, 0, '', NULL, '2022-04-30 22:40:34.812', NULL, '2022-04-30 22:40:34.812', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (245, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/tenant-package/get-simple-list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:43:53.178', '2022-04-30 22:43:53.214', 36, 0, '', NULL, '2022-04-30 22:43:53.223', NULL, '2022-04-30 22:43:53.223', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (246, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/tenant/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:43:53.178', '2022-04-30 22:43:53.229', 51, 0, '', NULL, '2022-04-30 22:43:53.236', NULL, '2022-04-30 22:43:53.236', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (247, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/tenant-package/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:43:54.956', '2022-04-30 22:43:54.99', 34, 0, '', NULL, '2022-04-30 22:43:54.996', NULL, '2022-04-30 22:43:54.996', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (248, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:43:54.956', '2022-04-30 22:43:55.036', 80, 0, '', NULL, '2022-04-30 22:43:55.047', NULL, '2022-04-30 22:43:55.047', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (252, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:43:56.067', '2022-04-30 22:43:56.147', 80, 0, '', NULL, '2022-04-30 22:43:56.153', NULL, '2022-04-30 22:43:56.153', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (253, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/role/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:43:57.032', '2022-04-30 22:43:57.073', 41, 0, '', NULL, '2022-04-30 22:43:57.079', NULL, '2022-04-30 22:43:57.079', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (254, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/menu/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:43:57.885', '2022-04-30 22:43:57.913', 28, 0, '', NULL, '2022-04-30 22:43:57.918', NULL, '2022-04-30 22:43:57.918', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (256, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/user/list-all-simple', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:43:58.901', '2022-04-30 22:43:58.951', 50, 0, '', NULL, '2022-04-30 22:43:58.965', NULL, '2022-04-30 22:43:58.965', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (257, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/post/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:43:59.853', '2022-04-30 22:43:59.885', 32, 0, '', NULL, '2022-04-30 22:43:59.891', NULL, '2022-04-30 22:43:59.891', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (258, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:00.837', '2022-04-30 22:44:00.886', 49, 0, '', NULL, '2022-04-30 22:44:00.892', NULL, '2022-04-30 22:44:00.892', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (259, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/notice/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:01.736', '2022-04-30 22:44:01.774', 38, 0, '', NULL, '2022-04-30 22:44:01.78', NULL, '2022-04-30 22:44:01.78', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (279, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/table/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:22.173', '2022-04-30 22:44:22.223', 50, 0, '', NULL, '2022-04-30 22:44:22.228', NULL, '2022-04-30 22:44:22.228', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (280, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/test-demo/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:22.48', '2022-04-30 22:44:22.527', 47, 0, '', NULL, '2022-04-30 22:44:22.532', NULL, '2022-04-30 22:44:22.532', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (281, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:23.544', '2022-04-30 22:44:23.557', 13, 0, '', NULL, '2022-04-30 22:44:23.562', NULL, '2022-04-30 22:44:23.562', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (282, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/db-doc/export-html', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:25.53', '2022-04-30 22:44:26.002', 472, 500, '系统异常', NULL, '2022-04-30 22:44:26.01', NULL, '2022-04-30 22:44:26.01', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (283, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/file/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:26.838', '2022-04-30 22:44:26.878', 40, 0, '', NULL, '2022-04-30 22:44:26.882', NULL, '2022-04-30 22:44:26.882', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (284, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:28.196', '2022-04-30 22:44:28.234', 38, 0, '', NULL, '2022-04-30 22:44:28.242', NULL, '2022-04-30 22:44:28.242', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (285, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/api-access-log/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:29.398', '2022-04-30 22:44:29.445', 47, 0, '', NULL, '2022-04-30 22:44:29.45', NULL, '2022-04-30 22:44:29.45', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (286, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/api-error-log/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:29.968', '2022-04-30 22:44:30.03', 62, 0, '', NULL, '2022-04-30 22:44:30.036', NULL, '2022-04-30 22:44:30.036', 0, 1); -INSERT INTO "public"."infra_api_access_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "begin_time", "end_time", "duration", "result_code", "result_msg", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (278, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":null}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:22.173', '2022-04-30 22:44:22.205', 32, 0, '', NULL, '2022-04-30 22:44:22.211', NULL, '2022-04-30 22:44:22.211', 0, 1); COMMIT; -- ---------------------------- -- Table structure for infra_api_error_log -- ---------------------------- -DROP TABLE IF EXISTS "public"."infra_api_error_log"; -CREATE TABLE "public"."infra_api_error_log" ( +DROP TABLE IF EXISTS "infra_api_error_log"; +CREATE TABLE "infra_api_error_log" ( "id" int4 NOT NULL, "trace_id" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, "user_id" int4 NOT NULL DEFAULT 0, @@ -1495,15147 +936,67 @@ CREATE TABLE "public"."infra_api_error_log" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."infra_api_error_log" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."infra_api_error_log"."id" IS '编号'; -COMMENT ON COLUMN "public"."infra_api_error_log"."trace_id" IS '链路追踪编号 +COMMENT ON COLUMN "infra_api_error_log"."id" IS '编号'; +COMMENT ON COLUMN "infra_api_error_log"."trace_id" IS '链路追踪编号 * * 一般来说,通过链路追踪编号,可以将访问日志,错误日志,链路追踪日志,logger 打印日志等,结合在一起,从而进行排错。'; -COMMENT ON COLUMN "public"."infra_api_error_log"."user_id" IS '用户编号'; -COMMENT ON COLUMN "public"."infra_api_error_log"."user_type" IS '用户类型'; -COMMENT ON COLUMN "public"."infra_api_error_log"."application_name" IS '应用名 +COMMENT ON COLUMN "infra_api_error_log"."user_id" IS '用户编号'; +COMMENT ON COLUMN "infra_api_error_log"."user_type" IS '用户类型'; +COMMENT ON COLUMN "infra_api_error_log"."application_name" IS '应用名 * * 目前读取 spring.application.name'; -COMMENT ON COLUMN "public"."infra_api_error_log"."request_method" IS '请求方法名'; -COMMENT ON COLUMN "public"."infra_api_error_log"."request_url" IS '请求地址'; -COMMENT ON COLUMN "public"."infra_api_error_log"."request_params" IS '请求参数'; -COMMENT ON COLUMN "public"."infra_api_error_log"."user_ip" IS '用户 IP'; -COMMENT ON COLUMN "public"."infra_api_error_log"."user_agent" IS '浏览器 UA'; -COMMENT ON COLUMN "public"."infra_api_error_log"."exception_time" IS '异常发生时间'; -COMMENT ON COLUMN "public"."infra_api_error_log"."exception_name" IS '异常名 +COMMENT ON COLUMN "infra_api_error_log"."request_method" IS '请求方法名'; +COMMENT ON COLUMN "infra_api_error_log"."request_url" IS '请求地址'; +COMMENT ON COLUMN "infra_api_error_log"."request_params" IS '请求参数'; +COMMENT ON COLUMN "infra_api_error_log"."user_ip" IS '用户 IP'; +COMMENT ON COLUMN "infra_api_error_log"."user_agent" IS '浏览器 UA'; +COMMENT ON COLUMN "infra_api_error_log"."exception_time" IS '异常发生时间'; +COMMENT ON COLUMN "infra_api_error_log"."exception_name" IS '异常名 * * {@link Throwable#getClass()} 的类全名'; -COMMENT ON COLUMN "public"."infra_api_error_log"."exception_message" IS '异常导致的消息 +COMMENT ON COLUMN "infra_api_error_log"."exception_message" IS '异常导致的消息 * * {@link cn.iocoder.common.framework.util.ExceptionUtil#getMessage(Throwable)}'; -COMMENT ON COLUMN "public"."infra_api_error_log"."exception_root_cause_message" IS '异常导致的根消息 +COMMENT ON COLUMN "infra_api_error_log"."exception_root_cause_message" IS '异常导致的根消息 * * {@link cn.iocoder.common.framework.util.ExceptionUtil#getRootCauseMessage(Throwable)}'; -COMMENT ON COLUMN "public"."infra_api_error_log"."exception_stack_trace" IS '异常的栈轨迹 +COMMENT ON COLUMN "infra_api_error_log"."exception_stack_trace" IS '异常的栈轨迹 * * {@link cn.iocoder.common.framework.util.ExceptionUtil#getServiceException(Exception)}'; -COMMENT ON COLUMN "public"."infra_api_error_log"."exception_class_name" IS '异常发生的类全名 +COMMENT ON COLUMN "infra_api_error_log"."exception_class_name" IS '异常发生的类全名 * * {@link StackTraceElement#getClassName()}'; -COMMENT ON COLUMN "public"."infra_api_error_log"."exception_file_name" IS '异常发生的类文件 +COMMENT ON COLUMN "infra_api_error_log"."exception_file_name" IS '异常发生的类文件 * * {@link StackTraceElement#getFileName()}'; -COMMENT ON COLUMN "public"."infra_api_error_log"."exception_method_name" IS '异常发生的方法名 +COMMENT ON COLUMN "infra_api_error_log"."exception_method_name" IS '异常发生的方法名 * * {@link StackTraceElement#getMethodName()}'; -COMMENT ON COLUMN "public"."infra_api_error_log"."exception_line_number" IS '异常发生的方法所在行 +COMMENT ON COLUMN "infra_api_error_log"."exception_line_number" IS '异常发生的方法所在行 * * {@link StackTraceElement#getLineNumber()}'; -COMMENT ON COLUMN "public"."infra_api_error_log"."process_status" IS '处理状态'; -COMMENT ON COLUMN "public"."infra_api_error_log"."process_time" IS '处理时间'; -COMMENT ON COLUMN "public"."infra_api_error_log"."process_user_id" IS '处理用户编号'; -COMMENT ON COLUMN "public"."infra_api_error_log"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."infra_api_error_log"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."infra_api_error_log"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."infra_api_error_log"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."infra_api_error_log"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."infra_api_error_log"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."infra_api_error_log" IS '系统异常日志'; +COMMENT ON COLUMN "infra_api_error_log"."process_status" IS '处理状态'; +COMMENT ON COLUMN "infra_api_error_log"."process_time" IS '处理时间'; +COMMENT ON COLUMN "infra_api_error_log"."process_user_id" IS '处理用户编号'; +COMMENT ON COLUMN "infra_api_error_log"."creator" IS '创建者'; +COMMENT ON COLUMN "infra_api_error_log"."create_time" IS '创建时间'; +COMMENT ON COLUMN "infra_api_error_log"."updater" IS '更新者'; +COMMENT ON COLUMN "infra_api_error_log"."update_time" IS '更新时间'; +COMMENT ON COLUMN "infra_api_error_log"."deleted" IS '是否删除'; +COMMENT ON COLUMN "infra_api_error_log"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "infra_api_error_log" IS '系统异常日志'; -- ---------------------------- -- Records of infra_api_error_log -- ---------------------------- BEGIN; -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (357, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:07', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: -### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/db/DataSourceConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, name, url, username, password, create_time, update_time, creator, updater, deleted FROM infra_data_source_config WHERE deleted = 0 AND tenant_id = 1 -### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' -; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause''', 'MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause''', 'org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/db/DataSourceConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, name, url, username, password, create_time, update_time, creator, updater, deleted FROM infra_data_source_config WHERE deleted = 0 AND tenant_id = 1 -### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' -; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy138.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy260.selectList(Unknown Source) - at cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX.selectList(BaseMapperX.java:59) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy260.selectList(Unknown Source) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfigList(DataSourceConfigServiceImpl.java:78) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$3cf50a47.getDataSourceConfigList() - at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.getDataSourceConfigList(DataSourceConfigController.java:69) - at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController$$FastClassBySpringCGLIB$$983ba4d8.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.GeneratedMethodAccessor373.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController$$EnhancerBySpringCGLIB$$3a669c08.getDataSourceConfigList() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor246.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy159.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor254.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy157.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy156.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor275.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 185 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, 0, NULL, '2022-04-27 22:43:07', NULL, '2022-04-27 22:43:07', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (358, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:32', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: -### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/db/DataSourceConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, name, url, username, password, create_time, update_time, creator, updater, deleted FROM infra_data_source_config WHERE deleted = 0 AND tenant_id = 1 -### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' -; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause''', 'MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause''', 'org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/db/DataSourceConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, name, url, username, password, create_time, update_time, creator, updater, deleted FROM infra_data_source_config WHERE deleted = 0 AND tenant_id = 1 -### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' -; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy138.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy260.selectList(Unknown Source) - at cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX.selectList(BaseMapperX.java:59) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy260.selectList(Unknown Source) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfigList(DataSourceConfigServiceImpl.java:78) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$3cf50a47.getDataSourceConfigList() - at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.getDataSourceConfigList(DataSourceConfigController.java:69) - at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController$$FastClassBySpringCGLIB$$983ba4d8.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.GeneratedMethodAccessor373.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController$$EnhancerBySpringCGLIB$$3a669c08.getDataSourceConfigList() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor246.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy159.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor254.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy157.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy156.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor275.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 185 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, 0, NULL, '2022-04-27 22:43:32', NULL, '2022-04-27 22:43:32', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (359, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/data-source-config/list', '{"query":{},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-27 22:43:47', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: -### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/db/DataSourceConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, name, url, username, password, create_time, update_time, creator, updater, deleted FROM infra_data_source_config WHERE deleted = 0 AND tenant_id = 1 -### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' -; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause''', 'MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause''', 'org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/db/DataSourceConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, name, url, username, password, create_time, update_time, creator, updater, deleted FROM infra_data_source_config WHERE deleted = 0 AND tenant_id = 1 -### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' -; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy138.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy260.selectList(Unknown Source) - at cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX.selectList(BaseMapperX.java:59) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy260.selectList(Unknown Source) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfigList(DataSourceConfigServiceImpl.java:78) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$3cf50a47.getDataSourceConfigList() - at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.getDataSourceConfigList(DataSourceConfigController.java:69) - at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController$$FastClassBySpringCGLIB$$983ba4d8.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.GeneratedMethodAccessor373.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController$$EnhancerBySpringCGLIB$$3a669c08.getDataSourceConfigList() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tenant_id'' in ''where clause'' - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor246.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy159.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor254.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy157.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy156.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor275.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 185 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, 0, NULL, '2022-04-27 22:43:47', NULL, '2022-04-27 22:43:47', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (360, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 10:57:51', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: Unknown column ''tableName'' in ''field list''', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$e8532de0.selectTableList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:39) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:264) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$df999684.getSchemaTableList() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:61) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$2b284dcd.getSchemaTableList() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tableName'' in ''field list'' - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:65) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectTableList(DatabaseTableMySQLDAOImpl.java:43) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 174 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 10:57:52', NULL, '2022-04-28 10:57:52', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (361, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:05:54', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: Unknown column ''tableName'' in ''field list''', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$b643c6cc.selectTableList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:39) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:264) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$a3a2cc3d.getSchemaTableList() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:61) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$aface5d0.getSchemaTableList() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tableName'' in ''field list'' - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:76) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectTableList(DatabaseTableMySQLDAOImpl.java:43) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 174 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 11:05:54', NULL, '2022-04-28 11:05:54', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (362, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:41:03', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: Unknown column ''tableName'' in ''field list''', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$acbe86cb.selectTableList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:39) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:264) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7a20d1a8.getSchemaTableList() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:61) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$f13af62e.getSchemaTableList() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''tableName'' in ''field list'' - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:76) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectTableList(DatabaseTableMySQLDAOImpl.java:43) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 174 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 11:41:03', NULL, '2022-04-28 11:41:03', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (363, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 11:47:34', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: Unknown column ''ruoyi'' in ''where clause''', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$87361831.selectTableList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:39) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:264) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$fac36cb0.getSchemaTableList() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:61) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$51369398.getSchemaTableList() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''ruoyi'' in ''where clause'' - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:76) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectTableList(DatabaseTableMySQLDAOImpl.java:43) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 174 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 11:47:34', NULL, '2022-04-28 11:47:34', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (364, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:34:17', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''SELECT DATABASE())'' at line 1', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$87361831.selectTableList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:39) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:264) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$fac36cb0.getSchemaTableList() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:61) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$51369398.getSchemaTableList() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''SELECT DATABASE())'' at line 1 - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:76) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectTableList(DatabaseTableMySQLDAOImpl.java:43) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 174 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 12:34:17', NULL, '2022-04-28 12:34:17', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (365, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 12:37:35', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''SELECT DATABASE())'' at line 1', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$87361831.selectTableList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:39) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:264) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$fac36cb0.getSchemaTableList() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:61) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$51369398.getSchemaTableList() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''SELECT DATABASE())'' at line 1 - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:76) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectTableList(DatabaseTableMySQLDAOImpl.java:43) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 174 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 12:37:35', NULL, '2022-04-28 12:37:35', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (366, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"53"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:01:28', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: -### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''column_type'' in ''field list'' -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/codegen/CodegenColumnMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, table_id, column_name, column_type, column_comment, nullable, primary_key, auto_increment, ordinal_position, java_type, java_field, dict_type, example, create_operation, update_operation, list_operation, list_operation_condition, list_operation_result, html_type, create_time, update_time, creator, updater, deleted FROM infra_codegen_column WHERE deleted = 0 AND (table_id = ?) ORDER BY ordinal_position ASC -### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''column_type'' in ''field list'' -; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''column_type'' in ''field list''', 'MySQLSyntaxErrorException: Unknown column ''column_type'' in ''field list''', 'org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''column_type'' in ''field list'' -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/codegen/CodegenColumnMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, table_id, column_name, column_type, column_comment, nullable, primary_key, auto_increment, ordinal_position, java_type, java_field, dict_type, example, create_operation, update_operation, list_operation, list_operation_condition, list_operation_result, html_type, create_time, update_time, creator, updater, deleted FROM infra_codegen_column WHERE deleted = 0 AND (table_id = ?) ORDER BY ordinal_position ASC -### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''column_type'' in ''field list'' -; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''column_type'' in ''field list'' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy138.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy259.selectList(Unknown Source) - at cn.iocoder.yudao.module.infra.dal.mysql.codegen.CodegenColumnMapper.selectListByTableId(CodegenColumnMapper.java:14) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy259.selectListByTableId(Unknown Source) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.generationCodes(CodegenServiceImpl.java:252) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$39e0660e.generationCodes() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.previewCodegen(CodegenController.java:147) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$d8bf44dd.previewCodegen() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''column_type'' in ''field list'' - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor244.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy159.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor264.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy157.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy156.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor272.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 180 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, 0, NULL, '2022-04-28 19:01:28', NULL, '2022-04-28 19:01:28', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (367, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:19:14', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: Unknown column ''column_name'' in ''field list''', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$acbe86cb.selectColumnList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:110) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:120) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:120) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$39e0660e.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:92) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$1e092b2f.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''column_name'' in ''field list'' - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:53) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 185 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 19:19:14', NULL, '2022-04-28 19:19:14', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (368, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:21:18', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: Unknown column ''ordinalPosition'' in ''field list''', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$773168f2.selectColumnList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:110) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:120) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:120) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$39e0660e.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:92) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$14d5a133.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''ordinalPosition'' in ''field list'' - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:53) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 185 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 19:21:18', NULL, '2022-04-28 19:21:18', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (369, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:22:39', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'SQLException: Column ''table_name'' not found.', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$acbe86cb.selectColumnList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:110) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:120) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:120) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7a20d1a8.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:92) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$a82dfdfd.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLException: Column ''table_name'' not found. - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:965) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:898) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:887) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:861) - at com.mysql.jdbc.ResultSetImpl.findColumn(ResultSetImpl.java:1080) - at com.mysql.jdbc.ResultSetImpl.getString(ResultSetImpl.java:5177) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.lambda$selectColumnList$1(DatabaseTableMySQLDAOImpl.java:54) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:68) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:53) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 185 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 19:22:39', NULL, '2022-04-28 19:22:39', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (370, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:23:51', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'SQLException: Column ''table_name'' not found.', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$acbe86cb.selectColumnList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:110) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:120) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:120) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7a20d1a8.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:92) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$a82dfdfd.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLException: Column ''table_name'' not found. - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:965) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:898) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:887) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:861) - at com.mysql.jdbc.ResultSetImpl.findColumn(ResultSetImpl.java:1080) - at com.mysql.jdbc.ResultSetImpl.getString(ResultSetImpl.java:5177) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.lambda$selectColumnList$1(DatabaseTableMySQLDAOImpl.java:54) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:68) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:53) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 185 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 19:23:51', NULL, '2022-04-28 19:23:51', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (371, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:23:53', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'SQLException: Column ''table_name'' not found.', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$acbe86cb.selectColumnList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:110) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:120) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:120) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7a20d1a8.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:92) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$a82dfdfd.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLException: Column ''table_name'' not found. - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:965) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:898) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:887) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:861) - at com.mysql.jdbc.ResultSetImpl.findColumn(ResultSetImpl.java:1080) - at com.mysql.jdbc.ResultSetImpl.getString(ResultSetImpl.java:5177) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.lambda$selectColumnList$1(DatabaseTableMySQLDAOImpl.java:54) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:68) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:53) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 185 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 19:23:53', NULL, '2022-04-28 19:23:53', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (372, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 19:23:57', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'SQLException: Column ''table_name'' not found.', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$acbe86cb.selectColumnList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:110) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:120) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:120) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7a20d1a8.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:92) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$a82dfdfd.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLException: Column ''table_name'' not found. - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:965) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:898) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:887) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:861) - at com.mysql.jdbc.ResultSetImpl.findColumn(ResultSetImpl.java:1080) - at com.mysql.jdbc.ResultSetImpl.getString(ResultSetImpl.java:5177) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.lambda$selectColumnList$1(DatabaseTableMySQLDAOImpl.java:54) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:68) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:53) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 185 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 19:23:57', NULL, '2022-04-28 19:23:57', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (373, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:05', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'OracleDatabaseException: ORA-00904: "DT"."COMMENTS": 标识符无效 -', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$EnhancerBySpringCGLIB$$16f580a1.selectTableList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:36) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:251) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7fff112.getSchemaTableList() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:63) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$a8421874.getSchemaTableList() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: ORA-00904: "DT"."COMMENTS": 标识符无效 - - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:628) - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:562) - at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1145) - at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:726) - at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:291) - at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:492) - at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:148) - at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:928) - at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1158) - at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1093) - at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1402) - at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285) - at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3735) - at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3847) - at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1098) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl.selectTableList(DatabaseTableOracleDAOImpl.java:36) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$FastClassBySpringCGLIB$$89ea0450.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 174 more -Caused by: Error : 904, Position : 22, Sql = SELECT dt.table_name, dt.comments, uo.created FROM user_tables dt, user_tab_comments dtc, user_objects uo WHERE dt.table_name = dtc.table_name AND dt.table_name = uo.object_name AND uo.object_type = ''TABLE'', OriginalSql = SELECT dt.table_name, dt.comments, uo.created FROM user_tables dt, user_tab_comments dtc, user_objects uo WHERE dt.table_name = dtc.table_name AND dt.table_name = uo.object_name AND uo.object_type = ''TABLE'', Error Msg = ORA-00904: "DT"."COMMENTS": 标识符无效 - - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:632) - ... 195 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 21:12:05', NULL, '2022-04-28 21:12:05', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (374, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:05', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'OracleDatabaseException: ORA-00904: "DT"."COMMENTS": 标识符无效 -', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$EnhancerBySpringCGLIB$$16f580a1.selectTableList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:36) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:251) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7fff112.getSchemaTableList() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:63) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$a8421874.getSchemaTableList() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: ORA-00904: "DT"."COMMENTS": 标识符无效 - - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:628) - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:562) - at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1145) - at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:726) - at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:291) - at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:492) - at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:148) - at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:928) - at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1158) - at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1093) - at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1402) - at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285) - at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3735) - at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3847) - at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1098) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl.selectTableList(DatabaseTableOracleDAOImpl.java:36) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$FastClassBySpringCGLIB$$89ea0450.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 174 more -Caused by: Error : 904, Position : 22, Sql = SELECT dt.table_name, dt.comments, uo.created FROM user_tables dt, user_tab_comments dtc, user_objects uo WHERE dt.table_name = dtc.table_name AND dt.table_name = uo.object_name AND uo.object_type = ''TABLE'', OriginalSql = SELECT dt.table_name, dt.comments, uo.created FROM user_tables dt, user_tab_comments dtc, user_objects uo WHERE dt.table_name = dtc.table_name AND dt.table_name = uo.object_name AND uo.object_type = ''TABLE'', Error Msg = ORA-00904: "DT"."COMMENTS": 标识符无效 - - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:632) - ... 195 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 21:12:05', NULL, '2022-04-28 21:12:05', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (375, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:05', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'OracleDatabaseException: ORA-00904: "DT"."COMMENTS": 标识符无效 -', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$EnhancerBySpringCGLIB$$16f580a1.selectTableList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:36) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:251) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7fff112.getSchemaTableList() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:63) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$a8421874.getSchemaTableList() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: ORA-00904: "DT"."COMMENTS": 标识符无效 - - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:628) - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:562) - at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1145) - at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:726) - at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:291) - at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:492) - at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:148) - at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:928) - at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1158) - at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1093) - at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1402) - at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285) - at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3735) - at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3847) - at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1098) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl.selectTableList(DatabaseTableOracleDAOImpl.java:36) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$FastClassBySpringCGLIB$$89ea0450.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 174 more -Caused by: Error : 904, Position : 22, Sql = SELECT dt.table_name, dt.comments, uo.created FROM user_tables dt, user_tab_comments dtc, user_objects uo WHERE dt.table_name = dtc.table_name AND dt.table_name = uo.object_name AND uo.object_type = ''TABLE'', OriginalSql = SELECT dt.table_name, dt.comments, uo.created FROM user_tables dt, user_tab_comments dtc, user_objects uo WHERE dt.table_name = dtc.table_name AND dt.table_name = uo.object_name AND uo.object_type = ''TABLE'', Error Msg = ORA-00904: "DT"."COMMENTS": 标识符无效 - - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:632) - ... 195 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 21:12:05', NULL, '2022-04-28 21:12:05', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (376, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:12:05', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'OracleDatabaseException: ORA-00904: "DT"."COMMENTS": 标识符无效 -', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$EnhancerBySpringCGLIB$$16f580a1.selectTableList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:36) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:251) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$7fff112.getSchemaTableList() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:63) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$a8421874.getSchemaTableList() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: ORA-00904: "DT"."COMMENTS": 标识符无效 - - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:628) - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:562) - at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1145) - at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:726) - at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:291) - at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:492) - at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:148) - at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:928) - at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1158) - at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1093) - at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1402) - at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285) - at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3735) - at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3847) - at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1098) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl.selectTableList(DatabaseTableOracleDAOImpl.java:36) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$FastClassBySpringCGLIB$$89ea0450.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 174 more -Caused by: Error : 904, Position : 22, Sql = SELECT dt.table_name, dt.comments, uo.created FROM user_tables dt, user_tab_comments dtc, user_objects uo WHERE dt.table_name = dtc.table_name AND dt.table_name = uo.object_name AND uo.object_type = ''TABLE'', OriginalSql = SELECT dt.table_name, dt.comments, uo.created FROM user_tables dt, user_tab_comments dtc, user_objects uo WHERE dt.table_name = dtc.table_name AND dt.table_name = uo.object_name AND uo.object_type = ''TABLE'', Error Msg = ORA-00904: "DT"."COMMENTS": 标识符无效 - - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:632) - ... 195 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 21:12:05', NULL, '2022-04-28 21:12:05', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (377, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"9","tableComment":"支付订单","tableName":""},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-28 21:13:46', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'OracleDatabaseException: ORA-00904: "TBL"."COMMENTS": 标识符无效 -', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$EnhancerBySpringCGLIB$$7047f474.selectTableList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList(DatabaseTableServiceImpl.java:36) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getSchemaTableList(CodegenServiceImpl.java:251) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$b01c9c2e.getSchemaTableList() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:63) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$8d194706.getSchemaTableList() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: ORA-00904: "TBL"."COMMENTS": 标识符无效 - - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:628) - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:562) - at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1145) - at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:726) - at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:291) - at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:492) - at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:148) - at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:928) - at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1158) - at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1093) - at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1402) - at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285) - at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3735) - at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3847) - at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1098) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl.selectTableList(DatabaseTableOracleDAOImpl.java:36) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$FastClassBySpringCGLIB$$89ea0450.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 174 more -Caused by: Error : 904, Position : 219, Sql = SELECT tbl.table_name, tblc.comments, uo.created FROM user_tables tbl, user_tab_comments tblc, user_objects uo WHERE tbl.table_name = tblc.table_name AND tbl.table_name = uo.object_name AND uo.object_type = ''TABLE'' AND tbl.comments LIKE ''%支付订单%'', OriginalSql = SELECT tbl.table_name, tblc.comments, uo.created FROM user_tables tbl, user_tab_comments tblc, user_objects uo WHERE tbl.table_name = tblc.table_name AND tbl.table_name = uo.object_name AND uo.object_type = ''TABLE'' AND tbl.comments LIKE ''%支付订单%'', Error Msg = ORA-00904: "TBL"."COMMENTS": 标识符无效 - - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:632) - ... 195 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-28 21:13:46', NULL, '2022-04-28 21:13:46', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (378, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:31', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$e70fa128.selectColumnList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b729c9b3.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1 - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:52) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 185 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:18:31', NULL, '2022-04-29 00:18:31', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (379, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:18:53', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$e70fa128.selectColumnList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b729c9b3.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1 - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:52) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 185 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:18:53', NULL, '2022-04-29 00:18:53', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (380, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:19:05', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$e70fa128.selectColumnList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b729c9b3.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1 - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:52) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 185 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:19:05', NULL, '2022-04-29 00:19:05', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (381, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:20:01', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException', 'EncryptionOperationNotPossibleException: null', 'EncryptionOperationNotPossibleException: null', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException - at org.jasypt.encryption.pbe.StandardPBEByteEncryptor.decrypt(StandardPBEByteEncryptor.java:1054) - at org.jasypt.encryption.pbe.StandardPBEStringEncryptor.decrypt(StandardPBEStringEncryptor.java:738) - at org.jasypt.encryption.pbe.PooledPBEStringEncryptor.decrypt(PooledPBEStringEncryptor.java:511) - at com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor.decrypt(DefaultLazyEncryptor.java:57) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfig(DataSourceConfigServiceImpl.java:88) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$771db724.getDataSourceConfig() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getDatabaseTableDAO(DatabaseTableServiceImpl.java:63) - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTable(DatabaseTableServiceImpl.java:44) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:104) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.GeneratedMethodAccessor320.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b729c9b3.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'org.jasypt.encryption.pbe.StandardPBEByteEncryptor', 'StandardPBEByteEncryptor.java', 'decrypt', 1054, 0, NULL, 0, NULL, '2022-04-29 00:20:01', NULL, '2022-04-29 00:20:01', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (382, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:20:24', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException', 'EncryptionOperationNotPossibleException: null', 'EncryptionOperationNotPossibleException: null', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException - at org.jasypt.encryption.pbe.StandardPBEByteEncryptor.decrypt(StandardPBEByteEncryptor.java:1054) - at org.jasypt.encryption.pbe.StandardPBEStringEncryptor.decrypt(StandardPBEStringEncryptor.java:738) - at org.jasypt.encryption.pbe.PooledPBEStringEncryptor.decrypt(PooledPBEStringEncryptor.java:511) - at com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor.decrypt(DefaultLazyEncryptor.java:57) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfig(DataSourceConfigServiceImpl.java:88) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$771db724.getDataSourceConfig() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getDatabaseTableDAO(DatabaseTableServiceImpl.java:63) - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTable(DatabaseTableServiceImpl.java:44) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:104) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.GeneratedMethodAccessor320.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b729c9b3.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'org.jasypt.encryption.pbe.StandardPBEByteEncryptor', 'StandardPBEByteEncryptor.java', 'decrypt', 1054, 0, NULL, 0, NULL, '2022-04-29 00:20:24', NULL, '2022-04-29 00:20:24', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (383, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:20:58', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException', 'EncryptionOperationNotPossibleException: null', 'EncryptionOperationNotPossibleException: null', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException - at org.jasypt.encryption.pbe.StandardPBEByteEncryptor.decrypt(StandardPBEByteEncryptor.java:1054) - at org.jasypt.encryption.pbe.StandardPBEStringEncryptor.decrypt(StandardPBEStringEncryptor.java:738) - at org.jasypt.encryption.pbe.PooledPBEStringEncryptor.decrypt(PooledPBEStringEncryptor.java:511) - at com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor.decrypt(DefaultLazyEncryptor.java:57) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfig(DataSourceConfigServiceImpl.java:88) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$771db724.getDataSourceConfig() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getDatabaseTableDAO(DatabaseTableServiceImpl.java:63) - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTable(DatabaseTableServiceImpl.java:44) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:104) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.GeneratedMethodAccessor320.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b729c9b3.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'org.jasypt.encryption.pbe.StandardPBEByteEncryptor', 'StandardPBEByteEncryptor.java', 'decrypt', 1054, 0, NULL, 0, NULL, '2022-04-29 00:20:58', NULL, '2022-04-29 00:20:58', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (384, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:22:43', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException', 'EncryptionOperationNotPossibleException: null', 'EncryptionOperationNotPossibleException: null', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException - at org.jasypt.encryption.pbe.StandardPBEByteEncryptor.decrypt(StandardPBEByteEncryptor.java:1054) - at org.jasypt.encryption.pbe.StandardPBEStringEncryptor.decrypt(StandardPBEStringEncryptor.java:738) - at org.jasypt.encryption.pbe.PooledPBEStringEncryptor.decrypt(PooledPBEStringEncryptor.java:511) - at com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor.decrypt(DefaultLazyEncryptor.java:57) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfig(DataSourceConfigServiceImpl.java:88) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$771db724.getDataSourceConfig() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getDatabaseTableDAO(DatabaseTableServiceImpl.java:63) - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTable(DatabaseTableServiceImpl.java:44) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:104) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.GeneratedMethodAccessor320.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b729c9b3.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'org.jasypt.encryption.pbe.StandardPBEByteEncryptor', 'StandardPBEByteEncryptor.java', 'decrypt', 1054, 0, NULL, 0, NULL, '2022-04-29 00:22:43', NULL, '2022-04-29 00:22:43', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (385, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:23:00', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException', 'EncryptionOperationNotPossibleException: null', 'EncryptionOperationNotPossibleException: null', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException - at org.jasypt.encryption.pbe.StandardPBEByteEncryptor.decrypt(StandardPBEByteEncryptor.java:1054) - at org.jasypt.encryption.pbe.StandardPBEStringEncryptor.decrypt(StandardPBEStringEncryptor.java:738) - at org.jasypt.encryption.pbe.PooledPBEStringEncryptor.decrypt(PooledPBEStringEncryptor.java:511) - at com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor.decrypt(DefaultLazyEncryptor.java:57) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfig(DataSourceConfigServiceImpl.java:88) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$771db724.getDataSourceConfig() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getDatabaseTableDAO(DatabaseTableServiceImpl.java:63) - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTable(DatabaseTableServiceImpl.java:44) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:104) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.GeneratedMethodAccessor320.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b729c9b3.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'org.jasypt.encryption.pbe.StandardPBEByteEncryptor', 'StandardPBEByteEncryptor.java', 'decrypt', 1054, 0, NULL, 0, NULL, '2022-04-29 00:23:00', NULL, '2022-04-29 00:23:00', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (386, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:23:43', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException', 'EncryptionOperationNotPossibleException: null', 'EncryptionOperationNotPossibleException: null', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException - at org.jasypt.encryption.pbe.StandardPBEByteEncryptor.decrypt(StandardPBEByteEncryptor.java:1054) - at org.jasypt.encryption.pbe.StandardPBEStringEncryptor.decrypt(StandardPBEStringEncryptor.java:738) - at org.jasypt.encryption.pbe.PooledPBEStringEncryptor.decrypt(PooledPBEStringEncryptor.java:511) - at com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor.decrypt(DefaultLazyEncryptor.java:57) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfig(DataSourceConfigServiceImpl.java:88) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$c04d5327.getDataSourceConfig() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getDatabaseTableDAO(DatabaseTableServiceImpl.java:63) - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTable(DatabaseTableServiceImpl.java:44) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:104) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$b01c9c2e.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$e8728cf.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'org.jasypt.encryption.pbe.StandardPBEByteEncryptor', 'StandardPBEByteEncryptor.java', 'decrypt', 1054, 0, NULL, 0, NULL, '2022-04-29 00:23:43', NULL, '2022-04-29 00:23:43', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (387, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:24:35', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException', 'EncryptionOperationNotPossibleException: null', 'EncryptionOperationNotPossibleException: null', 'org.jasypt.exceptions.EncryptionOperationNotPossibleException - at org.jasypt.encryption.pbe.StandardPBEByteEncryptor.decrypt(StandardPBEByteEncryptor.java:1054) - at org.jasypt.encryption.pbe.StandardPBEStringEncryptor.decrypt(StandardPBEStringEncryptor.java:738) - at org.jasypt.encryption.pbe.PooledPBEStringEncryptor.decrypt(PooledPBEStringEncryptor.java:511) - at com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor.decrypt(DefaultLazyEncryptor.java:57) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl.getDataSourceConfig(DataSourceConfigServiceImpl.java:88) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$FastClassBySpringCGLIB$$b00fc4ad.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.db.DataSourceConfigServiceImpl$$EnhancerBySpringCGLIB$$c04d5327.getDataSourceConfig() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getDatabaseTableDAO(DatabaseTableServiceImpl.java:63) - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTable(DatabaseTableServiceImpl.java:44) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:104) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$b01c9c2e.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$e8728cf.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'org.jasypt.encryption.pbe.StandardPBEByteEncryptor', 'StandardPBEByteEncryptor.java', 'decrypt', 1054, 0, NULL, 0, NULL, '2022-04-29 00:24:35', NULL, '2022-04-29 00:24:35', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (388, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:26:00', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'OracleDatabaseException: ORA-00923: 未找到要求的 FROM 关键字 -', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$EnhancerBySpringCGLIB$$16f580a1.selectColumnList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d807844e.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$ae37713d.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: ORA-00923: 未找到要求的 FROM 关键字 - - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:628) - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:562) - at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1145) - at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:726) - at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:291) - at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:492) - at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:148) - at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:928) - at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1158) - at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1093) - at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1402) - at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285) - at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3735) - at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3847) - at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1098) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl.selectColumnList(DatabaseTableOracleDAOImpl.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$FastClassBySpringCGLIB$$89ea0450.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 185 more -Caused by: Error : 923, Position : 203, Sql = SELECT table_name, column_name, data_type, comments, column_id, (CASE WHEN nullable = ''Y'' THEN ''1'' ELSE ''0'' END) AS nullable, (CASE WHEN constraint_type = ''P'' THEN ''1'' ELSE ''0'' END) AS primary_keyFROM ( SELECT col.*, comments, constraint_type, row_number ( ) over ( partition BY col.column_name ORDER BY constraint_type DESC ) AS row_flag FROM user_tab_columns col LEFT JOIN user_col_comments ON user_col_comments.table_name = col.table_name AND user_col_comments.column_name = col.column_name LEFT JOIN user_cons_columns ON user_cons_columns.table_name = col.table_name AND user_cons_columns.column_name = col.column_name LEFT JOIN user_constraints ON user_constraints.constraint_name = user_cons_columns.constraint_name WHERE col.table_name = ''pay_notify_task'' )WHERE row_flag = 1, OriginalSql = SELECT table_name, column_name, data_type, comments, column_id, (CASE WHEN nullable = ''Y'' THEN ''1'' ELSE ''0'' END) AS nullable, (CASE WHEN constraint_type = ''P'' THEN ''1'' ELSE ''0'' END) AS primary_keyFROM ( SELECT col.*, comments, constraint_type, row_number ( ) over ( partition BY col.column_name ORDER BY constraint_type DESC ) AS row_flag FROM user_tab_columns col LEFT JOIN user_col_comments ON user_col_comments.table_name = col.table_name AND user_col_comments.column_name = col.column_name LEFT JOIN user_cons_columns ON user_cons_columns.table_name = col.table_name AND user_cons_columns.column_name = col.column_name LEFT JOIN user_constraints ON user_constraints.constraint_name = user_cons_columns.constraint_name WHERE col.table_name = ''pay_notify_task'' )WHERE row_flag = 1, Error Msg = ORA-00923: 未找到要求的 FROM 关键字 - - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:632) - ... 206 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:26:00', NULL, '2022-04-29 00:26:00', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (389, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:26:25', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'OracleDatabaseException: ORA-00923: 未找到要求的 FROM 关键字 -', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$EnhancerBySpringCGLIB$$16f580a1.selectColumnList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d807844e.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$ae37713d.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: ORA-00923: 未找到要求的 FROM 关键字 - - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:628) - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:562) - at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1145) - at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:726) - at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:291) - at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:492) - at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:148) - at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:928) - at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1158) - at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1093) - at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1402) - at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285) - at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3735) - at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3847) - at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1098) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl.selectColumnList(DatabaseTableOracleDAOImpl.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$FastClassBySpringCGLIB$$89ea0450.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 185 more -Caused by: Error : 923, Position : 203, Sql = SELECT table_name, column_name, data_type, comments, column_id, (CASE WHEN nullable = ''Y'' THEN ''1'' ELSE ''0'' END) AS nullable, (CASE WHEN constraint_type = ''P'' THEN ''1'' ELSE ''0'' END) AS primary_keyFROM ( SELECT col.*, comments, constraint_type, row_number ( ) over ( partition BY col.column_name ORDER BY constraint_type DESC ) AS row_flag FROM user_tab_columns col LEFT JOIN user_col_comments ON user_col_comments.table_name = col.table_name AND user_col_comments.column_name = col.column_name LEFT JOIN user_cons_columns ON user_cons_columns.table_name = col.table_name AND user_cons_columns.column_name = col.column_name LEFT JOIN user_constraints ON user_constraints.constraint_name = user_cons_columns.constraint_name WHERE col.table_name = ''pay_notify_task'' )WHERE row_flag = 1, OriginalSql = SELECT table_name, column_name, data_type, comments, column_id, (CASE WHEN nullable = ''Y'' THEN ''1'' ELSE ''0'' END) AS nullable, (CASE WHEN constraint_type = ''P'' THEN ''1'' ELSE ''0'' END) AS primary_keyFROM ( SELECT col.*, comments, constraint_type, row_number ( ) over ( partition BY col.column_name ORDER BY constraint_type DESC ) AS row_flag FROM user_tab_columns col LEFT JOIN user_col_comments ON user_col_comments.table_name = col.table_name AND user_col_comments.column_name = col.column_name LEFT JOIN user_cons_columns ON user_cons_columns.table_name = col.table_name AND user_cons_columns.column_name = col.column_name LEFT JOIN user_constraints ON user_constraints.constraint_name = user_cons_columns.constraint_name WHERE col.table_name = ''pay_notify_task'' )WHERE row_flag = 1, Error Msg = ORA-00923: 未找到要求的 FROM 关键字 - - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:632) - ... 206 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:26:25', NULL, '2022-04-29 00:26:25', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (390, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:28:34', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'OracleDatabaseException: ORA-00923: 未找到要求的 FROM 关键字 -', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$EnhancerBySpringCGLIB$$16f580a1.selectColumnList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d807844e.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$ae37713d.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLSyntaxErrorException: ORA-00923: 未找到要求的 FROM 关键字 - - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:628) - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:562) - at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1145) - at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:726) - at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:291) - at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:492) - at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:148) - at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:928) - at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1158) - at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1093) - at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1402) - at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285) - at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3735) - at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3847) - at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1098) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl.selectColumnList(DatabaseTableOracleDAOImpl.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableOracleDAOImpl$$FastClassBySpringCGLIB$$89ea0450.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 185 more -Caused by: Error : 923, Position : 203, Sql = SELECT table_name, column_name, data_type, comments, column_id, (CASE WHEN nullable = ''Y'' THEN ''1'' ELSE ''0'' END) AS nullable, (CASE WHEN constraint_type = ''P'' THEN ''1'' ELSE ''0'' END) AS primary_keyFROM ( SELECT col.*, comments, constraint_type, row_number ( ) over ( partition BY col.column_name ORDER BY constraint_type DESC ) AS row_flag FROM user_tab_columns col LEFT JOIN user_col_comments ON user_col_comments.table_name = col.table_name AND user_col_comments.column_name = col.column_name LEFT JOIN user_cons_columns ON user_cons_columns.table_name = col.table_name AND user_cons_columns.column_name = col.column_name LEFT JOIN user_constraints ON user_constraints.constraint_name = user_cons_columns.constraint_name WHERE col.table_name = ''pay_notify_task'' )WHERE row_flag = 1, OriginalSql = SELECT table_name, column_name, data_type, comments, column_id, (CASE WHEN nullable = ''Y'' THEN ''1'' ELSE ''0'' END) AS nullable, (CASE WHEN constraint_type = ''P'' THEN ''1'' ELSE ''0'' END) AS primary_keyFROM ( SELECT col.*, comments, constraint_type, row_number ( ) over ( partition BY col.column_name ORDER BY constraint_type DESC ) AS row_flag FROM user_tab_columns col LEFT JOIN user_col_comments ON user_col_comments.table_name = col.table_name AND user_col_comments.column_name = col.column_name LEFT JOIN user_cons_columns ON user_cons_columns.table_name = col.table_name AND user_cons_columns.column_name = col.column_name LEFT JOIN user_constraints ON user_constraints.constraint_name = user_cons_columns.constraint_name WHERE col.table_name = ''pay_notify_task'' )WHERE row_flag = 1, Error Msg = ORA-00923: 未找到要求的 FROM 关键字 - - at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:632) - ... 206 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:28:34', NULL, '2022-04-29 00:28:34', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (391, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:28:46', 'java.lang.IllegalStateException', 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'java.lang.IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型 - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.processColumnJava(CodegenBuilder.java:170) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.initColumnDefault(CodegenBuilder.java:152) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.buildColumns(CodegenBuilder.java:140) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen0(CodegenServiceImpl.java:80) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:107) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d807844e.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$ae37713d.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder', 'CodegenBuilder.java', 'processColumnJava', 170, 0, NULL, 0, NULL, '2022-04-29 00:28:46', NULL, '2022-04-29 00:28:46', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (392, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:30:44', 'java.lang.IllegalStateException', 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'java.lang.IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型 - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.processColumnJava(CodegenBuilder.java:170) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.initColumnDefault(CodegenBuilder.java:152) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.buildColumns(CodegenBuilder.java:140) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen0(CodegenServiceImpl.java:80) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:107) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d807844e.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$ae37713d.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder', 'CodegenBuilder.java', 'processColumnJava', 170, 0, NULL, 0, NULL, '2022-04-29 00:30:44', NULL, '2022-04-29 00:30:44', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (393, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:40:18', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$e70fa128.selectColumnList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$bee9e593.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$f70bfce3.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1 - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:52) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 185 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:40:18', NULL, '2022-04-29 00:40:18', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (394, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:40:50', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$e70fa128.selectColumnList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$bee9e593.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$f70bfce3.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1 - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:52) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 185 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:40:50', NULL, '2022-04-29 00:40:50', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (395, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"bpm_form"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:40:54', 'java.lang.reflect.UndeclaredThrowableException', 'UndeclaredThrowableException: null', 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1', 'java.lang.reflect.UndeclaredThrowableException - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:770) - at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:137) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$EnhancerBySpringCGLIB$$e70fa128.selectColumnList() - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getColumnList(DatabaseTableServiceImpl.java:52) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:105) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$bee9e593.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$f70bfce3.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1 - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1966) - at cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils.query(JdbcUtils.java:63) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl.selectColumnList(DatabaseTableMySQLDAOImpl.java:52) - at cn.iocoder.yudao.module.infra.dal.mysql.db.DatabaseTableMySQLDAOImpl$$FastClassBySpringCGLIB$$f06ed794.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - ... 185 more -', 'org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation', 'CglibAopProxy.java', 'proceed', 770, 0, NULL, 0, NULL, '2022-04-29 00:40:54', NULL, '2022-04-29 00:40:54', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (396, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:43:05', 'java.lang.IllegalStateException', 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'java.lang.IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型 - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.processColumnJava(CodegenBuilder.java:168) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.initColumnDefault(CodegenBuilder.java:152) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.buildColumns(CodegenBuilder.java:140) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen0(CodegenServiceImpl.java:80) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:107) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$bee9e593.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$f70bfce3.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder', 'CodegenBuilder.java', 'processColumnJava', 168, 0, NULL, 0, NULL, '2022-04-29 00:43:05', NULL, '2022-04-29 00:43:05', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (397, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:43:27', 'java.lang.IllegalStateException', 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'java.lang.IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型 - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.processColumnJava(CodegenBuilder.java:168) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.initColumnDefault(CodegenBuilder.java:152) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.buildColumns(CodegenBuilder.java:140) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen0(CodegenServiceImpl.java:80) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:107) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$bee9e593.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$f70bfce3.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder', 'CodegenBuilder.java', 'processColumnJava', 168, 0, NULL, 0, NULL, '2022-04-29 00:43:27', NULL, '2022-04-29 00:43:27', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (398, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{"tableNames":"pay_notify_task"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 00:44:40', 'java.lang.IllegalStateException', 'IllegalStateException: column(creator) 的数据库类型(null) 找不到匹配的 Java 类型', 'IllegalStateException: column(creator) 的数据库类型(null) 找不到匹配的 Java 类型', 'java.lang.IllegalStateException: column(creator) 的数据库类型(null) 找不到匹配的 Java 类型 - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.processColumnJava(CodegenBuilder.java:168) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.initColumnDefault(CodegenBuilder.java:152) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder.buildColumns(CodegenBuilder.java:140) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen0(CodegenServiceImpl.java:80) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:107) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:115) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:115) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$c482d8f6.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:94) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$54219244.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenBuilder', 'CodegenBuilder.java', 'processColumnJava', 168, 0, NULL, 0, NULL, '2022-04-29 00:44:40', NULL, '2022-04-29 00:44:40', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (399, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0","name":"bpm"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:32:49', 'java.lang.NullPointerException', 'NullPointerException: null', 'NullPointerException: null', 'java.lang.NullPointerException - at java.lang.String.contains(String.java:2133) - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.lambda$getTableList2$0(DatabaseTableServiceImpl.java:68) - at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:174) - at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1384) - at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:482) - at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:472) - at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) - at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) - at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:566) - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList2(DatabaseTableServiceImpl.java:70) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getDatabaseTableList(CodegenServiceImpl.java:247) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$96a77cb5.getDatabaseTableList() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:62) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.GeneratedMethodAccessor336.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$2cf01065.getSchemaTableList() - at sun.reflect.GeneratedMethodAccessor360.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'java.lang.String', 'String.java', 'contains', 2133, 0, NULL, 0, NULL, '2022-04-29 20:32:49', NULL, '2022-04-29 20:32:49', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (400, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0","name":"apy"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:32:53', 'java.lang.NullPointerException', 'NullPointerException: null', 'NullPointerException: null', 'java.lang.NullPointerException - at java.lang.String.contains(String.java:2133) - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.lambda$getTableList2$0(DatabaseTableServiceImpl.java:68) - at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:174) - at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1384) - at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:482) - at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:472) - at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) - at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) - at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:566) - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList2(DatabaseTableServiceImpl.java:70) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getDatabaseTableList(CodegenServiceImpl.java:247) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$96a77cb5.getDatabaseTableList() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:62) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.GeneratedMethodAccessor336.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$2cf01065.getSchemaTableList() - at sun.reflect.GeneratedMethodAccessor360.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'java.lang.String', 'String.java', 'contains', 2133, 0, NULL, 0, NULL, '2022-04-29 20:32:53', NULL, '2022-04-29 20:32:53', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (401, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0","name":"pay"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 20:33:55', 'java.lang.NullPointerException', 'NullPointerException: null', 'NullPointerException: null', 'java.lang.NullPointerException - at java.lang.String.contains(String.java:2133) - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.lambda$getTableList2$0(DatabaseTableServiceImpl.java:68) - at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:174) - at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1384) - at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:482) - at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:472) - at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) - at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) - at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:566) - at cn.iocoder.yudao.module.infra.service.db.DatabaseTableServiceImpl.getTableList2(DatabaseTableServiceImpl.java:70) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getDatabaseTableList(CodegenServiceImpl.java:247) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$96a77cb5.getDatabaseTableList() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:62) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.GeneratedMethodAccessor336.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$2cf01065.getSchemaTableList() - at sun.reflect.GeneratedMethodAccessor360.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'java.lang.String', 'String.java', 'contains', 2133, 0, NULL, 0, NULL, '2022-04-29 20:33:55', NULL, '2022-04-29 20:33:55', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (402, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/codegen/create-list-from-db', '{"query":{},"body":"{\"dataSourceConfigId\":0,\"tableNames\":[\"bpm_form\"]}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 22:30:44', 'org.springframework.dao.DataIntegrityViolationException', 'DataIntegrityViolationException: -### Error updating database. Cause: java.sql.SQLException: Field ''data_source_config_id'' doesn''t have a default value -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/codegen/CodegenTableMapper.java (best guess) -### The error may involve cn.iocoder.yudao.module.infra.dal.mysql.codegen.CodegenTableMapper.insert-Inline -### The error occurred while setting parameters -### SQL: INSERT INTO infra_codegen_table (import_type, table_name, table_comment, module_name, business_name, class_name, class_comment, author, template_type, create_time, update_time, creator, updater) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) -### Cause: java.sql.SQLException: Field ''data_source_config_id'' doesn''t have a default value -; Field ''data_source_config_id'' doesn''t have a default value; nested exception is java.sql.SQLException: Field ''data_source_config_id'' doesn''t have a default value', 'SQLException: Field ''data_source_config_id'' doesn''t have a default value', 'org.springframework.dao.DataIntegrityViolationException: -### Error updating database. Cause: java.sql.SQLException: Field ''data_source_config_id'' doesn''t have a default value -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/codegen/CodegenTableMapper.java (best guess) -### The error may involve cn.iocoder.yudao.module.infra.dal.mysql.codegen.CodegenTableMapper.insert-Inline -### The error occurred while setting parameters -### SQL: INSERT INTO infra_codegen_table (import_type, table_name, table_comment, module_name, business_name, class_name, class_comment, author, template_type, create_time, update_time, creator, updater) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) -### Cause: java.sql.SQLException: Field ''data_source_config_id'' doesn''t have a default value -; Field ''data_source_config_id'' doesn''t have a default value; nested exception is java.sql.SQLException: Field ''data_source_config_id'' doesn''t have a default value - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:251) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy138.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.insert(Unknown Source) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen0(CodegenServiceImpl.java:80) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegen(CodegenServiceImpl.java:116) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.lambda$createCodegenListFromDB$0(CodegenServiceImpl.java:108) - at java.util.ArrayList.forEach(ArrayList.java:1259) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.createCodegenListFromDB(CodegenServiceImpl.java:108) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$61f89792.createCodegenListFromDB() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenController.java:86) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$9610258a.createCodegenListFromDB() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.web.core.filter.CacheRequestBodyFilter.doFilterInternal(CacheRequestBodyFilter.java:22) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.sql.SQLException: Field ''data_source_config_id'' doesn''t have a default value - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:965) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor247.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy159.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy157.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy156.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 187 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 251, 0, NULL, 0, NULL, '2022-04-29 22:30:44', NULL, '2022-04-29 22:30:44', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (403, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/db/table/list', '{"query":{"dataSourceConfigId":"0"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:06:37', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: -### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''import_type'' in ''field list'' -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/codegen/CodegenTableMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, data_source_config_id, import_type, scene, table_name, table_comment, remark, module_name, business_name, class_name, class_comment, author, template_type, parent_menu_id, create_time, update_time, creator, updater, deleted FROM infra_codegen_table WHERE deleted = 0 AND (data_source_config_id = ?) -### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''import_type'' in ''field list'' -; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''import_type'' in ''field list''', 'MySQLSyntaxErrorException: Unknown column ''import_type'' in ''field list''', 'org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''import_type'' in ''field list'' -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/codegen/CodegenTableMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, data_source_config_id, import_type, scene, table_name, table_comment, remark, module_name, business_name, class_name, class_comment, author, template_type, parent_menu_id, create_time, update_time, creator, updater, deleted FROM infra_codegen_table WHERE deleted = 0 AND (data_source_config_id = ?) -### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''import_type'' in ''field list'' -; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''import_type'' in ''field list'' - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy138.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectList(Unknown Source) - at cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX.selectList(BaseMapperX.java:67) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectList(Unknown Source) - at cn.iocoder.yudao.module.infra.dal.mysql.codegen.CodegenTableMapper.selectListByDataSourceConfigId(CodegenTableMapper.java:28) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectListByDataSourceConfigId(Unknown Source) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.getDatabaseTableList(CodegenServiceImpl.java:258) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$d48efa8.getDatabaseTableList() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.getSchemaTableList(CodegenController.java:60) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.GeneratedMethodAccessor326.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$b21057a5.getSchemaTableList() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ''import_type'' in ''field list'' - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.lang.reflect.Constructor.newInstance(Constructor.java:423) - at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) - at com.mysql.jdbc.Util.getInstance(Util.java:408) - at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3976) - at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3912) - at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530) - at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683) - at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486) - at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858) - at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor245.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy159.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor250.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy157.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy156.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor259.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 184 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, 0, NULL, '2022-04-29 23:06:37', NULL, '2022-04-29 23:06:37', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (404, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"92"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:33:27', 'org.apache.velocity.exception.ParseErrorException', 'ParseErrorException: Encountered "dataType" at codegen/sql/h2.vm[line 5, column 6] -Was expecting one of: - ... - ... - ... - ... - "{" ... - ', 'ParseErrorException: Encountered "dataType" at codegen/sql/h2.vm[line 5, column 6] -Was expecting one of: - ... - ... - ... - ... - "{" ... - ', 'org.apache.velocity.exception.ParseErrorException: Encountered "dataType" at codegen/sql/h2.vm[line 5, column 6] -Was expecting one of: - ... - ... - ... - ... - "{" ... - - at org.apache.velocity.Template.process(Template.java:154) - at org.apache.velocity.runtime.resource.ResourceManagerImpl.loadResource(ResourceManagerImpl.java:425) - at org.apache.velocity.runtime.resource.ResourceManagerImpl.getResource(ResourceManagerImpl.java:342) - at org.apache.velocity.runtime.RuntimeInstance.getTemplate(RuntimeInstance.java:1661) - at org.apache.velocity.app.VelocityEngine.getTemplate(VelocityEngine.java:334) - at cn.hutool.extra.template.engine.velocity.VelocityEngine.getTemplate(VelocityEngine.java:111) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.lambda$execute$0(CodegenEngine.java:162) - at java.util.LinkedHashMap.forEach(LinkedHashMap.java:684) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.execute(CodegenEngine.java:160) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.generationCodes(CodegenServiceImpl.java:200) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$e175889b.generationCodes() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.previewCodegen(CodegenController.java:120) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$ef53bada.previewCodegen() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'org.apache.velocity.Template', 'Template.java', 'process', 154, 0, NULL, 0, NULL, '2022-04-29 23:33:27', NULL, '2022-04-29 23:33:27', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (405, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"92"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:35:38', 'org.apache.velocity.exception.ParseErrorException', 'ParseErrorException: Encountered "dataType" at codegen/sql/h2.vm[line 5, column 7] -Was expecting one of: - ... - ... - ... - ... - "{" ... - ', 'ParseErrorException: Encountered "dataType" at codegen/sql/h2.vm[line 5, column 7] -Was expecting one of: - ... - ... - ... - ... - "{" ... - ', 'org.apache.velocity.exception.ParseErrorException: Encountered "dataType" at codegen/sql/h2.vm[line 5, column 7] -Was expecting one of: - ... - ... - ... - ... - "{" ... - - at org.apache.velocity.Template.process(Template.java:154) - at org.apache.velocity.runtime.resource.ResourceManagerImpl.loadResource(ResourceManagerImpl.java:425) - at org.apache.velocity.runtime.resource.ResourceManagerImpl.getResource(ResourceManagerImpl.java:342) - at org.apache.velocity.runtime.RuntimeInstance.getTemplate(RuntimeInstance.java:1661) - at org.apache.velocity.app.VelocityEngine.getTemplate(VelocityEngine.java:334) - at cn.hutool.extra.template.engine.velocity.VelocityEngine.getTemplate(VelocityEngine.java:111) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.lambda$execute$0(CodegenEngine.java:162) - at java.util.LinkedHashMap.forEach(LinkedHashMap.java:684) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.execute(CodegenEngine.java:160) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.generationCodes(CodegenServiceImpl.java:200) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$53e71908.generationCodes() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.previewCodegen(CodegenController.java:120) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$d10614f6.previewCodegen() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'org.apache.velocity.Template', 'Template.java', 'process', 154, 0, NULL, 0, NULL, '2022-04-29 23:35:38', NULL, '2022-04-29 23:35:38', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (406, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"92"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:37:07', 'org.apache.velocity.exception.ParseErrorException', 'ParseErrorException: Encountered "dataType" at codegen/sql/h2.vm[line 7, column 6] -Was expecting one of: - ... - ... - ... - ... - "{" ... - ', 'ParseErrorException: Encountered "dataType" at codegen/sql/h2.vm[line 7, column 6] -Was expecting one of: - ... - ... - ... - ... - "{" ... - ', 'org.apache.velocity.exception.ParseErrorException: Encountered "dataType" at codegen/sql/h2.vm[line 7, column 6] -Was expecting one of: - ... - ... - ... - ... - "{" ... - - at org.apache.velocity.Template.process(Template.java:154) - at org.apache.velocity.runtime.resource.ResourceManagerImpl.loadResource(ResourceManagerImpl.java:425) - at org.apache.velocity.runtime.resource.ResourceManagerImpl.getResource(ResourceManagerImpl.java:342) - at org.apache.velocity.runtime.RuntimeInstance.getTemplate(RuntimeInstance.java:1661) - at org.apache.velocity.app.VelocityEngine.getTemplate(VelocityEngine.java:334) - at cn.hutool.extra.template.engine.velocity.VelocityEngine.getTemplate(VelocityEngine.java:111) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.lambda$execute$0(CodegenEngine.java:162) - at java.util.LinkedHashMap.forEach(LinkedHashMap.java:684) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.execute(CodegenEngine.java:160) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.generationCodes(CodegenServiceImpl.java:200) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$371a85ac.generationCodes() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.previewCodegen(CodegenController.java:120) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$39d4ae27.previewCodegen() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'org.apache.velocity.Template', 'Template.java', 'process', 154, 0, NULL, 0, NULL, '2022-04-29 23:37:07', NULL, '2022-04-29 23:37:07', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (407, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"92"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:42:50', 'org.apache.velocity.exception.ParseErrorException', 'ParseErrorException: Encountered "" at codegen/sql/h2.vm[line 36, column 1] -Was expecting one of: - "\u001c" ... - "\u001c" ... - "||" ... - "|" ... - "(" ... - ")" ... - ... - "]]#" ... - ... - ... - ... - ... - ... - ... - ... - "{" ... - "}" ... - "\\\\" ... - "\\" ... - ... - ... - ... - "{" ... - "\u001c" ... - ', 'ParseErrorException: Encountered "" at codegen/sql/h2.vm[line 36, column 1] -Was expecting one of: - "\u001c" ... - "\u001c" ... - "||" ... - "|" ... - "(" ... - ")" ... - ... - "]]#" ... - ... - ... - ... - ... - ... - ... - ... - "{" ... - "}" ... - "\\\\" ... - "\\" ... - ... - ... - ... - "{" ... - "\u001c" ... - ', 'org.apache.velocity.exception.ParseErrorException: Encountered "" at codegen/sql/h2.vm[line 36, column 1] -Was expecting one of: - "\u001c" ... - "\u001c" ... - "||" ... - "|" ... - "(" ... - ")" ... - ... - "]]#" ... - ... - ... - ... - ... - ... - ... - ... - "{" ... - "}" ... - "\\\\" ... - "\\" ... - ... - ... - ... - "{" ... - "\u001c" ... - - at org.apache.velocity.Template.process(Template.java:154) - at org.apache.velocity.runtime.resource.ResourceManagerImpl.loadResource(ResourceManagerImpl.java:425) - at org.apache.velocity.runtime.resource.ResourceManagerImpl.getResource(ResourceManagerImpl.java:342) - at org.apache.velocity.runtime.RuntimeInstance.getTemplate(RuntimeInstance.java:1661) - at org.apache.velocity.app.VelocityEngine.getTemplate(VelocityEngine.java:334) - at cn.hutool.extra.template.engine.velocity.VelocityEngine.getTemplate(VelocityEngine.java:111) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.lambda$execute$0(CodegenEngine.java:162) - at java.util.LinkedHashMap.forEach(LinkedHashMap.java:684) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.execute(CodegenEngine.java:160) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.generationCodes(CodegenServiceImpl.java:200) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$e175889b.generationCodes() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.previewCodegen(CodegenController.java:120) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$33bcd1f9.previewCodegen() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'org.apache.velocity.Template', 'Template.java', 'process', 154, 0, NULL, 0, NULL, '2022-04-29 23:42:50', NULL, '2022-04-29 23:42:50', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (408, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"94"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-29 23:44:43', 'org.apache.velocity.exception.ParseErrorException', 'ParseErrorException: Encountered "" at codegen/sql/h2.vm[line 36, column 1] -Was expecting one of: - "\u001c" ... - "\u001c" ... - "||" ... - "|" ... - "(" ... - ")" ... - ... - "]]#" ... - ... - ... - ... - ... - ... - ... - ... - "{" ... - "}" ... - "\\\\" ... - "\\" ... - ... - ... - ... - "{" ... - "\u001c" ... - ', 'ParseErrorException: Encountered "" at codegen/sql/h2.vm[line 36, column 1] -Was expecting one of: - "\u001c" ... - "\u001c" ... - "||" ... - "|" ... - "(" ... - ")" ... - ... - "]]#" ... - ... - ... - ... - ... - ... - ... - ... - "{" ... - "}" ... - "\\\\" ... - "\\" ... - ... - ... - ... - "{" ... - "\u001c" ... - ', 'org.apache.velocity.exception.ParseErrorException: Encountered "" at codegen/sql/h2.vm[line 36, column 1] -Was expecting one of: - "\u001c" ... - "\u001c" ... - "||" ... - "|" ... - "(" ... - ")" ... - ... - "]]#" ... - ... - ... - ... - ... - ... - ... - ... - "{" ... - "}" ... - "\\\\" ... - "\\" ... - ... - ... - ... - "{" ... - "\u001c" ... - - at org.apache.velocity.Template.process(Template.java:154) - at org.apache.velocity.runtime.resource.ResourceManagerImpl.loadResource(ResourceManagerImpl.java:425) - at org.apache.velocity.runtime.resource.ResourceManagerImpl.getResource(ResourceManagerImpl.java:342) - at org.apache.velocity.runtime.RuntimeInstance.getTemplate(RuntimeInstance.java:1661) - at org.apache.velocity.app.VelocityEngine.getTemplate(VelocityEngine.java:334) - at cn.hutool.extra.template.engine.velocity.VelocityEngine.getTemplate(VelocityEngine.java:111) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.lambda$execute$0(CodegenEngine.java:162) - at java.util.LinkedHashMap.forEach(LinkedHashMap.java:684) - at cn.iocoder.yudao.module.infra.service.codegen.inner.CodegenEngine.execute(CodegenEngine.java:160) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.generationCodes(CodegenServiceImpl.java:200) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$bee9e593.generationCodes() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.previewCodegen(CodegenController.java:120) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$70ec959b.previewCodegen() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -', 'org.apache.velocity.Template', 'Template.java', 'process', 154, 0, NULL, 0, NULL, '2022-04-29 23:44:43', NULL, '2022-04-29 23:44:43', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (40, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/db-doc/export-html', '{"query":{},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:44:26', 'cn.smallbun.screw.core.exception.ScrewException', 'ScrewException: java.lang.NullPointerException', 'NullPointerException: null', 'cn.smallbun.screw.core.exception.ScrewException: java.lang.NullPointerException - at cn.smallbun.screw.core.util.ExceptionUtils.mpe(ExceptionUtils.java:62) - at cn.smallbun.screw.core.execute.DocumentationExecute.execute(DocumentationExecute.java:57) - at cn.iocoder.yudao.module.infra.controller.admin.db.DatabaseDocController.doExportFile(DatabaseDocController.java:103) - at cn.iocoder.yudao.module.infra.controller.admin.db.DatabaseDocController.doExportFile(DatabaseDocController.java:74) - at cn.iocoder.yudao.module.infra.controller.admin.db.DatabaseDocController.exportHtml(DatabaseDocController.java:50) - at cn.iocoder.yudao.module.infra.controller.admin.db.DatabaseDocController$$FastClassBySpringCGLIB$$d728d644.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.GeneratedMethodAccessor322.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.db.DatabaseDocController$$EnhancerBySpringCGLIB$$6d99de36.exportHtml() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: java.lang.NullPointerException - at java.util.concurrent.ConcurrentHashMap.putVal(ConcurrentHashMap.java:1011) - at java.util.concurrent.ConcurrentHashMap.put(ConcurrentHashMap.java:1006) - at cn.smallbun.screw.core.process.DataModelProcess.process(DataModelProcess.java:104) - at cn.smallbun.screw.core.execute.DocumentationExecute.execute(DocumentationExecute.java:50) - ... 158 more -', 'cn.smallbun.screw.core.util.ExceptionUtils', 'ExceptionUtils.java', 'mpe', 62, 0, NULL, NULL, NULL, '2022-04-30 22:44:26.03', NULL, '2022-04-30 22:44:26.03', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (23, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{"query":{"key":"sys.user.init-password"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 18:16:08.333', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/config/ConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, `group`, name, `key`, value, `type`, `sensitive`, remark, create_time, update_time, creator, updater, deleted FROM infra_config WHERE deleted = 0 AND (`key` = ?) -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13', 'PSQLException: ERROR: syntax error at or near "group" - 位置:13', 'org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/config/ConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, `group`, name, `key`, value, `type`, `sensitive`, remark, create_time, update_time, creator, updater, deleted FROM infra_config WHERE deleted = 0 AND (`key` = ?) -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy135.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectList(Unknown Source) - at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:174) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectOne(Unknown Source) - at cn.iocoder.yudao.module.infra.dal.mysql.config.ConfigMapper.selectByKey(ConfigMapper.java:18) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectByKey(Unknown Source) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl.getConfigByKey(ConfigServiceImpl.java:82) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl$$FastClassBySpringCGLIB$$ebe6eb96.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl$$EnhancerBySpringCGLIB$$4ad3ed51.getConfigByKey() - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController.getConfigKey(ConfigController.java:74) - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController$$FastClassBySpringCGLIB$$e15363cf.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController$$EnhancerBySpringCGLIB$$4a6165bf.getConfigKey() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 - at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2565) - at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2297) - at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:322) - at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:481) - at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:401) - at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:164) - at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:153) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor256.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy156.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor271.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy154.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy153.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor266.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 184 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, NULL, NULL, '2022-04-30 18:16:08.37', NULL, '2022-04-30 18:16:08.37', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (24, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{"query":{"key":"sys.user.init-password"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 18:16:10.325', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/config/ConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, `group`, name, `key`, value, `type`, `sensitive`, remark, create_time, update_time, creator, updater, deleted FROM infra_config WHERE deleted = 0 AND (`key` = ?) -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13', 'PSQLException: ERROR: syntax error at or near "group" - 位置:13', 'org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/config/ConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, `group`, name, `key`, value, `type`, `sensitive`, remark, create_time, update_time, creator, updater, deleted FROM infra_config WHERE deleted = 0 AND (`key` = ?) -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy135.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectList(Unknown Source) - at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:174) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectOne(Unknown Source) - at cn.iocoder.yudao.module.infra.dal.mysql.config.ConfigMapper.selectByKey(ConfigMapper.java:18) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectByKey(Unknown Source) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl.getConfigByKey(ConfigServiceImpl.java:82) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl$$FastClassBySpringCGLIB$$ebe6eb96.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl$$EnhancerBySpringCGLIB$$4ad3ed51.getConfigByKey() - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController.getConfigKey(ConfigController.java:74) - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController$$FastClassBySpringCGLIB$$e15363cf.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController$$EnhancerBySpringCGLIB$$4a6165bf.getConfigKey() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 - at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2565) - at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2297) - at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:322) - at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:481) - at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:401) - at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:164) - at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:153) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor256.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy156.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor271.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy154.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy153.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor266.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 184 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, NULL, NULL, '2022-04-30 18:16:10.338', NULL, '2022-04-30 18:16:10.338', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{"query":{"key":"sys.user.init-password"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:01:34.786', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/config/ConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, `group`, name, `key`, value, `type`, `sensitive`, remark, create_time, update_time, creator, updater, deleted FROM infra_config WHERE deleted = 0 AND (`key` = ?) -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13', 'PSQLException: ERROR: syntax error at or near "group" - 位置:13', 'org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/config/ConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, `group`, name, `key`, value, `type`, `sensitive`, remark, create_time, update_time, creator, updater, deleted FROM infra_config WHERE deleted = 0 AND (`key` = ?) -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy135.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectList(Unknown Source) - at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:174) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectOne(Unknown Source) - at cn.iocoder.yudao.module.infra.dal.mysql.config.ConfigMapper.selectByKey(ConfigMapper.java:18) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectByKey(Unknown Source) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl.getConfigByKey(ConfigServiceImpl.java:82) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl$$FastClassBySpringCGLIB$$ebe6eb96.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl$$EnhancerBySpringCGLIB$$adf01468.getConfigByKey() - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController.getConfigKey(ConfigController.java:74) - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController$$FastClassBySpringCGLIB$$e15363cf.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController$$EnhancerBySpringCGLIB$$918090b7.getConfigKey() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 - at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2565) - at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2297) - at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:322) - at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:481) - at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:401) - at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:164) - at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:153) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor243.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy156.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor242.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy154.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy153.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor234.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 184 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, NULL, NULL, '2022-04-30 19:01:34.821', NULL, '2022-04-30 19:01:34.821', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{"query":{"key":"sys.user.init-password"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:03:27.043', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/config/ConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, `group`, name, `key`, value, `type`, `sensitive`, remark, create_time, update_time, creator, updater, deleted FROM infra_config WHERE deleted = 0 AND (`key` = ?) -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13', 'PSQLException: ERROR: syntax error at or near "group" - 位置:13', 'org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/config/ConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, `group`, name, `key`, value, `type`, `sensitive`, remark, create_time, update_time, creator, updater, deleted FROM infra_config WHERE deleted = 0 AND (`key` = ?) -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy135.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectList(Unknown Source) - at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:174) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectOne(Unknown Source) - at cn.iocoder.yudao.module.infra.dal.mysql.config.ConfigMapper.selectByKey(ConfigMapper.java:18) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectByKey(Unknown Source) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl.getConfigByKey(ConfigServiceImpl.java:82) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl$$FastClassBySpringCGLIB$$ebe6eb96.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl$$EnhancerBySpringCGLIB$$7a74bac1.getConfigByKey() - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController.getConfigKey(ConfigController.java:74) - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController$$FastClassBySpringCGLIB$$e15363cf.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController$$EnhancerBySpringCGLIB$$714d6f98.getConfigKey() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 - at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2565) - at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2297) - at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:322) - at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:481) - at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:401) - at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:164) - at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:153) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor243.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy156.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor242.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy154.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy153.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor278.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 184 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, NULL, NULL, '2022-04-30 19:03:27.074', NULL, '2022-04-30 19:03:27.074', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (27, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{"query":{"key":"sys.user.init-password"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:28:15.54', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/config/ConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, `group`, name, `key`, value, `type`, `sensitive`, remark, create_time, update_time, creator, updater, deleted FROM infra_config WHERE deleted = 0 AND (`key` = ?) -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13', 'PSQLException: ERROR: syntax error at or near "group" - 位置:13', 'org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/config/ConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, `group`, name, `key`, value, `type`, `sensitive`, remark, create_time, update_time, creator, updater, deleted FROM infra_config WHERE deleted = 0 AND (`key` = ?) -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy135.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectList(Unknown Source) - at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:174) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectOne(Unknown Source) - at cn.iocoder.yudao.module.infra.dal.mysql.config.ConfigMapper.selectByKey(ConfigMapper.java:18) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectByKey(Unknown Source) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl.getConfigByKey(ConfigServiceImpl.java:82) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl$$FastClassBySpringCGLIB$$ebe6eb96.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl$$EnhancerBySpringCGLIB$$7a74bac1.getConfigByKey() - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController.getConfigKey(ConfigController.java:74) - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController$$FastClassBySpringCGLIB$$e15363cf.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController$$EnhancerBySpringCGLIB$$714d6f98.getConfigKey() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.postgresql.util.PSQLException: ERROR: syntax error at or near "group" - 位置:13 - at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2565) - at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2297) - at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:322) - at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:481) - at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:401) - at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:164) - at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:153) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor243.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy156.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor242.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy154.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy153.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor278.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 184 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, NULL, NULL, '2022-04-30 19:28:15.553', NULL, '2022-04-30 19:28:15.553', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (28, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/config/get-value-by-key', '{"query":{"key":"sys.user.init-password"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:33:51.129', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "=" - 位置:169 -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/config/ConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, "group", name, "key", value, "type", "sensitive", remark, create_time, update_time, creator, updater, deleted FROM infra_config WHERE deleted = 0 AND (`key` = ?) -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "=" - 位置:169 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "=" - 位置:169', 'PSQLException: ERROR: syntax error at or near "=" - 位置:169', 'org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "=" - 位置:169 -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/config/ConfigMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, "group", name, "key", value, "type", "sensitive", remark, create_time, update_time, creator, updater, deleted FROM infra_config WHERE deleted = 0 AND (`key` = ?) -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "=" - 位置:169 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "=" - 位置:169 - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy135.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectList(Unknown Source) - at com.baomidou.mybatisplus.core.mapper.BaseMapper.selectOne(BaseMapper.java:174) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectOne(Unknown Source) - at cn.iocoder.yudao.module.infra.dal.mysql.config.ConfigMapper.selectByKey(ConfigMapper.java:18) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy256.selectByKey(Unknown Source) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl.getConfigByKey(ConfigServiceImpl.java:82) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl$$FastClassBySpringCGLIB$$ebe6eb96.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.config.ConfigServiceImpl$$EnhancerBySpringCGLIB$$234311d1.getConfigByKey() - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController.getConfigKey(ConfigController.java:74) - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController$$FastClassBySpringCGLIB$$e15363cf.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.config.ConfigController$$EnhancerBySpringCGLIB$$abb668ef.getConfigKey() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.postgresql.util.PSQLException: ERROR: syntax error at or near "=" - 位置:169 - at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2565) - at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2297) - at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:322) - at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:481) - at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:401) - at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:164) - at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:153) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor244.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy156.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor242.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy154.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy153.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor275.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 184 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, NULL, NULL, '2022-04-30 19:33:51.16', NULL, '2022-04-30 19:33:51.16', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (29, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:22.978', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:24 -### The error may exist in cn/iocoder/yudao/module/system/dal/mysql/dict/DictTypeMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, name, `type`, status, remark, create_time, update_time, creator, updater, deleted FROM system_dict_type WHERE deleted = 0 LIMIT ? -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:24 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:24', 'PSQLException: ERROR: syntax error at or near "," - 位置:24', 'org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:24 -### The error may exist in cn/iocoder/yudao/module/system/dal/mysql/dict/DictTypeMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, name, `type`, status, remark, create_time, update_time, creator, updater, deleted FROM system_dict_type WHERE deleted = 0 LIMIT ? -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:24 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:24 - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy135.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy242.selectPage(Unknown Source) - at cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX.selectPage(BaseMapperX.java:25) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy242.selectPage(Unknown Source) - at cn.iocoder.yudao.module.system.dal.mysql.dict.DictTypeMapper.selectPage(DictTypeMapper.java:17) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy242.selectPage(Unknown Source) - at cn.iocoder.yudao.module.system.service.dict.DictTypeServiceImpl.getDictTypePage(DictTypeServiceImpl.java:36) - at cn.iocoder.yudao.module.system.controller.admin.dict.DictTypeController.pageDictTypes(DictTypeController.java:65) - at cn.iocoder.yudao.module.system.controller.admin.dict.DictTypeController$$FastClassBySpringCGLIB$$a29e047a.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.GeneratedMethodAccessor332.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.system.controller.admin.dict.DictTypeController$$EnhancerBySpringCGLIB$$4042c695.pageDictTypes() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:24 - at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2565) - at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2297) - at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:322) - at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:481) - at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:401) - at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:164) - at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:153) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor238.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy156.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor237.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy154.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy153.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor254.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 176 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, NULL, NULL, '2022-04-30 19:44:23.003', NULL, '2022-04-30 19:44:23.003', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (30, '', 1, 2, 'yudao-server', 'GET', '/admin-api/system/dict-type/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 19:44:24.83', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:24 -### The error may exist in cn/iocoder/yudao/module/system/dal/mysql/dict/DictTypeMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, name, `type`, status, remark, create_time, update_time, creator, updater, deleted FROM system_dict_type WHERE deleted = 0 LIMIT ? -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:24 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:24', 'PSQLException: ERROR: syntax error at or near "," - 位置:24', 'org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:24 -### The error may exist in cn/iocoder/yudao/module/system/dal/mysql/dict/DictTypeMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, name, `type`, status, remark, create_time, update_time, creator, updater, deleted FROM system_dict_type WHERE deleted = 0 LIMIT ? -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:24 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:24 - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy135.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy242.selectPage(Unknown Source) - at cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX.selectPage(BaseMapperX.java:25) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy242.selectPage(Unknown Source) - at cn.iocoder.yudao.module.system.dal.mysql.dict.DictTypeMapper.selectPage(DictTypeMapper.java:17) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy242.selectPage(Unknown Source) - at cn.iocoder.yudao.module.system.service.dict.DictTypeServiceImpl.getDictTypePage(DictTypeServiceImpl.java:36) - at cn.iocoder.yudao.module.system.controller.admin.dict.DictTypeController.pageDictTypes(DictTypeController.java:65) - at cn.iocoder.yudao.module.system.controller.admin.dict.DictTypeController$$FastClassBySpringCGLIB$$a29e047a.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.GeneratedMethodAccessor332.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.system.controller.admin.dict.DictTypeController$$EnhancerBySpringCGLIB$$4042c695.pageDictTypes() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:24 - at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2565) - at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2297) - at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:322) - at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:481) - at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:401) - at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:164) - at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:153) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor238.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy156.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor237.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy154.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy153.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor254.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 176 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, NULL, NULL, '2022-04-30 19:44:24.836', NULL, '2022-04-30 19:44:24.836', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (31, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/job/create', '{"query":{},"body":"{\"name\":\"用户 Session 超时 Job\",\"handlerName\":\"userSessionTimeoutJob\",\"cronExpression\":\"0 * * * * ? *\",\"retryCount\":\"3\",\"retryInterval\":\"2000\",\"monitorTimeout\":\"0\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:29:53.246', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: Error selecting key or setting result to parameter object. Cause: org.postgresql.util.PSQLException: ERROR: relation "infra_job_seq" does not exist - 位置:16 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: relation "infra_job_seq" does not exist - 位置:16', 'PSQLException: ERROR: relation "infra_job_seq" does not exist - 位置:16', 'org.springframework.jdbc.BadSqlGrammarException: Error selecting key or setting result to parameter object. Cause: org.postgresql.util.PSQLException: ERROR: relation "infra_job_seq" does not exist - 位置:16 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: relation "infra_job_seq" does not exist - 位置:16 - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy139.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy264.insert(Unknown Source) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl.createJob(JobServiceImpl.java:54) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl$$FastClassBySpringCGLIB$$ca93db8.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl$$EnhancerBySpringCGLIB$$5ac63c51.createJob() - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController.createJob(JobController.java:47) - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController$$FastClassBySpringCGLIB$$c2fa6c6d.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController$$EnhancerBySpringCGLIB$$fa42d499.createJob() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.web.core.filter.CacheRequestBodyFilter.doFilterInternal(CacheRequestBodyFilter.java:22) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.postgresql.util.PSQLException: ERROR: relation "infra_job_seq" does not exist - 位置:16 - at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2565) - at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2297) - at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:322) - at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:481) - at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:401) - at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:164) - at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:153) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor244.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy160.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor243.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy158.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy157.query(Unknown Source) - at org.apache.ibatis.executor.keygen.SelectKeyGenerator.processGeneratedKeys(SelectKeyGenerator.java:67) - at org.apache.ibatis.executor.keygen.SelectKeyGenerator.processBefore(SelectKeyGenerator.java:47) - at org.apache.ibatis.executor.statement.BaseStatementHandler.generateKeys(BaseStatementHandler.java:141) - at org.apache.ibatis.executor.statement.BaseStatementHandler.(BaseStatementHandler.java:63) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.(PreparedStatementHandler.java:41) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.(RoutingStatementHandler.java:46) - at org.apache.ibatis.session.Configuration.newStatementHandler(Configuration.java:658) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:48) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy157.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 186 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, NULL, NULL, '2022-04-30 21:29:53.272', NULL, '2022-04-30 21:29:53.272', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (32, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/job/create', '{"query":{},"body":"{\"name\":\"用户 Session 超时 Job\",\"handlerName\":\"userSessionTimeoutJob\",\"cronExpression\":\"0 * * * * ? *\",\"retryCount\":\"3\",\"retryInterval\":\"2000\",\"monitorTimeout\":\"0\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:47:04.621', 'org.quartz.impl.jdbcjobstore.LockException', 'LockException: Failure obtaining db row lock: ERROR: current transaction is aborted, commands ignored until end of transaction block', 'PSQLException: ERROR: relation "qrtz_locks" does not exist - 位置:15', 'org.quartz.impl.jdbcjobstore.LockException: Failure obtaining db row lock: ERROR: current transaction is aborted, commands ignored until end of transaction block [See nested exception: org.postgresql.util.PSQLException: ERROR: current transaction is aborted, commands ignored until end of transaction block] - at org.quartz.impl.jdbcjobstore.StdRowLockSemaphore.executeSQL(StdRowLockSemaphore.java:184) - at org.quartz.impl.jdbcjobstore.DBSemaphore.obtainLock(DBSemaphore.java:113) - at org.quartz.impl.jdbcjobstore.JobStoreCMT.executeInLock(JobStoreCMT.java:238) - at org.quartz.impl.jdbcjobstore.JobStoreSupport.storeJobAndTrigger(JobStoreSupport.java:1063) - at org.quartz.core.QuartzScheduler.scheduleJob(QuartzScheduler.java:855) - at org.quartz.impl.StdScheduler.scheduleJob(StdScheduler.java:249) - at cn.iocoder.yudao.framework.quartz.core.scheduler.SchedulerManager.addJob(SchedulerManager.java:48) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl.createJob(JobServiceImpl.java:57) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl$$FastClassBySpringCGLIB$$ca93db8.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl$$EnhancerBySpringCGLIB$$5ac63c51.createJob() - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController.createJob(JobController.java:47) - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController$$FastClassBySpringCGLIB$$c2fa6c6d.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController$$EnhancerBySpringCGLIB$$fa42d499.createJob() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.web.core.filter.CacheRequestBodyFilter.doFilterInternal(CacheRequestBodyFilter.java:22) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.postgresql.util.PSQLException: ERROR: current transaction is aborted, commands ignored until end of transaction block - at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2565) - at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2297) - at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:322) - at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:481) - at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:401) - at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:164) - at org.postgresql.jdbc.PgPreparedStatement.executeQuery(PgPreparedStatement.java:114) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3240) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.executeQuery(PreparedStatementProxyImpl.java:181) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.executeQuery(DruidPooledPreparedStatement.java:227) - at org.quartz.impl.jdbcjobstore.StdRowLockSemaphore.executeSQL(StdRowLockSemaphore.java:123) - ... 186 more -Caused by: org.postgresql.util.PSQLException: ERROR: relation "qrtz_locks" does not exist - 位置:15 - ... 199 more -', 'org.quartz.impl.jdbcjobstore.StdRowLockSemaphore', 'StdRowLockSemaphore.java', 'executeSQL', 184, 0, NULL, NULL, NULL, '2022-04-30 21:47:04.633', NULL, '2022-04-30 21:47:04.633', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (33, '', 1, 2, 'yudao-server', 'POST', '/admin-api/infra/job/create', '{"query":{},"body":"{\"name\":\"用户 Session 超时 Job\",\"handlerName\":\"userSessionTimeoutJob\",\"cronExpression\":\"0 * * * * ? *\",\"retryCount\":\"3\",\"retryInterval\":\"2000\",\"monitorTimeout\":\"0\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:47:22.071', 'org.quartz.impl.jdbcjobstore.LockException', 'LockException: Failure obtaining db row lock: ERROR: current transaction is aborted, commands ignored until end of transaction block', 'PSQLException: ERROR: relation "qrtz_locks" does not exist - 位置:15', 'org.quartz.impl.jdbcjobstore.LockException: Failure obtaining db row lock: ERROR: current transaction is aborted, commands ignored until end of transaction block [See nested exception: org.postgresql.util.PSQLException: ERROR: current transaction is aborted, commands ignored until end of transaction block] - at org.quartz.impl.jdbcjobstore.StdRowLockSemaphore.executeSQL(StdRowLockSemaphore.java:184) - at org.quartz.impl.jdbcjobstore.DBSemaphore.obtainLock(DBSemaphore.java:113) - at org.quartz.impl.jdbcjobstore.JobStoreCMT.executeInLock(JobStoreCMT.java:238) - at org.quartz.impl.jdbcjobstore.JobStoreSupport.storeJobAndTrigger(JobStoreSupport.java:1063) - at org.quartz.core.QuartzScheduler.scheduleJob(QuartzScheduler.java:855) - at org.quartz.impl.StdScheduler.scheduleJob(StdScheduler.java:249) - at cn.iocoder.yudao.framework.quartz.core.scheduler.SchedulerManager.addJob(SchedulerManager.java:48) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl.createJob(JobServiceImpl.java:57) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl$$FastClassBySpringCGLIB$$ca93db8.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl$$EnhancerBySpringCGLIB$$5ac63c51.createJob() - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController.createJob(JobController.java:47) - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController$$FastClassBySpringCGLIB$$c2fa6c6d.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController$$EnhancerBySpringCGLIB$$fa42d499.createJob() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.web.core.filter.CacheRequestBodyFilter.doFilterInternal(CacheRequestBodyFilter.java:22) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.postgresql.util.PSQLException: ERROR: current transaction is aborted, commands ignored until end of transaction block - at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2565) - at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2297) - at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:322) - at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:481) - at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:401) - at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:164) - at org.postgresql.jdbc.PgPreparedStatement.executeQuery(PgPreparedStatement.java:114) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3240) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.executeQuery(PreparedStatementProxyImpl.java:181) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.executeQuery(DruidPooledPreparedStatement.java:227) - at org.quartz.impl.jdbcjobstore.StdRowLockSemaphore.executeSQL(StdRowLockSemaphore.java:123) - ... 186 more -Caused by: org.postgresql.util.PSQLException: ERROR: relation "qrtz_locks" does not exist - 位置:15 - ... 199 more -', 'org.quartz.impl.jdbcjobstore.StdRowLockSemaphore', 'StdRowLockSemaphore.java', 'executeSQL', 184, 0, NULL, NULL, NULL, '2022-04-30 21:47:22.079', NULL, '2022-04-30 21:47:22.079', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (34, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/job/update', '{"query":{},"body":"{\"name\":\"用户 Session 超时 Job\",\"handlerParam\":null,\"cronExpression\":\"0 * * * * ? *\",\"retryCount\":3,\"retryInterval\":2000,\"monitorTimeout\":0,\"id\":2,\"status\":1,\"handlerName\":\"userSessionTimeoutJob\",\"createTime\":1651326660454}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:51:41.131', 'org.quartz.JobPersistenceException', 'JobPersistenceException: Couldn''t retrieve trigger: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000037400114a4f425f48414e444c45525f504152414d707400124a4f425f52455452595f494e54455256414c737200116a6176612e6c616e672e496e746567657212e2a0a4f781873802000149000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b0200007870000007d074000f4a4f425f52455452595f434f554e547371007e0009000000037800', 'PSQLException: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000037400114a4f425f48414e444c45525f504152414d707400124a4f425f52455452595f494e54455256414c737200116a6176612e6c616e672e496e746567657212e2a0a4f781873802000149000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b0200007870000007d074000f4a4f425f52455452595f434f554e547371007e0009000000037800', 'org.quartz.JobPersistenceException: Couldn''t retrieve trigger: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000037400114a4f425f48414e444c45525f504152414d707400124a4f425f52455452595f494e54455256414c737200116a6176612e6c616e672e496e746567657212e2a0a4f781873802000149000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b0200007870000007d074000f4a4f425f52455452595f434f554e547371007e0009000000037800 [See nested exception: org.postgresql.util.PSQLException: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000037400114a4f425f48414e444c45525f504152414d707400124a4f425f52455452595f494e54455256414c737200116a6176612e6c616e672e496e746567657212e2a0a4f781873802000149000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b0200007870000007d074000f4a4f425f52455452595f434f554e547371007e0009000000037800] - at org.quartz.impl.jdbcjobstore.JobStoreSupport.retrieveTrigger(JobStoreSupport.java:1538) - at org.quartz.impl.jdbcjobstore.JobStoreSupport$12.execute(JobStoreSupport.java:1527) - at org.quartz.impl.jdbcjobstore.JobStoreCMT.executeInLock(JobStoreCMT.java:245) - at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeWithoutLock(JobStoreSupport.java:3800) - at org.quartz.impl.jdbcjobstore.JobStoreSupport.retrieveTrigger(JobStoreSupport.java:1524) - at org.quartz.core.QuartzScheduler.getTrigger(QuartzScheduler.java:1505) - at org.quartz.core.QuartzScheduler.rescheduleJob(QuartzScheduler.java:1101) - at org.quartz.impl.StdScheduler.rescheduleJob(StdScheduler.java:321) - at cn.iocoder.yudao.framework.quartz.core.scheduler.SchedulerManager.updateJob(SchedulerManager.java:67) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl.updateJob(JobServiceImpl.java:83) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl$$FastClassBySpringCGLIB$$ca93db8.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl$$EnhancerBySpringCGLIB$$a119dd84.updateJob() - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController.updateJob(JobController.java:55) - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController$$FastClassBySpringCGLIB$$c2fa6c6d.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController$$EnhancerBySpringCGLIB$$8041420b.updateJob() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPut(FrameworkServlet.java:920) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:684) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.web.core.filter.CacheRequestBodyFilter.doFilterInternal(CacheRequestBodyFilter.java:22) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.postgresql.util.PSQLException: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000037400114a4f425f48414e444c45525f504152414d707400124a4f425f52455452595f494e54455256414c737200116a6176612e6c616e672e496e746567657212e2a0a4f781873802000149000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b0200007870000007d074000f4a4f425f52455452595f434f554e547371007e0009000000037800 - at org.postgresql.jdbc.PgResultSet.toLong(PgResultSet.java:3070) - at org.postgresql.jdbc.PgResultSet.getLong(PgResultSet.java:2243) - at org.postgresql.jdbc.PgResultSet.getBlob(PgResultSet.java:428) - at org.postgresql.jdbc.PgResultSet.getBlob(PgResultSet.java:414) - at com.alibaba.druid.filter.FilterChainImpl.resultSet_getBlob(FilterChainImpl.java:2257) - at com.alibaba.druid.filter.stat.StatFilter.resultSet_getBlob(StatFilter.java:796) - at com.alibaba.druid.filter.FilterChainImpl.resultSet_getBlob(FilterChainImpl.java:2255) - at com.alibaba.druid.proxy.jdbc.ResultSetProxyImpl.getBlob(ResultSetProxyImpl.java:292) - at com.alibaba.druid.pool.DruidPooledResultSet.getBlob(DruidPooledResultSet.java:1169) - at org.quartz.impl.jdbcjobstore.StdJDBCDelegate.getObjectFromBlob(StdJDBCDelegate.java:3190) - at org.quartz.impl.jdbcjobstore.StdJDBCDelegate.selectTrigger(StdJDBCDelegate.java:1780) - at org.quartz.impl.jdbcjobstore.JobStoreSupport.retrieveTrigger(JobStoreSupport.java:1536) - ... 188 more -', 'org.quartz.impl.jdbcjobstore.JobStoreSupport', 'JobStoreSupport.java', 'retrieveTrigger', 1538, 0, NULL, NULL, NULL, '2022-04-30 21:51:41.157', NULL, '2022-04-30 21:51:41.157', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (35, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/job/update', '{"query":{},"body":"{\"name\":\"用户 Session 超时 Job\",\"handlerParam\":null,\"cronExpression\":\"0 * * * * ? *\",\"retryCount\":3,\"retryInterval\":2000,\"monitorTimeout\":0,\"id\":2,\"status\":1,\"handlerName\":\"userSessionTimeoutJob\",\"createTime\":1651326660454}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:52:05.908', 'org.quartz.JobPersistenceException', 'JobPersistenceException: Couldn''t retrieve trigger: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000037400114a4f425f48414e444c45525f504152414d707400124a4f425f52455452595f494e54455256414c737200116a6176612e6c616e672e496e746567657212e2a0a4f781873802000149000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b0200007870000007d074000f4a4f425f52455452595f434f554e547371007e0009000000037800', 'PSQLException: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000037400114a4f425f48414e444c45525f504152414d707400124a4f425f52455452595f494e54455256414c737200116a6176612e6c616e672e496e746567657212e2a0a4f781873802000149000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b0200007870000007d074000f4a4f425f52455452595f434f554e547371007e0009000000037800', 'org.quartz.JobPersistenceException: Couldn''t retrieve trigger: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000037400114a4f425f48414e444c45525f504152414d707400124a4f425f52455452595f494e54455256414c737200116a6176612e6c616e672e496e746567657212e2a0a4f781873802000149000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b0200007870000007d074000f4a4f425f52455452595f434f554e547371007e0009000000037800 [See nested exception: org.postgresql.util.PSQLException: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000037400114a4f425f48414e444c45525f504152414d707400124a4f425f52455452595f494e54455256414c737200116a6176612e6c616e672e496e746567657212e2a0a4f781873802000149000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b0200007870000007d074000f4a4f425f52455452595f434f554e547371007e0009000000037800] - at org.quartz.impl.jdbcjobstore.JobStoreSupport.retrieveTrigger(JobStoreSupport.java:1538) - at org.quartz.impl.jdbcjobstore.JobStoreSupport$12.execute(JobStoreSupport.java:1527) - at org.quartz.impl.jdbcjobstore.JobStoreCMT.executeInLock(JobStoreCMT.java:245) - at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeWithoutLock(JobStoreSupport.java:3800) - at org.quartz.impl.jdbcjobstore.JobStoreSupport.retrieveTrigger(JobStoreSupport.java:1524) - at org.quartz.core.QuartzScheduler.getTrigger(QuartzScheduler.java:1505) - at org.quartz.core.QuartzScheduler.rescheduleJob(QuartzScheduler.java:1101) - at org.quartz.impl.StdScheduler.rescheduleJob(StdScheduler.java:321) - at cn.iocoder.yudao.framework.quartz.core.scheduler.SchedulerManager.updateJob(SchedulerManager.java:67) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl.updateJob(JobServiceImpl.java:83) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl$$FastClassBySpringCGLIB$$ca93db8.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl$$EnhancerBySpringCGLIB$$a119dd84.updateJob() - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController.updateJob(JobController.java:55) - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController$$FastClassBySpringCGLIB$$c2fa6c6d.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController$$EnhancerBySpringCGLIB$$8041420b.updateJob() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPut(FrameworkServlet.java:920) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:684) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.web.core.filter.CacheRequestBodyFilter.doFilterInternal(CacheRequestBodyFilter.java:22) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.postgresql.util.PSQLException: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000037400114a4f425f48414e444c45525f504152414d707400124a4f425f52455452595f494e54455256414c737200116a6176612e6c616e672e496e746567657212e2a0a4f781873802000149000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b0200007870000007d074000f4a4f425f52455452595f434f554e547371007e0009000000037800 - at org.postgresql.jdbc.PgResultSet.toLong(PgResultSet.java:3070) - at org.postgresql.jdbc.PgResultSet.getLong(PgResultSet.java:2243) - at org.postgresql.jdbc.PgResultSet.getBlob(PgResultSet.java:428) - at org.postgresql.jdbc.PgResultSet.getBlob(PgResultSet.java:414) - at com.alibaba.druid.filter.FilterChainImpl.resultSet_getBlob(FilterChainImpl.java:2257) - at com.alibaba.druid.filter.stat.StatFilter.resultSet_getBlob(StatFilter.java:796) - at com.alibaba.druid.filter.FilterChainImpl.resultSet_getBlob(FilterChainImpl.java:2255) - at com.alibaba.druid.proxy.jdbc.ResultSetProxyImpl.getBlob(ResultSetProxyImpl.java:292) - at com.alibaba.druid.pool.DruidPooledResultSet.getBlob(DruidPooledResultSet.java:1169) - at org.quartz.impl.jdbcjobstore.StdJDBCDelegate.getObjectFromBlob(StdJDBCDelegate.java:3190) - at org.quartz.impl.jdbcjobstore.StdJDBCDelegate.selectTrigger(StdJDBCDelegate.java:1780) - at org.quartz.impl.jdbcjobstore.JobStoreSupport.retrieveTrigger(JobStoreSupport.java:1536) - ... 188 more -', 'org.quartz.impl.jdbcjobstore.JobStoreSupport', 'JobStoreSupport.java', 'retrieveTrigger', 1538, 0, NULL, NULL, NULL, '2022-04-30 21:52:05.913', NULL, '2022-04-30 21:52:05.913', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (36, '', 1, 2, 'yudao-server', 'PUT', '/admin-api/infra/job/trigger', '{"query":{"id":"2"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 21:52:11.905', 'org.quartz.JobPersistenceException', 'JobPersistenceException: Couldn''t store trigger ''DEFAULT.MT_dmriqkg0d876p'' for ''DEFAULT.userSessionTimeoutJob'' job:Couldn''t retrieve job: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000027400064a4f425f49447372000e6a6176612e6c616e672e4c6f6e673b8be490cc8f23df0200014a000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b020000787000000000000000027400104a4f425f48414e444c45525f4e414d457400157573657253657373696f6e54696d656f75744a6f627800', 'PSQLException: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000027400064a4f425f49447372000e6a6176612e6c616e672e4c6f6e673b8be490cc8f23df0200014a000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b020000787000000000000000027400104a4f425f48414e444c45525f4e414d457400157573657253657373696f6e54696d656f75744a6f627800', 'org.quartz.JobPersistenceException: Couldn''t store trigger ''DEFAULT.MT_dmriqkg0d876p'' for ''DEFAULT.userSessionTimeoutJob'' job:Couldn''t retrieve job: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000027400064a4f425f49447372000e6a6176612e6c616e672e4c6f6e673b8be490cc8f23df0200014a000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b020000787000000000000000027400104a4f425f48414e444c45525f4e414d457400157573657253657373696f6e54696d656f75744a6f627800 [See nested exception: org.quartz.JobPersistenceException: Couldn''t retrieve job: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000027400064a4f425f49447372000e6a6176612e6c616e672e4c6f6e673b8be490cc8f23df0200014a000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b020000787000000000000000027400104a4f425f48414e444c45525f4e414d457400157573657253657373696f6e54696d656f75744a6f627800 [See nested exception: org.postgresql.util.PSQLException: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000027400064a4f425f49447372000e6a6176612e6c616e672e4c6f6e673b8be490cc8f23df0200014a000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b020000787000000000000000027400104a4f425f48414e444c45525f4e414d457400157573657253657373696f6e54696d656f75744a6f627800]] - at org.quartz.impl.jdbcjobstore.JobStoreSupport.storeTrigger(JobStoreSupport.java:1228) - at org.quartz.impl.jdbcjobstore.JobStoreSupport$4.executeVoid(JobStoreSupport.java:1164) - at org.quartz.impl.jdbcjobstore.JobStoreSupport$VoidTransactionCallback.execute(JobStoreSupport.java:3780) - at org.quartz.impl.jdbcjobstore.JobStoreSupport$VoidTransactionCallback.execute(JobStoreSupport.java:3778) - at org.quartz.impl.jdbcjobstore.JobStoreCMT.executeInLock(JobStoreCMT.java:245) - at org.quartz.impl.jdbcjobstore.JobStoreSupport.storeTrigger(JobStoreSupport.java:1160) - at org.quartz.core.QuartzScheduler.triggerJob(QuartzScheduler.java:1162) - at org.quartz.impl.StdScheduler.triggerJob(StdScheduler.java:341) - at cn.iocoder.yudao.framework.quartz.core.scheduler.SchedulerManager.triggerJob(SchedulerManager.java:116) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl.triggerJob(JobServiceImpl.java:118) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl$$FastClassBySpringCGLIB$$ca93db8.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.service.job.JobServiceImpl$$EnhancerBySpringCGLIB$$a119dd84.triggerJob() - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController.triggerJob(JobController.java:87) - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController$$FastClassBySpringCGLIB$$c2fa6c6d.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.job.JobController$$EnhancerBySpringCGLIB$$8041420b.triggerJob() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPut(FrameworkServlet.java:920) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:684) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.quartz.JobPersistenceException: Couldn''t retrieve job: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000027400064a4f425f49447372000e6a6176612e6c616e672e4c6f6e673b8be490cc8f23df0200014a000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b020000787000000000000000027400104a4f425f48414e444c45525f4e414d457400157573657253657373696f6e54696d656f75744a6f627800 [See nested exception: org.postgresql.util.PSQLException: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000027400064a4f425f49447372000e6a6176612e6c616e672e4c6f6e673b8be490cc8f23df0200014a000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b020000787000000000000000027400104a4f425f48414e444c45525f4e414d457400157573657253657373696f6e54696d656f75744a6f627800] - at org.quartz.impl.jdbcjobstore.JobStoreSupport.retrieveJob(JobStoreSupport.java:1401) - at org.quartz.impl.jdbcjobstore.JobStoreSupport.storeTrigger(JobStoreSupport.java:1210) - ... 182 more -Caused by: org.postgresql.util.PSQLException: 不良的类型值 long : \xaced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787001737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000027400064a4f425f49447372000e6a6176612e6c616e672e4c6f6e673b8be490cc8f23df0200014a000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b020000787000000000000000027400104a4f425f48414e444c45525f4e414d457400157573657253657373696f6e54696d656f75744a6f627800 - at org.postgresql.jdbc.PgResultSet.toLong(PgResultSet.java:3070) - at org.postgresql.jdbc.PgResultSet.getLong(PgResultSet.java:2243) - at org.postgresql.jdbc.PgResultSet.getBlob(PgResultSet.java:428) - at org.postgresql.jdbc.PgResultSet.getBlob(PgResultSet.java:414) - at com.alibaba.druid.filter.FilterChainImpl.resultSet_getBlob(FilterChainImpl.java:2257) - at com.alibaba.druid.filter.stat.StatFilter.resultSet_getBlob(StatFilter.java:796) - at com.alibaba.druid.filter.FilterChainImpl.resultSet_getBlob(FilterChainImpl.java:2255) - at com.alibaba.druid.proxy.jdbc.ResultSetProxyImpl.getBlob(ResultSetProxyImpl.java:292) - at com.alibaba.druid.pool.DruidPooledResultSet.getBlob(DruidPooledResultSet.java:1169) - at org.quartz.impl.jdbcjobstore.StdJDBCDelegate.getObjectFromBlob(StdJDBCDelegate.java:3190) - at org.quartz.impl.jdbcjobstore.StdJDBCDelegate.selectJobDetail(StdJDBCDelegate.java:860) - at org.quartz.impl.jdbcjobstore.JobStoreSupport.retrieveJob(JobStoreSupport.java:1390) - ... 183 more -', 'org.quartz.impl.jdbcjobstore.JobStoreSupport', 'JobStoreSupport.java', 'storeTrigger', 1228, 0, NULL, NULL, NULL, '2022-04-30 21:52:11.912', NULL, '2022-04-30 21:52:11.912', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (37, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/codegen/preview', '{"query":{"tableId":"92"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:25:30.498', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: column "auto_increment" does not exist - 建议:Perhaps you meant to reference the column "infra_codegen_column.auto_Increment". - 位置:85 -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/codegen/CodegenColumnMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, table_id, column_name, data_type, column_comment, nullable, primary_key, auto_increment, ordinal_position, java_type, java_field, dict_type, example, create_operation, update_operation, list_operation, list_operation_condition, list_operation_result, html_type, create_time, update_time, creator, updater, deleted FROM infra_codegen_column WHERE deleted = 0 AND (table_id = ?) ORDER BY ordinal_position ASC -### Cause: org.postgresql.util.PSQLException: ERROR: column "auto_increment" does not exist - 建议:Perhaps you meant to reference the column "infra_codegen_column.auto_Increment". - 位置:85 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: column "auto_increment" does not exist - 建议:Perhaps you meant to reference the column "infra_codegen_column.auto_Increment". - 位置:85', 'PSQLException: ERROR: column "auto_increment" does not exist - 建议:Perhaps you meant to reference the column "infra_codegen_column.auto_Increment". - 位置:85', 'org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: column "auto_increment" does not exist - 建议:Perhaps you meant to reference the column "infra_codegen_column.auto_Increment". - 位置:85 -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/codegen/CodegenColumnMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, table_id, column_name, data_type, column_comment, nullable, primary_key, auto_increment, ordinal_position, java_type, java_field, dict_type, example, create_operation, update_operation, list_operation, list_operation_condition, list_operation_result, html_type, create_time, update_time, creator, updater, deleted FROM infra_codegen_column WHERE deleted = 0 AND (table_id = ?) ORDER BY ordinal_position ASC -### Cause: org.postgresql.util.PSQLException: ERROR: column "auto_increment" does not exist - 建议:Perhaps you meant to reference the column "infra_codegen_column.auto_Increment". - 位置:85 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: column "auto_increment" does not exist - 建议:Perhaps you meant to reference the column "infra_codegen_column.auto_Increment". - 位置:85 - at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:101) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:79) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy139.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy261.selectList(Unknown Source) - at cn.iocoder.yudao.module.infra.dal.mysql.codegen.CodegenColumnMapper.selectListByTableId(CodegenColumnMapper.java:14) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy261.selectListByTableId(Unknown Source) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl.generationCodes(CodegenServiceImpl.java:194) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$FastClassBySpringCGLIB$$6152dfac.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689) - at cn.iocoder.yudao.module.infra.service.codegen.CodegenServiceImpl$$EnhancerBySpringCGLIB$$c5cf3001.generationCodes() - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.previewCodegen(CodegenController.java:120) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$FastClassBySpringCGLIB$$8f5d07f9.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController$$EnhancerBySpringCGLIB$$4fd846e8.previewCodegen() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.postgresql.util.PSQLException: ERROR: column "auto_increment" does not exist - 建议:Perhaps you meant to reference the column "infra_codegen_column.auto_Increment". - 位置:85 - at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2565) - at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2297) - at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:322) - at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:481) - at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:401) - at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:164) - at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:153) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor219.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy160.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor218.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy158.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy157.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor275.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 180 more -', 'org.springframework.jdbc.support.SQLStateSQLExceptionTranslator', 'SQLStateSQLExceptionTranslator.java', 'doTranslate', 101, 0, NULL, NULL, NULL, '2022-04-30 22:25:30.523', NULL, '2022-04-30 22:25:30.523', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (38, '', 1, 2, 'yudao-server', 'POST', '/admin-api/bpm/oa/leave/create', '{"query":{},"body":"{\"startTime\":1649001600000,\"endTime\":1650297600000,\"type\":2,\"reason\":\"222\"}"}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:34:16.62', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: -### Error updating database. Cause: org.postgresql.util.PSQLException: ERROR: column "type" is of type smallint but expression is of type character varying - 建议:You will need to rewrite or cast the expression. - 位置:162 -### The error may exist in cn/iocoder/yudao/module/bpm/dal/mysql/oa/BpmOALeaveMapper.java (best guess) -### The error may involve cn.iocoder.yudao.module.bpm.dal.mysql.oa.BpmOALeaveMapper.insert-Inline -### The error occurred while setting parameters -### SQL: INSERT INTO bpm_oa_leave (id, user_id, "type", reason, start_time, end_time, day, result, create_time, update_time, creator, updater, tenant_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 1) -### Cause: org.postgresql.util.PSQLException: ERROR: column "type" is of type smallint but expression is of type character varying - 建议:You will need to rewrite or cast the expression. - 位置:162 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: column "type" is of type smallint but expression is of type character varying - 建议:You will need to rewrite or cast the expression. - 位置:162', 'PSQLException: ERROR: column "type" is of type smallint but expression is of type character varying - 建议:You will need to rewrite or cast the expression. - 位置:162', 'org.springframework.jdbc.BadSqlGrammarException: -### Error updating database. Cause: org.postgresql.util.PSQLException: ERROR: column "type" is of type smallint but expression is of type character varying - 建议:You will need to rewrite or cast the expression. - 位置:162 -### The error may exist in cn/iocoder/yudao/module/bpm/dal/mysql/oa/BpmOALeaveMapper.java (best guess) -### The error may involve cn.iocoder.yudao.module.bpm.dal.mysql.oa.BpmOALeaveMapper.insert-Inline -### The error occurred while setting parameters -### SQL: INSERT INTO bpm_oa_leave (id, user_id, "type", reason, start_time, end_time, day, result, create_time, update_time, creator, updater, tenant_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 1) -### Cause: org.postgresql.util.PSQLException: ERROR: column "type" is of type smallint but expression is of type character varying - 建议:You will need to rewrite or cast the expression. - 位置:162 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: column "type" is of type smallint but expression is of type character varying - 建议:You will need to rewrite or cast the expression. - 位置:162 - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy139.insert(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy300.insert(Unknown Source) - at cn.iocoder.yudao.module.bpm.service.oa.BpmOALeaveServiceImpl.createLeave(BpmOALeaveServiceImpl.java:52) - at cn.iocoder.yudao.module.bpm.service.oa.BpmOALeaveServiceImpl$$FastClassBySpringCGLIB$$a3227f73.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.bpm.service.oa.BpmOALeaveServiceImpl$$EnhancerBySpringCGLIB$$7c60a3b6.createLeave() - at cn.iocoder.yudao.module.bpm.controller.admin.oa.BpmOALeaveController.createLeave(BpmOALeaveController.java:43) - at cn.iocoder.yudao.module.bpm.controller.admin.oa.BpmOALeaveController$$FastClassBySpringCGLIB$$8ac96d14.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.GeneratedMethodAccessor347.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.bpm.controller.admin.oa.BpmOALeaveController$$EnhancerBySpringCGLIB$$33ebff19.createLeave() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.web.core.filter.CacheRequestBodyFilter.doFilterInternal(CacheRequestBodyFilter.java:22) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.postgresql.util.PSQLException: ERROR: column "type" is of type smallint but expression is of type character varying - 建议:You will need to rewrite or cast the expression. - 位置:162 - at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2565) - at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2297) - at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:322) - at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:481) - at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:401) - at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:164) - at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:153) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor219.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy160.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.update(PreparedStatementHandler.java:47) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.update(RoutingStatementHandler.java:74) - at sun.reflect.GeneratedMethodAccessor352.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy158.update(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:50) - at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:117) - at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:76) - at sun.reflect.GeneratedMethodAccessor334.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:106) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy157.update(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:194) - at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:181) - at sun.reflect.GeneratedMethodAccessor333.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 185 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, NULL, NULL, '2022-04-30 22:34:16.627', NULL, '2022-04-30 22:34:16.627', 0, 1); -INSERT INTO "public"."infra_api_error_log" ("id", "trace_id", "user_id", "user_type", "application_name", "request_method", "request_url", "request_params", "user_ip", "user_agent", "exception_time", "exception_name", "exception_message", "exception_root_cause_message", "exception_stack_trace", "exception_class_name", "exception_file_name", "exception_method_name", "exception_line_number", "process_status", "process_time", "process_user_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (39, '', 1, 2, 'yudao-server', 'GET', '/admin-api/infra/file/page', '{"query":{"pageNo":"1","pageSize":"10"},"body":""}', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '2022-04-30 22:38:26.544', 'org.springframework.jdbc.BadSqlGrammarException', 'BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:40 -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/file/FileMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, config_id, path, url, `type`, size, create_time, update_time, creator, updater, deleted FROM infra_file WHERE deleted = 0 ORDER BY create_time DESC LIMIT ? -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:40 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:40', 'PSQLException: ERROR: syntax error at or near "," - 位置:40', 'org.springframework.jdbc.BadSqlGrammarException: -### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:40 -### The error may exist in cn/iocoder/yudao/module/infra/dal/mysql/file/FileMapper.java (best guess) -### The error may involve defaultParameterMap -### The error occurred while setting parameters -### SQL: SELECT id, config_id, path, url, `type`, size, create_time, update_time, creator, updater, deleted FROM infra_file WHERE deleted = 0 ORDER BY create_time DESC LIMIT ? -### Cause: org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:40 -; bad SQL grammar []; nested exception is org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:40 - at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239) - at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70) - at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441) - at com.sun.proxy.$Proxy139.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy198.selectPage(Unknown Source) - at cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX.selectPage(BaseMapperX.java:25) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy198.selectPage(Unknown Source) - at cn.iocoder.yudao.module.infra.dal.mysql.file.FileMapper.selectPage(FileMapper.java:19) - at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$DefaultMethodInvoker.invoke(MybatisMapperProxy.java:162) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) - at com.sun.proxy.$Proxy198.selectPage(Unknown Source) - at cn.iocoder.yudao.module.infra.service.file.FileServiceImpl.getFilePage(FileServiceImpl.java:34) - at cn.iocoder.yudao.module.infra.controller.admin.file.FileController.getFilePage(FileController.java:81) - at cn.iocoder.yudao.module.infra.controller.admin.file.FileController$$FastClassBySpringCGLIB$$2e43158f.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.validation.beanvalidation.MethodValidationInterceptor.invoke(MethodValidationInterceptor.java:123) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around0(OperateLogAspect.java:96) - at cn.iocoder.yudao.framework.operatelog.core.aop.OperateLogAspect.around(OperateLogAspect.java:77) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) - at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) - at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.security.access.intercept.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:61) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) - at cn.iocoder.yudao.module.infra.controller.admin.file.FileController$$EnhancerBySpringCGLIB$$598a48d3.getFilePage() - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:655) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:78) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:111) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter.doFilterInternal(FlowableWebFilter.java:29) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter.doFilterInternal(TenantSecurityWebFilter.java:102) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) - at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) - at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) - at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at cn.iocoder.yudao.framework.security.core.filter.JWTAuthenticationTokenFilter.doFilterInternal(JWTAuthenticationTokenFilter.java:60) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) - at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) - at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) - at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) - at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) - at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) - at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354) - at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.apilog.core.filter.ApiAccessLogFilter.doFilterInternal(ApiAccessLogFilter.java:57) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tenant.core.web.TenantContextWebFilter.doFilterInternal(TenantContextWebFilter.java:32) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:102) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at cn.iocoder.yudao.framework.tracer.core.filter.TraceFilter.doFilterInternal(TraceFilter.java:30) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -Caused by: org.postgresql.util.PSQLException: ERROR: syntax error at or near "," - 位置:40 - at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2565) - at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2297) - at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:322) - at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:481) - at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:401) - at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:164) - at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:153) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3461) - at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:440) - at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3459) - at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:167) - at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:497) - at sun.reflect.GeneratedMethodAccessor238.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) - at com.sun.proxy.$Proxy160.execute(Unknown Source) - at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) - at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) - at sun.reflect.GeneratedMethodAccessor241.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64) - at com.sun.proxy.$Proxy158.query(Unknown Source) - at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63) - at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325) - at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109) - at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) - at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62) - at com.sun.proxy.$Proxy157.query(Unknown Source) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - at sun.reflect.GeneratedMethodAccessor259.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427) - ... 181 more -', 'org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator', 'SQLErrorCodeSQLExceptionTranslator.java', 'doTranslate', 239, 0, NULL, NULL, NULL, '2022-04-30 22:38:26.567', NULL, '2022-04-30 22:38:26.567', 0, 1); COMMIT; -- ---------------------------- -- Table structure for infra_codegen_column -- ---------------------------- -DROP TABLE IF EXISTS "public"."infra_codegen_column"; -CREATE TABLE "public"."infra_codegen_column" ( +DROP TABLE IF EXISTS "infra_codegen_column"; +CREATE TABLE "infra_codegen_column" ( "id" int8 NOT NULL, "table_id" int8 NOT NULL, "column_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, @@ -16662,147 +1023,43 @@ CREATE TABLE "public"."infra_codegen_column" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."infra_codegen_column" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."infra_codegen_column"."id" IS '编号'; -COMMENT ON COLUMN "public"."infra_codegen_column"."table_id" IS '表编号'; -COMMENT ON COLUMN "public"."infra_codegen_column"."column_name" IS '字段名'; -COMMENT ON COLUMN "public"."infra_codegen_column"."data_type" IS '字段类型'; -COMMENT ON COLUMN "public"."infra_codegen_column"."column_comment" IS '字段描述'; -COMMENT ON COLUMN "public"."infra_codegen_column"."nullable" IS '是否允许为空'; -COMMENT ON COLUMN "public"."infra_codegen_column"."primary_key" IS '是否主键'; -COMMENT ON COLUMN "public"."infra_codegen_column"."auto_increment" IS '是否自增'; -COMMENT ON COLUMN "public"."infra_codegen_column"."ordinal_position" IS '排序'; -COMMENT ON COLUMN "public"."infra_codegen_column"."java_type" IS 'Java 属性类型'; -COMMENT ON COLUMN "public"."infra_codegen_column"."java_field" IS 'Java 属性名'; -COMMENT ON COLUMN "public"."infra_codegen_column"."dict_type" IS '字典类型'; -COMMENT ON COLUMN "public"."infra_codegen_column"."example" IS '数据示例'; -COMMENT ON COLUMN "public"."infra_codegen_column"."create_operation" IS '是否为 Create 创建操作的字段'; -COMMENT ON COLUMN "public"."infra_codegen_column"."update_operation" IS '是否为 Update 更新操作的字段'; -COMMENT ON COLUMN "public"."infra_codegen_column"."list_operation" IS '是否为 List 查询操作的字段'; -COMMENT ON COLUMN "public"."infra_codegen_column"."list_operation_condition" IS 'List 查询操作的条件类型'; -COMMENT ON COLUMN "public"."infra_codegen_column"."list_operation_result" IS '是否为 List 查询操作的返回字段'; -COMMENT ON COLUMN "public"."infra_codegen_column"."html_type" IS '显示类型'; -COMMENT ON COLUMN "public"."infra_codegen_column"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."infra_codegen_column"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."infra_codegen_column"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."infra_codegen_column"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."infra_codegen_column"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."infra_codegen_column" IS '代码生成表字段定义'; +COMMENT ON COLUMN "infra_codegen_column"."id" IS '编号'; +COMMENT ON COLUMN "infra_codegen_column"."table_id" IS '表编号'; +COMMENT ON COLUMN "infra_codegen_column"."column_name" IS '字段名'; +COMMENT ON COLUMN "infra_codegen_column"."data_type" IS '字段类型'; +COMMENT ON COLUMN "infra_codegen_column"."column_comment" IS '字段描述'; +COMMENT ON COLUMN "infra_codegen_column"."nullable" IS '是否允许为空'; +COMMENT ON COLUMN "infra_codegen_column"."primary_key" IS '是否主键'; +COMMENT ON COLUMN "infra_codegen_column"."auto_increment" IS '是否自增'; +COMMENT ON COLUMN "infra_codegen_column"."ordinal_position" IS '排序'; +COMMENT ON COLUMN "infra_codegen_column"."java_type" IS 'Java 属性类型'; +COMMENT ON COLUMN "infra_codegen_column"."java_field" IS 'Java 属性名'; +COMMENT ON COLUMN "infra_codegen_column"."dict_type" IS '字典类型'; +COMMENT ON COLUMN "infra_codegen_column"."example" IS '数据示例'; +COMMENT ON COLUMN "infra_codegen_column"."create_operation" IS '是否为 Create 创建操作的字段'; +COMMENT ON COLUMN "infra_codegen_column"."update_operation" IS '是否为 Update 更新操作的字段'; +COMMENT ON COLUMN "infra_codegen_column"."list_operation" IS '是否为 List 查询操作的字段'; +COMMENT ON COLUMN "infra_codegen_column"."list_operation_condition" IS 'List 查询操作的条件类型'; +COMMENT ON COLUMN "infra_codegen_column"."list_operation_result" IS '是否为 List 查询操作的返回字段'; +COMMENT ON COLUMN "infra_codegen_column"."html_type" IS '显示类型'; +COMMENT ON COLUMN "infra_codegen_column"."creator" IS '创建者'; +COMMENT ON COLUMN "infra_codegen_column"."create_time" IS '创建时间'; +COMMENT ON COLUMN "infra_codegen_column"."updater" IS '更新者'; +COMMENT ON COLUMN "infra_codegen_column"."update_time" IS '更新时间'; +COMMENT ON COLUMN "infra_codegen_column"."deleted" IS '是否删除'; +COMMENT ON TABLE "infra_codegen_column" IS '代码生成表字段定义'; -- ---------------------------- -- Records of infra_codegen_column -- ---------------------------- BEGIN; -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (991, 89, 'id', 'bigint', '编号', '0', '1', '1', 1, 'Long', 'id', '', NULL, '0', '1', '0', '=', '1', 'input', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (992, 89, 'name', 'varchar(64)', '表单名', '0', '0', '0', 2, 'String', 'name', '', NULL, '1', '1', '1', 'LIKE', '1', 'input', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (993, 89, 'status', 'tinyint', '开启状态', '0', '0', '0', 3, 'Integer', 'status', '', NULL, '1', '1', '1', '=', '1', 'radio', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (994, 89, 'conf', 'varchar(1000)', '表单的配置', '0', '0', '0', 4, 'String', 'conf', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (995, 89, 'fields', 'varchar(5000)', '表单项的数组', '0', '0', '0', 5, 'String', 'fields', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (996, 89, 'remark', 'varchar(255)', '备注', '1', '0', '0', 6, 'String', 'remark', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (997, 89, 'creator', 'varchar(64)', '创建者', '1', '0', '0', 7, 'String', 'creator', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (998, 89, 'create_time', 'datetime', '创建时间', '0', '0', '0', 8, 'Date', 'createTime', '', NULL, '0', '0', '1', 'BETWEEN', '1', 'datetime', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (999, 89, 'updater', 'varchar(64)', '更新者', '1', '0', '0', 9, 'String', 'updater', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1000, 89, 'update_time', 'datetime', '更新时间', '0', '0', '0', 10, 'Date', 'updateTime', '', NULL, '0', '0', '0', 'BETWEEN', '0', 'datetime', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1001, 89, 'deleted', 'bit(1)', '是否删除', '0', '0', '0', 11, 'Boolean', 'deleted', '', NULL, '0', '0', '0', '=', '0', 'radio', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1002, 89, 'tenant_id', 'bigint', '租户编号', '0', '0', '0', 12, 'Long', 'tenantId', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1003, 90, 'id', 'NUMBER(20)', '请假表单主键', '0', '1', '0', 1, 'BigDecimal', 'id', '', NULL, '0', '1', '0', '=', '1', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1004, 90, 'user_id', 'NUMBER(20)', '申请人的用户编号', '0', '0', '0', 2, 'BigDecimal', 'userId', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1005, 90, 'type', 'NUMBER(4)', '请假类型', '0', '0', '0', 3, 'Integer', 'type', '', NULL, '1', '1', '1', '=', '1', 'select', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1006, 90, 'reason', 'NVARCHAR2', '请假原因', '0', '0', '0', 4, 'String', 'reason', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1007, 90, 'start_time', 'DATE', '开始时间', '0', '0', '0', 5, 'Date', 'startTime', '', NULL, '1', '1', '1', 'BETWEEN', '1', 'datetime', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1008, 90, 'end_time', 'DATE', '结束时间', '0', '0', '0', 6, 'Date', 'endTime', '', NULL, '1', '1', '1', 'BETWEEN', '1', 'datetime', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1009, 90, 'day', 'NUMBER(4)', '请假天数', '0', '0', '0', 7, 'Integer', 'day', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1010, 90, 'result', 'NUMBER(4)', '请假结果', '0', '0', '0', 8, 'Integer', 'result', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1011, 90, 'process_instance_id', 'NVARCHAR2', '流程实例的编号', '1', '0', '0', 9, 'String', 'processInstanceId', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1012, 90, 'creator', 'NVARCHAR2', '创建者', '1', '0', '0', 10, 'String', 'creator', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1013, 90, 'create_time', 'DATE', '创建时间', '0', '0', '0', 11, 'Date', 'createTime', '', NULL, '0', '0', '1', 'BETWEEN', '1', 'datetime', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1014, 90, 'updater', 'NVARCHAR2', '更新者', '1', '0', '0', 12, 'String', 'updater', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1015, 90, 'update_time', 'DATE', '更新时间', '0', '0', '0', 13, 'Date', 'updateTime', '', NULL, '0', '0', '0', 'BETWEEN', '0', 'datetime', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1016, 90, 'deleted', 'VARCHAR2', '是否删除', '0', '0', '0', 14, 'String', 'deleted', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1017, 90, 'tenant_id', 'NUMBER(20)', '租户编号', '0', '0', '0', 15, 'BigDecimal', 'tenantId', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1018, 91, 'id', 'NUMBER(20)', '编号', '0', '1', '0', 1, 'BigDecimal', 'id', '', NULL, '0', '1', '0', '=', '1', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1019, 91, 'name', 'NVARCHAR2', '表单名', '0', '0', '0', 2, 'String', 'name', '', NULL, '1', '1', '1', 'LIKE', '1', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1020, 91, 'status', 'NUMBER(4)', '开启状态', '0', '0', '0', 3, 'Integer', 'status', '', NULL, '1', '1', '1', '=', '1', 'radio', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1021, 91, 'conf', 'NVARCHAR2', '表单的配置', '0', '0', '0', 4, 'String', 'conf', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1022, 91, 'fields', 'NCLOB', '表单项的数组', '0', '0', '0', 5, 'String', 'fields', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1023, 91, 'remark', 'NVARCHAR2', '备注', '1', '0', '0', 6, 'String', 'remark', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1024, 91, 'creator', 'NVARCHAR2', '创建者', '1', '0', '0', 7, 'String', 'creator', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1025, 91, 'create_time', 'DATE', '创建时间', '0', '0', '0', 8, 'Date', 'createTime', '', NULL, '0', '0', '1', 'BETWEEN', '1', 'datetime', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1026, 91, 'updater', 'NVARCHAR2', '更新者', '1', '0', '0', 9, 'String', 'updater', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1027, 91, 'update_time', 'DATE', '更新时间', '0', '0', '0', 10, 'Date', 'updateTime', '', NULL, '0', '0', '0', 'BETWEEN', '0', 'datetime', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1028, 91, 'deleted', 'VARCHAR2', '是否删除', '0', '0', '0', 11, 'String', 'deleted', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1029, 91, 'tenant_id', 'NUMBER(20)', '租户编号', '0', '0', '0', 12, 'BigDecimal', 'tenantId', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1030, 92, 'id', 'bigint', '编号', '0', '1', '1', 1, 'Long', 'id', '', NULL, '0', '1', '0', '=', '1', 'input', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1031, 92, 'name', 'varchar(64)', '表单名', '0', '0', '0', 2, 'String', 'name', '', NULL, '1', '1', '1', 'LIKE', '1', 'input', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1032, 92, 'status', 'tinyint', '开启状态', '0', '0', '0', 3, 'Integer', 'status', '', NULL, '1', '1', '1', '=', '1', 'radio', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1033, 92, 'conf', 'varchar(1000)', '表单的配置', '0', '0', '0', 4, 'String', 'conf', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1034, 92, 'fields', 'varchar(5000)', '表单项的数组', '0', '0', '0', 5, 'String', 'fields', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1035, 92, 'remark', 'varchar(255)', '备注', '1', '0', '0', 6, 'String', 'remark', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1036, 92, 'creator', 'varchar(64)', '创建者', '1', '0', '0', 7, 'String', 'creator', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1037, 92, 'create_time', 'datetime', '创建时间', '0', '0', '0', 8, 'Date', 'createTime', '', NULL, '0', '0', '1', 'BETWEEN', '1', 'datetime', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1038, 92, 'updater', 'varchar(64)', '更新者', '1', '0', '0', 9, 'String', 'updater', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1039, 92, 'update_time', 'datetime', '更新时间', '0', '0', '0', 10, 'Date', 'updateTime', '', NULL, '0', '0', '0', 'BETWEEN', '0', 'datetime', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1040, 92, 'deleted', 'bit(1)', '是否删除', '0', '0', '0', 11, 'Boolean', 'deleted', '', NULL, '0', '0', '0', '=', '0', 'radio', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1041, 92, 'tenant_id', 'bigint', '租户编号', '0', '0', '0', 12, 'Long', 'tenantId', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1042, 93, 'id', 'bigint', '编号', '0', '1', '1', 1, 'Long', 'id', '', NULL, '0', '1', '0', '=', '1', 'input', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1043, 93, 'model_id', 'varchar(64)', '流程模型的编号', '0', '0', '0', 2, 'String', 'modelId', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1044, 93, 'process_definition_id', 'varchar(64)', '流程定义的编号', '0', '0', '0', 3, 'String', 'processDefinitionId', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1045, 93, 'task_definition_key', 'varchar(64)', '流程任务定义的 key', '0', '0', '0', 4, 'String', 'taskDefinitionKey', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1046, 93, 'type', 'tinyint', '规则类型', '0', '0', '0', 5, 'Integer', 'type', '', NULL, '1', '1', '1', '=', '1', 'select', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1047, 93, 'options', 'varchar(1024)', '规则值,JSON 数组', '0', '0', '0', 6, 'String', 'options', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1048, 93, 'creator', 'varchar(64)', '创建者', '1', '0', '0', 7, 'String', 'creator', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1049, 93, 'create_time', 'datetime', '创建时间', '0', '0', '0', 8, 'Date', 'createTime', '', NULL, '0', '0', '1', 'BETWEEN', '1', 'datetime', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1050, 93, 'updater', 'varchar(64)', '更新者', '1', '0', '0', 9, 'String', 'updater', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1051, 93, 'update_time', 'datetime', '更新时间', '0', '0', '0', 10, 'Date', 'updateTime', '', NULL, '0', '0', '0', 'BETWEEN', '0', 'datetime', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1052, 93, 'deleted', 'bit(1)', '是否删除', '0', '0', '0', 11, 'Boolean', 'deleted', '', NULL, '0', '0', '0', '=', '0', 'radio', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1053, 93, 'tenant_id', 'bigint', '租户编号', '0', '0', '0', 12, 'Long', 'tenantId', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', 1); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1054, 94, 'id', 'NUMBER(20)', '编号', '0', '1', '0', 1, 'BigDecimal', 'id', '', NULL, '0', '1', '0', '=', '1', 'input', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1055, 94, 'name', 'NVARCHAR2', '表单名', '0', '0', '0', 2, 'String', 'name', '', NULL, '1', '1', '1', 'LIKE', '1', 'input', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1056, 94, 'status', 'NUMBER(4)', '开启状态', '0', '0', '0', 3, 'Integer', 'status', '', NULL, '1', '1', '1', '=', '1', 'radio', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1057, 94, 'conf', 'NVARCHAR2', '表单的配置', '0', '0', '0', 4, 'String', 'conf', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1058, 94, 'fields', 'NCLOB', '表单项的数组', '0', '0', '0', 5, 'String', 'fields', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1059, 94, 'remark', 'NVARCHAR2', '备注', '1', '0', '0', 6, 'String', 'remark', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1060, 94, 'creator', 'NVARCHAR2', '创建者', '1', '0', '0', 7, 'String', 'creator', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1061, 94, 'create_time', 'DATE', '创建时间', '0', '0', '0', 8, 'Date', 'createTime', '', NULL, '0', '0', '1', 'BETWEEN', '1', 'datetime', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1062, 94, 'updater', 'NVARCHAR2', '更新者', '1', '0', '0', 9, 'String', 'updater', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1063, 94, 'update_time', 'DATE', '更新时间', '0', '0', '0', 10, 'Date', 'updateTime', '', NULL, '0', '0', '0', 'BETWEEN', '0', 'datetime', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1064, 94, 'deleted', 'VARCHAR2', '是否删除', '0', '0', '0', 11, 'String', 'deleted', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1065, 94, 'tenant_id', 'NUMBER(20)', '租户编号', '0', '0', '0', 12, 'BigDecimal', 'tenantId', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 23:14:47', '1', '2022-04-29 23:14:47', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1066, 95, 'id', 'bigint', '请假表单主键', '0', '1', '1', 1, 'Long', 'id', '', NULL, '0', '1', '0', '=', '1', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1067, 95, 'user_id', 'bigint', '申请人的用户编号', '0', '0', '0', 2, 'Long', 'userId', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1068, 95, 'type', 'tinyint', '请假类型', '0', '0', '0', 3, 'Integer', 'type', '', NULL, '1', '1', '1', '=', '1', 'select', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1069, 95, 'reason', 'varchar(200)', '请假原因', '0', '0', '0', 4, 'String', 'reason', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1070, 95, 'start_time', 'datetime', '开始时间', '0', '0', '0', 5, 'Date', 'startTime', '', NULL, '1', '1', '1', 'BETWEEN', '1', 'datetime', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1071, 95, 'end_time', 'datetime', '结束时间', '0', '0', '0', 6, 'Date', 'endTime', '', NULL, '1', '1', '1', 'BETWEEN', '1', 'datetime', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1072, 95, 'day', 'tinyint', '请假天数', '0', '0', '0', 7, 'Integer', 'day', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1073, 95, 'result', 'tinyint', '请假结果', '0', '0', '0', 8, 'Integer', 'result', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1074, 95, 'process_instance_id', 'varchar(64)', '流程实例的编号', '1', '0', '0', 9, 'String', 'processInstanceId', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1075, 95, 'creator', 'varchar(64)', '创建者', '1', '0', '0', 10, 'String', 'creator', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1076, 95, 'create_time', 'datetime', '创建时间', '0', '0', '0', 11, 'Date', 'createTime', '', NULL, '0', '0', '1', 'BETWEEN', '1', 'datetime', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1077, 95, 'updater', 'varchar(64)', '更新者', '1', '0', '0', 12, 'String', 'updater', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1078, 95, 'update_time', 'datetime', '更新时间', '0', '0', '0', 13, 'Date', 'updateTime', '', NULL, '0', '0', '0', 'BETWEEN', '0', 'datetime', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1079, 95, 'deleted', 'bit(1)', '是否删除', '0', '0', '0', 14, 'Boolean', 'deleted', '', NULL, '0', '0', '0', '=', '0', 'radio', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1080, 95, 'tenant_id', 'bigint', '租户编号', '0', '0', '0', 15, 'Long', 'tenantId', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1081, 96, 'id', 'varchar(32)', '会话编号', '0', '1', '0', 1, 'String', 'id', '', NULL, '0', '1', '0', '=', '1', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1082, 96, 'user_id', 'bigint', '用户编号', '0', '0', '0', 2, 'Long', 'userId', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1083, 96, 'user_type', 'tinyint', '用户类型', '0', '0', '0', 3, 'Integer', 'userType', '', NULL, '1', '1', '1', '=', '1', 'select', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1084, 96, 'session_timeout', 'datetime', '会话超时时间', '0', '0', '0', 4, 'Date', 'sessionTimeout', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1085, 96, 'username', 'varchar(30)', '用户账号', '0', '0', '0', 5, 'String', 'username', '', NULL, '1', '1', '1', 'LIKE', '1', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1086, 96, 'user_ip', 'varchar(50)', '用户 IP', '0', '0', '0', 6, 'String', 'userIp', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1087, 96, 'user_agent', 'varchar(512)', '浏览器 UA', '0', '0', '0', 7, 'String', 'userAgent', '', NULL, '1', '1', '1', '=', '1', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1088, 96, 'creator', 'varchar(64)', '创建者', '1', '0', '0', 8, 'String', 'creator', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1089, 96, 'create_time', 'datetime', '创建时间', '0', '0', '0', 9, 'Date', 'createTime', '', NULL, '0', '0', '1', 'BETWEEN', '1', 'datetime', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1090, 96, 'updater', 'varchar(64)', '更新者', '1', '0', '0', 10, 'String', 'updater', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1091, 96, 'update_time', 'datetime', '更新时间', '0', '0', '0', 11, 'Date', 'updateTime', '', NULL, '0', '0', '0', 'BETWEEN', '0', 'datetime', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1092, 96, 'deleted', 'bit(1)', '是否删除', '0', '0', '0', 12, 'Boolean', 'deleted', '', NULL, '0', '0', '0', '=', '0', 'radio', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', 0); -INSERT INTO "public"."infra_codegen_column" ("id", "table_id", "column_name", "data_type", "column_comment", "nullable", "primary_key", "auto_increment", "ordinal_position", "java_type", "java_field", "dict_type", "example", "create_operation", "update_operation", "list_operation", "list_operation_condition", "list_operation_result", "html_type", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1093, 96, 'tenant_id', 'bigint', '租户编号', '0', '0', '0', 13, 'Long', 'tenantId', '', NULL, '0', '0', '0', '=', '0', 'input', '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', 0); COMMIT; -- ---------------------------- -- Table structure for infra_codegen_table -- ---------------------------- -DROP TABLE IF EXISTS "public"."infra_codegen_table"; -CREATE TABLE "public"."infra_codegen_table" ( +DROP TABLE IF EXISTS "infra_codegen_table"; +CREATE TABLE "infra_codegen_table" ( "id" int8 NOT NULL, "data_source_config_id" int8 NOT NULL, "scene" int2 NOT NULL, @@ -16823,46 +1080,37 @@ CREATE TABLE "public"."infra_codegen_table" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."infra_codegen_table" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."infra_codegen_table"."id" IS '编号'; -COMMENT ON COLUMN "public"."infra_codegen_table"."data_source_config_id" IS '数据源配置的编号'; -COMMENT ON COLUMN "public"."infra_codegen_table"."scene" IS '生成场景'; -COMMENT ON COLUMN "public"."infra_codegen_table"."table_name" IS '表名称'; -COMMENT ON COLUMN "public"."infra_codegen_table"."table_comment" IS '表描述'; -COMMENT ON COLUMN "public"."infra_codegen_table"."remark" IS '备注'; -COMMENT ON COLUMN "public"."infra_codegen_table"."module_name" IS '模块名'; -COMMENT ON COLUMN "public"."infra_codegen_table"."business_name" IS '业务名'; -COMMENT ON COLUMN "public"."infra_codegen_table"."class_name" IS '类名称'; -COMMENT ON COLUMN "public"."infra_codegen_table"."class_comment" IS '类描述'; -COMMENT ON COLUMN "public"."infra_codegen_table"."author" IS '作者'; -COMMENT ON COLUMN "public"."infra_codegen_table"."template_type" IS '模板类型'; -COMMENT ON COLUMN "public"."infra_codegen_table"."parent_menu_id" IS '父菜单编号'; -COMMENT ON COLUMN "public"."infra_codegen_table"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."infra_codegen_table"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."infra_codegen_table"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."infra_codegen_table"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."infra_codegen_table"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."infra_codegen_table" IS '代码生成表定义'; +COMMENT ON COLUMN "infra_codegen_table"."id" IS '编号'; +COMMENT ON COLUMN "infra_codegen_table"."data_source_config_id" IS '数据源配置的编号'; +COMMENT ON COLUMN "infra_codegen_table"."scene" IS '生成场景'; +COMMENT ON COLUMN "infra_codegen_table"."table_name" IS '表名称'; +COMMENT ON COLUMN "infra_codegen_table"."table_comment" IS '表描述'; +COMMENT ON COLUMN "infra_codegen_table"."remark" IS '备注'; +COMMENT ON COLUMN "infra_codegen_table"."module_name" IS '模块名'; +COMMENT ON COLUMN "infra_codegen_table"."business_name" IS '业务名'; +COMMENT ON COLUMN "infra_codegen_table"."class_name" IS '类名称'; +COMMENT ON COLUMN "infra_codegen_table"."class_comment" IS '类描述'; +COMMENT ON COLUMN "infra_codegen_table"."author" IS '作者'; +COMMENT ON COLUMN "infra_codegen_table"."template_type" IS '模板类型'; +COMMENT ON COLUMN "infra_codegen_table"."parent_menu_id" IS '父菜单编号'; +COMMENT ON COLUMN "infra_codegen_table"."creator" IS '创建者'; +COMMENT ON COLUMN "infra_codegen_table"."create_time" IS '创建时间'; +COMMENT ON COLUMN "infra_codegen_table"."updater" IS '更新者'; +COMMENT ON COLUMN "infra_codegen_table"."update_time" IS '更新时间'; +COMMENT ON COLUMN "infra_codegen_table"."deleted" IS '是否删除'; +COMMENT ON TABLE "infra_codegen_table" IS '代码生成表定义'; -- ---------------------------- -- Records of infra_codegen_table -- ---------------------------- BEGIN; -INSERT INTO "public"."infra_codegen_table" ("id", "data_source_config_id", "scene", "table_name", "table_comment", "remark", "module_name", "business_name", "class_name", "class_comment", "author", "template_type", "parent_menu_id", "creator", "create_time", "updater", "update_time", "deleted") VALUES (89, 0, 1, 'bpm_form', '工作流的表单定义', NULL, 'bpm', 'form', 'Form', '工作流的', '芋道源码', 1, NULL, '1', '2022-04-29 22:33:54', '1', '2022-04-29 14:56:25', 1); -INSERT INTO "public"."infra_codegen_table" ("id", "data_source_config_id", "scene", "table_name", "table_comment", "remark", "module_name", "business_name", "class_name", "class_comment", "author", "template_type", "parent_menu_id", "creator", "create_time", "updater", "update_time", "deleted") VALUES (90, 9, 1, 'bpm_oa_leave', 'OA 请假申请表', NULL, 'bpm', 'oaLeave', 'OaLeave', 'OA 请假申请', '芋道源码', 1, NULL, '1', '2022-04-29 22:34:12', '1', '2022-04-29 14:56:23', 1); -INSERT INTO "public"."infra_codegen_table" ("id", "data_source_config_id", "scene", "table_name", "table_comment", "remark", "module_name", "business_name", "class_name", "class_comment", "author", "template_type", "parent_menu_id", "creator", "create_time", "updater", "update_time", "deleted") VALUES (91, 9, 1, 'bpm_form', '工作流的表单定义', NULL, 'bpm', 'form', 'Form', '工作流的', '芋道源码', 1, NULL, '1', '2022-04-29 22:56:11', '1', '2022-04-29 14:56:21', 1); -INSERT INTO "public"."infra_codegen_table" ("id", "data_source_config_id", "scene", "table_name", "table_comment", "remark", "module_name", "business_name", "class_name", "class_comment", "author", "template_type", "parent_menu_id", "creator", "create_time", "updater", "update_time", "deleted") VALUES (92, 0, 1, 'bpm_form', '工作流的表单定义', NULL, 'bpm', 'form', 'Form', '工作流的', '芋道源码', 1, NULL, '1', '2022-04-29 23:12:12', '1', '2022-04-29 23:12:12', 0); -INSERT INTO "public"."infra_codegen_table" ("id", "data_source_config_id", "scene", "table_name", "table_comment", "remark", "module_name", "business_name", "class_name", "class_comment", "author", "template_type", "parent_menu_id", "creator", "create_time", "updater", "update_time", "deleted") VALUES (93, 0, 1, 'bpm_task_assign_rule', 'Bpm 任务规则表', NULL, 'bpm', 'taskAssignRule', 'TaskAssignRule', 'Bpm 任务规则', '芋道源码', 1, NULL, '1', '2022-04-29 23:13:56', '1', '2022-04-29 15:13:58', 1); -INSERT INTO "public"."infra_codegen_table" ("id", "data_source_config_id", "scene", "table_name", "table_comment", "remark", "module_name", "business_name", "class_name", "class_comment", "author", "template_type", "parent_menu_id", "creator", "create_time", "updater", "update_time", "deleted") VALUES (94, 9, 1, 'bpm_form', '工作流的表单定义', NULL, 'bpm', 'form', 'Form', '工作流的', '芋道源码', 1, NULL, '1', '2022-04-29 23:14:46', '1', '2022-04-29 23:14:46', 0); -INSERT INTO "public"."infra_codegen_table" ("id", "data_source_config_id", "scene", "table_name", "table_comment", "remark", "module_name", "business_name", "class_name", "class_comment", "author", "template_type", "parent_menu_id", "creator", "create_time", "updater", "update_time", "deleted") VALUES (95, 0, 1, 'bpm_oa_leave', 'OA 请假申请表', NULL, 'bpm', 'oaLeave', 'OaLeave', 'OA 请假申请', '芋道源码', 1, NULL, '1', '2022-04-29 23:18:59', '1', '2022-04-29 23:18:59', 0); -INSERT INTO "public"."infra_codegen_table" ("id", "data_source_config_id", "scene", "table_name", "table_comment", "remark", "module_name", "business_name", "class_name", "class_comment", "author", "template_type", "parent_menu_id", "creator", "create_time", "updater", "update_time", "deleted") VALUES (96, 0, 1, 'system_user_session', '用户在线 Session', NULL, 'system', 'userSession', 'UserSession', '用户在线 Session', '芋道源码', 1, NULL, '1', '2022-04-29 23:48:56', '1', '2022-04-29 23:48:56', 0); COMMIT; -- ---------------------------- -- Table structure for infra_config -- ---------------------------- -DROP TABLE IF EXISTS "public"."infra_config"; -CREATE TABLE "public"."infra_config" ( +DROP TABLE IF EXISTS "infra_config"; +CREATE TABLE "infra_config" ( "id" int4 NOT NULL, "category" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, "type" int2 NOT NULL, @@ -16878,40 +1126,38 @@ CREATE TABLE "public"."infra_config" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."infra_config" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."infra_config"."id" IS '参数主键'; -COMMENT ON COLUMN "public"."infra_config"."category" IS '参数分组'; -COMMENT ON COLUMN "public"."infra_config"."type" IS '参数类型'; -COMMENT ON COLUMN "public"."infra_config"."name" IS '参数名称'; -COMMENT ON COLUMN "public"."infra_config"."config_key" IS '参数键名'; -COMMENT ON COLUMN "public"."infra_config"."value" IS '参数键值'; -COMMENT ON COLUMN "public"."infra_config"."visible" IS '是否可见'; -COMMENT ON COLUMN "public"."infra_config"."remark" IS '备注'; -COMMENT ON COLUMN "public"."infra_config"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."infra_config"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."infra_config"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."infra_config"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."infra_config"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."infra_config" IS '参数配置表'; +COMMENT ON COLUMN "infra_config"."id" IS '参数主键'; +COMMENT ON COLUMN "infra_config"."category" IS '参数分组'; +COMMENT ON COLUMN "infra_config"."type" IS '参数类型'; +COMMENT ON COLUMN "infra_config"."name" IS '参数名称'; +COMMENT ON COLUMN "infra_config"."config_key" IS '参数键名'; +COMMENT ON COLUMN "infra_config"."value" IS '参数键值'; +COMMENT ON COLUMN "infra_config"."visible" IS '是否可见'; +COMMENT ON COLUMN "infra_config"."remark" IS '备注'; +COMMENT ON COLUMN "infra_config"."creator" IS '创建者'; +COMMENT ON COLUMN "infra_config"."create_time" IS '创建时间'; +COMMENT ON COLUMN "infra_config"."updater" IS '更新者'; +COMMENT ON COLUMN "infra_config"."update_time" IS '更新时间'; +COMMENT ON COLUMN "infra_config"."deleted" IS '是否删除'; +COMMENT ON TABLE "infra_config" IS '参数配置表'; -- ---------------------------- -- Records of infra_config -- ---------------------------- BEGIN; -INSERT INTO "public"."infra_config" ("id", "category", "type", "name", "config_key", "value", "visible", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1, 'ui', 1, '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-blue', '0', '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow', 'admin', '2021-01-05 17:03:48', '1', '2022-03-26 23:10:31', 0); -INSERT INTO "public"."infra_config" ("id", "category", "type", "name", "config_key", "value", "visible", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (2, 'biz', 1, '用户管理-账号初始密码', 'sys.user.init-password', '123456', '0', '初始化密码 123456', 'admin', '2021-01-05 17:03:48', '1', '2022-03-20 02:25:51', 0); -INSERT INTO "public"."infra_config" ("id", "category", "type", "name", "config_key", "value", "visible", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (3, 'ui', 1, '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', '0', '深色主题theme-dark,浅色主题theme-light', 'admin', '2021-01-05 17:03:48', '', '2021-01-19 03:05:21', 0); -INSERT INTO "public"."infra_config" ("id", "category", "type", "name", "config_key", "value", "visible", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (4, '1', 2, 'xxx', 'demo.test', '10', '0', '5', '', '2021-01-19 03:10:26', '', '2021-01-20 09:25:55', 0); -INSERT INTO "public"."infra_config" ("id", "category", "type", "name", "config_key", "value", "visible", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5, 'xxx', 2, 'xxx', 'xxx', 'xxx', '1', 'xxx', '', '2021-02-09 20:06:47', '', '2021-02-09 20:06:47', 0); -INSERT INTO "public"."infra_config" ("id", "category", "type", "name", "config_key", "value", "visible", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (6, 'biz', 2, '登陆验证码的开关', 'yudao.captcha.enable', 'true', '1', NULL, '1', '2022-02-17 00:03:11', '1', '2022-04-04 12:51:40', 0); -INSERT INTO "public"."infra_config" ("id", "category", "type", "name", "config_key", "value", "visible", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (7, '1', 2, '2', '3', '4', '1', '1', '1', '2022-03-26 23:09:36', '1', '2022-03-26 15:09:41', 1); +INSERT INTO "infra_config" ("id", "category", "type", "name", "config_key", "value", "visible", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1, 'ui', 1, '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-blue', '0', '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow', 'admin', '2021-01-05 17:03:48', '1', '2022-03-26 23:10:31', 0); +INSERT INTO "infra_config" ("id", "category", "type", "name", "config_key", "value", "visible", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (2, 'biz', 1, '用户管理-账号初始密码', 'sys.user.init-password', '123456', '0', '初始化密码 123456', 'admin', '2021-01-05 17:03:48', '1', '2022-03-20 02:25:51', 0); +INSERT INTO "infra_config" ("id", "category", "type", "name", "config_key", "value", "visible", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (3, 'ui', 1, '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', '0', '深色主题theme-dark,浅色主题theme-light', 'admin', '2021-01-05 17:03:48', '', '2021-01-19 03:05:21', 0); +INSERT INTO "infra_config" ("id", "category", "type", "name", "config_key", "value", "visible", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (4, '1', 2, 'xxx', 'demo.test', '10', '0', '5', '', '2021-01-19 03:10:26', '', '2021-01-20 09:25:55', 0); +INSERT INTO "infra_config" ("id", "category", "type", "name", "config_key", "value", "visible", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5, 'xxx', 2, 'xxx', 'xxx', 'xxx', '1', 'xxx', '', '2021-02-09 20:06:47', '', '2021-02-09 20:06:47', 0); +INSERT INTO "infra_config" ("id", "category", "type", "name", "config_key", "value", "visible", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (6, 'biz', 2, '登陆验证码的开关', 'yudao.captcha.enable', 'true', '1', NULL, '1', '2022-02-17 00:03:11', '1', '2022-04-04 12:51:40', 0); COMMIT; -- ---------------------------- -- Table structure for infra_data_source_config -- ---------------------------- -DROP TABLE IF EXISTS "public"."infra_data_source_config"; -CREATE TABLE "public"."infra_data_source_config" ( +DROP TABLE IF EXISTS "infra_data_source_config"; +CREATE TABLE "infra_data_source_config" ( "id" int8 NOT NULL, "name" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, "url" varchar(1024) COLLATE "pg_catalog"."default" NOT NULL, @@ -16924,32 +1170,29 @@ CREATE TABLE "public"."infra_data_source_config" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."infra_data_source_config" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."infra_data_source_config"."id" IS '主键编号'; -COMMENT ON COLUMN "public"."infra_data_source_config"."name" IS '参数名称'; -COMMENT ON COLUMN "public"."infra_data_source_config"."url" IS '数据源连接'; -COMMENT ON COLUMN "public"."infra_data_source_config"."username" IS '用户名'; -COMMENT ON COLUMN "public"."infra_data_source_config"."password" IS '密码'; -COMMENT ON COLUMN "public"."infra_data_source_config"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."infra_data_source_config"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."infra_data_source_config"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."infra_data_source_config"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."infra_data_source_config"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."infra_data_source_config" IS '数据源配置表'; +COMMENT ON COLUMN "infra_data_source_config"."id" IS '主键编号'; +COMMENT ON COLUMN "infra_data_source_config"."name" IS '参数名称'; +COMMENT ON COLUMN "infra_data_source_config"."url" IS '数据源连接'; +COMMENT ON COLUMN "infra_data_source_config"."username" IS '用户名'; +COMMENT ON COLUMN "infra_data_source_config"."password" IS '密码'; +COMMENT ON COLUMN "infra_data_source_config"."creator" IS '创建者'; +COMMENT ON COLUMN "infra_data_source_config"."create_time" IS '创建时间'; +COMMENT ON COLUMN "infra_data_source_config"."updater" IS '更新者'; +COMMENT ON COLUMN "infra_data_source_config"."update_time" IS '更新时间'; +COMMENT ON COLUMN "infra_data_source_config"."deleted" IS '是否删除'; +COMMENT ON TABLE "infra_data_source_config" IS '数据源配置表'; -- ---------------------------- -- Records of infra_data_source_config -- ---------------------------- BEGIN; -INSERT INTO "public"."infra_data_source_config" ("id", "name", "url", "username", "password", "creator", "create_time", "updater", "update_time", "deleted") VALUES (8, 'test', 'jdbc:mysql://127.0.0.1:3306/testb5f4', 'root', '3xgHTSHmF3mlgL3Ybw45ztewGDxGgEkWF3wTSYey7k+uXI/wdz45TrvYvYssQtmA', '1', '2022-04-27 22:48:20', '1', '2022-04-28 20:04:06', 0); -INSERT INTO "public"."infra_data_source_config" ("id", "name", "url", "username", "password", "creator", "create_time", "updater", "update_time", "deleted") VALUES (9, 'oracle_test', 'jdbc:oracle:thin:@127.0.0.1:1521:xe', 'root', 'vwmNAPLiEi+NX4AVdC+zNvpejPLwcFXp6dlhgNxCfDTi4vKRy76iIeFqyvpRerNC', '1', '2022-04-28 20:41:26', '1', '2022-04-28 20:41:26', 0); COMMIT; -- ---------------------------- -- Table structure for infra_file -- ---------------------------- -DROP TABLE IF EXISTS "public"."infra_file"; -CREATE TABLE "public"."infra_file" ( +DROP TABLE IF EXISTS "infra_file"; +CREATE TABLE "infra_file" ( "id" int8 NOT NULL DEFAULT 0, "config_id" int8, "path" varchar(512) COLLATE "pg_catalog"."default" NOT NULL, @@ -16963,42 +1206,30 @@ CREATE TABLE "public"."infra_file" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."infra_file" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."infra_file"."id" IS '文件编号'; -COMMENT ON COLUMN "public"."infra_file"."config_id" IS '配置编号'; -COMMENT ON COLUMN "public"."infra_file"."path" IS '文件路径'; -COMMENT ON COLUMN "public"."infra_file"."url" IS '文件 URL'; -COMMENT ON COLUMN "public"."infra_file"."type" IS '文件类型'; -COMMENT ON COLUMN "public"."infra_file"."size" IS '文件大小'; -COMMENT ON COLUMN "public"."infra_file"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."infra_file"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."infra_file"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."infra_file"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."infra_file"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."infra_file" IS '文件表'; +COMMENT ON COLUMN "infra_file"."id" IS '文件编号'; +COMMENT ON COLUMN "infra_file"."config_id" IS '配置编号'; +COMMENT ON COLUMN "infra_file"."path" IS '文件路径'; +COMMENT ON COLUMN "infra_file"."url" IS '文件 URL'; +COMMENT ON COLUMN "infra_file"."type" IS '文件类型'; +COMMENT ON COLUMN "infra_file"."size" IS '文件大小'; +COMMENT ON COLUMN "infra_file"."creator" IS '创建者'; +COMMENT ON COLUMN "infra_file"."create_time" IS '创建时间'; +COMMENT ON COLUMN "infra_file"."updater" IS '更新者'; +COMMENT ON COLUMN "infra_file"."update_time" IS '更新时间'; +COMMENT ON COLUMN "infra_file"."deleted" IS '是否删除'; +COMMENT ON TABLE "infra_file" IS '文件表'; -- ---------------------------- -- Records of infra_file -- ---------------------------- BEGIN; -INSERT INTO "public"."infra_file" ("id", "config_id", "path", "url", "type", "size", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1, 2, 'v2-e68697db7bc2aba0924c5b5e7e377dff_r.jpeg', 'http://test.yudao.iocoder.cn/v2-e68697db7bc2aba0924c5b5e7e377dff_r.jpeg', 'jpg', 31809, '1', '2022-03-16 22:50:11', '1', '2022-03-16 15:08:33', 1); -INSERT INTO "public"."infra_file" ("id", "config_id", "path", "url", "type", "size", "creator", "create_time", "updater", "update_time", "deleted") VALUES (2, 2, '1000.jpeg', 'http://test.yudao.iocoder.cn/1000.jpeg', 'jpg', 34126, '1', '2022-03-16 23:07:27', '1', '2022-03-17 11:49:48', 1); -INSERT INTO "public"."infra_file" ("id", "config_id", "path", "url", "type", "size", "creator", "create_time", "updater", "update_time", "deleted") VALUES (3, 2, 'a294ecb2-73dd-4353-bf40-296b8931d0bf', 'http://test.yudao.iocoder.cn/a294ecb2-73dd-4353-bf40-296b8931d0bf', 'jpg', 83115, '1', '2022-03-16 23:51:41', '1', '2022-03-17 11:49:50', 1); -INSERT INTO "public"."infra_file" ("id", "config_id", "path", "url", "type", "size", "creator", "create_time", "updater", "update_time", "deleted") VALUES (4, 2, '43301647479822_.pic.jpg', 'http://test.yudao.iocoder.cn/43301647479822_.pic.jpg', 'png', 423337, '1', '2022-03-17 09:19:11', '1', '2022-03-17 09:19:11', 0); -INSERT INTO "public"."infra_file" ("id", "config_id", "path", "url", "type", "size", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5, 2, '43891647495423_.pic.jpg', 'http://test.yudao.iocoder.cn/43891647495423_.pic.jpg', 'png', 17424, '1', '2022-03-17 19:51:31', '1', '2022-03-17 19:51:31', 0); -INSERT INTO "public"."infra_file" ("id", "config_id", "path", "url", "type", "size", "creator", "create_time", "updater", "update_time", "deleted") VALUES (6, 2, '822aebded6e6414e912534c6091771a4.jpg', 'http://test.yudao.iocoder.cn/822aebded6e6414e912534c6091771a4.jpg', 'jpg', 18385, '1', '2022-03-17 20:48:00', '1', '2022-03-17 20:48:00', 0); -INSERT INTO "public"."infra_file" ("id", "config_id", "path", "url", "type", "size", "creator", "create_time", "updater", "update_time", "deleted") VALUES (7, 11, 'c6b0326f-1861-4c21-bf56-c2780481bfb9', 'http://test.yudao.iocoder.cn/c6b0326f-1861-4c21-bf56-c2780481bfb9', 'jpg', 73430, '1', '2022-03-20 22:04:20', '1', '2022-03-20 22:04:20', 0); -INSERT INTO "public"."infra_file" ("id", "config_id", "path", "url", "type", "size", "creator", "create_time", "updater", "update_time", "deleted") VALUES (8, 11, '48934f2f-92d4-4250-b917-d10d2b262c6a', 'http://test.yudao.iocoder.cn/48934f2f-92d4-4250-b917-d10d2b262c6a', 'jpg', 73430, '1', '2022-03-20 22:04:20', '1', '2022-03-20 22:04:20', 0); -INSERT INTO "public"."infra_file" ("id", "config_id", "path", "url", "type", "size", "creator", "create_time", "updater", "update_time", "deleted") VALUES (9, 11, 'cbd9cf5206a94acba7065342f65a3da0.jpg', 'http://test.yudao.iocoder.cn/cbd9cf5206a94acba7065342f65a3da0.jpg', 'jpg', 18385, '1', '2022-03-20 22:07:42', '1', '2022-03-20 22:07:42', 0); -INSERT INTO "public"."infra_file" ("id", "config_id", "path", "url", "type", "size", "creator", "create_time", "updater", "update_time", "deleted") VALUES (10, 11, '02.png', 'http://test.yudao.iocoder.cn/02.png', 'png', 208673, '1', '2022-03-26 21:48:05', '1', '2022-03-26 21:48:05', 0); -INSERT INTO "public"."infra_file" ("id", "config_id", "path", "url", "type", "size", "creator", "create_time", "updater", "update_time", "deleted") VALUES (11, 11, '02.png', 'http://test.yudao.iocoder.cn/02.png', 'png', 208673, '1', '2022-03-26 21:53:20', '1', '2022-03-26 13:53:23', 1); COMMIT; -- ---------------------------- -- Table structure for infra_file_config -- ---------------------------- -DROP TABLE IF EXISTS "public"."infra_file_config"; -CREATE TABLE "public"."infra_file_config" ( +DROP TABLE IF EXISTS "infra_file_config"; +CREATE TABLE "infra_file_config" ( "id" int8 NOT NULL, "name" varchar(63) COLLATE "pg_catalog"."default" NOT NULL, "storage" int2 NOT NULL, @@ -17012,44 +1243,33 @@ CREATE TABLE "public"."infra_file_config" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."infra_file_config" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."infra_file_config"."id" IS '编号'; -COMMENT ON COLUMN "public"."infra_file_config"."name" IS '配置名'; -COMMENT ON COLUMN "public"."infra_file_config"."storage" IS '存储器'; -COMMENT ON COLUMN "public"."infra_file_config"."remark" IS '备注'; -COMMENT ON COLUMN "public"."infra_file_config"."master" IS '是否为主配置'; -COMMENT ON COLUMN "public"."infra_file_config"."config" IS '存储配置'; -COMMENT ON COLUMN "public"."infra_file_config"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."infra_file_config"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."infra_file_config"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."infra_file_config"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."infra_file_config"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."infra_file_config" IS '文件配置表'; +COMMENT ON COLUMN "infra_file_config"."id" IS '编号'; +COMMENT ON COLUMN "infra_file_config"."name" IS '配置名'; +COMMENT ON COLUMN "infra_file_config"."storage" IS '存储器'; +COMMENT ON COLUMN "infra_file_config"."remark" IS '备注'; +COMMENT ON COLUMN "infra_file_config"."master" IS '是否为主配置'; +COMMENT ON COLUMN "infra_file_config"."config" IS '存储配置'; +COMMENT ON COLUMN "infra_file_config"."creator" IS '创建者'; +COMMENT ON COLUMN "infra_file_config"."create_time" IS '创建时间'; +COMMENT ON COLUMN "infra_file_config"."updater" IS '更新者'; +COMMENT ON COLUMN "infra_file_config"."update_time" IS '更新时间'; +COMMENT ON COLUMN "infra_file_config"."deleted" IS '是否删除'; +COMMENT ON TABLE "infra_file_config" IS '文件配置表'; -- ---------------------------- -- Records of infra_file_config -- ---------------------------- BEGIN; -INSERT INTO "public"."infra_file_config" ("id", "name", "storage", "remark", "master", "config", "creator", "create_time", "updater", "update_time", "deleted") VALUES (2, 'S3 - 七牛云', 20, '戴佩妮真可爱', '1', '{"@class":"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig","endpoint":"s3-cn-south-1.qiniucs.com","domain":"http://test.yudao.iocoder.cn","region":"oss-cn-beijing","bucket":"ruoyi-vue-pro","accessKey":"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8","accessSecret":"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP"}', '1', '2022-03-15 20:43:34', '1', '2022-03-19 09:55:12', 1); -INSERT INTO "public"."infra_file_config" ("id", "name", "storage", "remark", "master", "config", "creator", "create_time", "updater", "update_time", "deleted") VALUES (3, '测试', 20, NULL, '0', '{"@class":"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig","endpoint":"1","domain":"","region":"2","bucket":"3","accessKey":"4","accessSecret":"5"}', '1', '2022-03-15 23:30:58', '1', '2022-03-15 15:40:27', 1); -INSERT INTO "public"."infra_file_config" ("id", "name", "storage", "remark", "master", "config", "creator", "create_time", "updater", "update_time", "deleted") VALUES (4, '数据库', 1, '我是数据库', '0', '{"@class":"cn.iocoder.yudao.framework.file.core.client.db.DBFileClientConfig","domain":"http://127.0.0.1:48080"}', '1', '2022-03-15 23:56:24', '1', '2022-03-26 21:39:26', 0); -INSERT INTO "public"."infra_file_config" ("id", "name", "storage", "remark", "master", "config", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5, '本地磁盘', 10, '测试下本地存储', '0', '{"@class":"cn.iocoder.yudao.framework.file.core.client.local.LocalFileClientConfig","basePath":"/Users/yunai/file_test","domain":"http://127.0.0.1:48080"}', '1', '2022-03-15 23:57:00', '1', '2022-03-26 21:39:26', 0); -INSERT INTO "public"."infra_file_config" ("id", "name", "storage", "remark", "master", "config", "creator", "create_time", "updater", "update_time", "deleted") VALUES (6, 'FTP 服务器', 11, '测试下 FTP', '0', '{"@class":"cn.iocoder.yudao.framework.file.core.client.ftp.FtpFileClientConfig","basePath":"/Users/yunai/file_test","domain":"http://127.0.0.1:48080","host":"127.0.0.1","port":22,"username":"root","password":"password","mode":"Active"}', '1', '2022-03-16 00:00:43', '1', '2022-03-16 13:23:32', 1); -INSERT INTO "public"."infra_file_config" ("id", "name", "storage", "remark", "master", "config", "creator", "create_time", "updater", "update_time", "deleted") VALUES (7, 'SFTP 服务器', 12, NULL, '0', '{"@class":"cn.iocoder.yudao.framework.file.core.client.sftp.SftpFileClientConfig","basePath":"/Users/yunai/file_test","domain":"http://127.0.0.1:48080","host":"127.0.0.1","port":23,"username":"root","password":"password"}', '1', '2022-03-16 00:02:02', '1', '2022-03-16 13:23:31', 1); -INSERT INTO "public"."infra_file_config" ("id", "name", "storage", "remark", "master", "config", "creator", "create_time", "updater", "update_time", "deleted") VALUES (8, 'S3 - 测试', 20, NULL, '0', '{"@class":"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig","endpoint":"s3-cn-south-1.qiniucs.com","domain":"http://test.yudao.iocoder.cn","region":"oss-cn-beijing","bucket":"ruoyi-vue-pro","accessKey":"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8","accessSecret":"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP"}', '1', '2022-03-17 18:46:19', '1', '2022-03-17 10:46:28', 1); -INSERT INTO "public"."infra_file_config" ("id", "name", "storage", "remark", "master", "config", "creator", "create_time", "updater", "update_time", "deleted") VALUES (9, 'S3 - 测试', 20, NULL, '0', '{"@class":"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig","endpoint":"s3-cn-south-1.qiniucs.com","domain":"http://test.yudao.iocoder.cn","region":"oss-cn-beijing","bucket":"ruoyi-vue-pro","accessKey":"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8","accessSecret":"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP"}', '1', '2022-03-17 19:40:13', '1', '2022-03-17 11:40:16', 1); -INSERT INTO "public"."infra_file_config" ("id", "name", "storage", "remark", "master", "config", "creator", "create_time", "updater", "update_time", "deleted") VALUES (10, 'S3 - 测试七牛', 20, NULL, '0', '{"@class":"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig","endpoint":"s3-cn-south-1.qiniucs.com","domain":"http://test.yudao.iocoder.cn","region":"oss-cn-beijing","bucket":"ruoyi-vue-pro","accessKey":"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8","accessSecret":"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP"}', '1', '2022-03-17 19:54:19', '1', '2022-03-17 11:57:19', 1); -INSERT INTO "public"."infra_file_config" ("id", "name", "storage", "remark", "master", "config", "creator", "create_time", "updater", "update_time", "deleted") VALUES (11, 'S3 - 七牛云', 20, NULL, '1', '{"@class":"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig","endpoint":"s3-cn-south-1.qiniucs.com","domain":"http://test.yudao.iocoder.cn","bucket":"ruoyi-vue-pro","accessKey":"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8","accessSecret":"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP"}', '1', '2022-03-19 18:00:03', '1', '2022-03-26 21:39:26', 0); -INSERT INTO "public"."infra_file_config" ("id", "name", "storage", "remark", "master", "config", "creator", "create_time", "updater", "update_time", "deleted") VALUES (12, 'S3 - 七牛云', 20, NULL, '0', '{"@class":"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig","endpoint":"s3-cn-south-1.qiniucs.com","domain":"http://test.yudao.iocoder.cn","bucket":"ruoyi-vue-pro","accessKey":"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8","accessSecret":"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP"}', '1', '2022-03-26 23:07:01', '1', '2022-03-26 15:10:43', 1); -INSERT INTO "public"."infra_file_config" ("id", "name", "storage", "remark", "master", "config", "creator", "create_time", "updater", "update_time", "deleted") VALUES (13, '1', 1, '2', '0', '{"@class":"cn.iocoder.yudao.framework.file.core.client.db.DBFileClientConfig","domain":"http://127.0.0.1"}', '1', '2022-03-26 23:07:39', '1', '2022-03-26 15:07:42', 1); -INSERT INTO "public"."infra_file_config" ("id", "name", "storage", "remark", "master", "config", "creator", "create_time", "updater", "update_time", "deleted") VALUES (14, 'S3 - 七牛云', 20, NULL, '0', '{"@class":"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig","endpoint":"s3-cn-south-1.qiniucs.com","domain":"http://test.yudao.iocoder.cn","bucket":"ruoyi-vue-pro","accessKey":"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8","accessSecret":"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP"}', '1', '2022-03-26 23:10:41', '1', '2022-03-26 15:10:46', 1); +INSERT INTO "infra_file_config" ("id", "name", "storage", "remark", "master", "config", "creator", "create_time", "updater", "update_time", "deleted") VALUES (4, '数据库', 1, '我是数据库', '0', '{"@class":"cn.iocoder.yudao.framework.file.core.client.db.DBFileClientConfig","domain":"http://127.0.0.1:48080"}', '1', '2022-03-15 23:56:24', '1', '2022-03-26 21:39:26', 0); +INSERT INTO "infra_file_config" ("id", "name", "storage", "remark", "master", "config", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5, '本地磁盘', 10, '测试下本地存储', '0', '{"@class":"cn.iocoder.yudao.framework.file.core.client.local.LocalFileClientConfig","basePath":"/Users/yunai/file_test","domain":"http://127.0.0.1:48080"}', '1', '2022-03-15 23:57:00', '1', '2022-03-26 21:39:26', 0); +INSERT INTO "infra_file_config" ("id", "name", "storage", "remark", "master", "config", "creator", "create_time", "updater", "update_time", "deleted") VALUES (11, 'S3 - 七牛云', 20, NULL, '1', '{"@class":"cn.iocoder.yudao.framework.file.core.client.s3.S3FileClientConfig","endpoint":"s3-cn-south-1.qiniucs.com","domain":"http://test.yudao.iocoder.cn","bucket":"ruoyi-vue-pro","accessKey":"b7yvuhBSAGjmtPhMFcn9iMOxUOY_I06cA_p0ZUx8","accessSecret":"kXM1l5ia1RvSX3QaOEcwI3RLz3Y2rmNszWonKZtP"}', '1', '2022-03-19 18:00:03', '1', '2022-03-26 21:39:26', 0); COMMIT; -- ---------------------------- -- Table structure for infra_file_content -- ---------------------------- -DROP TABLE IF EXISTS "public"."infra_file_content"; -CREATE TABLE "public"."infra_file_content" ( +DROP TABLE IF EXISTS "infra_file_content"; +CREATE TABLE "infra_file_content" ( "id" int8 NOT NULL, "config_id" int8 NOT NULL, "path" varchar(512) COLLATE "pg_catalog"."default" NOT NULL, @@ -17061,36 +1281,28 @@ CREATE TABLE "public"."infra_file_content" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."infra_file_content" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."infra_file_content"."id" IS '编号'; -COMMENT ON COLUMN "public"."infra_file_content"."config_id" IS '配置编号'; -COMMENT ON COLUMN "public"."infra_file_content"."path" IS '文件路径'; -COMMENT ON COLUMN "public"."infra_file_content"."content" IS '文件内容'; -COMMENT ON COLUMN "public"."infra_file_content"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."infra_file_content"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."infra_file_content"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."infra_file_content"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."infra_file_content"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."infra_file_content" IS '文件表'; +COMMENT ON COLUMN "infra_file_content"."id" IS '编号'; +COMMENT ON COLUMN "infra_file_content"."config_id" IS '配置编号'; +COMMENT ON COLUMN "infra_file_content"."path" IS '文件路径'; +COMMENT ON COLUMN "infra_file_content"."content" IS '文件内容'; +COMMENT ON COLUMN "infra_file_content"."creator" IS '创建者'; +COMMENT ON COLUMN "infra_file_content"."create_time" IS '创建时间'; +COMMENT ON COLUMN "infra_file_content"."updater" IS '更新者'; +COMMENT ON COLUMN "infra_file_content"."update_time" IS '更新时间'; +COMMENT ON COLUMN "infra_file_content"."deleted" IS '是否删除'; +COMMENT ON TABLE "infra_file_content" IS '文件表'; -- ---------------------------- -- Records of infra_file_content -- ---------------------------- BEGIN; -INSERT INTO "public"."infra_file_content" ("id", "config_id", "path", "content", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1, 4, '143fb0617e11454a8b73dfaaaf429c51.jpg', E'\\377\\330\\377\\340\\000\\020JFIF\\000\\001\\001\\000\\000\\001\\000\\001\\000\\000\\377\\333\\000C\\000\\003\\002\\002\\003\\002\\002\\003\\003\\003\\003\\004\\003\\003\\004\\005\\010\\005\\005\\004\\004\\005\\012\\007\\007\\006\\010\\014\\012\\014\\014\\013\\012\\013\\013\\015\\016\\022\\020\\015\\016\\021\\016\\013\\013\\020\\026\\020\\021\\023\\024\\025\\025\\025\\014\\017\\027\\030\\026\\024\\030\\022\\024\\025\\024\\377\\333\\000C\\001\\003\\004\\004\\005\\004\\005\\011\\005\\005\\011\\024\\015\\013\\015\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\377\\302\\000\\021\\010\\001\\002\\001\\002\\003\\001\\021\\000\\002\\021\\001\\003\\021\\001\\377\\304\\000\\036\\000\\000\\003\\001\\001\\001\\001\\001\\001\\001\\001\\000\\000\\000\\000\\000\\000\\000\\010\\011\\007\\001\\006\\012\\002\\004\\005\\003\\377\\304\\000\\034\\001\\001\\000\\002\\003\\001\\001\\001\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\001\\005\\002\\004\\006\\007\\003\\010\\377\\332\\000\\014\\003\\001\\000\\002\\020\\003\\020\\000\\000\\000\\252`\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\007\\000\\000\\000\\000\\000\\350\\034:p\\350\\000\\034\\003\\240p\\000\\000\\350\\000\\034$\\001\\200\\200\\000\\377\\000\\013\\371\\200\\200\\027\\370\\341 \\007\\370\\300\\012\\002\\000\\004\\001\\002\\276\\001 \\300\\000\\013\\374\\000\\007\\010\\004]\\003\\0038\\002\\252y@)A+\\306\\234\\015\\374\\233 `\\005&\\020 5`7\\363~\\025Q\\323<\\261\\252\\021`\\277\\300\\000p\\200ES \\020\\027\\364UMP\\240\\002\\250j\\244X/\\340\\200\\015Q\\026J\\246e\\003\\376t\\312H\\262*\\205\\375\\025QV\\025R\\251\\212\\261\\177\\200\\000\\341\\000\\212\\246@ /\\350\\252\\212\\260\\017\\360\\277\\230\\011\\177I\\000\\007\\253\\022\\322\\322\\222\\014\\015\\370\\365d\\254/\\350\\252\\212\\260\\252\\225LU\\213\\374\\000\\007\\010\\004U0\\003\\001<\\240\\252\\232\\261T\\017*E\\243\\312\\225@\\233''\\225<\\261s\\305Tt\\317,E\\223\\313\\027<@G\\370\\016\\222\\010\\372''\\000\\003\\204\\377\\0002\\303\\207@j\\014\\250\\325\\205T\\325\\015X\\225\\246V5&\\246j\\202\\260eFVZaU5A\\252\\020\\023\\240p\\012\\252\\000\\000\\000O\\343\\177\\003\\000(\\011\\344I\\262*\\245\\32003\\204\\0025r\\347\\237;%\\0000\\000<\\251s\\306\\010\\237\\342\\002o\\303\\000 %\\376\\000\\003\\362/\\347\\316\\311\\253\\236X\\271\\346\\246yP0\\003\\177\\030"\\177\\234&\\310\\351\\023h~\\212PC\\003\\324\\217\\351\\277\\221ht\\207L`\\211\\374Hc\\351\\350\\000\\016\\020\\010\\312\\307\\364@\\307\\364\\340\\201\\225@\\177\\304\\000j\\204\\004\\351\\301\\2512\\241\\252"\\321\\252\\0159\\252\\212\\270\\376\\231I+\\213\\374p\\200E\\376\\000\\003\\204\\00203\\324\\224\\240J\\214\\260\\312\\017\\242a\\201$\\001\\345\\307\\370\\337\\011ZW\\362@\\016\\250\\201\\025\\350\\205\\343T%\\205\\2450\\003\\177\\030#\\204\\002/\\360\\000\\034 \\021_\\014\\000\\240''\\22103\\204\\0025r\\250\\010yO\\317\\006f\\260\\350\\360b\\322\\263!\\007\\354\\233#\\246jg\\227$\\001_\\314\\000\\324\\311\\264}=\\000\\001\\302\\001\\026\\234\\312\\206\\260\\312\\004\\004\\351*\\312\\246*\\305\\361?\\244\\377\\0003\\343\\226]\\204\\353\\277X\\314\\376M[g\\037\\362\\304L\\213\\003Vec\\372*\\306\\252U\\001\\002:U@\\000?"\\376M\\223S\\03500\\003\\000\\025\\202\\347\\221d\\276P\\376\\244c\\264\\033\\331\\357\\227_\\177\\322\\333_\\322\\365\\225\\373\\347]W\\374\\011\\221\\362u@\\011X5E&!x\\325\\024\\230\\365\\300\\000~E\\374\\213E\\317"\\311\\253\\017\\361\\276\\030\\020\\252\\223h\\2501,\\305\\026\\336S[\\275\\353\\251s\\367\\335mvG\\345\\375+)\\354\\234\\217\\240\\373\\304\\262\\313\\031\\256U1V\\001\\376\\027\\362k\\224\\000\\300\\017\\242p\\0008O\\362,\\015X\\324\\217\\350\\200\\217\\361\\001KJJ\\321\\307\\206\\371\\310\\333y\\277\\035\\355\\274m\\325?\\277\\254\\334\\361\\377\\000\\037A\\377\\000''\\325|]\\204\\354j\\023\\355\\254r\\303S5A\\252\\020\\0202\\303*2\\263\\351D\\000\\016\\022\\000uD\\010\\300\\013J`\\006\\000?\\306\\000\\007\\207Cy\\306\\332\\376\\177.\\372\\011\\365\\214_\\254\\257\\324\\371\\215\\345S\\364\\277\\021C{*L\\032A\\026ML\\252d\\002\\003\\351\\350\\233&\\246P\\020\\0008@"\\377\\000\\031A\\352H\\014:D\\332\\037\\242\\277\\235\\020\\361\\306\\245\\331\\377\\000/\\316\\356\\177\\222\\263c0\\336\\303\\326q\\266_\\305\\356\\234\\226\\313\\320\\351\\301C\\177+\\370\\277\\001\\352\\214\\260\\300I\\000W\\362\\224\\200\\001\\302\\001\\017\\351\\226\\031X\\253\\017\\340\\025PU\\005\\\\\\377\\000\\264\\313Y\\030\\177\\246\\313K\\305\\232Liq?\\353D\\376\\376\\220\\224\\300\\037\\362\\001\\217\\351\\252\\021l\\177N\\035*\\240\\000\\037\\221\\177$\\031i\\314\\254\\312I^z\\243\\350\\234\\225g\\253\\002@\\225\\354]\\017\\356\\036\\341\\246\\020\\361\\006\\001\\3768 C\\372o\\340`\\006\\000X\\000\\000?"\\376yaV*\\241\\344I\\262je\\001''\\361!\\217"U1V\\037\\323,\\032\\221\\00252m\\037I\\207\\225"\\310\\376\\210\\020\\376\\224\\004\\341\\000\\213\\374\\000\\007\\011\\376+\\006V5\\000p@\\317\\245\\003\\204\\0035c+\\032\\203S2\\263,*\\211\\225\\022\\264\\325\\215PUL\\260\\177\\016\\225L\\010\\004_\\340\\0008H\\001X7\\363\\177=A\\226\\015H\\225\\033\\371!\\217\\244\\303\\0037\\303\\327\\0319+\\312LH1\\3755cT"\\300\\252\\235\\030\\003\\324\\200\\376\\224\\004\\000\\017\\310\\277\\236X\\000\\015P\\232\\306\\376t_\\314\\004jF\\250\\365"XRr\\027\\217\\360\\277\\217\\361 \\314\\014\\372L<\\251\\026K\\240HR\\177\\237U\\000\\000p\\200CT\\000ef\\250U2V\\034\\003T2\\261\\252\\032\\241T5Q\\0028\\003\\374eD\\255-9\\225\\022\\264\\252d\\255\\032\\202\\252\\200\\001\\302\\001\\025\\360\\220`U1V*\\241\\025\\300\\237\\345(=X\\226\\236\\244\\000\\252gI\\004o\\345P"\\310\\001\\201\\216\\221\\251\\216\\230\\301\\000\\001\\302\\001\\025L\\200@_\\321U<\\240\\352\\220\\010\\257\\342\\002\\\\\\363\\312\\210\\011\\352\\311X0#\\244:d\\203-1\\352\\211Z0\\007\\015X\\213''\\226>\\236\\200\\000\\341\\000\\213N 5B\\252UB,\\023\\374\\240\\002\\254ZRV\\215H\\253\\212\\241@\\015P\\252d\\002\\032\\243+-9\\301\\0002\\301\\2472\\262\\200\\200\\001\\302\\001\\000\\001\\345\\207L\\252\\207\\312\\271\\321\\2002\\303|\\037\\322l\\225\\364\\341\\276\\236T\\232\\346\\002Zb\\030\\036\\244\\177\\205\\374\\177\\214\\000@\\213\\374\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\007\\377\\304\\000B\\020\\000\\000\\003\\006\\002\\011\\002\\005\\003\\003\\002\\003\\011\\000\\000\\000\\006\\007\\010\\000\\004\\005\\024\\025\\026\\011\\027\\001\\002\\003\\021\\023\\030\\031W\\205%8\\020 !Gg\\022&''()FAu"7901BPQ`ac\\203\\377\\332\\000\\010\\001\\001\\000\\001\\022\\000\\377\\000\\310\\367\\266\\366\\336\\333\\333{om\\355\\275\\267\\266\\377\\000\\216\\377\\000\\206\\215:4\\374\\273\\333\\365h\\370\\376\\255\\015\\275\\267\\266\\366\\337\\363/\\005\\342z\\022\\312\\274t\\015\\007\\016(\\241\\270l\\214\\253\\227TU9\\334\\326\\352\\212\\247;\\232\\335QT\\347s[\\252*\\234\\356kaN\\250L\\345''\\2329\\214&\\270\\250\\264\\271\\006^\\013\\304\\364%\\225x\\350\\032\\016\\034QCp\\331\\031W.\\250\\252s\\271\\255\\325\\025Nw5\\272\\242\\251\\316\\346\\374W\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\311y\\031\\342re''\\216F@\\370\\235\\030G\\014\\221\\224}\\302\\231P\\231\\312K43\\030MqQir\\037/TU9\\334\\326\\352\\210\\247;\\230\\3100\\317\\023\\234\\311<\\0162\\030D\\353"8\\234\\364\\333\\352\\3623\\304\\344\\312O\\034\\214\\201\\361:0\\216\\031#(\\373\\325\\021Nw1\\272\\242\\251\\316\\346\\267TU9\\334\\326\\352\\212\\247;\\232\\335QT\\347s~lQ\\275\\365\\231\\2761\\215\\003D2L\\001"c\\021\\224R\\216\\034\\206\\360\\246\\237z\\242&>\\345\\267TD\\307\\334\\306\\305\\033\\330\\231\\233\\343\\033\\003/\\275\\236\\021\\227\\202\\016=\\016\\225^:\\031\\003\\200\\365\\240\\334JFU\\365\\007 \\343\\320\\226U\\340a\\220\\304\\017E\\015\\303g\\246\\237O\\025FX\\246\\352.c\\011\\255\\332\\327\\036A\\225\\012]3Vq\\350&8\\311\\300\\315\\340\\\\\\011%iQ\\245B\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\012\\204\\274g&\\314\\321\\314p\\315\\271Z\\245\\3101\\236\\274\\310\\262`u\\023\\007\\014G\\024a\\0347\\2054\\344\\227R\\351\\232\\214O@\\311\\306q\\206l\\362\\34075U\\215b\\254\\250\\013\\025''\\225\\371p&\\270\\250\\265I\\366+\\320a\\350s\\201!\\243\\020h\\036\\262\\034\\211qe_U\\012\\242,\\226q\\024&''\\011\\3015\\340d\\011%iP^\\227Js\\266m\\322\\351Nv\\315\\222\\352]3Q\\211\\350\\0318\\3160\\315\\236\\\\\\006\\346\\252\\261\\254U\\325\\011b\\244\\362\\277.D\\327\\025\\026\\251>\\3109x\\221d\\262P\\003\\003F#\\212(\\216\\033=4\\345\\2127\\26137\\3066\\006_{<#\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSN]Q\\023\\037s\\030\\215TE\\212\\222\\255\\345\\300\\232\\342\\242\\360''\\333\\024o}fo\\214\\371\\261F\\367\\326f\\370\\306\\305\\033\\330\\241\\233\\343>8\\243{\\0233|c`g\\367\\263\\3022\\240\\305_\\226\\303\\320L\\\\eu\\307E\\225\\365/\\243.D7\\316u\\223\\270mg[S\\254\\227\\010\\336[H\\260\\321sZ\\270\\250\\263^\\247\\205\\317\\276\\242\\317\\311\\266\\355\\033\\231PaQ\\314\\221\\350&1\\263F\\334\\255Kzb\\242#y\\222"\\304\\305\\315j\\335\\255J\\372\\232\\344C|\\230Y;\\306\\267\\215\\313:\\330\\\\\\373\\024,\\374\\233%\\334)\\371l=\\003F6h\\334tY\\237L\\321\\273s}\\031Q\\021\\274\\311\\021bb\\346\\265n\\326\\245}Mr\\241\\276L,\\235\\343k\\306\\345\\235\\370b\\215\\354L\\315\\361\\215\\201\\237\\336\\317\\010\\330\\242\\373\\3523|g\\303\\003?\\275\\236\\021\\261F\\367\\326f\\370\\317\\233\\024o}fo\\214lQ\\275\\211\\231\\2763\\343\\2127\\26137\\3066\\006\\177{<#b\\215\\357\\254\\315\\361\\215\\325\\025Nw5\\260\\247T&r\\223\\315\\034\\306\\023\\\\TZ\\\\\\203/\\005\\342z\\022\\312\\274t\\015\\007\\016(\\241\\270l\\214\\253\\226\\027\\036\\372\\313?&\\337\\367\\352\\262\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271 \\345\\342z\\035*\\274\\014\\015\\030\\216+A\\270\\224\\364\\323\\2269\\177d\\374\\333\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256K\\310\\317\\023\\223)\\331\\374\\010\\325Df\\246\\332\\336\\\\\\211\\255\\332\\327\\002}\\220a\\236''9\\222x\\034d0\\211\\326Dq9\\351\\267\\326\\302\\231/\\026*O4s\\0303qQir\\014\\274\\212\\360\\3012\\253\\307 \\320|2\\214\\034\\206H\\3129\\031\\353\\314\\3649\\300\\2210p\\310qY\\016D\\270SNDj\\2433\\223uo.D\\326\\355k\\203>\\3100\\317\\023\\234\\311<\\0162\\030D\\353"8\\234\\364\\333\\353b\\260\\250\\214\\344\\331\\225\\371r&\\267kUI\\366\\352\\212\\247;\\232\\3109x\\236\\207J\\257\\003\\003F#\\212\\320n%=4\\345\\212\\272\\2413\\223fW\\345\\310\\232\\335\\255U''\\333\\252*\\234\\356o\\313\\277v\\215:t\\377\\000\\243\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSNLF\\245\\3235H\\326\\362\\3443qQx\\023\\354h\\025\\302b`w\\023\\007\\014\\241\\224a\\0347\\2054\\345\\325\\0211\\3671\\210\\325HX\\251\\032\\336\\\\\\211\\256*/\\002}\\214\\365\\346E\\223\\003\\250\\2308b8\\243\\010\\341\\274)\\247%\\344W\\211\\316d\\2369\\006\\203\\341\\225\\221\\034NFQ\\313\\012t\\276f\\246\\314\\321\\314`\\315\\273Z\\245\\310i3\\327\\231\\026L\\016\\242`\\341\\210\\342\\214#\\206\\360\\246\\234\\233\\025t\\272g),\\257\\313\\220\\315\\305E\\252O\\262]TE\\2221"\\203D\\341\\306&\\263\\314\\200\\324\\325V\\012\\203\\014\\360\\3012\\253\\300\\343!\\204N\\214\\034\\206OM\\276\\256_\\356Ger\\347\\374\\211e\\317W\\230\\320+\\204\\304\\300\\356&\\016\\031C(\\3028o\\012i\\311\\007 \\343\\320\\226U\\340a\\220\\304\\017E\\015\\303g\\246\\237O\\025DY&\\332.c\\011\\255\\332\\327\\036A\\227\\221\\236\\0309\\225x\\344d\\017\\211\\326C\\221)\\031G\\336\\227Js\\266m\\205:^3\\223^h\\3468f\\334\\255R\\344\\030\\317^dY0:\\211\\203\\206#\\2120\\216\\033\\302\\232r3\\320a\\350L\\001"c\\021\\220\\036\\214\\034\\206\\360\\246\\237p4\\373\\333\\341\\030\\317^dY0:\\211\\203\\206#\\2120\\216\\033\\302\\232rlV\\022\\361\\234\\244\\262\\303.C7\\025\\026\\251>\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSN_.(\\276\\372\\214\\337\\030\\311p\\215\\346H\\364\\015\\0275\\253v\\2655\\352_L\\030?1fK*#\\313\\231#\\320LcQm\\332\\324\\257\\246\\3642\\374\\330\\337\\364_\\374\\305\\231,\\250\\217.d\\217A1\\215E\\267k2\\276\\230\\227\\261W\\346L\\364\\015\\0279]nV\\246}Ov\\217\\322\\312\\203\\012\\216d\\217A1\\215\\2326\\345j[\\323\\025\\021\\345\\313i\\026&1\\250\\267\\025\\026W\\323:\\345~\\023nF\\272\\222\\177Q\\227\\266]^\\237\\343]\\014\\2776\\262\\032C\\\\\\230\\336\\337\\275\\257\\033\\226I\\225\\006\\025\\034\\311\\236\\202c\\0334m\\312\\324\\257\\246\\252#\\313\\226\\322,LcQn*,\\257\\246\\2565\\313\\316}\\223\\373*\\316\\266\\247Y/aO\\314\\231\\026\\0321\\263F\\335\\255L\\372b^\\305_\\2313\\3204\\\\eu\\271Z\\232\\365%\\312\\27191\\262\\177e^7,\\353r3\\324\\223\\372\\214\\275\\262\\356\\364\\377\\000\\032TDo2$X\\230\\271\\255[\\325\\251_SC(k\\223\\013\\333\\367\\255\\341r\\310\\266(\\276\\372\\214\\337\\031\\360\\335\\241\\261E\\367\\326gx\\317\\233\\024o}fo\\214b\\270\\321\\023\\023\\003\\270`\\304\\033\\024\\243\\010\\341\\274YW\\323\\305Q\\231\\252F\\213\\230\\302k\\212\\213\\307\\220d\\034\\203\\210\\263\\245(\\001\\206C\\020=hG\\022\\236\\232}\\352\\212\\247;\\232\\307\\222\\2433\\224\\235\\0271\\304\\327\\035\\027\\217!\\360+\\320a\\026L\\016\\241\\243\\020p\\036\\214#\\206\\361e_wh\\321\\253\\271\\227\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\311.\\252#5g\\036\\201\\222p\\343\\023^\\005\\300\\222j\\253\\005\\351v\\230\\373h\\305qZ\\031&\\000\\220\\320p6\\027G\\016Cx\\262\\256H9x\\236\\207J\\257\\003\\003F#\\212\\320n%=4\\345\\273\\351\\271\\227\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\313\\024obfo\\214l)\\222\\361b\\244\\263C1\\2037\\025\\026\\227 \\305qZ\\031&\\000\\220\\320p6\\027G\\016Cx\\262\\256X\\\\{\\353,\\374\\233c\\227\\366O\\315\\261^\\274\\317B`\\011\\015\\007\\003G\\024`\\3447\\213*\\344\\274\\214\\36192\\223\\307# |N\\214#\\206H\\312>\\341N\\250\\014\\325''\\2329\\214&\\270\\250\\264\\271\\015\\006z\\014"\\316q\\324Lb1\\003\\326Dq.\\024\\323\\357\\303\\024o}fo\\214\\371\\261F\\367\\326f\\370\\306^Ex\\234\\346I\\343\\220h>\\031Y\\021\\304\\344e\\034\\260\\246K\\306rm\\315\\014\\306\\014\\333\\265\\252\\\\\\207\\300\\3204C$\\300\\022&1\\031E(\\341\\310o\\012i\\367\\252"c\\356[uDL}\\314\\370\\021\\211t\\316RU\\274\\270\\014\\334T^\\004\\373%\\325DY#\\022(4N\\034bk<\\310\\015MU`\\260|,\\024\\253\\374M\\331\\323n\\004v\\205l6\\332\\377\\000\\243]\\365\\014"\\367Dn\\342,\\324\\2745\\305\\217\\342\\031)\\306Q\\330`\\006\\024y\\316#0\\337\\307\\021\\2503\\344b_\\365\\270\\364O\\005\\3674B\\335\\023\\301\\235\\316\\020\\262p''\\\\\\023\\231.\\035.\\334"/\\221\\227H4\\307\\015\\373m\\023ww\\331k\\3556\\272v\\233=\\236\\256\\215\\372\\332\\370\\250&c%Ml\\212\\335r\\314;s\\352B*s\\272R\\352\\241,\\221\\211\\022\\031''\\01615\\236c\\206\\246\\252\\260T\\030g\\206\\011\\225^\\007\\031\\014"t`\\3442zm\\365r\\350\\352Ier\\347\\374\\211e\\317W\\231.\\252"\\311\\030\\221A\\242p\\343\\023Y\\346@jj\\253\\005^\\013\\304\\213:R\\200\\350\\032\\016\\034V\\204q)\\031W-\\314\\203\\227\\211\\026K%\\00004b8\\242\\210\\341\\263\\323NIu.\\231\\250\\304\\364\\014\\234g\\030f\\317.\\003sUX\\322\\345\\376\\344\\266W.\\177\\310\\226\\\\\\365y\\215\\002\\270LL\\016\\342`\\341\\2242\\214#\\206\\360\\246\\234\\276\\\\Q}\\365\\031\\2761\\225\\021\\345\\313q\\026&1\\250\\267\\025\\026W\\323\\020\\322\\344\\347:\\366\\375\\225g[R?\\005DF\\363$E\\011\\213\\232\\325\\275Z\\225\\365>\\206\\177\\233[\\241\\237\\346\\337\\206\\006\\177{<#b\\213\\357\\250\\315\\361\\214\\377\\000\\372\\265\\335v\\232\\232\\232\\372vz\\332\\332uvz5\\366;-M\\206\\317F\\317g\\253\\243SSWF\\355\\032\\242\\210\\373\\270P5\\025\\215=~\\251X{\\256\\325\\357j\\311\\224\\357\\212\\035\\241\\241\\003\\304v\\013\\250\\036\\215\\301\\342\\373hk\\313\\203\\343\\356\\302\\036\\351\\267yy\\332\\352l6\\033\\035M;M\\246\\324\\240Pp#\\224H/\\203\\301\\235_\\266\\033@\\356\\321\\337F\\266\\333s:;j\\303\\236\\037uvzt\\350\\330\\353i\\325\\333h\\331\\252\\014*9\\223<\\304\\3066h\\333\\225\\251_L\\372\\262\\032\\\\\\234\\230\\336\\333\\301W\\215\\313$\\312\\210\\362\\346H\\364\\023\\030\\324[z\\265+\\351\\235\\014\\27762\\344C\\\\\\230\\331_\\275o\\033\\226u\\222\\366\\024\\374\\311\\021a\\243\\0334m\\312\\324\\327\\246*"7\\231",L\\\\\\326\\255\\352\\324\\257\\251\\377\\000\\321\\207\\363\\026d\\267#]I\\177\\250\\333\\333.\\357O\\361\\257\\223v\\375\\032tic=\\006\\021g8\\352&1\\030\\201\\353"8\\227\\012i\\365.\\252#5g\\036\\201\\222p\\343\\023^\\005\\300\\222j\\253\\005\\\\\\277\\333j\\312\\345\\317\\370\\352\\364\\236\\2572\\0143\\304\\3472O\\003\\214\\206\\021:\\310\\216''=6\\372\\274\\214\\36192\\223\\307# |N\\214#\\206H\\312>\\341N\\250L\\345%\\2329\\216&\\270\\250\\264\\271\\006^\\013\\304\\364%\\225x\\350\\032\\016\\034QCp\\331\\031W$\\030W\\206\\016e^\\007\\006\\214!\\225\\220\\344Nzm\\310\\215K\\245\\222m\\255\\345\\310f\\335\\255p''\\333\\024o}fo\\214g\\255?O\\377\\000M\\233o\\3721\\3766r\\330\\006\\242`\\227-\\216\\326"%\\217\\303^\\035\\366.\\2607\\261\\320*:#{\\015\\350\\016\\355\\335\\342\\373}\\216\\335\\205\\003a\\331\\211\\010\\265#\\241\\310+\\2049\\357i\\263\\250\\304\\023|.\\026\\370#\\035\\212\\335\\366\\273-H\\214E\\347a\\017\\333\\271ng\\257\\246\\321\\347O\\377\\000V\\315\\227r\\362=\\011eZ9\\007\\003G\\024`\\3346FU\\313\\245\\332c\\355\\233t\\273L}\\263n\\227i\\217\\266m\\325\\025Nw5\\220\\316\\236\\244\\267\\2671\\177\\310\\226\\\\\\215\\011\\212\\342\\2642L\\001!\\240\\340l.\\216\\034\\206\\361e\\\\\\272\\242\\251\\316\\346\\262\\031\\323\\324\\226\\366\\346/\\371\\022\\313\\221\\2411\\\\V\\206I\\200$4\\034\\015\\205\\321\\303\\220\\336,\\253\\227\\311\\277v\\215:t\\377\\000\\243\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSNH0\\317\\014\\023*\\274\\0162\\030D\\350\\301\\310d\\364\\333\\351\\032\\250\\213%#[\\313\\2215\\305E\\340O\\266(\\336\\372\\314\\337\\030\\311u.\\231\\250\\304\\364\\014\\234g\\030f\\317.\\003sUX\\327TD\\307\\334\\266+\\215\\020\\311\\316\\004\\206\\214A\\261J\\300r%\\305\\225}\\352\\210\\230\\373\\230\\313\\233ORK+\\227?\\344K.z\\272\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSNX)}\\012\\363;\\375\\351\\301\\240G\\210\\350$il F\\024\\263\\243\\273\\336\\323\\364\\351\\331\\005\\204\\033\\023T\\307y\\177z\\200?\\215a\\021\\207\\347\\027\\347\\247c\\376\\032\\346ED\\236,m\\236\\2443R \\034\\210\\277m!\\201\\302\\244\\033\\037}\\025@v\\300=\\274/e\\017\\330;k\\273\\215\\341c8\\2748\\276\\015\\232\\016\\217\\033\\343\\220\\215\\226\\207\\230\\233\\014\\224X(\\004\\361\\002v\\212\\275\\277k\\274\\306\\234\\347\\334\\266@\\261\\364\\010\\315\\016j\\010CO\\325(;\\336\\246\\355\\213\\312\\355A\\247\\241\\322\\253\\207#\\020h\\036\\262\\033\\211H\\312\\276\\266\\006\\177{<#b\\215\\357\\254\\315\\361\\215\\322\\351Nv\\315\\260\\247K\\306rl\\315\\034\\306\\014\\333\\265\\252\\\\\\203/\\004\\034z\\035*\\274t2\\007\\001\\353A\\270\\224\\214\\253\\353aL\\250K\\024\\331\\2329\\214&\\267kT\\271\\006^Fx`\\346U\\343\\221\\220>''Y\\016D\\244e\\037~UA\\205G2G\\240\\230\\306\\315\\033r\\265-\\351\\237VCK\\227\\223\\013\\337\\366M\\343r\\3117#]I?\\250\\333\\333.\\357O\\361\\245DF\\363"E\\211\\213\\232\\325\\275Z\\225\\365>\\206\\277\\233Y.\\021\\274\\266\\221a\\242\\346\\265qQf\\275I.\\021\\274\\311\\036\\201\\242\\346\\265n\\326\\246\\275M\\015!\\276L/o\\336\\327\\215\\313$\\330\\242\\373\\3533|c`\\241\\377\\000,L\\357\\367\\247\\006[P=\\253\\374j\\017\\250\\353\\265\\327\\330\\276\\305\\003\\361W'']\\261%\\002l\\341\\261!\\010\\212\\003\\005x\\331\\353\\357\\011\\200I\\330\\354(C\\241\\335\\373a\\252\\355\\006\\324\\330\\353\\273m\\2302.\\020\\214 \\000\\000\\233\\3243c\\267z\\011\\3046P\\330f\\303o\\033\\212$D\\223\\022\\212F!\\316\\361\\347\\320\\224/\\211!\\327+\\360\\233*\\014*9l"\\304\\3066h\\334tY_M\\300\\317\\357o\\204eA\\205G2g\\240\\230\\306\\315\\033r\\265+\\351\\252\\210\\362\\345\\264\\213\\023\\030\\324[\\212\\213+\\351\\275s?\\011\\267\\\\\\337\\302L\\2500\\247\\345\\260\\213\\023\\030\\331\\243q\\321e}1\\015!\\276s\\257o\\336\\326u\\265$\\312\\210\\215\\345\\264\\364\\023\\0275\\253\\212\\213+\\352\\177*\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271t\\273L}\\263lU\\322\\361b\\2332\\277.C6\\355j\\251>\\305z\\363=\\011\\200$4\\034\\015\\034Q\\203\\220\\336,\\253\\222\\3623\\304\\344\\312O\\034\\214\\201\\361:0\\216\\031#(\\373\\205:\\2413\\224\\226h\\3468\\232\\342\\242\\322\\344\\031x/\\023\\320\\226U\\343\\240h8qE\\015\\303de\\\\\\212\\364\\030E\\223\\003\\250h\\304\\034\\007\\243\\010\\341\\274YW\\334U\\225\\011\\234\\2332\\277.\\004\\326\\345j\\251>\\311u.\\226K8\\212\\015\\034g\\030f\\3602\\004\\223UX\\326\\011\\377\\000\\362\\304\\315\\377\\000{peJ\\351\\277hZ\\304vZ\\3739\\2471N\\307SWe\\251\\243F\\256\\215\\3324h\\321\\243\\377\\000M\\337M?M\\377\\000\\374\\001\\0177\\335\\001\\215G\\321\\244)\\357a\\257\\255\\266\\327\\324\\324}\\013\\212!\\243\\030&\\302-\\011\\332\\353\\355\\3346\\373\\370{@\\344z"\\374\\255B\\301\\300\\373\\203\\336\\327o\\005\\024<\\355\\242\\232\\346(\\006\\004g\\204\\243aQ;\\225N\\003\\023v\\331\\354\\037\\035:]\\246N\\3326(\\336\\304\\314\\337\\030\\304b\\2423\\223eo.\\004\\326\\355k\\201>\\335QT\\347s[\\024obfo\\214\\370\\232\\005hd\\347\\002D\\301\\303(]`9\\022\\341M9.]=6\\354\\256\\\\\\377\\000\\216\\257I\\352\\363%\\324\\272Y,\\342(4q\\234a\\233\\300\\310\\022MUc_.(\\336\\372\\314\\337\\031\\360\\030a\\247c\\0216\\200\\207\\256&0v\\334\\333\\277\\304\\235\\036\\335\\264\\012\\3000\\261\\203\\3541\\361\\377\\000g\\255\\265x\\206\\353m5\\335t\\353\\225\\373/\\257\\015\\367_WF\\237\\364\\332\\025\\357;\\377\\000\\340~\\331\\351\\325h\\332b\\213\\273F\\037c!1\\006\\3241\\021}\\327\\323\\264{\\331\\270\\201\\004N\\220\\367}G\\355M\\233\\333\\346\\256\\317WF\\333j\\230\\203{7\\015\\251\\215\\026\\333\\270\\352l"o\\202g\\215\\216\\323k\\266\\332\\352m6\\357\\272\\272\\272\\3325\\264\\352j\\354\\365u\\233\\024?}\\006_\\214d\\034\\203\\217BYW\\201\\206C\\020=\\0247\\015\\236\\232}\\337\\243\\364\\357c=y\\221d\\300\\352&\\016\\030\\216(\\3028o\\012i\\310\\257^dY\\316:\\206\\203\\201\\303\\212\\310\\216%\\305\\225r!\\0248B`\\356\\237\\243\\216\\371\\317\\371\\001\\335\\260\\363\\003N\\220\\210\\3748\\351\\036\\017\\211\\334"\\320w\\277\\327\\300|\\326\\027\\3035\\366z\\372\\273\\030\\273\\276\\246\\276\\267\\376(V\\337Q\\357N\\256\\301\\317Wi\\254\\355\\372\\270\\233g\\245?\\205G2G\\230\\224\\306\\315\\033r\\263+\\351\\251{\\025~d\\317@\\321q\\225\\326\\345jk\\324\\267\\350\\321\\243v\\226\\305\\023\\337Y\\231\\343\\031/aO\\313a\\350\\0321\\263F\\343\\242\\314\\372b\\345C\\\\\\347Y_\\275\\254\\353ju\\225\\021\\033\\313i\\350&.kW\\025\\026W\\324\\372\\031~ln\\206\\237\\233\\033\\241\\227\\346\\317\\227v\\375\\032tic=\\006\\021g8\\352&1\\030\\201\\353"8\\227\\012i\\367\\013\\217}e\\237\\223c\\305.\\026*J\\213\\230\\341\\233\\212\\213\\307\\220n\\227i\\217\\266l\\250R\\351d\\214H\\2411\\306N\\006l\\363 5+J\\215\\036*\\220\\316R4\\\\\\306\\023\\\\T^<\\203\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256M\\216g\\331?6\\3109\\007\\021gJP\\003\\014\\206 z\\320\\216%=4\\372\\274\\020q\\026K%\\001\\320\\310\\034\\007\\242\\210\\341\\2622\\257\\277\\253K \\364\\026F\\035ID\\0163\\030\\202k\\002H\\224\\364\\323\\342VP\\306\\002\\305>\\303\\005\\001\\273\\037\\272\\313\\261\\034\\325R\\017\\212\\252],\\223^W\\345\\310j\\201Z\\252O\\266\\030\\220\\007\\027\\344:[m\\266\\333\\035\\372\\372\\365&\\324\\014C\\2654\\357\\320\\357\\243{b\\242\\246\\014\\244\\313\\225\\372\\013Q%\\267Z\\252O\\267TU9\\334\\326\\302\\343\\337Yg\\344\\333\\025uDg&\\314\\257\\313\\2215\\273Z\\252O\\262]K\\245\\222\\316"\\203G\\031\\306\\031\\274\\014\\201$\\325V5\\325\\025Nw5\\260\\247T&r\\223\\315\\034\\307\\023\\\\tZ\\\\\\203\\031\\3500\\2139\\307Q1\\210\\304\\017Y\\021\\304\\270SO\\253\\310\\317\\023\\223)\\221\\252\\210\\261R5\\275\\005\\310\\232\\342\\242\\360g\\333\\024o}fo\\214eB\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\245\\312\\234\\355\\233%\\325DY#\\022(4N\\034bk<\\310\\015MU`\\277\\014Q\\275\\365\\231\\2763\\346T\\030Ts$z\\011\\214l\\321\\267+R\\336\\230\\2501W\\346L\\213\\023\\027\\031]nV\\245}I\\015.NK\\357\\177\\331W\\215\\313"\\335s\\177\\011\\267<\\235I?\\247+''.\\257O\\362_\\246\\014?\\230\\263%\\225\\021\\345\\314\\221\\350&1\\250\\266\\365jW\\3237\\267\\321\\261E\\367\\326gx\\306T\\030S\\362\\330E\\211\\214l\\321\\270\\350\\262\\276\\230\\206\\227''%\\367\\276\\340U\\343r\\3117#]I\\177\\250\\333\\333.\\357O\\361\\244\\275\\205?-\\247\\240h\\306\\315\\033\\216\\2133\\351\\230\\345}\\223\\363l\\227\\260\\250\\346L\\213\\015\\030\\331\\243nV\\246\\2751Q\\021\\274\\310\\221bb\\346\\265oV\\245}M\\015!\\276Lom\\343k\\306\\345\\222lQ}\\365\\231\\2761\\225\\006+\\034\\311\\221bb\\347+\\255\\312\\324\\257\\251\\340g\\367\\267\\3026(\\336\\372\\314\\337\\030\\311p\\362\\345\\264\\364\\015\\030\\324[\\212\\2135\\351\\235s?\\011\\267#}I?\\250\\313\\333.\\357O\\361\\255\\355\\277F\\355-\\212/\\276\\2437\\306|\\313\\301x\\236\\204\\262\\257\\035\\003A\\303\\212(n\\033#*\\344\\203\\012\\360\\301\\314\\253\\300\\340\\321\\2042\\262\\034\\211\\317M\\271b\\256\\227\\313\\024\\333\\225\\371r\\031\\267kUI\\366A\\3108\\213:R\\200\\030d1\\003\\326\\204q)\\351\\247\\325B\\227K$bE\\011\\2162p3g\\231\\001\\251ZTi\\015\\177r[\\333\\230\\317\\344[2F\\202\\335.\\323\\037l\\331\\007/\\023\\320\\351U\\340`h\\304qZ\\015\\304\\247\\246\\234\\261WT&rl\\312\\374\\270\\023[\\265\\252\\244\\373\\032\\006\\210\\230\\347\\035\\304\\306#(\\245dG\\022\\341M>\\232\\005hd\\347\\002D\\301\\303(]`9\\022\\341M9t\\274L\\235\\264b\\270\\255\\014\\223\\000Hh8\\033\\013\\243\\207!\\274YW&<\\222\\351b\\244\\250\\271\\214\\031\\270\\250\\274y\\006T*\\210\\315F''\\240\\230\\234''\\004\\326yp\\033\\225\\245AW\\221\\236''&Rx\\344d\\017\\211\\321\\204p\\311\\031G\\336\\250\\212s\\271\\214\\227R\\351d\\263\\210\\240\\321\\306q\\206o\\003 I5U\\215t\\273L}\\263b5.\\026)\\266\\267\\227\\001\\233v\\265\\300\\237lQ\\275\\365\\231\\2763\\341\\243O\\351\\372\\350b\\275y\\236\\204\\300\\022\\032\\016\\006\\216(\\301\\310o\\026U\\313\\252*\\234\\356kuES\\235\\315d\\272\\227K%\\234E\\006\\2163\\2143x\\031\\002I\\252\\254k\\344\\337\\273F\\235:\\177\\321\\214\\365\\346E\\223\\003\\250\\2308b8\\243\\010\\341\\274)\\247.\\250\\211\\217\\271\\215\\325\\0211\\3671\\272\\242&>\\3467TD\\307\\334\\306#U\\031b\\244\\253yr&\\270\\250\\274\\011\\366^\\0108\\364:Ux\\350d\\016\\003\\326\\203q)\\031W\\325B\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\012t\\274g&\\314\\321\\314`\\315\\273Z\\245\\3102\\360A\\307\\241\\322\\253\\307C p\\036\\264\\033\\211H\\312\\276\\341q\\357\\254\\263\\362m\\216g\\331?6\\330\\\\{\\023,\\374\\233/"\\274Ns$\\361\\3104\\037\\014\\254\\210\\342r2\\216Hc\\373m\\336\\274\\305\\377\\000\\035\\336r4&+\\215\\020\\311\\316\\004\\206\\214A\\261J\\300r%\\305\\225}\\351t\\247;f\\330S\\245\\34396f\\216c\\006m\\332\\325.A\\227\\202\\016=\\016\\225^:\\031\\003\\200\\365\\240\\334JFU\\365y\\025\\342s\\231''\\216A\\240\\370edG\\023\\221\\224r\\351v\\247;h\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSNF\\201\\242\\031&\\000\\2211\\210\\312)G\\016CxSO\\244j\\242,T\\215oAr&\\270\\250\\274\\031\\366\\305\\033\\337Y\\233\\343\\030\\3204C$\\300\\022&1\\031E(\\341\\310o\\012i\\367\\025\\205BX\\251,\\260\\313\\2215\\305E\\252O\\374\\370\\242\\373\\3523|ct2\\374\\330\\335\\014\\377\\0006\\267C/\\315\\214\\2500\\250\\345\\260\\213\\023\\030\\331\\243q\\321e}7\\003/\\275\\236\\021\\2677#]77\\250\\313\\3271l\\277\\361\\256\\271\\177\\204\\333\\256o\\341&K\\330Tr\\330z\\006\\214l\\321\\270\\350\\263^\\233\\216g\\331?6\\330\\\\\\373\\024,\\374\\233}\\031r!\\256s\\354\\255\\303k>\\332\\236d\\270F\\362\\332E\\206\\213\\232\\325\\305E\\232\\365.\\271\\277\\204\\333\\256_\\3416\\353\\233\\370I\\225\\021\\345\\313q\\026&1\\250\\267\\025\\026W\\323\\020\\322\\344\\347:\\366\\321d\\331\\366\\324\\223b\\213\\357\\254\\316\\361\\214\\250\\210\\336d\\210\\2611sZ\\267kR\\276\\244\\206\\220\\327&7\\267\\357k\\306\\345\\222lQ}\\365\\231\\3361\\261D\\366(f\\370\\306Chk\\234\\373\\333x\\332\\316\\266\\244\\233\\241\\227\\346\\337\\233\\024o}fo\\214e\\344g\\211\\311\\224\\2369\\031\\003\\342ta\\0342FQ\\367\\252"\\234\\356cuES\\235\\315lQ\\275\\211\\231\\2761\\2602\\373\\331\\341>\\011uQ\\031\\2538\\364\\014\\223\\207\\030\\232\\360.\\004\\223UX.*\\351x\\261M\\271_\\227!\\233v\\265T\\237\\370 \\345\\342z\\035*\\274\\014\\015\\030\\216+A\\270\\224\\364\\323\\2269\\177d\\374\\333\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256]QT\\347s[\\252*\\234\\356kuES\\235\\315n\\227i\\217\\266m\\322\\3552v\\321\\227\\221^\\030&Ux\\344\\032\\017\\206Q\\203\\220\\311\\031G$\\272\\250\\214\\325\\234z\\006I\\303\\214Mx\\027\\002I\\252\\254\\024\\214K\\245\\212m\\255\\345\\310f\\335\\255p''\\333\\024o}fo\\214n\\250\\252s\\271\\255\\325\\021Nw1\\215\\003DLs\\216\\342c\\021\\224R\\262#\\211p\\246\\237R\\352\\2423Vq\\350\\031''\\01615\\340\\\\\\011&\\252\\260U\\313\\375\\266\\254\\256\\\\\\377\\000\\216\\257I\\352\\363 \\303:4\\376\\237\\256\\206+\\327\\231\\350L\\001!\\240\\340h\\342\\214\\034\\206\\361e\\\\\\212\\343DLL\\016\\341\\203\\020lR\\214#\\206\\361e_z\\242)\\316\\3462]K\\245\\222\\316"\\203G\\031\\306\\031\\274\\014\\201$\\325V4\\203\\012\\360\\301\\314\\253\\300\\340\\321\\2042\\262\\034\\211\\317M\\271t\\273L\\235\\264n\\227i\\217\\266lh\\025\\241\\223\\234\\011\\023\\007\\014\\241u\\200\\344K\\2054\\344G%\\302\\3057V\\362\\3443n\\326\\270\\023\\354\\274\\027\\211\\350K*\\361\\3204\\0348\\242\\206\\341\\2622\\256X\\\\{\\353,\\374\\233\\036)t\\262RT\\\\\\306\\014\\334T^<\\203/"\\2740L\\252\\361\\3104\\037\\014\\243\\007!\\2222\\216]QT\\347s[\\012uBg)<\\321\\314a5\\305E\\245\\3102\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271\\025\\3500\\213&\\007P\\321\\2108\\017F\\021\\303x\\262\\257\\270\\253\\252\\02396e~\\\\\\011\\255\\312\\325R}\\272\\242\\251\\316\\346\\377\\000\\356\\177\\377\\304\\000>\\020\\000\\001\\002\\005\\001\\006\\003\\007\\003\\004\\000\\004\\007\\000\\000\\000\\002\\003\\023\\000\\001\\004\\021\\024\\025\\005\\022!"23\\020\\205\\324\\026 #4c\\224\\34415A$QabB`q\\202\\0060R\\201\\261\\263\\321\\377\\332\\000\\010\\001\\001\\000\\023?\\000\\377\\000\\2214\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\201\\262\\3754h\\033/\\323F\\201\\262\\3754h\\033/\\323F\\005-+/e\\271\\330H/v\\2024\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\201\\262\\3754h\\033/\\323F\\201\\262\\3757\\216\\223@\\273nP \\251\\363\\252\\201\\037\\0238a%\\333r\\275\\004\\217\\221Q \\235\\300\\316\\\\F0)iY{-\\316\\302A{\\264\\036\\356\\201\\262\\3754h\\033/\\323C\\011 \\343u\\365\\011\\007"B!+\\000\\004\\270\\0140\\222\\355\\271^\\202G\\310\\250\\220N\\340g.#\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\336\\367\\225\\322F:\\253\\266\\342\\240\\220r$$s\\271\\230K\\200\\316\\321\\240mOM\\032\\006\\324\\364\\321\\346\\224\\221\\367\\361\\253P \\343t\\010$|\\212\\256''+\\030F\\255@\\273nP.\\220r$\\271\\037\\0238\\300\\252\\252y\\226\\335\\354$v\\263\\241\\325\\031\\364\\26498\\364\\251R\\255\\360j\\225I`\\262\\310*\\034\\341\\030\\025T98\\365IU-\\361\\252\\222I\\020\\262(*|\\347\\031\\364\\265O3\\226\\357aS\\265\\235\\010\\322+\\327m\\304\\301P\\347I\\002\\011\\334\\014''\\300\\243>\\226\\273\\033"\\225ZT~\\015*\\252\\254wYt\\203\\220#\\002\\252\\225\\227\\261\\032\\357\\244\\027\\273G\\032\\275\\002\\0166\\251\\244|\\212\\256''+\\030\\034\\270\\214`UP\\344\\343\\325%T\\267\\306\\252I$B\\310\\240\\251\\363\\234k\\373/\\324\\306\\277\\262\\375Lg\\322\\327cdR\\253J\\217\\301\\245UU\\216\\353.\\220r\\004`UR\\262\\366#}\\364\\202\\367h\\343I\\257]\\267+\\327T9\\322@\\203\\240\\302<\\322\\222>\\3764\\212\\365\\333q0T9\\322@\\202w\\003\\011\\360(\\3206\\247\\246\\214\\012\\252V^q\\256\\372A{\\264}7\\217+\\244\\367\\274\\256\\222<\\316\\223\\307\\315)#\\357\\343_\\305y\\352T\\227\\355b\\235\\254\\355\\272\\2744\\234\\354\\214\\206>\\272[\\233\\254F&+\\317U*\\277k|\\355gwz\\247\\036YW\\341\\240e2\\315*Hwr\\202\\367j\\3751\\211\\224\\3135I/\\332\\337\\013\\335\\255\\336\\250\\322pq\\261\\330\\372\\312\\357\\357?\\036gW\\032\\006+\\317R\\252\\207w(\\355go\\323\\343\\211\\224\\3135I/\\332\\337\\013\\335\\255\\336\\250\\322pq\\261\\330\\372\\312\\357\\357?\\341\\346\\224\\221\\367\\361\\345\\224\\276\\037\\177\\036WI\\357y]$y\\245''\\217\\232RG\\337\\307\\225\\322F\\201\\262\\3754`R\\322\\262\\366[\\235\\204\\202\\367h#I\\240]\\267(\\020T\\371\\325@\\217\\211\\234y]_\\206\\223@\\273nP \\251\\363\\252\\201\\037\\0238\\322h\\020q\\272\\005\\325\\016t\\220\\023\\340a\\037a\\032E\\002\\355\\270\\251\\252|\\352\\240G;\\231\\234\\370\\2240\\222\\355\\271^\\202G\\310\\250\\220N\\340g.#\\032\\006\\313\\364\\321\\240l\\277M\\032M\\002\\0167@\\272\\241\\316\\222\\002|\\014#\\354<<\\322\\222>\\376<\\256\\223\\303\\357\\343\\312\\351=\\357+\\244\\215\\003jzh\\3206\\247\\246\\215\\003jzh\\322k\\320q\\272\\364\\025>uP\\020\\350\\003\\217\\277\\217+\\244\\214\\372Z\\354l\\212UiQ\\3704\\252\\252\\261\\335e\\322\\016@\\214\\012\\252V^q\\276\\372A{\\264}7\\215"\\275v\\334L\\025\\016t\\220 \\235\\300\\302|\\0125z\\005\\333qPH9\\022\\\\\\216w3\\011p\\030\\317\\245\\245e\\347\\033\\357\\252\\027\\273G\\323x\\300\\252\\256\\306\\310\\252V\\251\\037\\215J\\222\\250\\235\\321]#\\3448\\325\\350\\027m\\305A \\344Ir9\\334\\314%\\300bu\\364\\264\\254\\274\\343}\\365B\\367iN\\233\\303\\351.\\333\\211\\012\\241\\316\\221\\020N\\340a>\\005;G\\232RG\\337\\306\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\036iI\\023\\257\\245\\245e\\347\\033\\357\\252\\027\\273Jt\\336\\037Iv\\334HU\\016t\\210\\202w\\003\\011\\360)\\332<\\322\\2220*\\252\\236g-\\336\\302Gk:\\021\\240mOM\\032\\006\\324\\364\\321\\240mOM\\014*\\203\\215\\320 \\221\\362*"r\\261\\201\\313\\210\\373\\332\\006S,\\322\\244\\207w(/v\\257\\323\\036\\312~l{)\\371\\261\\354\\247\\346\\307\\262\\237\\233\\032N\\016>>G\\327W\\177y\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\363:X\\373\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\363:H\\325pq\\261\\362>\\202\\273\\373\\317\\306^S,\\322\\244\\207wp/v\\267\\272e\\032\\376S,\\325$\\277k\\024/v\\255\\325\\037\\177\\032\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\325$\\277k\\024/v\\255\\325\\032\\266\\0166>G\\320W\\177y\\370\\313\\312e\\232T\\220\\356\\356\\005\\356\\326\\367L\\243\\314\\351c\\357\\343@\\312e\\232T\\220\\356\\345\\005\\356\\325\\372c\\023)\\226j\\222_\\265\\276\\027\\273V\\352\\224{)\\371\\261\\354\\247\\346\\307\\262\\237\\233\\036\\312~l{)\\371\\277\\371\\030\\024\\265O3\\210\\337}#\\265\\2358a$\\034n\\276\\241 \\344HD%`\\000\\227\\001\\206\\022]\\267+\\320H\\371\\025\\022\\011\\334\\014\\345\\304c\\002\\226\\225\\227\\262\\334\\354$\\027\\273A\\341\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\037\\272fb1\\215\\363\\317\\267\\271\\224\\277n\\327\\337\\215\\003e\\372h\\310U\\007\\033T\\025\\016t\\210NV4\\302|\\012W\\215\\177jz\\230\\327\\366\\247\\251\\360\\300\\245\\252y\\227\\033\\357\\244v\\263\\247\\323\\014$\\203\\215\\327\\324$\\034\\211\\010\\204\\254\\000\\022\\340>\\031\\365T\\254\\275\\226\\347aP\\275\\332\\010}U\\333r\\201\\005O\\235R#\\235\\314\\316|J4\\212\\004\\034mPT9\\322@NV0\\011\\360(\\300\\245\\252y\\227\\033\\357\\244v\\263\\247\\323\\014$\\203\\215\\327\\324$\\034\\211\\010\\204\\254\\000\\022\\340>\\030\\024\\265O3\\210\\327}#\\265\\2358\\3206_\\246\\215&\\201\\007\\033\\240]P\\347I\\001>\\006\\021\\201KT\\3638\\215\\367\\322;Y\\323\\215\\003e\\372o{H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\360\\317\\245\\245e\\347\\033\\357\\252\\027\\273G\\323x}%\\333q!T9\\322"\\011\\334\\014''\\300\\247h\\3206\\247\\246\\214\\012\\252V^q\\276\\372A{\\264}7\\215"\\275v\\334L\\025\\016t\\220 \\235\\300\\302|\\012\\037I\\007\\033\\257AS\\347T\\204%`\\003\\237\\022\\214\\372Z\\247\\231\\313w\\260\\251\\332\\316\\204i\\025\\353\\266\\342`\\250s\\244\\201\\004\\356\\006\\023\\340^\\031\\364\\264\\254\\275\\210\\327}P\\275\\3328\\300\\252\\256\\306\\310\\252V\\251\\037\\215J\\222\\250\\235\\321]#\\3448aU\\333r\\202\\241 \\344HH\\347s0\\227\\001\\217\\332\\360\\362\\330\\306\\371\\346\\\\\\337\\304_\\242\\366\\334\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\215Z\\201v\\334\\240] \\344Ir>&q\\201UT\\363-\\271\\330H\\355gC\\252\\320\\302\\2508\\335\\002\\011\\037"\\242''+\\030\\034\\270\\214k\\373/\\324\\306}-S\\314\\345\\273\\330T\\355gB4\\212\\365\\333q0T9\\322@\\202w\\003\\011\\360(\\325\\350\\027m\\305A \\344Ir9\\334\\314%\\300c\\357\\343H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\360\\317\\245\\245e\\354F\\373\\352\\205\\356\\321\\303\\351.\\333\\211\\012\\241\\316\\221\\020N\\340a>\\005;{\\336YK\\030\\231L\\263J\\252\\375\\255\\360\\275\\332\\267T\\243\\366=;O\\373\\227\\\\\\317\\377\\000K5\\031yL\\263J\\222\\035\\335\\300\\275\\332\\336\\351\\224{)\\371\\261\\373\\036\\235\\247\\375\\313\\256g\\377\\000\\245\\232\\214\\274\\246Y\\245I\\016\\356\\340^\\355_\\246Q\\257\\3452\\315*\\253\\366\\261B\\367j\\335^\\032\\006S,\\322\\244\\207w(/v\\257\\323\\031x\\257=T\\222\\035\\335\\303\\265\\235\\336\\351\\234{W\\370Q\\245j\\230x\\237\\320\\374\\313\\310\\271\\277\\212\\347nV\\337\\264{)\\371\\261\\244\\340\\343\\343\\344}uw\\367\\237\\215\\003)\\226iRC\\273\\224\\027\\273W\\351\\214\\274W\\236\\252I\\016\\356\\341\\356\\331\\335\\356\\231\\306\\255\\235\\223\\220\\307\\321Ksu\\210\\3202\\231f\\251T;\\271A{\\265~\\230\\327\\362\\231f\\225U\\373X\\241{\\265n\\250\\325\\260q\\361\\330\\372\\012\\357\\357?\\032V\\251\\207\\211\\375\\007\\314\\276\\213\\233\\370\\256v\\345m\\373F&S,\\325$\\277k|/v\\255\\325\\032N\\0166>G\\327W\\177y\\370\\362\\312_\\037,\\244\\367\\274\\256\\222\\030Iv\\334H\\322>ED\\202w\\0039q\\031\\3320)iYy\\267;\\011\\005\\356\\322}W\\215Z\\275\\007\\033\\257] \\344Iq\\016\\200\\010\\3206_\\246\\214\\012ZV^m\\336\\302A{\\264\\035W\\360\\325\\353\\327m\\304\\315#\\344Ur\\011\\334\\014\\345\\304|4\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\005-\\016N=*\\265H\\374jT\\222X,\\262\\011\\037!\\306\\277\\265=Ld*\\273n*j\\237:\\244G;\\232\\205>%;F\\223@\\203\\215\\320.\\250s\\244\\200\\237\\003\\017\\015&\\201v\\334\\240AS\\347U\\002>&q\\346\\224\\221*\\372\\252V^\\313s\\260\\250^\\355\\004d*\\273n*j\\237:\\244G;\\232\\205>%;G\\225\\325\\307\\330F\\221@\\273n*j\\237:\\250\\021\\316\\346g>%\\014$\\273nW\\240\\221\\362*$\\023\\270\\031\\313\\210\\306\\005-+/e\\273\\330H/v\\2025z\\364\\034m0H9\\022\\\\BV\\000\\011p\\037\\037+\\244\\367\\274\\256\\222\\037I\\007\\033\\257AS\\347T\\204%`\\003\\237\\022\\214\\372Z\\247\\231\\313s\\260\\251\\332\\316\\207\\206:\\253\\266\\342\\240\\220r$$s\\271\\230K\\200\\316\\321\\240mOM\\032\\006\\324\\364\\336\\031\\364\\264\\254\\274\\343]\\365B\\367h\\372o\\030\\025U\\330\\331\\025J\\325#\\361\\251RU\\023\\272+\\244|\\207\\025{v\\201\\224?\\334\\332X\\316\\322\\377\\000\\0038J\\201\\204\\351\\216\\235\\376\\022\\261\\235\\356\\374Sl\\307\\023\\006i\\223C\\252v\\275\\332\\215\\034#G\\010\\250\\245\\232j(\\365J\\253\\316\\343)ZV\\232\\266\\202H\\345)K\\374\\316\\321\\237J\\203ob5g\\225\\013\\335\\243\\214\\012\\252\\354l\\212\\245j\\221\\370\\324\\251*\\211\\335\\025\\322>S\\206\\025]\\267(*\\022\\016D\\204\\216w3\\011p\\030\\375\\257\\017-\\214o\\235e\\315\\374U\\373w\\264`UWcdU+T\\217\\306\\245ITN\\350\\256\\221\\362\\034i5\\3508\\335z\\012\\237:\\250\\010t\\001\\370i5\\353\\266\\345z\\352\\207:H\\020t\\030F}-v6E*\\264\\250\\374\\032UUX\\356\\262\\351\\007 G\\355xylc|\\353.o\\342\\257\\333\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\275\\357,\\245\\214\\274W\\236\\252I\\016\\356\\341\\332\\316\\357t\\3165l\\354\\214\\214\\217\\240\\226\\346\\353\\036\\030\\231L\\263T\\222\\375\\255\\360\\275\\332\\267T\\243\\331O\\315\\217e?7\\303\\357\\343\\313)`\\177Q\\336\\234\\245y\\177\\231^%.\\022\\200\\225\\347\\270\\230L\\247i\\177\\322P\\023\\231H%)\\011\\247;\\317\\214\\356''i\\317\\205\\347+\\312V\\205''a\\001\\224\\2579\\316s\\376%(\\254I\\261\\252I`\\231\\246\\252r\\375d%)^[\\322\\224\\355i\\333\\303\\376\\020\\231^E\\273/\\342S\\230\\336\\337\\336s\\237\\363\\032\\006S,\\322\\244\\207w(/v\\257\\323\\341\\252\\340\\343c\\344}\\005w\\367\\237\\214\\274\\246Y\\245I\\016\\356\\340^\\355ot\\312=\\224\\374\\330\\322pq\\361\\330\\372\\352\\357\\357?\\032\\006S,\\325*\\207w(/v\\257\\323\\030\\231L\\263T\\222\\375\\255\\360\\275\\332\\335\\352\\225\\257\\037\\261\\351\\332\\177\\334\\272\\346w\\372Y\\250\\322\\265Le\\344\\\\\\337\\305s\\2666\\337\\267\\275\\253\\327\\240\\343i\\202A\\310\\222\\342\\022\\260\\000K\\200\\306\\005-\\016N=*\\265H\\374jT\\222X,\\262\\011\\037!\\307\\356\\231\\230\\214c|\\363\\315\\356e\\257\\333\\265\\367\\341\\204\\220q\\272\\372\\204\\203\\221!\\020\\225\\200\\002\\\\\\006\\030Iv\\334\\257A#\\344TH''p3\\227\\021\\214\\012ZV^\\313s\\260\\220^\\355\\004i4\\013\\266\\345\\002\\012\\237:\\250\\021\\3613\\207\\325A\\306\\350*\\025\\016t\\210NV0\\011\\360(\\317\\252\\252y\\227\\033\\357\\252v\\263\\247\\323h\\362\\272H\\377\\000\\276^\\024\\345)c&`I\\344.W\\226\\342r\\234\\347o\\344\\247+\\014\\247;\\333j=\\2763\\012t\\322\\267''\\361\\310S\\275\\347\\372\\313\\204\\255;\\354\\335\\262\\242\\257 %\\274iI\\023@JR=\\335\\311\\363[ve\\306/''RN\\232F J\\207\\352$sP\\347+\\376\\240\\337\\207\\375\\305\\032E\\002\\355\\271@\\202\\247\\316\\252\\004}g\\032\\376\\324\\3651\\257\\355OS\\032\\376\\324\\3651\\240l\\277M\\037\\265\\341\\345\\277\\223\\362,9\\277\\212\\207r\\366\\334\\214\\205Wm\\305MS\\347T\\210\\347sP\\247\\304\\247h\\3206_\\246\\217\\332\\360\\362\\337\\311\\371\\026\\034\\337\\305C\\271{nFB\\253\\266\\342\\246\\251\\363\\252Ds\\271\\250S\\342S\\267\\275\\244W\\256\\333\\211\\202\\241\\316\\222\\004\\023\\270\\030O\\201C\\012\\256\\333\\224\\025\\011\\007"BG;\\231\\204\\270\\014`UR\\262\\363\\215\\367\\322\\013\\335\\243\\351\\274y]$g\\322\\327cdR\\253J\\217\\301\\245UU\\216\\353.\\220r\\004h\\033S\\323F:\\2508\\332\\246\\221\\362*"r\\261\\246R\\3422\\215\\003jzh\\375\\257\\017-\\214o\\236a\\315\\374U\\373w\\266\\344>\\222\\355\\270\\220\\252\\034\\351\\021\\004\\356\\006\\023\\340S\\267\\202t"\\232(\\244g1Et\\252$\\251M@rh\\244R0\\011\\335K\\3326j\\226e\\032\\245j\\022\\246*\\215\\331\\335\\212di\\206d\\234\\247\\2733^\\345\\011^h\\323+J\\324\\222\\250M9\\334F\\357\\024\\212R\\224\\244V\\031\\316*~gh,\\252dF\\252\\0253\\233\\237\\017\\227\\216\\365\\256V\\265\\242\\224d2\\332\\2738Jr_x8_y!x/\\322V\\264\\345\\306\\364\\0336\\242\\260\\225BV\\271\\374 .\\034\\303\\015\\032{\\363\\025\\014K\\224\\345"\\3411\\234\\277H\\325\\350\\020q\\272\\004\\022>EW\\023\\340`~\\037\\177\\036WI\\032\\376\\313\\3651\\237KT\\3639nv\\025;Y\\320\\215Z\\201\\007\\033\\240A#\\344Uq9X\\303\\303\\002\\252\\251\\346r\\334\\354$v\\263\\241\\014*\\203\\215\\320 \\221\\362*"r\\261\\201\\313\\210\\373\\332\\006S,\\322\\244\\207w(/v\\257\\323\\341\\253`\\343c\\344}\\025w\\367\\237\\215+T\\303\\304\\376\\203\\346^E\\315\\374W;cm\\373F&S,\\325$\\277k|/v\\255\\325\\036\\312~lbb\\274\\365R\\253\\366\\267\\317v\\316\\333\\252q\\211\\224\\3134\\252\\257\\332\\337\\013\\335\\255\\336\\251F\\223\\203\\217\\217\\221\\365\\325\\337\\336~<\\262\\227\\300?\\212\\244\\012\\236\\261\\037\\376\\203\\212\\000\\011\\021$i\\2476I5\\004\\304\\303\\226S\\261Js\\224\\370\\312p\\270\\200,T\\223\\031\\246\\224\\303\\2314\\024\\275\\367\\344\\011\\014\\245!.k\\225\\356\\235bL\\2403"\\335H\\226\\020zam\\331\\314\\035\\267\\031\\217L\\002\\222\\232k#0\\2307!\\227\\031\\312r\\237\\3519K\\204RY:\\312\\345\\022:\\272i\\021\\324*[\\251!0\\244RG)\\011L\\255\\024\\225d\\222j''\\220m\\246\\361''9\\362\\201\\215\\313r=\\253\\374(\\3201^z\\251$;\\271Gk;~\\230\\373\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\313\\305y\\352\\244\\220\\356\\356\\036\\355\\235\\336\\351\\234{W\\370Q\\355_\\341F\\201\\212\\363\\325I!\\335\\312;Y\\333\\364\\306\\223\\235\\221\\221\\221\\365\\322\\334\\335b11^z\\225%\\373[\\347k;n\\251\\373\\332M\\002\\355\\271@\\202\\247\\316\\252\\004|L\\343_\\332\\236\\2463\\352\\252\\236g\\021\\256\\372\\247k:q\\244P.\\333\\212\\232\\247\\316\\252\\004s\\271\\231\\317\\211C\\011.\\333\\225\\350$|\\212\\211\\004\\356\\006r\\3421\\201KJ\\313\\331nv\\022\\013\\335\\240\\215&\\201v\\334\\240AS\\347U\\002>&q\\253\\327\\256\\333\\211\\232G\\310\\252\\344\\023\\270\\031\\313\\210\\306\\005-S\\314\\3425\\337H\\355gN3\\352\\250rq\\352\\225\\245G\\340\\322\\252\\222!dPH9\\003\\301\\315\\323U5i\\327H\\3442\\377\\000\\212\\322=\\371\\313\\377\\000H^%\\372G\\367\\215\\217\\263W\\251\\247\\234\\204\\267HNI\\310\\3113\\003\\221\\204\\344_\\256\\346\\364(\\211\\2439\\332v\\237)\\214\\212\\\\e\\374\\312\\020\\342\\342\\013VMm\\371\\312R\\236\\350&\\013)r\\234\\345y\\251iC\\312"\\350o\\316v\\337L\\204\\245\\306_\\304\\345\\032\\376\\323\\3651\\346\\224\\221\\201KT\\363.5\\337H\\355gO\\246\\321\\240l\\277M\\036iI\\343\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\037\\272fb1\\215\\363\\3177\\271\\224\\277n\\327\\337\\214\\372\\252\\034\\234z\\245iQ\\3704\\252\\244\\210Y\\024\\022\\016@\\367\\274\\256\\223\\302T\\025UO2\\333\\235\\204\\216\\326t:\\255\\030\\352\\240\\343j\\232G\\310\\250\\211\\312\\306\\231K\\210\\312\\030Uv\\334\\240\\250H9\\022\\0229\\334\\314%\\300c\\366\\274<\\2661\\276y\\2277\\361\\027\\350\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\243V\\240]\\267(\\027H9\\022\\\\\\217\\211\\237\\216u5N\\372A+\\034\\356\\212\\207h\\336\\340\\231\\230\\356\\221J_\\246\\366\\355\\306S\\376$E\\004\\022\\237\\377\\000\\220I\\316S\\377\\000\\346\\021\\262\\364u'';\\\\\\316\\235In\\310\\371er\\011\\204\\347\\306\\363\\212a\\222`gn$!2\\234\\306S\\376\\327\\235\\277\\274N\\234AY\\246\\222i&\\0032\\227\\022\\224\\267Jr\\217\\355;\\316v\\237\\376\\323\\224\\343\\312\\351#V\\240]\\267(\\027H9\\022\\\\\\217\\211\\237\\206\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\032Ez\\0166\\231\\252|\\352\\240!+\\000\\034\\370\\224`UU<\\313nv\\022;Y\\320\\352\\215\\003jzh\\322k\\320q\\272\\364\\025>uP\\020\\350\\003\\360\\322k\\327m\\312\\365\\325\\016t\\220 \\3500\\367\\274\\262\\2265\\374\\246Y\\245U~\\326(^\\355[\\252>\\3025\\374W\\236\\252U~\\326)\\332\\316\\333\\25212\\231f\\225U\\373[\\341{\\265n\\250\\375\\217N\\323\\376\\345\\3273\\277\\322\\315F\\225\\252a\\342\\177A\\363/"\\346\\376+\\235\\271[~\\336\\032\\266\\0166;\\037A]\\375\\347\\343\\332\\277\\302\\212_\\374C*\\225\\033\\377\\000\\011\\225(H\\347\\3767\\345\\033F\\222\\2415R\\377\\000[L\\006\\032^*\\021Sq=\\343\\020\\033\\332\\177\\311\\020\\312\\031Z)\\320R`\\246\\341\\220\\025\\257?\\340\\204\\245\\011\\323\\034\\347)\\377\\000~3\\265\\377\\000\\353\\013J\\307P|9\\247\\302_\\332_\\304\\277IJR\\224\\245\\032\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\322\\252\\277k\\024/v\\255\\325\\341\\345\\224\\221\\240b\\274\\365*\\250wr\\216\\326v\\3751\\244\\347dd1\\365\\322\\334\\335b11^z\\225%\\373[\\347k;\\273\\3258\\366S\\363c\\331O\\315\\217e?7\\336\\325\\353\\320q\\264\\301 \\344Iq\\011X\\000%\\300c\\312\\352\\343>\\252\\225\\227\\233w\\260\\250^\\355\\007U\\343_\\332\\236\\2463\\352\\253\\261\\262*\\222\\245[\\340\\325*\\252''tWT9\\3020)iYy\\267;\\011\\005\\356\\320u^4\\212\\005\\333qST\\371\\325@\\216w39\\361/\\017\\260\\215Z\\275\\007\\033\\257] \\344Iq\\016\\200\\010\\325\\253\\327m\\312\\364\\022>EW \\3503\\360\\325\\353\\220q\\272\\365\\322\\016D\\226\\020\\225\\200#\\002\\232\\205\\374zU\\252\\221\\370\\324\\311\\246\\250Yd\\022.\\007\\023\\257\\251\\252y\\234F\\273\\312\\035\\254\\351\\307\\231\\325x`R\\325<\\316#]\\364\\216\\326t\\343@\\331~\\232<\\256\\2560)j\\236g\\021\\256\\372Gk:q\\237UC\\223\\217T\\255*?\\006\\225T\\221\\013"\\202A\\310\\021\\240l\\277M\\030\\024\\264\\254\\275\\226\\357a \\275\\332\\010\\325\\353\\320q\\264\\301 \\344Iq\\011X\\000%\\300a\\204\\227m\\312\\364\\022>ED\\202w\\0039q\\030\\300\\245\\245e\\354\\267;\\011\\005\\356\\320F\\223@\\273nP \\251\\363\\252\\201\\037\\023?{H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\2174\\244\\217\\277\\360\\307Uv\\334T\\022\\016D\\204\\216w3\\011p\\031\\332?k\\303\\313c\\033\\347\\231s\\177\\025~\\335\\355\\271\\030\\025U\\330\\331\\025J\\325#\\361\\251RU\\023\\272+\\244|\\207\\341\\237KJ\\313\\330\\215\\367\\325\\013\\335\\243\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\360\\373\\370\\362\\272H\\300\\252\\241\\311\\307\\252J\\251o\\215T\\222H\\205\\221AS\\3478\\375\\3233\\021\\374\\237\\221y\\275\\314\\244;\\226\\276\\374h\\033S\\323F}-v6E*\\264\\250\\374\\032UUX\\356\\262\\351\\007 G\\355xylc|\\353.o\\342\\257\\333\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\243\\035U\\333qPH9\\022\\0229\\334\\314%\\300gh\\235\\005U+/8\\337} \\275\\332>\\233\\307\\225\\322F\\005U\\016N=RUK|j\\244\\222D,\\212\\012\\2379\\306\\275\\263=L`UWcdU+T\\217\\306\\245ITN\\350\\256\\221\\362\\037\\217\\225\\322{\\332\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\325$\\277k\\024/v\\255\\325\\032\\266\\0166>G\\321W\\177y\\370\\366\\257\\360\\243U\\3250\\361?\\256\\371fQs\\177\\025\\276\\344\\255\\277x\\375\\217N\\323\\376\\345\\3273\\277\\322\\315F^S,\\322\\244\\207wp/v\\267\\272e\\343\\345\\224\\221\\240b\\274\\365RHwr\\216\\326v\\3751\\252\\340\\343c\\344}\\025w\\367\\237\\215+T\\303\\304\\376\\203\\346^E\\315\\374W;r\\266\\375\\243@\\305y\\352UP\\356\\345\\035\\254\\355\\372c\\354#@\\312e\\232\\245P\\356\\345\\005\\356\\325\\372c\\023)\\226j\\222_\\265\\276\\027\\273V\\352\\215''\\007\\037\\037#\\353\\253\\277\\274\\374ye,k\\371L\\263T\\222\\375\\254P\\275\\332\\267T}\\374y]$e\\342\\274\\365*\\250ww\\016\\326w{\\246q\\355_\\341F\\225\\252a\\342\\177A\\363/"\\346\\376+\\235\\271[~\\336>YK\\357i4\\013\\266\\345\\002\\012\\237:\\250\\021\\3613\\207\\325A\\306\\350*\\025\\016t\\210NV0\\011\\360(\\317\\252\\252y\\234F\\373\\352\\235\\254\\351\\306\\255^\\203\\215\\327\\256\\220r$\\270\\207@\\004g\\325WcdU%J\\267\\301\\252UTN\\350\\256\\250s\\204~\\327\\207\\226\\376O\\310\\262\\346\\376*\\035\\313\\3325\\375\\251\\352cI\\240A\\306\\350\\027T9\\322@O\\201\\204`R\\325<\\316#}\\364\\216\\326t\\341\\204\\220q\\264\\205 \\344HD%`L%\\300ex\\310U\\007\\033T\\025\\016t\\210NV4\\302|\\012W\\215\\177jz\\230\\310Uv\\334T\\325>uH\\216w5\\012|Jv\\360\\317\\252\\245e\\346\\335\\354*\\027\\273A\\325x\\300\\245\\256\\306\\310\\245J\\251o\\215T\\222\\253\\035\\326]S\\3478a%\\333r\\275\\004\\217\\221Q \\235\\300\\316\\\\F4\\015\\227\\351\\243>\\252\\207''\\036\\251ZT~\\015*\\251"\\026E\\004\\203\\220#_\\332\\236\\2463\\352\\252\\236e\\306\\273\\352\\235\\254\\351\\364\\307\\225\\322x\\351\\024\\013\\266\\342\\246\\251\\363\\252\\201\\034\\356fs\\342Q\\240l\\277M\\032\\006\\313\\364\\321\\237UC\\223\\217T\\255*?\\006\\225T\\221\\013"\\202A\\310\\036\\366\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\032\\006\\324\\364\\321\\240mOM\\032\\006\\324\\364\\321\\240mOM\\030\\025T\\254\\274\\343]\\364\\202\\367h\\372o\\032\\265\\002\\0167@\\202G\\310\\252\\342r\\261\\204`UP\\344\\343\\325%T\\267\\306\\252I$B\\310\\240\\251\\363\\234g\\322\\325<\\316[\\235\\205N\\326t#V\\240A\\306\\350\\020H\\371\\025\\\\NV0\\217+\\253\\217\\260\\2174\\253\\207\\322A\\306\\353\\320T\\371\\325!\\011X\\000\\347\\304\\243\\367L\\314G\\362~E\\366\\3672\\220\\356Z\\373\\361\\216\\252\\0166\\251\\244|\\212\\210\\234\\254i\\224\\270\\214\\243_\\331~\\2463\\351j\\236g-\\316\\302\\247k:\\021\\253P \\343t\\010$|\\212\\256''+\\030C\\351 \\343u\\350*|\\352\\220\\204\\254\\000s\\342Q\\257\\354\\277S\\017\\244\\273n$*\\207:DA;\\201\\204\\370\\024\\355\\030\\352\\256\\333\\212\\202A\\310\\220\\221\\316\\346a.\\003;D\\350*\\251Yy\\306\\373\\351\\005\\356\\321\\364\\336<\\256\\2221\\325]\\267\\025\\004\\203\\221!#\\235\\314\\302\\\\\\006v\\211\\320UR\\262\\366#}\\364\\202\\367h\\375\\377\\000,\\245\\217e?6=\\224\\374\\330\\366S\\363c@\\305y\\352\\244\\220\\356\\345\\035\\254\\355\\372c\\357\\3744\\255/3/\\372\\037\\231yf\\3672\\234\\355\\224{W\\370Q\\355_\\341F\\201\\212\\363\\324\\252\\241\\335\\312;Y\\333\\364\\307\\330G\\231\\325\\370i9\\331\\031\\014}t\\2677X\\214LW\\236\\252U~\\326\\371\\356\\331\\333uN=\\253\\374(\\366\\257\\360\\243\\332\\277\\302\\214\\274W\\236\\252I\\016\\356\\341\\332\\316\\357t\\3165\\\\\\354\\234\\214\\217\\240\\226\\346\\353\\021\\345\\224\\221\\211\\224\\3135I/\\332\\337\\015\\353\\265n\\251F\\225\\203\\215\\217\\221\\365\\325\\337\\336~<\\262\\222<\\316\\2264\\254\\354\\234\\214\\217\\254\\226\\346\\353\\021\\354\\247\\346\\373\\336WI\\014$\\273nW\\240\\221\\362*$\\023\\270\\031\\313\\210\\306\\201\\262\\3754h\\033/\\323G\\232RG\\337\\370`R\\320\\344\\343\\322\\253T\\217\\306\\245I%\\202\\313 \\221\\362\\034g\\325U<\\316#]\\365N\\326t\\3744\\232\\004\\034n\\201uC\\235$\\004\\370\\030G\\330F\\221@\\273n*j\\237:\\250\\021\\316\\346g>%\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\321\\257\\355OS\\032\\376\\324\\3650\\372\\253\\266\\345\\002\\012\\237:\\244G;\\231\\234\\370\\224`R\\320\\344\\343\\322\\253T\\217\\306\\245I%\\202\\313 \\221\\362\\034g\\325U<\\313\\215w\\325;Y\\323\\351\\264y]$h\\033/\\323F\\201\\262\\37540\\222\\0166\\220\\244\\034\\211\\010\\204\\254\\011\\204\\270\\014\\257\\030\\024\\26498\\364\\252\\325#\\361\\251RI`\\262\\310$|\\207\\037\\272fb1\\215\\363\\3177\\271\\226\\277n\\327\\337\\206\\022A\\306\\353\\352\\022\\016D\\204BV\\000\\011p\\037{\\312\\351#\\315)<|\\322\\222>\\3765j\\004\\034n\\201\\004\\217\\221U\\304\\345c\\010\\363JO\\015&\\275v\\334\\257]P\\347I\\002\\016\\203\\010aU\\333r\\202\\241 \\344HH\\347s0\\227\\001\\211\\320UR\\262\\353\\215\\367\\322\\013\\335\\243\\351\\274i\\025\\353\\266\\342`\\250s\\244\\201\\004\\356\\006\\023\\340Q\\253P.\\333\\224\\013\\244\\034\\211.G\\304\\316>\\303\\301\\205Wm\\312\\012\\204\\203\\221!#\\235\\314\\302\\\\\\006?k\\303\\313c\\033\\347\\231s\\177\\021~\\335\\355\\271\\017\\244\\273nW\\324*\\034\\351\\021\\004\\356\\006\\023\\340Q\\345uq*\\012\\252\\247\\231m\\316\\302Gk:\\237U\\243\\035T\\034mSH\\371\\025\\0219X\\323)q\\031F\\255@\\273nP.\\220r$\\271\\037\\0238\\317\\245\\245e\\354F\\373\\352\\205\\356\\321\\306\\005Uv6ER\\265H\\374jT\\225D\\356\\212\\351\\037!\\307\\232RD\\353\\351iYy\\306\\373\\352\\205\\356\\322\\2357\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\367\\274\\256\\22212\\231f\\251%\\373[\\341\\275v\\255\\325(\\366S\\363c\\331O\\315\\2173\\245\\217\\277\\360\\327\\362\\231f\\251%\\373X\\241{\\265n\\257\\015\\003)\\226j\\225C\\273\\224\\027\\273W\\351\\214L\\246Y\\245U~\\326\\370^\\355n\\365J4\\254\\034l|\\217\\256\\256\\376\\363\\361\\345\\224\\221\\355_\\341F\\253\\235\\223\\220\\307\\320Ksu\\217\\015\\003\\025\\347\\252\\222C\\273\\224v\\263\\267\\351\\217\\277\\360\\362\\272\\270\\373\\010\\327\\361^z\\251U\\373X\\247k;n\\257\\035\\003)\\226iRC\\273\\224\\027\\273W\\351\\215WT\\303\\304\\376\\277\\345\\231E\\315\\374V\\373\\222\\266\\375\\343I\\301\\307\\307\\310\\372\\312\\357\\357?\\032\\006S,\\322\\244\\207w(/v\\257\\323\\357y]$h\\033/\\323F\\201\\262\\3754h\\033/\\323F\\221@\\203\\215\\252\\012\\207:H\\011\\312\\306\\001>\\005\\037\\177\\356i\\024\\013\\266\\342\\246\\251\\363\\252\\201\\034\\356fs\\342P\\302K\\266\\342F\\221\\362*$\\023\\270\\031\\313\\210\\316\\321\\240l\\317M\\031\\365T98\\365J\\322\\243\\360iUI\\020\\262($\\034\\201\\017\\252\\203\\215\\320T*\\034\\351\\020\\234\\254`\\023\\340Q\\257\\355OS\\032\\376\\324\\3651\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\023\\257\\252\\252y\\227\\033\\357\\252v\\263\\247\\323h\\322h\\027m\\312\\004\\025>uP#\\342g\\036WW\\031\\365T\\254\\274\\333\\235\\205B\\367h:\\257\\017\\252\\273nP \\251\\363\\252Ds\\271\\231\\317\\211F\\201\\262\\3754`R\\322\\262\\366[\\235\\204\\202\\367h#I\\240]\\267(\\020T\\371\\325@\\217\\211\\234j\\365\\353\\266\\342f\\221\\362*\\271\\004\\356\\006r\\3421\\201KT\\3638\\215w\\322;Y\\323\\215\\003e\\372o\\371\\237\\377\\304\\000*\\021\\000\\001\\003\\003\\002\\005\\004\\002\\003\\000\\000\\000\\000\\000\\000\\000\\001\\000\\002\\003\\004\\005\\021\\006!\\022\\0231@Q\\020\\024"A2\\200\\026$B\\377\\332\\000\\010\\001\\002\\001\\001?\\000\\375\\232\\007>\\203p\\206A\\357\\245\\220F2T3\\211z)$\\021\\214\\225\\014\\302^\\235\\356\\335\\025\\336\\262*jw\\361\\356U\\267V\\262\\337\\027*f\\365U\\372\\245\\265t\\216\\345FA+L\\201\\354\\203\\270\\262\\343\\351\\370\\367Gg\\247T\\226\\316B\\243\\202:\\332\\242\\3717\\307\\322\\275Z\\250\\337;\\036\\346c\\013\\330R\\032Q\\037\\000\\003\\012\\331V\\353U\\321\\360\\003\\226\\022\\271\\340\\014\\224\\307\\207\\216\\350\\214\\253\\354\\202\\000\\307\\370GSU\\321\\327\\020\\303\\262\\236\\360+\\242\\314\\262\\340\\2515|\\320\\216@9\\036T\\267h^\\033#\\177/+\\334>\\261\\214\\204\\177\\245L\\013X"?]\\326p\\026\\247g\\364\\336\\357\\012B\\343!*\\234\\021&$\\033*\\273#$9\\245\\361\\366\\244\\202JiC\\036\\254%\\262S\\302\\343\\364\\027F\\343\\272\\350r\\025\\306\\334\\333\\2238\\034vRh(\\016x^\\237\\240e\\316Y"\\376;[\\024|\\271\\007\\022\\250\\322W\\016o\\034L\\300VZSKB\\326;\\252\\306q\\335\\017\\216\\305`\\215\\302\\371,\\037+\\207\\354\\204x_\\262\\331\\277\\000\\272~\\335\\377\\000\\377\\304\\000%\\021\\000\\001\\004\\001\\004\\001\\004\\003\\000\\000\\000\\000\\000\\000\\000\\000\\001\\000\\002\\003\\004\\021\\005\\022!@2\\020"A\\200\\024Ba\\377\\332\\000\\010\\001\\003\\001\\001?\\000\\373v\\326\\2477\\011\\2419\\270\\356\\362\\252@\\371^$\\370Ri\\337\\220w\\205\\006\\236\\030\\375\\305\\312\\376\\335\\374\\017@{ML\\213r\\230IR=\\241T\\2651a\\010J\\367\\277 \\2535\\2375m\\305\\2500\\242;C\\311Q?\\252\\265\\030\\270\\334\\025\\0353_\\305U\\245\\030p|\\241_\\271M\\364\\004,\\034\\246\\342"\\364}\\335\\257\\225\\247sd5\\017\\342w\\011\\266\\234\\337k\\302k\\204\\215\\341Z\\341\\317C\\201\\332\\306T\\023\\030\\216Bn\\262\\360\\233\\255\\037\\220\\205\\370\\363\\225\\036\\251\\020n\\025\\271w\\277!\\036[\\332j\\306J\\300\\\\.\\020!y!\\366\\357\\377\\331', '1', '2022-03-16 21:51:33', '1', '2022-03-16 21:51:33', 0); -INSERT INTO "public"."infra_file_content" ("id", "config_id", "path", "content", "creator", "create_time", "updater", "update_time", "deleted") VALUES (2, 4, 'e34bbc550bb8491bb64f804d71048799.jpg', E'\\377\\330\\377\\340\\000\\020JFIF\\000\\001\\001\\000\\000\\001\\000\\001\\000\\000\\377\\333\\000C\\000\\003\\002\\002\\003\\002\\002\\003\\003\\003\\003\\004\\003\\003\\004\\005\\010\\005\\005\\004\\004\\005\\012\\007\\007\\006\\010\\014\\012\\014\\014\\013\\012\\013\\013\\015\\016\\022\\020\\015\\016\\021\\016\\013\\013\\020\\026\\020\\021\\023\\024\\025\\025\\025\\014\\017\\027\\030\\026\\024\\030\\022\\024\\025\\024\\377\\333\\000C\\001\\003\\004\\004\\005\\004\\005\\011\\005\\005\\011\\024\\015\\013\\015\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\377\\302\\000\\021\\010\\001\\002\\001\\002\\003\\001\\021\\000\\002\\021\\001\\003\\021\\001\\377\\304\\000\\036\\000\\000\\003\\001\\001\\001\\001\\001\\001\\001\\001\\000\\000\\000\\000\\000\\000\\000\\010\\011\\007\\001\\006\\012\\002\\004\\005\\003\\377\\304\\000\\034\\001\\001\\000\\002\\003\\001\\001\\001\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\001\\005\\002\\004\\006\\007\\003\\010\\377\\332\\000\\014\\003\\001\\000\\002\\020\\003\\020\\000\\000\\000\\252`\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\007\\000\\000\\000\\000\\000\\350\\034:p\\350\\000\\034\\003\\240p\\000\\000\\350\\000\\034$\\001\\200\\200\\000\\377\\000\\013\\371\\200\\200\\027\\370\\341 \\007\\370\\300\\012\\002\\000\\004\\001\\002\\276\\001 \\300\\000\\013\\374\\000\\007\\010\\004]\\003\\0038\\002\\252y@)A+\\306\\234\\015\\374\\233 `\\005&\\020 5`7\\363~\\025Q\\323<\\261\\252\\021`\\277\\300\\000p\\200ES \\020\\027\\364UMP\\240\\002\\250j\\244X/\\340\\200\\015Q\\026J\\246e\\003\\376t\\312H\\262*\\205\\375\\025QV\\025R\\251\\212\\261\\177\\200\\000\\341\\000\\212\\246@ /\\350\\252\\212\\260\\017\\360\\277\\230\\011\\177I\\000\\007\\253\\022\\322\\322\\222\\014\\015\\370\\365d\\254/\\350\\252\\212\\260\\252\\225LU\\213\\374\\000\\007\\010\\004U0\\003\\001<\\240\\252\\232\\261T\\017*E\\243\\312\\225@\\233''\\225<\\261s\\305Tt\\317,E\\223\\313\\027<@G\\370\\016\\222\\010\\372''\\000\\003\\204\\377\\0002\\303\\207@j\\014\\250\\325\\205T\\325\\015X\\225\\246V5&\\246j\\202\\260eFVZaU5A\\252\\020\\023\\240p\\012\\252\\000\\000\\000O\\343\\177\\003\\000(\\011\\344I\\262*\\245\\32003\\204\\0025r\\347\\237;%\\0000\\000<\\251s\\306\\010\\237\\342\\002o\\303\\000 %\\376\\000\\003\\362/\\347\\316\\311\\253\\236X\\271\\346\\246yP0\\003\\177\\030"\\177\\234&\\310\\351\\023h~\\212PC\\003\\324\\217\\351\\277\\221ht\\207L`\\211\\374Hc\\351\\350\\000\\016\\020\\010\\312\\307\\364@\\307\\364\\340\\201\\225@\\177\\304\\000j\\204\\004\\351\\301\\2512\\241\\252"\\321\\252\\0159\\252\\212\\270\\376\\231I+\\213\\374p\\200E\\376\\000\\003\\204\\00203\\324\\224\\240J\\214\\260\\312\\017\\242a\\201$\\001\\345\\307\\370\\337\\011ZW\\362@\\016\\250\\201\\025\\350\\205\\343T%\\205\\2450\\003\\177\\030#\\204\\002/\\360\\000\\034 \\021_\\014\\000\\240''\\22103\\204\\0025r\\250\\010yO\\317\\006f\\260\\350\\360b\\322\\263!\\007\\354\\233#\\246jg\\227$\\001_\\314\\000\\324\\311\\264}=\\000\\001\\302\\001\\026\\234\\312\\206\\260\\312\\004\\004\\351*\\312\\246*\\305\\361?\\244\\377\\0003\\343\\226]\\204\\353\\277X\\314\\376M[g\\037\\362\\304L\\213\\003Vec\\372*\\306\\252U\\001\\002:U@\\000?"\\376M\\223S\\03500\\003\\000\\025\\202\\347\\221d\\276P\\376\\244c\\264\\033\\331\\357\\227_\\177\\322\\333_\\322\\365\\225\\373\\347]W\\374\\011\\221\\362u@\\011X5E&!x\\325\\024\\230\\365\\300\\000~E\\374\\213E\\317"\\311\\253\\017\\361\\276\\030\\020\\252\\223h\\2501,\\305\\026\\336S[\\275\\353\\251s\\367\\335mvG\\345\\375+)\\354\\234\\217\\240\\373\\304\\262\\313\\031\\256U1V\\001\\376\\027\\362k\\224\\000\\300\\017\\242p\\0008O\\362,\\015X\\324\\217\\350\\200\\217\\361\\001KJJ\\321\\307\\206\\371\\310\\333y\\277\\035\\355\\274m\\325?\\277\\254\\334\\361\\377\\000\\037A\\377\\000''\\325|]\\204\\354j\\023\\355\\254r\\303S5A\\252\\020\\0202\\303*2\\263\\351D\\000\\016\\022\\000uD\\010\\300\\013J`\\006\\000?\\306\\000\\007\\207Cy\\306\\332\\376\\177.\\372\\011\\365\\214_\\254\\257\\324\\371\\215\\345S\\364\\277\\021C{*L\\032A\\026ML\\252d\\002\\003\\351\\350\\233&\\246P\\020\\0008@"\\377\\000\\031A\\352H\\014:D\\332\\037\\242\\277\\235\\020\\361\\306\\245\\331\\377\\000/\\316\\356\\177\\222\\263c0\\336\\303\\326q\\266_\\305\\356\\234\\226\\313\\320\\351\\301C\\177+\\370\\277\\001\\352\\214\\260\\300I\\000W\\362\\224\\200\\001\\302\\001\\017\\351\\226\\031X\\253\\017\\340\\025PU\\005\\\\\\377\\000\\264\\313Y\\030\\177\\246\\313K\\305\\232Liq?\\353D\\376\\376\\220\\224\\300\\037\\362\\001\\217\\351\\252\\021l\\177N\\035*\\240\\000\\037\\221\\177$\\031i\\314\\254\\312I^z\\243\\350\\234\\225g\\253\\002@\\225\\354]\\017\\356\\036\\341\\246\\020\\361\\006\\001\\3768 C\\372o\\340`\\006\\000X\\000\\000?"\\376yaV*\\241\\344I\\262je\\001''\\361!\\217"U1V\\037\\323,\\032\\221\\00252m\\037I\\207\\225"\\310\\376\\210\\020\\376\\224\\004\\341\\000\\213\\374\\000\\007\\011\\376+\\006V5\\000p@\\317\\245\\003\\204\\0035c+\\032\\203S2\\263,*\\211\\225\\022\\264\\325\\215PUL\\260\\177\\016\\225L\\010\\004_\\340\\0008H\\001X7\\363\\177=A\\226\\015H\\225\\033\\371!\\217\\244\\303\\0037\\303\\327\\0319+\\312LH1\\3755cT"\\300\\252\\235\\030\\003\\324\\200\\376\\224\\004\\000\\017\\310\\277\\236X\\000\\015P\\232\\306\\376t_\\314\\004jF\\250\\365"XRr\\027\\217\\360\\277\\217\\361 \\314\\014\\372L<\\251\\026K\\240HR\\177\\237U\\000\\000p\\200CT\\000ef\\250U2V\\034\\003T2\\261\\252\\032\\241T5Q\\0028\\003\\374eD\\255-9\\225\\022\\264\\252d\\255\\032\\202\\252\\200\\001\\302\\001\\025\\360\\220`U1V*\\241\\025\\300\\237\\345(=X\\226\\236\\244\\000\\252gI\\004o\\345P"\\310\\001\\201\\216\\221\\251\\216\\230\\301\\000\\001\\302\\001\\025L\\200@_\\321U<\\240\\352\\220\\010\\257\\342\\002\\\\\\363\\312\\210\\011\\352\\311X0#\\244:d\\203-1\\352\\211Z0\\007\\015X\\213''\\226>\\236\\200\\000\\341\\000\\213N 5B\\252UB,\\023\\374\\240\\002\\254ZRV\\215H\\253\\212\\241@\\015P\\252d\\002\\032\\243+-9\\301\\0002\\301\\2472\\262\\200\\200\\001\\302\\001\\000\\001\\345\\207L\\252\\207\\312\\271\\321\\2002\\303|\\037\\322l\\225\\364\\341\\276\\236T\\232\\346\\002Zb\\030\\036\\244\\177\\205\\374\\177\\214\\000@\\213\\374\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\007\\377\\304\\000B\\020\\000\\000\\003\\006\\002\\011\\002\\005\\003\\003\\002\\003\\011\\000\\000\\000\\006\\007\\010\\000\\004\\005\\024\\025\\026\\011\\027\\001\\002\\003\\021\\023\\030\\031W\\205%8\\020 !Gg\\022&''()FAu"7901BPQ`ac\\203\\377\\332\\000\\010\\001\\001\\000\\001\\022\\000\\377\\000\\310\\367\\266\\366\\336\\333\\333{om\\355\\275\\267\\266\\377\\000\\216\\377\\000\\206\\215:4\\374\\273\\333\\365h\\370\\376\\255\\015\\275\\267\\266\\366\\337\\363/\\005\\342z\\022\\312\\274t\\015\\007\\016(\\241\\270l\\214\\253\\227TU9\\334\\326\\352\\212\\247;\\232\\335QT\\347s[\\252*\\234\\356kaN\\250L\\345''\\2329\\214&\\270\\250\\264\\271\\006^\\013\\304\\364%\\225x\\350\\032\\016\\034QCp\\331\\031W.\\250\\252s\\271\\255\\325\\025Nw5\\272\\242\\251\\316\\346\\374W\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\311y\\031\\342re''\\216F@\\370\\235\\030G\\014\\221\\224}\\302\\231P\\231\\312K43\\030MqQir\\037/TU9\\334\\326\\352\\210\\247;\\230\\3100\\317\\023\\234\\311<\\0162\\030D\\353"8\\234\\364\\333\\352\\3623\\304\\344\\312O\\034\\214\\201\\361:0\\216\\031#(\\373\\325\\021Nw1\\272\\242\\251\\316\\346\\267TU9\\334\\326\\352\\212\\247;\\232\\335QT\\347s~lQ\\275\\365\\231\\2761\\215\\003D2L\\001"c\\021\\224R\\216\\034\\206\\360\\246\\237z\\242&>\\345\\267TD\\307\\334\\306\\305\\033\\330\\231\\233\\343\\033\\003/\\275\\236\\021\\227\\202\\016=\\016\\225^:\\031\\003\\200\\365\\240\\334JFU\\365\\007 \\343\\320\\226U\\340a\\220\\304\\017E\\015\\303g\\246\\237O\\025FX\\246\\352.c\\011\\255\\332\\327\\036A\\225\\012]3Vq\\350&8\\311\\300\\315\\340\\\\\\011%iQ\\245B\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\012\\204\\274g&\\314\\321\\314p\\315\\271Z\\245\\3101\\236\\274\\310\\262`u\\023\\007\\014G\\024a\\0347\\2054\\344\\227R\\351\\232\\214O@\\311\\306q\\206l\\362\\34075U\\215b\\254\\250\\013\\025''\\225\\371p&\\270\\250\\265I\\366+\\320a\\350s\\201!\\243\\020h\\036\\262\\034\\211qe_U\\012\\242,\\226q\\024&''\\011\\3015\\340d\\011%iP^\\227Js\\266m\\322\\351Nv\\315\\222\\352]3Q\\211\\350\\0318\\3160\\315\\236\\\\\\006\\346\\252\\261\\254U\\325\\011b\\244\\362\\277.D\\327\\025\\026\\251>\\3109x\\221d\\262P\\003\\003F#\\212(\\216\\033=4\\345\\2127\\26137\\3066\\006_{<#\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSN]Q\\023\\037s\\030\\215TE\\212\\222\\255\\345\\300\\232\\342\\242\\360''\\333\\024o}fo\\214\\371\\261F\\367\\326f\\370\\306\\305\\033\\330\\241\\233\\343>8\\243{\\0233|c`g\\367\\263\\3022\\240\\305_\\226\\303\\320L\\\\eu\\307E\\225\\365/\\243.D7\\316u\\223\\270mg[S\\254\\227\\010\\336[H\\260\\321sZ\\270\\250\\263^\\247\\205\\317\\276\\242\\317\\311\\266\\355\\033\\231PaQ\\314\\221\\350&1\\263F\\334\\255Kzb\\242#y\\222"\\304\\305\\315j\\335\\255J\\372\\232\\344C|\\230Y;\\306\\267\\215\\313:\\330\\\\\\373\\024,\\374\\233%\\334)\\371l=\\003F6h\\334tY\\237L\\321\\273s}\\031Q\\021\\274\\311\\021bb\\346\\265n\\326\\245}Mr\\241\\276L,\\235\\343k\\306\\345\\235\\370b\\215\\354L\\315\\361\\215\\201\\237\\336\\317\\010\\330\\242\\373\\3523|g\\303\\003?\\275\\236\\021\\261F\\367\\326f\\370\\317\\233\\024o}fo\\214lQ\\275\\211\\231\\2763\\343\\2127\\26137\\3066\\006\\177{<#b\\215\\357\\254\\315\\361\\215\\325\\025Nw5\\260\\247T&r\\223\\315\\034\\306\\023\\\\TZ\\\\\\203/\\005\\342z\\022\\312\\274t\\015\\007\\016(\\241\\270l\\214\\253\\226\\027\\036\\372\\313?&\\337\\367\\352\\262\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271 \\345\\342z\\035*\\274\\014\\015\\030\\216+A\\270\\224\\364\\323\\2269\\177d\\374\\333\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256K\\310\\317\\023\\223)\\331\\374\\010\\325Df\\246\\332\\336\\\\\\211\\255\\332\\327\\002}\\220a\\236''9\\222x\\034d0\\211\\326Dq9\\351\\267\\326\\302\\231/\\026*O4s\\0303qQir\\014\\274\\212\\360\\3012\\253\\307 \\320|2\\214\\034\\206H\\3129\\031\\353\\314\\3649\\300\\2210p\\310qY\\016D\\270SNDj\\2433\\223uo.D\\326\\355k\\203>\\3100\\317\\023\\234\\311<\\0162\\030D\\353"8\\234\\364\\333\\353b\\260\\250\\214\\344\\331\\225\\371r&\\267kUI\\366\\352\\212\\247;\\232\\3109x\\236\\207J\\257\\003\\003F#\\212\\320n%=4\\345\\212\\272\\2413\\223fW\\345\\310\\232\\335\\255U''\\333\\252*\\234\\356o\\313\\277v\\215:t\\377\\000\\243\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSNLF\\245\\3235H\\326\\362\\3443qQx\\023\\354h\\025\\302b`w\\023\\007\\014\\241\\224a\\0347\\2054\\345\\325\\0211\\3671\\210\\325HX\\251\\032\\336\\\\\\211\\256*/\\002}\\214\\365\\346E\\223\\003\\250\\2308b8\\243\\010\\341\\274)\\247%\\344W\\211\\316d\\2369\\006\\203\\341\\225\\221\\034NFQ\\313\\012t\\276f\\246\\314\\321\\314`\\315\\273Z\\245\\310i3\\327\\231\\026L\\016\\242`\\341\\210\\342\\214#\\206\\360\\246\\234\\233\\025t\\272g),\\257\\313\\220\\315\\305E\\252O\\262]TE\\2221"\\203D\\341\\306&\\263\\314\\200\\324\\325V\\012\\203\\014\\360\\3012\\253\\300\\343!\\204N\\214\\034\\206OM\\276\\256_\\356Ger\\347\\374\\211e\\317W\\230\\320+\\204\\304\\300\\356&\\016\\031C(\\3028o\\012i\\311\\007 \\343\\320\\226U\\340a\\220\\304\\017E\\015\\303g\\246\\237O\\025DY&\\332.c\\011\\255\\332\\327\\036A\\227\\221\\236\\0309\\225x\\344d\\017\\211\\326C\\221)\\031G\\336\\227Js\\266m\\205:^3\\223^h\\3468f\\334\\255R\\344\\030\\317^dY0:\\211\\203\\206#\\2120\\216\\033\\302\\232r3\\320a\\350L\\001"c\\021\\220\\036\\214\\034\\206\\360\\246\\237p4\\373\\333\\341\\030\\317^dY0:\\211\\203\\206#\\2120\\216\\033\\302\\232rlV\\022\\361\\234\\244\\262\\303.C7\\025\\026\\251>\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSN_.(\\276\\372\\214\\337\\030\\311p\\215\\346H\\364\\015\\0275\\253v\\2655\\352_L\\030?1fK*#\\313\\231#\\320LcQm\\332\\324\\257\\246\\3642\\374\\330\\337\\364_\\374\\305\\231,\\250\\217.d\\217A1\\215E\\267k2\\276\\230\\227\\261W\\346L\\364\\015\\0279]nV\\246}Ov\\217\\322\\312\\203\\012\\216d\\217A1\\215\\2326\\345j[\\323\\025\\021\\345\\313i\\026&1\\250\\267\\025\\026W\\323:\\345~\\023nF\\272\\222\\177Q\\227\\266]^\\237\\343]\\014\\2776\\262\\032C\\\\\\230\\336\\337\\275\\257\\033\\226I\\225\\006\\025\\034\\311\\236\\202c\\0334m\\312\\324\\257\\246\\252#\\313\\226\\322,LcQn*,\\257\\246\\2565\\313\\316}\\223\\373*\\316\\266\\247Y/aO\\314\\231\\026\\0321\\263F\\335\\255L\\372b^\\305_\\2313\\3204\\\\eu\\271Z\\232\\365%\\312\\27191\\262\\177e^7,\\353r3\\324\\223\\372\\214\\275\\262\\356\\364\\377\\000\\032TDo2$X\\230\\271\\255[\\325\\251_SC(k\\223\\013\\333\\367\\255\\341r\\310\\266(\\276\\372\\214\\337\\031\\360\\335\\241\\261E\\367\\326gx\\317\\233\\024o}fo\\214b\\270\\321\\023\\023\\003\\270`\\304\\033\\024\\243\\010\\341\\274YW\\323\\305Q\\231\\252F\\213\\230\\302k\\212\\213\\307\\220d\\034\\203\\210\\263\\245(\\001\\206C\\020=hG\\022\\236\\232}\\352\\212\\247;\\232\\307\\222\\2433\\224\\235\\0271\\304\\327\\035\\027\\217!\\360+\\320a\\026L\\016\\241\\243\\020p\\036\\214#\\206\\361e_wh\\321\\253\\271\\227\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\311.\\252#5g\\036\\201\\222p\\343\\023^\\005\\300\\222j\\253\\005\\351v\\230\\373h\\305qZ\\031&\\000\\220\\320p6\\027G\\016Cx\\262\\256H9x\\236\\207J\\257\\003\\003F#\\212\\320n%=4\\345\\273\\351\\271\\227\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\313\\024obfo\\214l)\\222\\361b\\244\\263C1\\2037\\025\\026\\227 \\305qZ\\031&\\000\\220\\320p6\\027G\\016Cx\\262\\256X\\\\{\\353,\\374\\233c\\227\\366O\\315\\261^\\274\\317B`\\011\\015\\007\\003G\\024`\\3447\\213*\\344\\274\\214\\36192\\223\\307# |N\\214#\\206H\\312>\\341N\\250\\014\\325''\\2329\\214&\\270\\250\\264\\271\\015\\006z\\014"\\316q\\324Lb1\\003\\326Dq.\\024\\323\\357\\303\\024o}fo\\214\\371\\261F\\367\\326f\\370\\306^Ex\\234\\346I\\343\\220h>\\031Y\\021\\304\\344e\\034\\260\\246K\\306rm\\315\\014\\306\\014\\333\\265\\252\\\\\\207\\300\\3204C$\\300\\022&1\\031E(\\341\\310o\\012i\\367\\252"c\\356[uDL}\\314\\370\\021\\211t\\316RU\\274\\270\\014\\334T^\\004\\373%\\325DY#\\022(4N\\034bk<\\310\\015MU`\\260|,\\024\\253\\374M\\331\\323n\\004v\\205l6\\332\\377\\000\\243]\\365\\014"\\367Dn\\342,\\324\\2745\\305\\217\\342\\031)\\306Q\\330`\\006\\024y\\316#0\\337\\307\\021\\2503\\344b_\\365\\270\\364O\\005\\3674B\\335\\023\\301\\235\\316\\020\\262p''\\\\\\023\\231.\\035.\\334"/\\221\\227H4\\307\\015\\373m\\023ww\\331k\\3556\\272v\\233=\\236\\256\\215\\372\\332\\370\\250&c%Ml\\212\\335r\\314;s\\352B*s\\272R\\352\\241,\\221\\211\\022\\031''\\01615\\236c\\206\\246\\252\\260T\\030g\\206\\011\\225^\\007\\031\\014"t`\\3442zm\\365r\\350\\352Ier\\347\\374\\211e\\317W\\231.\\252"\\311\\030\\221A\\242p\\343\\023Y\\346@jj\\253\\005^\\013\\304\\213:R\\200\\350\\032\\016\\034V\\204q)\\031W-\\314\\203\\227\\211\\026K%\\00004b8\\242\\210\\341\\263\\323NIu.\\231\\250\\304\\364\\014\\234g\\030f\\317.\\003sUX\\322\\345\\376\\344\\266W.\\177\\310\\226\\\\\\365y\\215\\002\\270LL\\016\\342`\\341\\2242\\214#\\206\\360\\246\\234\\276\\\\Q}\\365\\031\\2761\\225\\021\\345\\313q\\026&1\\250\\267\\025\\026W\\323\\020\\322\\344\\347:\\366\\375\\225g[R?\\005DF\\363$E\\011\\213\\232\\325\\275Z\\225\\365>\\206\\177\\233[\\241\\237\\346\\337\\206\\006\\177{<#b\\213\\357\\250\\315\\361\\214\\377\\000\\372\\265\\335v\\232\\232\\232\\372vz\\332\\332uvz5\\366;-M\\206\\317F\\317g\\253\\243SSWF\\355\\032\\242\\210\\373\\270P5\\025\\215=~\\251X{\\256\\325\\357j\\311\\224\\357\\212\\035\\241\\241\\003\\304v\\013\\250\\036\\215\\301\\342\\373hk\\313\\203\\343\\356\\302\\036\\351\\267yy\\332\\352l6\\033\\035M;M\\246\\324\\240Pp#\\224H/\\203\\301\\235_\\266\\033@\\356\\321\\337F\\266\\333s:;j\\303\\236\\037uvzt\\350\\330\\353i\\325\\333h\\331\\252\\014*9\\223<\\304\\3066h\\333\\225\\251_L\\372\\262\\032\\\\\\234\\230\\336\\333\\301W\\215\\313$\\312\\210\\362\\346H\\364\\023\\030\\324[z\\265+\\351\\235\\014\\27762\\344C\\\\\\230\\331_\\275o\\033\\226u\\222\\366\\024\\374\\311\\021a\\243\\0334m\\312\\324\\327\\246*"7\\231",L\\\\\\326\\255\\352\\324\\257\\251\\377\\000\\321\\207\\363\\026d\\267#]I\\177\\250\\333\\333.\\357O\\361\\257\\223v\\375\\032tic=\\006\\021g8\\352&1\\030\\201\\353"8\\227\\012i\\365.\\252#5g\\036\\201\\222p\\343\\023^\\005\\300\\222j\\253\\005\\\\\\277\\333j\\312\\345\\317\\370\\352\\364\\236\\2572\\0143\\304\\3472O\\003\\214\\206\\021:\\310\\216''=6\\372\\274\\214\\36192\\223\\307# |N\\214#\\206H\\312>\\341N\\250L\\345%\\2329\\216&\\270\\250\\264\\271\\006^\\013\\304\\364%\\225x\\350\\032\\016\\034QCp\\331\\031W$\\030W\\206\\016e^\\007\\006\\214!\\225\\220\\344Nzm\\310\\215K\\245\\222m\\255\\345\\310f\\335\\255p''\\333\\024o}fo\\214g\\255?O\\377\\000M\\233o\\3721\\3766r\\330\\006\\242`\\227-\\216\\326"%\\217\\303^\\035\\366.\\2607\\261\\320*:#{\\015\\350\\016\\355\\335\\342\\373}\\216\\335\\205\\003a\\331\\211\\010\\265#\\241\\310+\\2049\\357i\\263\\250\\304\\023|.\\026\\370#\\035\\212\\335\\366\\273-H\\214E\\347a\\017\\333\\271ng\\257\\246\\321\\347O\\377\\000V\\315\\227r\\362=\\011eZ9\\007\\003G\\024`\\3346FU\\313\\245\\332c\\355\\233t\\273L}\\263n\\227i\\217\\266m\\325\\025Nw5\\220\\316\\236\\244\\267\\2671\\177\\310\\226\\\\\\215\\011\\212\\342\\2642L\\001!\\240\\340l.\\216\\034\\206\\361e\\\\\\272\\242\\251\\316\\346\\262\\031\\323\\324\\226\\366\\346/\\371\\022\\313\\221\\2411\\\\V\\206I\\200$4\\034\\015\\205\\321\\303\\220\\336,\\253\\227\\311\\277v\\215:t\\377\\000\\243\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSNH0\\317\\014\\023*\\274\\0162\\030D\\350\\301\\310d\\364\\333\\351\\032\\250\\213%#[\\313\\2215\\305E\\340O\\266(\\336\\372\\314\\337\\030\\311u.\\231\\250\\304\\364\\014\\234g\\030f\\317.\\003sUX\\327TD\\307\\334\\266+\\215\\020\\311\\316\\004\\206\\214A\\261J\\300r%\\305\\225}\\352\\210\\230\\373\\230\\313\\233ORK+\\227?\\344K.z\\272\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSNX)}\\012\\363;\\375\\351\\301\\240G\\210\\350$il F\\024\\263\\243\\273\\336\\323\\364\\351\\331\\005\\204\\033\\023T\\307y\\177z\\200?\\215a\\021\\207\\347\\027\\347\\247c\\376\\032\\346ED\\236,m\\236\\2443R \\034\\210\\277m!\\201\\302\\244\\033\\037}\\025@v\\300=\\274/e\\017\\330;k\\273\\215\\341c8\\2748\\276\\015\\232\\016\\217\\033\\343\\220\\215\\226\\207\\230\\233\\014\\224X(\\004\\361\\002v\\212\\275\\277k\\274\\306\\234\\347\\334\\266@\\261\\364\\010\\315\\016j\\010CO\\325(;\\336\\246\\355\\213\\312\\355A\\247\\241\\322\\253\\207#\\020h\\036\\262\\033\\211H\\312\\276\\266\\006\\177{<#b\\215\\357\\254\\315\\361\\215\\322\\351Nv\\315\\260\\247K\\306rl\\315\\034\\306\\014\\333\\265\\252\\\\\\203/\\004\\034z\\035*\\274t2\\007\\001\\353A\\270\\224\\214\\253\\353aL\\250K\\024\\331\\2329\\214&\\267kT\\271\\006^Fx`\\346U\\343\\221\\220>''Y\\016D\\244e\\037~UA\\205G2G\\240\\230\\306\\315\\033r\\265-\\351\\237VCK\\227\\223\\013\\337\\366M\\343r\\3117#]I?\\250\\333\\333.\\357O\\361\\245DF\\363"E\\211\\213\\232\\325\\275Z\\225\\365>\\206\\277\\233Y.\\021\\274\\266\\221a\\242\\346\\265qQf\\275I.\\021\\274\\311\\036\\201\\242\\346\\265n\\326\\246\\275M\\015!\\276L/o\\336\\327\\215\\313$\\330\\242\\373\\3533|c`\\241\\377\\000,L\\357\\367\\247\\006[P=\\253\\374j\\017\\250\\353\\265\\327\\330\\276\\305\\003\\361W'']\\261%\\002l\\341\\261!\\010\\212\\003\\005x\\331\\353\\357\\011\\200I\\330\\354(C\\241\\335\\373a\\252\\355\\006\\324\\330\\353\\273m\\2302.\\020\\214 \\000\\000\\233\\3243c\\267z\\011\\3046P\\330f\\303o\\033\\212$D\\223\\022\\212F!\\316\\361\\347\\320\\224/\\211!\\327+\\360\\233*\\014*9l"\\304\\3066h\\334tY_M\\300\\317\\357o\\204eA\\205G2g\\240\\230\\306\\315\\033r\\265+\\351\\252\\210\\362\\345\\264\\213\\023\\030\\324[\\212\\213+\\351\\275s?\\011\\267\\\\\\337\\302L\\2500\\247\\345\\260\\213\\023\\030\\331\\243q\\321e}1\\015!\\276s\\257o\\336\\326u\\265$\\312\\210\\215\\345\\264\\364\\023\\0275\\253\\212\\213+\\352\\177*\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271t\\273L}\\263lU\\322\\361b\\2332\\277.C6\\355j\\251>\\305z\\363=\\011\\200$4\\034\\015\\034Q\\203\\220\\336,\\253\\222\\3623\\304\\344\\312O\\034\\214\\201\\361:0\\216\\031#(\\373\\205:\\2413\\224\\226h\\3468\\232\\342\\242\\322\\344\\031x/\\023\\320\\226U\\343\\240h8qE\\015\\303de\\\\\\212\\364\\030E\\223\\003\\250h\\304\\034\\007\\243\\010\\341\\274YW\\334U\\225\\011\\234\\2332\\277.\\004\\326\\345j\\251>\\311u.\\226K8\\212\\015\\034g\\030f\\3602\\004\\223UX\\326\\011\\377\\000\\362\\304\\315\\377\\000{peJ\\351\\277hZ\\304vZ\\3739\\2471N\\307SWe\\251\\243F\\256\\215\\3324h\\321\\243\\377\\000M\\337M?M\\377\\000\\374\\001\\0177\\335\\001\\215G\\321\\244)\\357a\\257\\255\\266\\327\\324\\324}\\013\\212!\\243\\030&\\302-\\011\\332\\353\\355\\3346\\373\\370{@\\344z"\\374\\255B\\301\\300\\373\\203\\336\\327o\\005\\024<\\355\\242\\232\\346(\\006\\004g\\204\\243aQ;\\225N\\003\\023v\\331\\354\\037\\035:]\\246N\\3326(\\336\\304\\314\\337\\030\\304b\\2423\\223eo.\\004\\326\\355k\\201>\\335QT\\347s[\\024obfo\\214\\370\\232\\005hd\\347\\002D\\301\\303(]`9\\022\\341M9.]=6\\354\\256\\\\\\377\\000\\216\\257I\\352\\363%\\324\\272Y,\\342(4q\\234a\\233\\300\\310\\022MUc_.(\\336\\372\\314\\337\\031\\360\\030a\\247c\\0216\\200\\207\\256&0v\\334\\333\\277\\304\\235\\036\\335\\264\\012\\3000\\261\\203\\3541\\361\\377\\000g\\255\\265x\\206\\353m5\\335t\\353\\225\\373/\\257\\015\\367_WF\\237\\364\\332\\025\\357;\\377\\000\\340~\\331\\351\\325h\\332b\\213\\273F\\037c!1\\006\\3241\\021}\\327\\323\\264{\\331\\270\\201\\004N\\220\\367}G\\355M\\233\\333\\346\\256\\317WF\\333j\\230\\203{7\\015\\251\\215\\026\\333\\270\\352l"o\\202g\\215\\216\\323k\\266\\332\\352m6\\357\\272\\272\\272\\3325\\264\\352j\\354\\365u\\233\\024?}\\006_\\214d\\034\\203\\217BYW\\201\\206C\\020=\\0247\\015\\236\\232}\\337\\243\\364\\357c=y\\221d\\300\\352&\\016\\030\\216(\\3028o\\012i\\310\\257^dY\\316:\\206\\203\\201\\303\\212\\310\\216%\\305\\225r!\\0248B`\\356\\237\\243\\216\\371\\317\\371\\001\\335\\260\\363\\003N\\220\\210\\3748\\351\\036\\017\\211\\334"\\320w\\277\\327\\300|\\326\\027\\3035\\366z\\372\\273\\030\\273\\276\\246\\276\\267\\376(V\\337Q\\357N\\256\\301\\317Wi\\254\\355\\372\\270\\233g\\245?\\205G2G\\230\\224\\306\\315\\033r\\263+\\351\\251{\\025~d\\317@\\321q\\225\\326\\345jk\\324\\267\\350\\321\\243v\\226\\305\\023\\337Y\\231\\343\\031/aO\\313a\\350\\0321\\263F\\343\\242\\314\\372b\\345C\\\\\\347Y_\\275\\254\\353ju\\225\\021\\033\\313i\\350&.kW\\025\\026W\\324\\372\\031~ln\\206\\237\\233\\033\\241\\227\\346\\317\\227v\\375\\032tic=\\006\\021g8\\352&1\\030\\201\\353"8\\227\\012i\\367\\013\\217}e\\237\\223c\\305.\\026*J\\213\\230\\341\\233\\212\\213\\307\\220n\\227i\\217\\266l\\250R\\351d\\214H\\2411\\306N\\006l\\363 5+J\\215\\036*\\220\\316R4\\\\\\306\\023\\\\T^<\\203\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256M\\216g\\331?6\\3109\\007\\021gJP\\003\\014\\206 z\\320\\216%=4\\372\\274\\020q\\026K%\\001\\320\\310\\034\\007\\242\\210\\341\\2622\\257\\277\\253K \\364\\026F\\035ID\\0163\\030\\202k\\002H\\224\\364\\323\\342VP\\306\\002\\305>\\303\\005\\001\\273\\037\\272\\313\\261\\034\\325R\\017\\212\\252],\\223^W\\345\\310j\\201Z\\252O\\266\\030\\220\\007\\027\\344:[m\\266\\333\\035\\372\\372\\365&\\324\\014C\\2654\\357\\320\\357\\243{b\\242\\246\\014\\244\\313\\225\\372\\013Q%\\267Z\\252O\\267TU9\\334\\326\\302\\343\\337Yg\\344\\333\\025uDg&\\314\\257\\313\\2215\\273Z\\252O\\262]K\\245\\222\\316"\\203G\\031\\306\\031\\274\\014\\201$\\325V5\\325\\025Nw5\\260\\247T&r\\223\\315\\034\\307\\023\\\\tZ\\\\\\203\\031\\3500\\2139\\307Q1\\210\\304\\017Y\\021\\304\\270SO\\253\\310\\317\\023\\223)\\221\\252\\210\\261R5\\275\\005\\310\\232\\342\\242\\360g\\333\\024o}fo\\214eB\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\245\\312\\234\\355\\233%\\325DY#\\022(4N\\034bk<\\310\\015MU`\\277\\014Q\\275\\365\\231\\2763\\346T\\030Ts$z\\011\\214l\\321\\267+R\\336\\230\\2501W\\346L\\213\\023\\027\\031]nV\\245}I\\015.NK\\357\\177\\331W\\215\\313"\\335s\\177\\011\\267<\\235I?\\247+''.\\257O\\362_\\246\\014?\\230\\263%\\225\\021\\345\\314\\221\\350&1\\250\\266\\365jW\\3237\\267\\321\\261E\\367\\326gx\\306T\\030S\\362\\330E\\211\\214l\\321\\270\\350\\262\\276\\230\\206\\227''%\\367\\276\\340U\\343r\\3117#]I\\177\\250\\333\\333.\\357O\\361\\244\\275\\205?-\\247\\240h\\306\\315\\033\\216\\2133\\351\\230\\345}\\223\\363l\\227\\260\\250\\346L\\213\\015\\030\\331\\243nV\\246\\2751Q\\021\\274\\310\\221bb\\346\\265oV\\245}M\\015!\\276Lom\\343k\\306\\345\\222lQ}\\365\\231\\2761\\225\\006+\\034\\311\\221bb\\347+\\255\\312\\324\\257\\251\\340g\\367\\267\\3026(\\336\\372\\314\\337\\030\\311p\\362\\345\\264\\364\\015\\030\\324[\\212\\2135\\351\\235s?\\011\\267#}I?\\250\\313\\333.\\357O\\361\\255\\355\\277F\\355-\\212/\\276\\2437\\306|\\313\\301x\\236\\204\\262\\257\\035\\003A\\303\\212(n\\033#*\\344\\203\\012\\360\\301\\314\\253\\300\\340\\321\\2042\\262\\034\\211\\317M\\271b\\256\\227\\313\\024\\333\\225\\371r\\031\\267kUI\\366A\\3108\\213:R\\200\\030d1\\003\\326\\204q)\\351\\247\\325B\\227K$bE\\011\\2162p3g\\231\\001\\251ZTi\\015\\177r[\\333\\230\\317\\344[2F\\202\\335.\\323\\037l\\331\\007/\\023\\320\\351U\\340`h\\304qZ\\015\\304\\247\\246\\234\\261WT&rl\\312\\374\\270\\023[\\265\\252\\244\\373\\032\\006\\210\\230\\347\\035\\304\\306#(\\245dG\\022\\341M>\\232\\005hd\\347\\002D\\301\\303(]`9\\022\\341M9t\\274L\\235\\264b\\270\\255\\014\\223\\000Hh8\\033\\013\\243\\207!\\274YW&<\\222\\351b\\244\\250\\271\\214\\031\\270\\250\\274y\\006T*\\210\\315F''\\240\\230\\234''\\004\\326yp\\033\\225\\245AW\\221\\236''&Rx\\344d\\017\\211\\321\\204p\\311\\031G\\336\\250\\212s\\271\\214\\227R\\351d\\263\\210\\240\\321\\306q\\206o\\003 I5U\\215t\\273L}\\263b5.\\026)\\266\\267\\227\\001\\233v\\265\\300\\237lQ\\275\\365\\231\\2763\\341\\243O\\351\\372\\350b\\275y\\236\\204\\300\\022\\032\\016\\006\\216(\\301\\310o\\026U\\313\\252*\\234\\356kuES\\235\\315d\\272\\227K%\\234E\\006\\2163\\2143x\\031\\002I\\252\\254k\\344\\337\\273F\\235:\\177\\321\\214\\365\\346E\\223\\003\\250\\2308b8\\243\\010\\341\\274)\\247.\\250\\211\\217\\271\\215\\325\\0211\\3671\\272\\242&>\\3467TD\\307\\334\\306#U\\031b\\244\\253yr&\\270\\250\\274\\011\\366^\\0108\\364:Ux\\350d\\016\\003\\326\\203q)\\031W\\325B\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\012t\\274g&\\314\\321\\314`\\315\\273Z\\245\\3102\\360A\\307\\241\\322\\253\\307C p\\036\\264\\033\\211H\\312\\276\\341q\\357\\254\\263\\362m\\216g\\331?6\\330\\\\{\\023,\\374\\233/"\\274Ns$\\361\\3104\\037\\014\\254\\210\\342r2\\216Hc\\373m\\336\\274\\305\\377\\000\\035\\336r4&+\\215\\020\\311\\316\\004\\206\\214A\\261J\\300r%\\305\\225}\\351t\\247;f\\330S\\245\\34396f\\216c\\006m\\332\\325.A\\227\\202\\016=\\016\\225^:\\031\\003\\200\\365\\240\\334JFU\\365y\\025\\342s\\231''\\216A\\240\\370edG\\023\\221\\224r\\351v\\247;h\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSNF\\201\\242\\031&\\000\\2211\\210\\312)G\\016CxSO\\244j\\242,T\\215oAr&\\270\\250\\274\\031\\366\\305\\033\\337Y\\233\\343\\030\\3204C$\\300\\022&1\\031E(\\341\\310o\\012i\\367\\025\\205BX\\251,\\260\\313\\2215\\305E\\252O\\374\\370\\242\\373\\3523|ct2\\374\\330\\335\\014\\377\\0006\\267C/\\315\\214\\2500\\250\\345\\260\\213\\023\\030\\331\\243q\\321e}7\\003/\\275\\236\\021\\2677#]77\\250\\313\\3271l\\277\\361\\256\\271\\177\\204\\333\\256o\\341&K\\330Tr\\330z\\006\\214l\\321\\270\\350\\263^\\233\\216g\\331?6\\330\\\\\\373\\024,\\374\\233}\\031r!\\256s\\354\\255\\303k>\\332\\236d\\270F\\362\\332E\\206\\213\\232\\325\\305E\\232\\365.\\271\\277\\204\\333\\256_\\3416\\353\\233\\370I\\225\\021\\345\\313q\\026&1\\250\\267\\025\\026W\\323\\020\\322\\344\\347:\\366\\321d\\331\\366\\324\\223b\\213\\357\\254\\316\\361\\214\\250\\210\\336d\\210\\2611sZ\\267kR\\276\\244\\206\\220\\327&7\\267\\357k\\306\\345\\222lQ}\\365\\231\\3361\\261D\\366(f\\370\\306Chk\\234\\373\\333x\\332\\316\\266\\244\\233\\241\\227\\346\\337\\233\\024o}fo\\214e\\344g\\211\\311\\224\\2369\\031\\003\\342ta\\0342FQ\\367\\252"\\234\\356cuES\\235\\315lQ\\275\\211\\231\\2761\\2602\\373\\331\\341>\\011uQ\\031\\2538\\364\\014\\223\\207\\030\\232\\360.\\004\\223UX.*\\351x\\261M\\271_\\227!\\233v\\265T\\237\\370 \\345\\342z\\035*\\274\\014\\015\\030\\216+A\\270\\224\\364\\323\\2269\\177d\\374\\333\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256]QT\\347s[\\252*\\234\\356kuES\\235\\315n\\227i\\217\\266m\\322\\3552v\\321\\227\\221^\\030&Ux\\344\\032\\017\\206Q\\203\\220\\311\\031G$\\272\\250\\214\\325\\234z\\006I\\303\\214Mx\\027\\002I\\252\\254\\024\\214K\\245\\212m\\255\\345\\310f\\335\\255p''\\333\\024o}fo\\214n\\250\\252s\\271\\255\\325\\021Nw1\\215\\003DLs\\216\\342c\\021\\224R\\262#\\211p\\246\\237R\\352\\2423Vq\\350\\031''\\01615\\340\\\\\\011&\\252\\260U\\313\\375\\266\\254\\256\\\\\\377\\000\\216\\257I\\352\\363 \\303:4\\376\\237\\256\\206+\\327\\231\\350L\\001!\\240\\340h\\342\\214\\034\\206\\361e\\\\\\212\\343DLL\\016\\341\\203\\020lR\\214#\\206\\361e_z\\242)\\316\\3462]K\\245\\222\\316"\\203G\\031\\306\\031\\274\\014\\201$\\325V4\\203\\012\\360\\301\\314\\253\\300\\340\\321\\2042\\262\\034\\211\\317M\\271t\\273L\\235\\264n\\227i\\217\\266lh\\025\\241\\223\\234\\011\\023\\007\\014\\241u\\200\\344K\\2054\\344G%\\302\\3057V\\362\\3443n\\326\\270\\023\\354\\274\\027\\211\\350K*\\361\\3204\\0348\\242\\206\\341\\2622\\256X\\\\{\\353,\\374\\233\\036)t\\262RT\\\\\\306\\014\\334T^<\\203/"\\2740L\\252\\361\\3104\\037\\014\\243\\007!\\2222\\216]QT\\347s[\\012uBg)<\\321\\314a5\\305E\\245\\3102\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271\\025\\3500\\213&\\007P\\321\\2108\\017F\\021\\303x\\262\\257\\270\\253\\252\\02396e~\\\\\\011\\255\\312\\325R}\\272\\242\\251\\316\\346\\377\\000\\356\\177\\377\\304\\000>\\020\\000\\001\\002\\005\\001\\006\\003\\007\\003\\004\\000\\004\\007\\000\\000\\000\\002\\003\\023\\000\\001\\004\\021\\024\\025\\005\\022!"23\\020\\205\\324\\026 #4c\\224\\34415A$QabB`q\\202\\0060R\\201\\261\\263\\321\\377\\332\\000\\010\\001\\001\\000\\023?\\000\\377\\000\\2214\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\201\\262\\3754h\\033/\\323F\\201\\262\\3754h\\033/\\323F\\005-+/e\\271\\330H/v\\2024\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\201\\262\\3754h\\033/\\323F\\201\\262\\3757\\216\\223@\\273nP \\251\\363\\252\\201\\037\\0238a%\\333r\\275\\004\\217\\221Q \\235\\300\\316\\\\F0)iY{-\\316\\302A{\\264\\036\\356\\201\\262\\3754h\\033/\\323C\\011 \\343u\\365\\011\\007"B!+\\000\\004\\270\\0140\\222\\355\\271^\\202G\\310\\250\\220N\\340g.#\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\336\\367\\225\\322F:\\253\\266\\342\\240\\220r$$s\\271\\230K\\200\\316\\321\\240mOM\\032\\006\\324\\364\\321\\346\\224\\221\\367\\361\\253P \\343t\\010$|\\212\\256''+\\030F\\255@\\273nP.\\220r$\\271\\037\\0238\\300\\252\\252y\\226\\335\\354$v\\263\\241\\325\\031\\364\\26498\\364\\251R\\255\\360j\\225I`\\262\\310*\\034\\341\\030\\025T98\\365IU-\\361\\252\\222I\\020\\262(*|\\347\\031\\364\\265O3\\226\\357aS\\265\\235\\010\\322+\\327m\\304\\301P\\347I\\002\\011\\334\\014''\\300\\243>\\226\\273\\033"\\225ZT~\\015*\\252\\254wYt\\203\\220#\\002\\252\\225\\227\\261\\032\\357\\244\\027\\273G\\032\\275\\002\\0166\\251\\244|\\212\\256''+\\030\\034\\270\\214`UP\\344\\343\\325%T\\267\\306\\252I$B\\310\\240\\251\\363\\234k\\373/\\324\\306\\277\\262\\375Lg\\322\\327cdR\\253J\\217\\301\\245UU\\216\\353.\\220r\\004`UR\\262\\366#}\\364\\202\\367h\\343I\\257]\\267+\\327T9\\322@\\203\\240\\302<\\322\\222>\\3764\\212\\365\\333q0T9\\322@\\202w\\003\\011\\360(\\3206\\247\\246\\214\\012\\252V^q\\256\\372A{\\264}7\\217+\\244\\367\\274\\256\\222<\\316\\223\\307\\315)#\\357\\343_\\305y\\352T\\227\\355b\\235\\254\\355\\272\\2744\\234\\354\\214\\206>\\272[\\233\\254F&+\\317U*\\277k|\\355gwz\\247\\036YW\\341\\240e2\\315*Hwr\\202\\367j\\3751\\211\\224\\3135I/\\332\\337\\013\\335\\255\\336\\250\\322pq\\261\\330\\372\\312\\357\\357?\\036gW\\032\\006+\\317R\\252\\207w(\\355go\\323\\343\\211\\224\\3135I/\\332\\337\\013\\335\\255\\336\\250\\322pq\\261\\330\\372\\312\\357\\357?\\341\\346\\224\\221\\367\\361\\345\\224\\276\\037\\177\\036WI\\357y]$y\\245''\\217\\232RG\\337\\307\\225\\322F\\201\\262\\3754`R\\322\\262\\366[\\235\\204\\202\\367h#I\\240]\\267(\\020T\\371\\325@\\217\\211\\234y]_\\206\\223@\\273nP \\251\\363\\252\\201\\037\\0238\\322h\\020q\\272\\005\\325\\016t\\220\\023\\340a\\037a\\032E\\002\\355\\270\\251\\252|\\352\\240G;\\231\\234\\370\\2240\\222\\355\\271^\\202G\\310\\250\\220N\\340g.#\\032\\006\\313\\364\\321\\240l\\277M\\032M\\002\\0167@\\272\\241\\316\\222\\002|\\014#\\354<<\\322\\222>\\376<\\256\\223\\303\\357\\343\\312\\351=\\357+\\244\\215\\003jzh\\3206\\247\\246\\215\\003jzh\\322k\\320q\\272\\364\\025>uP\\020\\350\\003\\217\\277\\217+\\244\\214\\372Z\\354l\\212UiQ\\3704\\252\\252\\261\\335e\\322\\016@\\214\\012\\252V^q\\276\\372A{\\264}7\\215"\\275v\\334L\\025\\016t\\220 \\235\\300\\302|\\0125z\\005\\333qPH9\\022\\\\\\216w3\\011p\\030\\317\\245\\245e\\347\\033\\357\\252\\027\\273G\\323x\\300\\252\\256\\306\\310\\252V\\251\\037\\215J\\222\\250\\235\\321]#\\3448\\325\\350\\027m\\305A \\344Ir9\\334\\314%\\300bu\\364\\264\\254\\274\\343}\\365B\\367iN\\233\\303\\351.\\333\\211\\012\\241\\316\\221\\020N\\340a>\\005;G\\232RG\\337\\306\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\036iI\\023\\257\\245\\245e\\347\\033\\357\\252\\027\\273Jt\\336\\037Iv\\334HU\\016t\\210\\202w\\003\\011\\360)\\332<\\322\\2220*\\252\\236g-\\336\\302Gk:\\021\\240mOM\\032\\006\\324\\364\\321\\240mOM\\014*\\203\\215\\320 \\221\\362*"r\\261\\201\\313\\210\\373\\332\\006S,\\322\\244\\207w(/v\\257\\323\\036\\312~l{)\\371\\261\\354\\247\\346\\307\\262\\237\\233\\032N\\016>>G\\327W\\177y\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\363:X\\373\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\363:H\\325pq\\261\\362>\\202\\273\\373\\317\\306^S,\\322\\244\\207wp/v\\267\\272e\\032\\376S,\\325$\\277k\\024/v\\255\\325\\037\\177\\032\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\325$\\277k\\024/v\\255\\325\\032\\266\\0166>G\\320W\\177y\\370\\313\\312e\\232T\\220\\356\\356\\005\\356\\326\\367L\\243\\314\\351c\\357\\343@\\312e\\232T\\220\\356\\345\\005\\356\\325\\372c\\023)\\226j\\222_\\265\\276\\027\\273V\\352\\224{)\\371\\261\\354\\247\\346\\307\\262\\237\\233\\036\\312~l{)\\371\\277\\371\\030\\024\\265O3\\210\\337}#\\265\\2358a$\\034n\\276\\241 \\344HD%`\\000\\227\\001\\206\\022]\\267+\\320H\\371\\025\\022\\011\\334\\014\\345\\304c\\002\\226\\225\\227\\262\\334\\354$\\027\\273A\\341\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\037\\272fb1\\215\\363\\317\\267\\271\\224\\277n\\327\\337\\215\\003e\\372h\\310U\\007\\033T\\025\\016t\\210NV4\\302|\\012W\\215\\177jz\\230\\327\\366\\247\\251\\360\\300\\245\\252y\\227\\033\\357\\244v\\263\\247\\323\\014$\\203\\215\\327\\324$\\034\\211\\010\\204\\254\\000\\022\\340>\\031\\365T\\254\\275\\226\\347aP\\275\\332\\010}U\\333r\\201\\005O\\235R#\\235\\314\\316|J4\\212\\004\\034mPT9\\322@NV0\\011\\360(\\300\\245\\252y\\227\\033\\357\\244v\\263\\247\\323\\014$\\203\\215\\327\\324$\\034\\211\\010\\204\\254\\000\\022\\340>\\030\\024\\265O3\\210\\327}#\\265\\2358\\3206_\\246\\215&\\201\\007\\033\\240]P\\347I\\001>\\006\\021\\201KT\\3638\\215\\367\\322;Y\\323\\215\\003e\\372o{H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\360\\317\\245\\245e\\347\\033\\357\\252\\027\\273G\\323x}%\\333q!T9\\322"\\011\\334\\014''\\300\\247h\\3206\\247\\246\\214\\012\\252V^q\\276\\372A{\\264}7\\215"\\275v\\334L\\025\\016t\\220 \\235\\300\\302|\\012\\037I\\007\\033\\257AS\\347T\\204%`\\003\\237\\022\\214\\372Z\\247\\231\\313w\\260\\251\\332\\316\\204i\\025\\353\\266\\342`\\250s\\244\\201\\004\\356\\006\\023\\340^\\031\\364\\264\\254\\275\\210\\327}P\\275\\3328\\300\\252\\256\\306\\310\\252V\\251\\037\\215J\\222\\250\\235\\321]#\\3448aU\\333r\\202\\241 \\344HH\\347s0\\227\\001\\217\\332\\360\\362\\330\\306\\371\\346\\\\\\337\\304_\\242\\366\\334\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\215Z\\201v\\334\\240] \\344Ir>&q\\201UT\\363-\\271\\330H\\355gC\\252\\320\\302\\2508\\335\\002\\011\\037"\\242''+\\030\\034\\270\\214k\\373/\\324\\306}-S\\314\\345\\273\\330T\\355gB4\\212\\365\\333q0T9\\322@\\202w\\003\\011\\360(\\325\\350\\027m\\305A \\344Ir9\\334\\314%\\300c\\357\\343H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\360\\317\\245\\245e\\354F\\373\\352\\205\\356\\321\\303\\351.\\333\\211\\012\\241\\316\\221\\020N\\340a>\\005;{\\336YK\\030\\231L\\263J\\252\\375\\255\\360\\275\\332\\267T\\243\\366=;O\\373\\227\\\\\\317\\377\\000K5\\031yL\\263J\\222\\035\\335\\300\\275\\332\\336\\351\\224{)\\371\\261\\373\\036\\235\\247\\375\\313\\256g\\377\\000\\245\\232\\214\\274\\246Y\\245I\\016\\356\\340^\\355_\\246Q\\257\\3452\\315*\\253\\366\\261B\\367j\\335^\\032\\006S,\\322\\244\\207w(/v\\257\\323\\031x\\257=T\\222\\035\\335\\303\\265\\235\\336\\351\\234{W\\370Q\\245j\\230x\\237\\320\\374\\313\\310\\271\\277\\212\\347nV\\337\\264{)\\371\\261\\244\\340\\343\\343\\344}uw\\367\\237\\215\\003)\\226iRC\\273\\224\\027\\273W\\351\\214\\274W\\236\\252I\\016\\356\\341\\356\\331\\335\\356\\231\\306\\255\\235\\223\\220\\307\\321Ksu\\210\\3202\\231f\\251T;\\271A{\\265~\\230\\327\\362\\231f\\225U\\373X\\241{\\265n\\250\\325\\260q\\361\\330\\372\\012\\357\\357?\\032V\\251\\207\\211\\375\\007\\314\\276\\213\\233\\370\\256v\\345m\\373F&S,\\325$\\277k|/v\\255\\325\\032N\\0166>G\\327W\\177y\\370\\362\\312_\\037,\\244\\367\\274\\256\\222\\030Iv\\334H\\322>ED\\202w\\0039q\\031\\3320)iYy\\267;\\011\\005\\356\\322}W\\215Z\\275\\007\\033\\257] \\344Iq\\016\\200\\010\\3206_\\246\\214\\012ZV^m\\336\\302A{\\264\\035W\\360\\325\\353\\327m\\304\\315#\\344Ur\\011\\334\\014\\345\\304|4\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\005-\\016N=*\\265H\\374jT\\222X,\\262\\011\\037!\\306\\277\\265=Ld*\\273n*j\\237:\\244G;\\232\\205>%;F\\223@\\203\\215\\320.\\250s\\244\\200\\237\\003\\017\\015&\\201v\\334\\240AS\\347U\\002>&q\\346\\224\\221*\\372\\252V^\\313s\\260\\250^\\355\\004d*\\273n*j\\237:\\244G;\\232\\205>%;G\\225\\325\\307\\330F\\221@\\273n*j\\237:\\250\\021\\316\\346g>%\\014$\\273nW\\240\\221\\362*$\\023\\270\\031\\313\\210\\306\\005-+/e\\273\\330H/v\\2025z\\364\\034m0H9\\022\\\\BV\\000\\011p\\037\\037+\\244\\367\\274\\256\\222\\037I\\007\\033\\257AS\\347T\\204%`\\003\\237\\022\\214\\372Z\\247\\231\\313s\\260\\251\\332\\316\\207\\206:\\253\\266\\342\\240\\220r$$s\\271\\230K\\200\\316\\321\\240mOM\\032\\006\\324\\364\\336\\031\\364\\264\\254\\274\\343]\\365B\\367h\\372o\\030\\025U\\330\\331\\025J\\325#\\361\\251RU\\023\\272+\\244|\\207\\025{v\\201\\224?\\334\\332X\\316\\322\\377\\000\\0038J\\201\\204\\351\\216\\235\\376\\022\\261\\235\\356\\374Sl\\307\\023\\006i\\223C\\252v\\275\\332\\215\\034#G\\010\\250\\245\\232j(\\365J\\253\\316\\343)ZV\\232\\266\\202H\\345)K\\374\\316\\321\\237J\\203ob5g\\225\\013\\335\\243\\214\\012\\252\\354l\\212\\245j\\221\\370\\324\\251*\\211\\335\\025\\322>S\\206\\025]\\267(*\\022\\016D\\204\\216w3\\011p\\030\\375\\257\\017-\\214o\\235e\\315\\374U\\373w\\264`UWcdU+T\\217\\306\\245ITN\\350\\256\\221\\362\\034i5\\3508\\335z\\012\\237:\\250\\010t\\001\\370i5\\353\\266\\345z\\352\\207:H\\020t\\030F}-v6E*\\264\\250\\374\\032UUX\\356\\262\\351\\007 G\\355xylc|\\353.o\\342\\257\\333\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\275\\357,\\245\\214\\274W\\236\\252I\\016\\356\\341\\332\\316\\357t\\3165l\\354\\214\\214\\217\\240\\226\\346\\353\\036\\030\\231L\\263T\\222\\375\\255\\360\\275\\332\\267T\\243\\331O\\315\\217e?7\\303\\357\\343\\313)`\\177Q\\336\\234\\245y\\177\\231^%.\\022\\200\\225\\347\\270\\230L\\247i\\177\\322P\\023\\231H%)\\011\\247;\\317\\214\\356''i\\317\\205\\347+\\312V\\205''a\\001\\224\\2579\\316s\\376%(\\254I\\261\\252I`\\231\\246\\252r\\375d%)^[\\322\\224\\355i\\333\\303\\376\\020\\231^E\\273/\\342S\\230\\336\\337\\336s\\237\\363\\032\\006S,\\322\\244\\207w(/v\\257\\323\\341\\252\\340\\343c\\344}\\005w\\367\\237\\214\\274\\246Y\\245I\\016\\356\\340^\\355ot\\312=\\224\\374\\330\\322pq\\361\\330\\372\\352\\357\\357?\\032\\006S,\\325*\\207w(/v\\257\\323\\030\\231L\\263T\\222\\375\\255\\360\\275\\332\\335\\352\\225\\257\\037\\261\\351\\332\\177\\334\\272\\346w\\372Y\\250\\322\\265Le\\344\\\\\\337\\305s\\2666\\337\\267\\275\\253\\327\\240\\343i\\202A\\310\\222\\342\\022\\260\\000K\\200\\306\\005-\\016N=*\\265H\\374jT\\222X,\\262\\011\\037!\\307\\356\\231\\230\\214c|\\363\\315\\356e\\257\\333\\265\\367\\341\\204\\220q\\272\\372\\204\\203\\221!\\020\\225\\200\\002\\\\\\006\\030Iv\\334\\257A#\\344TH''p3\\227\\021\\214\\012ZV^\\313s\\260\\220^\\355\\004i4\\013\\266\\345\\002\\012\\237:\\250\\021\\3613\\207\\325A\\306\\350*\\025\\016t\\210NV0\\011\\360(\\317\\252\\252y\\227\\033\\357\\252v\\263\\247\\323h\\362\\272H\\377\\000\\276^\\024\\345)c&`I\\344.W\\226\\342r\\234\\347o\\344\\247+\\014\\247;\\333j=\\2763\\012t\\322\\267''\\361\\310S\\275\\347\\372\\313\\204\\255;\\354\\335\\262\\242\\257 %\\274iI\\023@JR=\\335\\311\\363[ve\\306/''RN\\232F J\\207\\352$sP\\347+\\376\\240\\337\\207\\375\\305\\032E\\002\\355\\271@\\202\\247\\316\\252\\004}g\\032\\376\\324\\3651\\257\\355OS\\032\\376\\324\\3651\\240l\\277M\\037\\265\\341\\345\\277\\223\\362,9\\277\\212\\207r\\366\\334\\214\\205Wm\\305MS\\347T\\210\\347sP\\247\\304\\247h\\3206_\\246\\217\\332\\360\\362\\337\\311\\371\\026\\034\\337\\305C\\271{nFB\\253\\266\\342\\246\\251\\363\\252Ds\\271\\250S\\342S\\267\\275\\244W\\256\\333\\211\\202\\241\\316\\222\\004\\023\\270\\030O\\201C\\012\\256\\333\\224\\025\\011\\007"BG;\\231\\204\\270\\014`UR\\262\\363\\215\\367\\322\\013\\335\\243\\351\\274y]$g\\322\\327cdR\\253J\\217\\301\\245UU\\216\\353.\\220r\\004h\\033S\\323F:\\2508\\332\\246\\221\\362*"r\\261\\246R\\3422\\215\\003jzh\\375\\257\\017-\\214o\\236a\\315\\374U\\373w\\266\\344>\\222\\355\\270\\220\\252\\034\\351\\021\\004\\356\\006\\023\\340S\\267\\202t"\\232(\\244g1Et\\252$\\251M@rh\\244R0\\011\\335K\\3326j\\226e\\032\\245j\\022\\246*\\215\\331\\335\\212di\\206d\\234\\247\\2733^\\345\\011^h\\323+J\\324\\222\\250M9\\334F\\357\\024\\212R\\224\\244V\\031\\316*~gh,\\252dF\\252\\0253\\233\\237\\017\\227\\216\\365\\256V\\265\\242\\224d2\\332\\2738Jr_x8_y!x/\\322V\\264\\345\\306\\364\\0336\\242\\260\\225BV\\271\\374 .\\034\\303\\015\\032{\\363\\025\\014K\\224\\345"\\3411\\234\\277H\\325\\350\\020q\\272\\004\\022>EW\\023\\340`~\\037\\177\\036WI\\032\\376\\313\\3651\\237KT\\3639nv\\025;Y\\320\\215Z\\201\\007\\033\\240A#\\344Uq9X\\303\\303\\002\\252\\251\\346r\\334\\354$v\\263\\241\\014*\\203\\215\\320 \\221\\362*"r\\261\\201\\313\\210\\373\\332\\006S,\\322\\244\\207w(/v\\257\\323\\341\\253`\\343c\\344}\\025w\\367\\237\\215+T\\303\\304\\376\\203\\346^E\\315\\374W;cm\\373F&S,\\325$\\277k|/v\\255\\325\\036\\312~lbb\\274\\365R\\253\\366\\267\\317v\\316\\333\\252q\\211\\224\\3134\\252\\257\\332\\337\\013\\335\\255\\336\\251F\\223\\203\\217\\217\\221\\365\\325\\337\\336~<\\262\\227\\300?\\212\\244\\012\\236\\261\\037\\376\\203\\212\\000\\011\\021$i\\2476I5\\004\\304\\303\\226S\\261Js\\224\\370\\312p\\270\\200,T\\223\\031\\246\\224\\303\\2314\\024\\275\\367\\344\\011\\014\\245!.k\\225\\356\\235bL\\2403"\\335H\\226\\020zam\\331\\314\\035\\267\\031\\217L\\002\\222\\232k#0\\2307!\\227\\031\\312r\\237\\3519K\\204RY:\\312\\345\\022:\\272i\\021\\324*[\\251!0\\244RG)\\011L\\255\\024\\225d\\222j''\\220m\\246\\361''9\\362\\201\\215\\313r=\\253\\374(\\3201^z\\251$;\\271Gk;~\\230\\373\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\313\\305y\\352\\244\\220\\356\\356\\036\\355\\235\\336\\351\\234{W\\370Q\\355_\\341F\\201\\212\\363\\325I!\\335\\312;Y\\333\\364\\306\\223\\235\\221\\221\\221\\365\\322\\334\\335b11^z\\225%\\373[\\347k;n\\251\\373\\332M\\002\\355\\271@\\202\\247\\316\\252\\004|L\\343_\\332\\236\\2463\\352\\252\\236g\\021\\256\\372\\247k:q\\244P.\\333\\212\\232\\247\\316\\252\\004s\\271\\231\\317\\211C\\011.\\333\\225\\350$|\\212\\211\\004\\356\\006r\\3421\\201KJ\\313\\331nv\\022\\013\\335\\240\\215&\\201v\\334\\240AS\\347U\\002>&q\\253\\327\\256\\333\\211\\232G\\310\\252\\344\\023\\270\\031\\313\\210\\306\\005-S\\314\\3425\\337H\\355gN3\\352\\250rq\\352\\225\\245G\\340\\322\\252\\222!dPH9\\003\\301\\315\\323U5i\\327H\\3442\\377\\000\\212\\322=\\371\\313\\377\\000H^%\\372G\\367\\215\\217\\263W\\251\\247\\234\\204\\267HNI\\310\\3113\\003\\221\\204\\344_\\256\\346\\364(\\211\\2439\\332v\\237)\\214\\212\\\\e\\374\\312\\020\\342\\342\\013VMm\\371\\312R\\236\\350&\\013)r\\234\\345y\\251iC\\312"\\350o\\316v\\337L\\204\\245\\306_\\304\\345\\032\\376\\323\\3651\\346\\224\\221\\201KT\\363.5\\337H\\355gO\\246\\321\\240l\\277M\\036iI\\343\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\037\\272fb1\\215\\363\\3177\\271\\224\\277n\\327\\337\\214\\372\\252\\034\\234z\\245iQ\\3704\\252\\244\\210Y\\024\\022\\016@\\367\\274\\256\\223\\302T\\025UO2\\333\\235\\204\\216\\326t:\\255\\030\\352\\240\\343j\\232G\\310\\250\\211\\312\\306\\231K\\210\\312\\030Uv\\334\\240\\250H9\\022\\0229\\334\\314%\\300c\\366\\274<\\2661\\276y\\2277\\361\\027\\350\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\243V\\240]\\267(\\027H9\\022\\\\\\217\\211\\237\\216u5N\\372A+\\034\\356\\212\\207h\\336\\340\\231\\230\\356\\221J_\\246\\366\\355\\306S\\376$E\\004\\022\\237\\377\\000\\220I\\316S\\377\\000\\346\\021\\262\\364u'';\\\\\\316\\235In\\310\\371er\\011\\204\\347\\306\\363\\212a\\222`gn$!2\\234\\306S\\376\\327\\235\\277\\274N\\234AY\\246\\222i&\\0032\\227\\022\\224\\267Jr\\217\\355;\\316v\\237\\376\\323\\224\\343\\312\\351#V\\240]\\267(\\027H9\\022\\\\\\217\\211\\237\\206\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\032Ez\\0166\\231\\252|\\352\\240!+\\000\\034\\370\\224`UU<\\313nv\\022;Y\\320\\352\\215\\003jzh\\322k\\320q\\272\\364\\025>uP\\020\\350\\003\\360\\322k\\327m\\312\\365\\325\\016t\\220 \\3500\\367\\274\\262\\2265\\374\\246Y\\245U~\\326(^\\355[\\252>\\3025\\374W\\236\\252U~\\326)\\332\\316\\333\\25212\\231f\\225U\\373[\\341{\\265n\\250\\375\\217N\\323\\376\\345\\3273\\277\\322\\315F\\225\\252a\\342\\177A\\363/"\\346\\376+\\235\\271[~\\336\\032\\266\\0166;\\037A]\\375\\347\\343\\332\\277\\302\\212_\\374C*\\225\\033\\377\\000\\011\\225(H\\347\\3767\\345\\033F\\222\\2415R\\377\\000[L\\006\\032^*\\021Sq=\\343\\020\\033\\332\\177\\311\\020\\312\\031Z)\\320R`\\246\\341\\220\\025\\257?\\340\\204\\245\\011\\323\\034\\347)\\377\\000~3\\265\\377\\000\\353\\013J\\307P|9\\247\\302_\\332_\\304\\277IJR\\224\\245\\032\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\322\\252\\277k\\024/v\\255\\325\\341\\345\\224\\221\\240b\\274\\365*\\250wr\\216\\326v\\3751\\244\\347dd1\\365\\322\\334\\335b11^z\\225%\\373[\\347k;\\273\\3258\\366S\\363c\\331O\\315\\217e?7\\336\\325\\353\\320q\\264\\301 \\344Iq\\011X\\000%\\300c\\312\\352\\343>\\252\\225\\227\\233w\\260\\250^\\355\\007U\\343_\\332\\236\\2463\\352\\253\\261\\262*\\222\\245[\\340\\325*\\252''tWT9\\3020)iYy\\267;\\011\\005\\356\\320u^4\\212\\005\\333qST\\371\\325@\\216w39\\361/\\017\\260\\215Z\\275\\007\\033\\257] \\344Iq\\016\\200\\010\\325\\253\\327m\\312\\364\\022>EW \\3503\\360\\325\\353\\220q\\272\\365\\322\\016D\\226\\020\\225\\200#\\002\\232\\205\\374zU\\252\\221\\370\\324\\311\\246\\250Yd\\022.\\007\\023\\257\\251\\252y\\234F\\273\\312\\035\\254\\351\\307\\231\\325x`R\\325<\\316#]\\364\\216\\326t\\343@\\331~\\232<\\256\\2560)j\\236g\\021\\256\\372Gk:q\\237UC\\223\\217T\\255*?\\006\\225T\\221\\013"\\202A\\310\\021\\240l\\277M\\030\\024\\264\\254\\275\\226\\357a \\275\\332\\010\\325\\353\\320q\\264\\301 \\344Iq\\011X\\000%\\300a\\204\\227m\\312\\364\\022>ED\\202w\\0039q\\030\\300\\245\\245e\\354\\267;\\011\\005\\356\\320F\\223@\\273nP \\251\\363\\252\\201\\037\\023?{H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\2174\\244\\217\\277\\360\\307Uv\\334T\\022\\016D\\204\\216w3\\011p\\031\\332?k\\303\\313c\\033\\347\\231s\\177\\025~\\335\\355\\271\\030\\025U\\330\\331\\025J\\325#\\361\\251RU\\023\\272+\\244|\\207\\341\\237KJ\\313\\330\\215\\367\\325\\013\\335\\243\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\360\\373\\370\\362\\272H\\300\\252\\241\\311\\307\\252J\\251o\\215T\\222H\\205\\221AS\\3478\\375\\3233\\021\\374\\237\\221y\\275\\314\\244;\\226\\276\\374h\\033S\\323F}-v6E*\\264\\250\\374\\032UUX\\356\\262\\351\\007 G\\355xylc|\\353.o\\342\\257\\333\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\243\\035U\\333qPH9\\022\\0229\\334\\314%\\300gh\\235\\005U+/8\\337} \\275\\332>\\233\\307\\225\\322F\\005U\\016N=RUK|j\\244\\222D,\\212\\012\\2379\\306\\275\\263=L`UWcdU+T\\217\\306\\245ITN\\350\\256\\221\\362\\037\\217\\225\\322{\\332\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\325$\\277k\\024/v\\255\\325\\032\\266\\0166>G\\321W\\177y\\370\\366\\257\\360\\243U\\3250\\361?\\256\\371fQs\\177\\025\\276\\344\\255\\277x\\375\\217N\\323\\376\\345\\3273\\277\\322\\315F^S,\\322\\244\\207wp/v\\267\\272e\\343\\345\\224\\221\\240b\\274\\365RHwr\\216\\326v\\3751\\252\\340\\343c\\344}\\025w\\367\\237\\215+T\\303\\304\\376\\203\\346^E\\315\\374W;r\\266\\375\\243@\\305y\\352UP\\356\\345\\035\\254\\355\\372c\\354#@\\312e\\232\\245P\\356\\345\\005\\356\\325\\372c\\023)\\226j\\222_\\265\\276\\027\\273V\\352\\215''\\007\\037\\037#\\353\\253\\277\\274\\374ye,k\\371L\\263T\\222\\375\\254P\\275\\332\\267T}\\374y]$e\\342\\274\\365*\\250ww\\016\\326w{\\246q\\355_\\341F\\225\\252a\\342\\177A\\363/"\\346\\376+\\235\\271[~\\336>YK\\357i4\\013\\266\\345\\002\\012\\237:\\250\\021\\3613\\207\\325A\\306\\350*\\025\\016t\\210NV0\\011\\360(\\317\\252\\252y\\234F\\373\\352\\235\\254\\351\\306\\255^\\203\\215\\327\\256\\220r$\\270\\207@\\004g\\325WcdU%J\\267\\301\\252UTN\\350\\256\\250s\\204~\\327\\207\\226\\376O\\310\\262\\346\\376*\\035\\313\\3325\\375\\251\\352cI\\240A\\306\\350\\027T9\\322@O\\201\\204`R\\325<\\316#}\\364\\216\\326t\\341\\204\\220q\\264\\205 \\344HD%`L%\\300ex\\310U\\007\\033T\\025\\016t\\210NV4\\302|\\012W\\215\\177jz\\230\\310Uv\\334T\\325>uH\\216w5\\012|Jv\\360\\317\\252\\245e\\346\\335\\354*\\027\\273A\\325x\\300\\245\\256\\306\\310\\245J\\251o\\215T\\222\\253\\035\\326]S\\3478a%\\333r\\275\\004\\217\\221Q \\235\\300\\316\\\\F4\\015\\227\\351\\243>\\252\\207''\\036\\251ZT~\\015*\\251"\\026E\\004\\203\\220#_\\332\\236\\2463\\352\\252\\236e\\306\\273\\352\\235\\254\\351\\364\\307\\225\\322x\\351\\024\\013\\266\\342\\246\\251\\363\\252\\201\\034\\356fs\\342Q\\240l\\277M\\032\\006\\313\\364\\321\\237UC\\223\\217T\\255*?\\006\\225T\\221\\013"\\202A\\310\\036\\366\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\032\\006\\324\\364\\321\\240mOM\\032\\006\\324\\364\\321\\240mOM\\030\\025T\\254\\274\\343]\\364\\202\\367h\\372o\\032\\265\\002\\0167@\\202G\\310\\252\\342r\\261\\204`UP\\344\\343\\325%T\\267\\306\\252I$B\\310\\240\\251\\363\\234g\\322\\325<\\316[\\235\\205N\\326t#V\\240A\\306\\350\\020H\\371\\025\\\\NV0\\217+\\253\\217\\260\\2174\\253\\207\\322A\\306\\353\\320T\\371\\325!\\011X\\000\\347\\304\\243\\367L\\314G\\362~E\\366\\3672\\220\\356Z\\373\\361\\216\\252\\0166\\251\\244|\\212\\210\\234\\254i\\224\\270\\214\\243_\\331~\\2463\\351j\\236g-\\316\\302\\247k:\\021\\253P \\343t\\010$|\\212\\256''+\\030C\\351 \\343u\\350*|\\352\\220\\204\\254\\000s\\342Q\\257\\354\\277S\\017\\244\\273n$*\\207:DA;\\201\\204\\370\\024\\355\\030\\352\\256\\333\\212\\202A\\310\\220\\221\\316\\346a.\\003;D\\350*\\251Yy\\306\\373\\351\\005\\356\\321\\364\\336<\\256\\2221\\325]\\267\\025\\004\\203\\221!#\\235\\314\\302\\\\\\006v\\211\\320UR\\262\\366#}\\364\\202\\367h\\375\\377\\000,\\245\\217e?6=\\224\\374\\330\\366S\\363c@\\305y\\352\\244\\220\\356\\345\\035\\254\\355\\372c\\357\\3744\\255/3/\\372\\037\\231yf\\3672\\234\\355\\224{W\\370Q\\355_\\341F\\201\\212\\363\\324\\252\\241\\335\\312;Y\\333\\364\\307\\330G\\231\\325\\370i9\\331\\031\\014}t\\2677X\\214LW\\236\\252U~\\326\\371\\356\\331\\333uN=\\253\\374(\\366\\257\\360\\243\\332\\277\\302\\214\\274W\\236\\252I\\016\\356\\341\\332\\316\\357t\\3165\\\\\\354\\234\\214\\217\\240\\226\\346\\353\\021\\345\\224\\221\\211\\224\\3135I/\\332\\337\\015\\353\\265n\\251F\\225\\203\\215\\217\\221\\365\\325\\337\\336~<\\262\\222<\\316\\2264\\254\\354\\234\\214\\217\\254\\226\\346\\353\\021\\354\\247\\346\\373\\336WI\\014$\\273nW\\240\\221\\362*$\\023\\270\\031\\313\\210\\306\\201\\262\\3754h\\033/\\323G\\232RG\\337\\370`R\\320\\344\\343\\322\\253T\\217\\306\\245I%\\202\\313 \\221\\362\\034g\\325U<\\316#]\\365N\\326t\\3744\\232\\004\\034n\\201uC\\235$\\004\\370\\030G\\330F\\221@\\273n*j\\237:\\250\\021\\316\\346g>%\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\321\\257\\355OS\\032\\376\\324\\3650\\372\\253\\266\\345\\002\\012\\237:\\244G;\\231\\234\\370\\224`R\\320\\344\\343\\322\\253T\\217\\306\\245I%\\202\\313 \\221\\362\\034g\\325U<\\313\\215w\\325;Y\\323\\351\\264y]$h\\033/\\323F\\201\\262\\37540\\222\\0166\\220\\244\\034\\211\\010\\204\\254\\011\\204\\270\\014\\257\\030\\024\\26498\\364\\252\\325#\\361\\251RI`\\262\\310$|\\207\\037\\272fb1\\215\\363\\3177\\271\\226\\277n\\327\\337\\206\\022A\\306\\353\\352\\022\\016D\\204BV\\000\\011p\\037{\\312\\351#\\315)<|\\322\\222>\\3765j\\004\\034n\\201\\004\\217\\221U\\304\\345c\\010\\363JO\\015&\\275v\\334\\257]P\\347I\\002\\016\\203\\010aU\\333r\\202\\241 \\344HH\\347s0\\227\\001\\211\\320UR\\262\\353\\215\\367\\322\\013\\335\\243\\351\\274i\\025\\353\\266\\342`\\250s\\244\\201\\004\\356\\006\\023\\340Q\\253P.\\333\\224\\013\\244\\034\\211.G\\304\\316>\\303\\301\\205Wm\\312\\012\\204\\203\\221!#\\235\\314\\302\\\\\\006?k\\303\\313c\\033\\347\\231s\\177\\021~\\335\\355\\271\\017\\244\\273nW\\324*\\034\\351\\021\\004\\356\\006\\023\\340Q\\345uq*\\012\\252\\247\\231m\\316\\302Gk:\\237U\\243\\035T\\034mSH\\371\\025\\0219X\\323)q\\031F\\255@\\273nP.\\220r$\\271\\037\\0238\\317\\245\\245e\\354F\\373\\352\\205\\356\\321\\306\\005Uv6ER\\265H\\374jT\\225D\\356\\212\\351\\037!\\307\\232RD\\353\\351iYy\\306\\373\\352\\205\\356\\322\\2357\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\367\\274\\256\\22212\\231f\\251%\\373[\\341\\275v\\255\\325(\\366S\\363c\\331O\\315\\2173\\245\\217\\277\\360\\327\\362\\231f\\251%\\373X\\241{\\265n\\257\\015\\003)\\226j\\225C\\273\\224\\027\\273W\\351\\214L\\246Y\\245U~\\326\\370^\\355n\\365J4\\254\\034l|\\217\\256\\256\\376\\363\\361\\345\\224\\221\\355_\\341F\\253\\235\\223\\220\\307\\320Ksu\\217\\015\\003\\025\\347\\252\\222C\\273\\224v\\263\\267\\351\\217\\277\\360\\362\\272\\270\\373\\010\\327\\361^z\\251U\\373X\\247k;n\\257\\035\\003)\\226iRC\\273\\224\\027\\273W\\351\\215WT\\303\\304\\376\\277\\345\\231E\\315\\374V\\373\\222\\266\\375\\343I\\301\\307\\307\\310\\372\\312\\357\\357?\\032\\006S,\\322\\244\\207w(/v\\257\\323\\357y]$h\\033/\\323F\\201\\262\\3754h\\033/\\323F\\221@\\203\\215\\252\\012\\207:H\\011\\312\\306\\001>\\005\\037\\177\\356i\\024\\013\\266\\342\\246\\251\\363\\252\\201\\034\\356fs\\342P\\302K\\266\\342F\\221\\362*$\\023\\270\\031\\313\\210\\316\\321\\240l\\317M\\031\\365T98\\365J\\322\\243\\360iUI\\020\\262($\\034\\201\\017\\252\\203\\215\\320T*\\034\\351\\020\\234\\254`\\023\\340Q\\257\\355OS\\032\\376\\324\\3651\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\023\\257\\252\\252y\\227\\033\\357\\252v\\263\\247\\323h\\322h\\027m\\312\\004\\025>uP#\\342g\\036WW\\031\\365T\\254\\274\\333\\235\\205B\\367h:\\257\\017\\252\\273nP \\251\\363\\252Ds\\271\\231\\317\\211F\\201\\262\\3754`R\\322\\262\\366[\\235\\204\\202\\367h#I\\240]\\267(\\020T\\371\\325@\\217\\211\\234j\\365\\353\\266\\342f\\221\\362*\\271\\004\\356\\006r\\3421\\201KT\\3638\\215w\\322;Y\\323\\215\\003e\\372o\\371\\237\\377\\304\\000*\\021\\000\\001\\003\\003\\002\\005\\004\\002\\003\\000\\000\\000\\000\\000\\000\\000\\001\\000\\002\\003\\004\\005\\021\\006!\\022\\0231@Q\\020\\024"A2\\200\\026$B\\377\\332\\000\\010\\001\\002\\001\\001?\\000\\375\\232\\007>\\203p\\206A\\357\\245\\220F2T3\\211z)$\\021\\214\\225\\014\\302^\\235\\356\\335\\025\\336\\262*jw\\361\\356U\\267V\\262\\337\\027*f\\365U\\372\\245\\265t\\216\\345FA+L\\201\\354\\203\\270\\262\\343\\351\\370\\367Gg\\247T\\226\\316B\\243\\202:\\332\\242\\3717\\307\\322\\275Z\\250\\337;\\036\\346c\\013\\330R\\032Q\\037\\000\\003\\012\\331V\\353U\\321\\360\\003\\226\\022\\271\\340\\014\\224\\307\\207\\216\\350\\214\\253\\354\\202\\000\\307\\370GSU\\321\\327\\020\\303\\262\\236\\360+\\242\\314\\262\\340\\2515|\\320\\216@9\\036T\\267h^\\033#\\177/+\\334>\\261\\214\\204\\177\\245L\\013X"?]\\326p\\026\\247g\\364\\336\\357\\012B\\343!*\\234\\021&$\\033*\\273#$9\\245\\361\\366\\244\\202JiC\\036\\254%\\262S\\302\\343\\364\\027F\\343\\272\\350r\\025\\306\\334\\333\\2238\\034vRh(\\016x^\\237\\240e\\316Y"\\376;[\\024|\\271\\007\\022\\250\\322W\\016o\\034L\\300VZSKB\\326;\\252\\306q\\335\\017\\216\\305`\\215\\302\\371,\\037+\\207\\354\\204x_\\262\\331\\277\\000\\272~\\335\\377\\000\\377\\304\\000%\\021\\000\\001\\004\\001\\004\\001\\004\\003\\000\\000\\000\\000\\000\\000\\000\\000\\001\\000\\002\\003\\004\\021\\005\\022!@2\\020"A\\200\\024Ba\\377\\332\\000\\010\\001\\003\\001\\001?\\000\\373v\\326\\2477\\011\\2419\\270\\356\\362\\252@\\371^$\\370Ri\\337\\220w\\205\\006\\236\\030\\375\\305\\312\\376\\335\\374\\017@{ML\\213r\\230IR=\\241T\\2651a\\010J\\367\\277 \\2535\\2375m\\305\\2500\\242;C\\311Q?\\252\\265\\030\\270\\334\\025\\0353_\\305U\\245\\030p|\\241_\\271M\\364\\004,\\034\\246\\342"\\364}\\335\\257\\225\\247sd5\\017\\342w\\011\\266\\234\\337k\\302k\\204\\215\\341Z\\341\\317C\\201\\332\\306T\\023\\030\\216Bn\\262\\360\\233\\255\\037\\220\\205\\370\\363\\225\\036\\251\\020n\\025\\271w\\277!\\036[\\332j\\306J\\300\\\\.\\020!y!\\366\\357\\377\\331', '1', '2022-03-16 21:51:37', '1', '2022-03-16 21:51:37', 0); -INSERT INTO "public"."infra_file_content" ("id", "config_id", "path", "content", "creator", "create_time", "updater", "update_time", "deleted") VALUES (3, 4, 'e9b5fa3c7dbf4a4f96f5568c5eb34f3c.jpg', E'\\377\\330\\377\\340\\000\\020JFIF\\000\\001\\001\\000\\000\\001\\000\\001\\000\\000\\377\\333\\000C\\000\\003\\002\\002\\003\\002\\002\\003\\003\\003\\003\\004\\003\\003\\004\\005\\010\\005\\005\\004\\004\\005\\012\\007\\007\\006\\010\\014\\012\\014\\014\\013\\012\\013\\013\\015\\016\\022\\020\\015\\016\\021\\016\\013\\013\\020\\026\\020\\021\\023\\024\\025\\025\\025\\014\\017\\027\\030\\026\\024\\030\\022\\024\\025\\024\\377\\333\\000C\\001\\003\\004\\004\\005\\004\\005\\011\\005\\005\\011\\024\\015\\013\\015\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\377\\302\\000\\021\\010\\001\\002\\001\\002\\003\\001\\021\\000\\002\\021\\001\\003\\021\\001\\377\\304\\000\\036\\000\\000\\003\\001\\001\\001\\001\\001\\001\\001\\001\\000\\000\\000\\000\\000\\000\\000\\010\\011\\007\\001\\006\\012\\002\\004\\005\\003\\377\\304\\000\\034\\001\\001\\000\\002\\003\\001\\001\\001\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\001\\005\\002\\004\\006\\007\\003\\010\\377\\332\\000\\014\\003\\001\\000\\002\\020\\003\\020\\000\\000\\000\\252`\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\007\\000\\000\\000\\000\\000\\350\\034:p\\350\\000\\034\\003\\240p\\000\\000\\350\\000\\034$\\001\\200\\200\\000\\377\\000\\013\\371\\200\\200\\027\\370\\341 \\007\\370\\300\\012\\002\\000\\004\\001\\002\\276\\001 \\300\\000\\013\\374\\000\\007\\010\\004]\\003\\0038\\002\\252y@)A+\\306\\234\\015\\374\\233 `\\005&\\020 5`7\\363~\\025Q\\323<\\261\\252\\021`\\277\\300\\000p\\200ES \\020\\027\\364UMP\\240\\002\\250j\\244X/\\340\\200\\015Q\\026J\\246e\\003\\376t\\312H\\262*\\205\\375\\025QV\\025R\\251\\212\\261\\177\\200\\000\\341\\000\\212\\246@ /\\350\\252\\212\\260\\017\\360\\277\\230\\011\\177I\\000\\007\\253\\022\\322\\322\\222\\014\\015\\370\\365d\\254/\\350\\252\\212\\260\\252\\225LU\\213\\374\\000\\007\\010\\004U0\\003\\001<\\240\\252\\232\\261T\\017*E\\243\\312\\225@\\233''\\225<\\261s\\305Tt\\317,E\\223\\313\\027<@G\\370\\016\\222\\010\\372''\\000\\003\\204\\377\\0002\\303\\207@j\\014\\250\\325\\205T\\325\\015X\\225\\246V5&\\246j\\202\\260eFVZaU5A\\252\\020\\023\\240p\\012\\252\\000\\000\\000O\\343\\177\\003\\000(\\011\\344I\\262*\\245\\32003\\204\\0025r\\347\\237;%\\0000\\000<\\251s\\306\\010\\237\\342\\002o\\303\\000 %\\376\\000\\003\\362/\\347\\316\\311\\253\\236X\\271\\346\\246yP0\\003\\177\\030"\\177\\234&\\310\\351\\023h~\\212PC\\003\\324\\217\\351\\277\\221ht\\207L`\\211\\374Hc\\351\\350\\000\\016\\020\\010\\312\\307\\364@\\307\\364\\340\\201\\225@\\177\\304\\000j\\204\\004\\351\\301\\2512\\241\\252"\\321\\252\\0159\\252\\212\\270\\376\\231I+\\213\\374p\\200E\\376\\000\\003\\204\\00203\\324\\224\\240J\\214\\260\\312\\017\\242a\\201$\\001\\345\\307\\370\\337\\011ZW\\362@\\016\\250\\201\\025\\350\\205\\343T%\\205\\2450\\003\\177\\030#\\204\\002/\\360\\000\\034 \\021_\\014\\000\\240''\\22103\\204\\0025r\\250\\010yO\\317\\006f\\260\\350\\360b\\322\\263!\\007\\354\\233#\\246jg\\227$\\001_\\314\\000\\324\\311\\264}=\\000\\001\\302\\001\\026\\234\\312\\206\\260\\312\\004\\004\\351*\\312\\246*\\305\\361?\\244\\377\\0003\\343\\226]\\204\\353\\277X\\314\\376M[g\\037\\362\\304L\\213\\003Vec\\372*\\306\\252U\\001\\002:U@\\000?"\\376M\\223S\\03500\\003\\000\\025\\202\\347\\221d\\276P\\376\\244c\\264\\033\\331\\357\\227_\\177\\322\\333_\\322\\365\\225\\373\\347]W\\374\\011\\221\\362u@\\011X5E&!x\\325\\024\\230\\365\\300\\000~E\\374\\213E\\317"\\311\\253\\017\\361\\276\\030\\020\\252\\223h\\2501,\\305\\026\\336S[\\275\\353\\251s\\367\\335mvG\\345\\375+)\\354\\234\\217\\240\\373\\304\\262\\313\\031\\256U1V\\001\\376\\027\\362k\\224\\000\\300\\017\\242p\\0008O\\362,\\015X\\324\\217\\350\\200\\217\\361\\001KJJ\\321\\307\\206\\371\\310\\333y\\277\\035\\355\\274m\\325?\\277\\254\\334\\361\\377\\000\\037A\\377\\000''\\325|]\\204\\354j\\023\\355\\254r\\303S5A\\252\\020\\0202\\303*2\\263\\351D\\000\\016\\022\\000uD\\010\\300\\013J`\\006\\000?\\306\\000\\007\\207Cy\\306\\332\\376\\177.\\372\\011\\365\\214_\\254\\257\\324\\371\\215\\345S\\364\\277\\021C{*L\\032A\\026ML\\252d\\002\\003\\351\\350\\233&\\246P\\020\\0008@"\\377\\000\\031A\\352H\\014:D\\332\\037\\242\\277\\235\\020\\361\\306\\245\\331\\377\\000/\\316\\356\\177\\222\\263c0\\336\\303\\326q\\266_\\305\\356\\234\\226\\313\\320\\351\\301C\\177+\\370\\277\\001\\352\\214\\260\\300I\\000W\\362\\224\\200\\001\\302\\001\\017\\351\\226\\031X\\253\\017\\340\\025PU\\005\\\\\\377\\000\\264\\313Y\\030\\177\\246\\313K\\305\\232Liq?\\353D\\376\\376\\220\\224\\300\\037\\362\\001\\217\\351\\252\\021l\\177N\\035*\\240\\000\\037\\221\\177$\\031i\\314\\254\\312I^z\\243\\350\\234\\225g\\253\\002@\\225\\354]\\017\\356\\036\\341\\246\\020\\361\\006\\001\\3768 C\\372o\\340`\\006\\000X\\000\\000?"\\376yaV*\\241\\344I\\262je\\001''\\361!\\217"U1V\\037\\323,\\032\\221\\00252m\\037I\\207\\225"\\310\\376\\210\\020\\376\\224\\004\\341\\000\\213\\374\\000\\007\\011\\376+\\006V5\\000p@\\317\\245\\003\\204\\0035c+\\032\\203S2\\263,*\\211\\225\\022\\264\\325\\215PUL\\260\\177\\016\\225L\\010\\004_\\340\\0008H\\001X7\\363\\177=A\\226\\015H\\225\\033\\371!\\217\\244\\303\\0037\\303\\327\\0319+\\312LH1\\3755cT"\\300\\252\\235\\030\\003\\324\\200\\376\\224\\004\\000\\017\\310\\277\\236X\\000\\015P\\232\\306\\376t_\\314\\004jF\\250\\365"XRr\\027\\217\\360\\277\\217\\361 \\314\\014\\372L<\\251\\026K\\240HR\\177\\237U\\000\\000p\\200CT\\000ef\\250U2V\\034\\003T2\\261\\252\\032\\241T5Q\\0028\\003\\374eD\\255-9\\225\\022\\264\\252d\\255\\032\\202\\252\\200\\001\\302\\001\\025\\360\\220`U1V*\\241\\025\\300\\237\\345(=X\\226\\236\\244\\000\\252gI\\004o\\345P"\\310\\001\\201\\216\\221\\251\\216\\230\\301\\000\\001\\302\\001\\025L\\200@_\\321U<\\240\\352\\220\\010\\257\\342\\002\\\\\\363\\312\\210\\011\\352\\311X0#\\244:d\\203-1\\352\\211Z0\\007\\015X\\213''\\226>\\236\\200\\000\\341\\000\\213N 5B\\252UB,\\023\\374\\240\\002\\254ZRV\\215H\\253\\212\\241@\\015P\\252d\\002\\032\\243+-9\\301\\0002\\301\\2472\\262\\200\\200\\001\\302\\001\\000\\001\\345\\207L\\252\\207\\312\\271\\321\\2002\\303|\\037\\322l\\225\\364\\341\\276\\236T\\232\\346\\002Zb\\030\\036\\244\\177\\205\\374\\177\\214\\000@\\213\\374\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\007\\377\\304\\000B\\020\\000\\000\\003\\006\\002\\011\\002\\005\\003\\003\\002\\003\\011\\000\\000\\000\\006\\007\\010\\000\\004\\005\\024\\025\\026\\011\\027\\001\\002\\003\\021\\023\\030\\031W\\205%8\\020 !Gg\\022&''()FAu"7901BPQ`ac\\203\\377\\332\\000\\010\\001\\001\\000\\001\\022\\000\\377\\000\\310\\367\\266\\366\\336\\333\\333{om\\355\\275\\267\\266\\377\\000\\216\\377\\000\\206\\215:4\\374\\273\\333\\365h\\370\\376\\255\\015\\275\\267\\266\\366\\337\\363/\\005\\342z\\022\\312\\274t\\015\\007\\016(\\241\\270l\\214\\253\\227TU9\\334\\326\\352\\212\\247;\\232\\335QT\\347s[\\252*\\234\\356kaN\\250L\\345''\\2329\\214&\\270\\250\\264\\271\\006^\\013\\304\\364%\\225x\\350\\032\\016\\034QCp\\331\\031W.\\250\\252s\\271\\255\\325\\025Nw5\\272\\242\\251\\316\\346\\374W\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\311y\\031\\342re''\\216F@\\370\\235\\030G\\014\\221\\224}\\302\\231P\\231\\312K43\\030MqQir\\037/TU9\\334\\326\\352\\210\\247;\\230\\3100\\317\\023\\234\\311<\\0162\\030D\\353"8\\234\\364\\333\\352\\3623\\304\\344\\312O\\034\\214\\201\\361:0\\216\\031#(\\373\\325\\021Nw1\\272\\242\\251\\316\\346\\267TU9\\334\\326\\352\\212\\247;\\232\\335QT\\347s~lQ\\275\\365\\231\\2761\\215\\003D2L\\001"c\\021\\224R\\216\\034\\206\\360\\246\\237z\\242&>\\345\\267TD\\307\\334\\306\\305\\033\\330\\231\\233\\343\\033\\003/\\275\\236\\021\\227\\202\\016=\\016\\225^:\\031\\003\\200\\365\\240\\334JFU\\365\\007 \\343\\320\\226U\\340a\\220\\304\\017E\\015\\303g\\246\\237O\\025FX\\246\\352.c\\011\\255\\332\\327\\036A\\225\\012]3Vq\\350&8\\311\\300\\315\\340\\\\\\011%iQ\\245B\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\012\\204\\274g&\\314\\321\\314p\\315\\271Z\\245\\3101\\236\\274\\310\\262`u\\023\\007\\014G\\024a\\0347\\2054\\344\\227R\\351\\232\\214O@\\311\\306q\\206l\\362\\34075U\\215b\\254\\250\\013\\025''\\225\\371p&\\270\\250\\265I\\366+\\320a\\350s\\201!\\243\\020h\\036\\262\\034\\211qe_U\\012\\242,\\226q\\024&''\\011\\3015\\340d\\011%iP^\\227Js\\266m\\322\\351Nv\\315\\222\\352]3Q\\211\\350\\0318\\3160\\315\\236\\\\\\006\\346\\252\\261\\254U\\325\\011b\\244\\362\\277.D\\327\\025\\026\\251>\\3109x\\221d\\262P\\003\\003F#\\212(\\216\\033=4\\345\\2127\\26137\\3066\\006_{<#\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSN]Q\\023\\037s\\030\\215TE\\212\\222\\255\\345\\300\\232\\342\\242\\360''\\333\\024o}fo\\214\\371\\261F\\367\\326f\\370\\306\\305\\033\\330\\241\\233\\343>8\\243{\\0233|c`g\\367\\263\\3022\\240\\305_\\226\\303\\320L\\\\eu\\307E\\225\\365/\\243.D7\\316u\\223\\270mg[S\\254\\227\\010\\336[H\\260\\321sZ\\270\\250\\263^\\247\\205\\317\\276\\242\\317\\311\\266\\355\\033\\231PaQ\\314\\221\\350&1\\263F\\334\\255Kzb\\242#y\\222"\\304\\305\\315j\\335\\255J\\372\\232\\344C|\\230Y;\\306\\267\\215\\313:\\330\\\\\\373\\024,\\374\\233%\\334)\\371l=\\003F6h\\334tY\\237L\\321\\273s}\\031Q\\021\\274\\311\\021bb\\346\\265n\\326\\245}Mr\\241\\276L,\\235\\343k\\306\\345\\235\\370b\\215\\354L\\315\\361\\215\\201\\237\\336\\317\\010\\330\\242\\373\\3523|g\\303\\003?\\275\\236\\021\\261F\\367\\326f\\370\\317\\233\\024o}fo\\214lQ\\275\\211\\231\\2763\\343\\2127\\26137\\3066\\006\\177{<#b\\215\\357\\254\\315\\361\\215\\325\\025Nw5\\260\\247T&r\\223\\315\\034\\306\\023\\\\TZ\\\\\\203/\\005\\342z\\022\\312\\274t\\015\\007\\016(\\241\\270l\\214\\253\\226\\027\\036\\372\\313?&\\337\\367\\352\\262\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271 \\345\\342z\\035*\\274\\014\\015\\030\\216+A\\270\\224\\364\\323\\2269\\177d\\374\\333\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256K\\310\\317\\023\\223)\\331\\374\\010\\325Df\\246\\332\\336\\\\\\211\\255\\332\\327\\002}\\220a\\236''9\\222x\\034d0\\211\\326Dq9\\351\\267\\326\\302\\231/\\026*O4s\\0303qQir\\014\\274\\212\\360\\3012\\253\\307 \\320|2\\214\\034\\206H\\3129\\031\\353\\314\\3649\\300\\2210p\\310qY\\016D\\270SNDj\\2433\\223uo.D\\326\\355k\\203>\\3100\\317\\023\\234\\311<\\0162\\030D\\353"8\\234\\364\\333\\353b\\260\\250\\214\\344\\331\\225\\371r&\\267kUI\\366\\352\\212\\247;\\232\\3109x\\236\\207J\\257\\003\\003F#\\212\\320n%=4\\345\\212\\272\\2413\\223fW\\345\\310\\232\\335\\255U''\\333\\252*\\234\\356o\\313\\277v\\215:t\\377\\000\\243\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSNLF\\245\\3235H\\326\\362\\3443qQx\\023\\354h\\025\\302b`w\\023\\007\\014\\241\\224a\\0347\\2054\\345\\325\\0211\\3671\\210\\325HX\\251\\032\\336\\\\\\211\\256*/\\002}\\214\\365\\346E\\223\\003\\250\\2308b8\\243\\010\\341\\274)\\247%\\344W\\211\\316d\\2369\\006\\203\\341\\225\\221\\034NFQ\\313\\012t\\276f\\246\\314\\321\\314`\\315\\273Z\\245\\310i3\\327\\231\\026L\\016\\242`\\341\\210\\342\\214#\\206\\360\\246\\234\\233\\025t\\272g),\\257\\313\\220\\315\\305E\\252O\\262]TE\\2221"\\203D\\341\\306&\\263\\314\\200\\324\\325V\\012\\203\\014\\360\\3012\\253\\300\\343!\\204N\\214\\034\\206OM\\276\\256_\\356Ger\\347\\374\\211e\\317W\\230\\320+\\204\\304\\300\\356&\\016\\031C(\\3028o\\012i\\311\\007 \\343\\320\\226U\\340a\\220\\304\\017E\\015\\303g\\246\\237O\\025DY&\\332.c\\011\\255\\332\\327\\036A\\227\\221\\236\\0309\\225x\\344d\\017\\211\\326C\\221)\\031G\\336\\227Js\\266m\\205:^3\\223^h\\3468f\\334\\255R\\344\\030\\317^dY0:\\211\\203\\206#\\2120\\216\\033\\302\\232r3\\320a\\350L\\001"c\\021\\220\\036\\214\\034\\206\\360\\246\\237p4\\373\\333\\341\\030\\317^dY0:\\211\\203\\206#\\2120\\216\\033\\302\\232rlV\\022\\361\\234\\244\\262\\303.C7\\025\\026\\251>\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSN_.(\\276\\372\\214\\337\\030\\311p\\215\\346H\\364\\015\\0275\\253v\\2655\\352_L\\030?1fK*#\\313\\231#\\320LcQm\\332\\324\\257\\246\\3642\\374\\330\\337\\364_\\374\\305\\231,\\250\\217.d\\217A1\\215E\\267k2\\276\\230\\227\\261W\\346L\\364\\015\\0279]nV\\246}Ov\\217\\322\\312\\203\\012\\216d\\217A1\\215\\2326\\345j[\\323\\025\\021\\345\\313i\\026&1\\250\\267\\025\\026W\\323:\\345~\\023nF\\272\\222\\177Q\\227\\266]^\\237\\343]\\014\\2776\\262\\032C\\\\\\230\\336\\337\\275\\257\\033\\226I\\225\\006\\025\\034\\311\\236\\202c\\0334m\\312\\324\\257\\246\\252#\\313\\226\\322,LcQn*,\\257\\246\\2565\\313\\316}\\223\\373*\\316\\266\\247Y/aO\\314\\231\\026\\0321\\263F\\335\\255L\\372b^\\305_\\2313\\3204\\\\eu\\271Z\\232\\365%\\312\\27191\\262\\177e^7,\\353r3\\324\\223\\372\\214\\275\\262\\356\\364\\377\\000\\032TDo2$X\\230\\271\\255[\\325\\251_SC(k\\223\\013\\333\\367\\255\\341r\\310\\266(\\276\\372\\214\\337\\031\\360\\335\\241\\261E\\367\\326gx\\317\\233\\024o}fo\\214b\\270\\321\\023\\023\\003\\270`\\304\\033\\024\\243\\010\\341\\274YW\\323\\305Q\\231\\252F\\213\\230\\302k\\212\\213\\307\\220d\\034\\203\\210\\263\\245(\\001\\206C\\020=hG\\022\\236\\232}\\352\\212\\247;\\232\\307\\222\\2433\\224\\235\\0271\\304\\327\\035\\027\\217!\\360+\\320a\\026L\\016\\241\\243\\020p\\036\\214#\\206\\361e_wh\\321\\253\\271\\227\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\311.\\252#5g\\036\\201\\222p\\343\\023^\\005\\300\\222j\\253\\005\\351v\\230\\373h\\305qZ\\031&\\000\\220\\320p6\\027G\\016Cx\\262\\256H9x\\236\\207J\\257\\003\\003F#\\212\\320n%=4\\345\\273\\351\\271\\227\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\313\\024obfo\\214l)\\222\\361b\\244\\263C1\\2037\\025\\026\\227 \\305qZ\\031&\\000\\220\\320p6\\027G\\016Cx\\262\\256X\\\\{\\353,\\374\\233c\\227\\366O\\315\\261^\\274\\317B`\\011\\015\\007\\003G\\024`\\3447\\213*\\344\\274\\214\\36192\\223\\307# |N\\214#\\206H\\312>\\341N\\250\\014\\325''\\2329\\214&\\270\\250\\264\\271\\015\\006z\\014"\\316q\\324Lb1\\003\\326Dq.\\024\\323\\357\\303\\024o}fo\\214\\371\\261F\\367\\326f\\370\\306^Ex\\234\\346I\\343\\220h>\\031Y\\021\\304\\344e\\034\\260\\246K\\306rm\\315\\014\\306\\014\\333\\265\\252\\\\\\207\\300\\3204C$\\300\\022&1\\031E(\\341\\310o\\012i\\367\\252"c\\356[uDL}\\314\\370\\021\\211t\\316RU\\274\\270\\014\\334T^\\004\\373%\\325DY#\\022(4N\\034bk<\\310\\015MU`\\260|,\\024\\253\\374M\\331\\323n\\004v\\205l6\\332\\377\\000\\243]\\365\\014"\\367Dn\\342,\\324\\2745\\305\\217\\342\\031)\\306Q\\330`\\006\\024y\\316#0\\337\\307\\021\\2503\\344b_\\365\\270\\364O\\005\\3674B\\335\\023\\301\\235\\316\\020\\262p''\\\\\\023\\231.\\035.\\334"/\\221\\227H4\\307\\015\\373m\\023ww\\331k\\3556\\272v\\233=\\236\\256\\215\\372\\332\\370\\250&c%Ml\\212\\335r\\314;s\\352B*s\\272R\\352\\241,\\221\\211\\022\\031''\\01615\\236c\\206\\246\\252\\260T\\030g\\206\\011\\225^\\007\\031\\014"t`\\3442zm\\365r\\350\\352Ier\\347\\374\\211e\\317W\\231.\\252"\\311\\030\\221A\\242p\\343\\023Y\\346@jj\\253\\005^\\013\\304\\213:R\\200\\350\\032\\016\\034V\\204q)\\031W-\\314\\203\\227\\211\\026K%\\00004b8\\242\\210\\341\\263\\323NIu.\\231\\250\\304\\364\\014\\234g\\030f\\317.\\003sUX\\322\\345\\376\\344\\266W.\\177\\310\\226\\\\\\365y\\215\\002\\270LL\\016\\342`\\341\\2242\\214#\\206\\360\\246\\234\\276\\\\Q}\\365\\031\\2761\\225\\021\\345\\313q\\026&1\\250\\267\\025\\026W\\323\\020\\322\\344\\347:\\366\\375\\225g[R?\\005DF\\363$E\\011\\213\\232\\325\\275Z\\225\\365>\\206\\177\\233[\\241\\237\\346\\337\\206\\006\\177{<#b\\213\\357\\250\\315\\361\\214\\377\\000\\372\\265\\335v\\232\\232\\232\\372vz\\332\\332uvz5\\366;-M\\206\\317F\\317g\\253\\243SSWF\\355\\032\\242\\210\\373\\270P5\\025\\215=~\\251X{\\256\\325\\357j\\311\\224\\357\\212\\035\\241\\241\\003\\304v\\013\\250\\036\\215\\301\\342\\373hk\\313\\203\\343\\356\\302\\036\\351\\267yy\\332\\352l6\\033\\035M;M\\246\\324\\240Pp#\\224H/\\203\\301\\235_\\266\\033@\\356\\321\\337F\\266\\333s:;j\\303\\236\\037uvzt\\350\\330\\353i\\325\\333h\\331\\252\\014*9\\223<\\304\\3066h\\333\\225\\251_L\\372\\262\\032\\\\\\234\\230\\336\\333\\301W\\215\\313$\\312\\210\\362\\346H\\364\\023\\030\\324[z\\265+\\351\\235\\014\\27762\\344C\\\\\\230\\331_\\275o\\033\\226u\\222\\366\\024\\374\\311\\021a\\243\\0334m\\312\\324\\327\\246*"7\\231",L\\\\\\326\\255\\352\\324\\257\\251\\377\\000\\321\\207\\363\\026d\\267#]I\\177\\250\\333\\333.\\357O\\361\\257\\223v\\375\\032tic=\\006\\021g8\\352&1\\030\\201\\353"8\\227\\012i\\365.\\252#5g\\036\\201\\222p\\343\\023^\\005\\300\\222j\\253\\005\\\\\\277\\333j\\312\\345\\317\\370\\352\\364\\236\\2572\\0143\\304\\3472O\\003\\214\\206\\021:\\310\\216''=6\\372\\274\\214\\36192\\223\\307# |N\\214#\\206H\\312>\\341N\\250L\\345%\\2329\\216&\\270\\250\\264\\271\\006^\\013\\304\\364%\\225x\\350\\032\\016\\034QCp\\331\\031W$\\030W\\206\\016e^\\007\\006\\214!\\225\\220\\344Nzm\\310\\215K\\245\\222m\\255\\345\\310f\\335\\255p''\\333\\024o}fo\\214g\\255?O\\377\\000M\\233o\\3721\\3766r\\330\\006\\242`\\227-\\216\\326"%\\217\\303^\\035\\366.\\2607\\261\\320*:#{\\015\\350\\016\\355\\335\\342\\373}\\216\\335\\205\\003a\\331\\211\\010\\265#\\241\\310+\\2049\\357i\\263\\250\\304\\023|.\\026\\370#\\035\\212\\335\\366\\273-H\\214E\\347a\\017\\333\\271ng\\257\\246\\321\\347O\\377\\000V\\315\\227r\\362=\\011eZ9\\007\\003G\\024`\\3346FU\\313\\245\\332c\\355\\233t\\273L}\\263n\\227i\\217\\266m\\325\\025Nw5\\220\\316\\236\\244\\267\\2671\\177\\310\\226\\\\\\215\\011\\212\\342\\2642L\\001!\\240\\340l.\\216\\034\\206\\361e\\\\\\272\\242\\251\\316\\346\\262\\031\\323\\324\\226\\366\\346/\\371\\022\\313\\221\\2411\\\\V\\206I\\200$4\\034\\015\\205\\321\\303\\220\\336,\\253\\227\\311\\277v\\215:t\\377\\000\\243\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSNH0\\317\\014\\023*\\274\\0162\\030D\\350\\301\\310d\\364\\333\\351\\032\\250\\213%#[\\313\\2215\\305E\\340O\\266(\\336\\372\\314\\337\\030\\311u.\\231\\250\\304\\364\\014\\234g\\030f\\317.\\003sUX\\327TD\\307\\334\\266+\\215\\020\\311\\316\\004\\206\\214A\\261J\\300r%\\305\\225}\\352\\210\\230\\373\\230\\313\\233ORK+\\227?\\344K.z\\272\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSNX)}\\012\\363;\\375\\351\\301\\240G\\210\\350$il F\\024\\263\\243\\273\\336\\323\\364\\351\\331\\005\\204\\033\\023T\\307y\\177z\\200?\\215a\\021\\207\\347\\027\\347\\247c\\376\\032\\346ED\\236,m\\236\\2443R \\034\\210\\277m!\\201\\302\\244\\033\\037}\\025@v\\300=\\274/e\\017\\330;k\\273\\215\\341c8\\2748\\276\\015\\232\\016\\217\\033\\343\\220\\215\\226\\207\\230\\233\\014\\224X(\\004\\361\\002v\\212\\275\\277k\\274\\306\\234\\347\\334\\266@\\261\\364\\010\\315\\016j\\010CO\\325(;\\336\\246\\355\\213\\312\\355A\\247\\241\\322\\253\\207#\\020h\\036\\262\\033\\211H\\312\\276\\266\\006\\177{<#b\\215\\357\\254\\315\\361\\215\\322\\351Nv\\315\\260\\247K\\306rl\\315\\034\\306\\014\\333\\265\\252\\\\\\203/\\004\\034z\\035*\\274t2\\007\\001\\353A\\270\\224\\214\\253\\353aL\\250K\\024\\331\\2329\\214&\\267kT\\271\\006^Fx`\\346U\\343\\221\\220>''Y\\016D\\244e\\037~UA\\205G2G\\240\\230\\306\\315\\033r\\265-\\351\\237VCK\\227\\223\\013\\337\\366M\\343r\\3117#]I?\\250\\333\\333.\\357O\\361\\245DF\\363"E\\211\\213\\232\\325\\275Z\\225\\365>\\206\\277\\233Y.\\021\\274\\266\\221a\\242\\346\\265qQf\\275I.\\021\\274\\311\\036\\201\\242\\346\\265n\\326\\246\\275M\\015!\\276L/o\\336\\327\\215\\313$\\330\\242\\373\\3533|c`\\241\\377\\000,L\\357\\367\\247\\006[P=\\253\\374j\\017\\250\\353\\265\\327\\330\\276\\305\\003\\361W'']\\261%\\002l\\341\\261!\\010\\212\\003\\005x\\331\\353\\357\\011\\200I\\330\\354(C\\241\\335\\373a\\252\\355\\006\\324\\330\\353\\273m\\2302.\\020\\214 \\000\\000\\233\\3243c\\267z\\011\\3046P\\330f\\303o\\033\\212$D\\223\\022\\212F!\\316\\361\\347\\320\\224/\\211!\\327+\\360\\233*\\014*9l"\\304\\3066h\\334tY_M\\300\\317\\357o\\204eA\\205G2g\\240\\230\\306\\315\\033r\\265+\\351\\252\\210\\362\\345\\264\\213\\023\\030\\324[\\212\\213+\\351\\275s?\\011\\267\\\\\\337\\302L\\2500\\247\\345\\260\\213\\023\\030\\331\\243q\\321e}1\\015!\\276s\\257o\\336\\326u\\265$\\312\\210\\215\\345\\264\\364\\023\\0275\\253\\212\\213+\\352\\177*\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271t\\273L}\\263lU\\322\\361b\\2332\\277.C6\\355j\\251>\\305z\\363=\\011\\200$4\\034\\015\\034Q\\203\\220\\336,\\253\\222\\3623\\304\\344\\312O\\034\\214\\201\\361:0\\216\\031#(\\373\\205:\\2413\\224\\226h\\3468\\232\\342\\242\\322\\344\\031x/\\023\\320\\226U\\343\\240h8qE\\015\\303de\\\\\\212\\364\\030E\\223\\003\\250h\\304\\034\\007\\243\\010\\341\\274YW\\334U\\225\\011\\234\\2332\\277.\\004\\326\\345j\\251>\\311u.\\226K8\\212\\015\\034g\\030f\\3602\\004\\223UX\\326\\011\\377\\000\\362\\304\\315\\377\\000{peJ\\351\\277hZ\\304vZ\\3739\\2471N\\307SWe\\251\\243F\\256\\215\\3324h\\321\\243\\377\\000M\\337M?M\\377\\000\\374\\001\\0177\\335\\001\\215G\\321\\244)\\357a\\257\\255\\266\\327\\324\\324}\\013\\212!\\243\\030&\\302-\\011\\332\\353\\355\\3346\\373\\370{@\\344z"\\374\\255B\\301\\300\\373\\203\\336\\327o\\005\\024<\\355\\242\\232\\346(\\006\\004g\\204\\243aQ;\\225N\\003\\023v\\331\\354\\037\\035:]\\246N\\3326(\\336\\304\\314\\337\\030\\304b\\2423\\223eo.\\004\\326\\355k\\201>\\335QT\\347s[\\024obfo\\214\\370\\232\\005hd\\347\\002D\\301\\303(]`9\\022\\341M9.]=6\\354\\256\\\\\\377\\000\\216\\257I\\352\\363%\\324\\272Y,\\342(4q\\234a\\233\\300\\310\\022MUc_.(\\336\\372\\314\\337\\031\\360\\030a\\247c\\0216\\200\\207\\256&0v\\334\\333\\277\\304\\235\\036\\335\\264\\012\\3000\\261\\203\\3541\\361\\377\\000g\\255\\265x\\206\\353m5\\335t\\353\\225\\373/\\257\\015\\367_WF\\237\\364\\332\\025\\357;\\377\\000\\340~\\331\\351\\325h\\332b\\213\\273F\\037c!1\\006\\3241\\021}\\327\\323\\264{\\331\\270\\201\\004N\\220\\367}G\\355M\\233\\333\\346\\256\\317WF\\333j\\230\\203{7\\015\\251\\215\\026\\333\\270\\352l"o\\202g\\215\\216\\323k\\266\\332\\352m6\\357\\272\\272\\272\\3325\\264\\352j\\354\\365u\\233\\024?}\\006_\\214d\\034\\203\\217BYW\\201\\206C\\020=\\0247\\015\\236\\232}\\337\\243\\364\\357c=y\\221d\\300\\352&\\016\\030\\216(\\3028o\\012i\\310\\257^dY\\316:\\206\\203\\201\\303\\212\\310\\216%\\305\\225r!\\0248B`\\356\\237\\243\\216\\371\\317\\371\\001\\335\\260\\363\\003N\\220\\210\\3748\\351\\036\\017\\211\\334"\\320w\\277\\327\\300|\\326\\027\\3035\\366z\\372\\273\\030\\273\\276\\246\\276\\267\\376(V\\337Q\\357N\\256\\301\\317Wi\\254\\355\\372\\270\\233g\\245?\\205G2G\\230\\224\\306\\315\\033r\\263+\\351\\251{\\025~d\\317@\\321q\\225\\326\\345jk\\324\\267\\350\\321\\243v\\226\\305\\023\\337Y\\231\\343\\031/aO\\313a\\350\\0321\\263F\\343\\242\\314\\372b\\345C\\\\\\347Y_\\275\\254\\353ju\\225\\021\\033\\313i\\350&.kW\\025\\026W\\324\\372\\031~ln\\206\\237\\233\\033\\241\\227\\346\\317\\227v\\375\\032tic=\\006\\021g8\\352&1\\030\\201\\353"8\\227\\012i\\367\\013\\217}e\\237\\223c\\305.\\026*J\\213\\230\\341\\233\\212\\213\\307\\220n\\227i\\217\\266l\\250R\\351d\\214H\\2411\\306N\\006l\\363 5+J\\215\\036*\\220\\316R4\\\\\\306\\023\\\\T^<\\203\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256M\\216g\\331?6\\3109\\007\\021gJP\\003\\014\\206 z\\320\\216%=4\\372\\274\\020q\\026K%\\001\\320\\310\\034\\007\\242\\210\\341\\2622\\257\\277\\253K \\364\\026F\\035ID\\0163\\030\\202k\\002H\\224\\364\\323\\342VP\\306\\002\\305>\\303\\005\\001\\273\\037\\272\\313\\261\\034\\325R\\017\\212\\252],\\223^W\\345\\310j\\201Z\\252O\\266\\030\\220\\007\\027\\344:[m\\266\\333\\035\\372\\372\\365&\\324\\014C\\2654\\357\\320\\357\\243{b\\242\\246\\014\\244\\313\\225\\372\\013Q%\\267Z\\252O\\267TU9\\334\\326\\302\\343\\337Yg\\344\\333\\025uDg&\\314\\257\\313\\2215\\273Z\\252O\\262]K\\245\\222\\316"\\203G\\031\\306\\031\\274\\014\\201$\\325V5\\325\\025Nw5\\260\\247T&r\\223\\315\\034\\307\\023\\\\tZ\\\\\\203\\031\\3500\\2139\\307Q1\\210\\304\\017Y\\021\\304\\270SO\\253\\310\\317\\023\\223)\\221\\252\\210\\261R5\\275\\005\\310\\232\\342\\242\\360g\\333\\024o}fo\\214eB\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\245\\312\\234\\355\\233%\\325DY#\\022(4N\\034bk<\\310\\015MU`\\277\\014Q\\275\\365\\231\\2763\\346T\\030Ts$z\\011\\214l\\321\\267+R\\336\\230\\2501W\\346L\\213\\023\\027\\031]nV\\245}I\\015.NK\\357\\177\\331W\\215\\313"\\335s\\177\\011\\267<\\235I?\\247+''.\\257O\\362_\\246\\014?\\230\\263%\\225\\021\\345\\314\\221\\350&1\\250\\266\\365jW\\3237\\267\\321\\261E\\367\\326gx\\306T\\030S\\362\\330E\\211\\214l\\321\\270\\350\\262\\276\\230\\206\\227''%\\367\\276\\340U\\343r\\3117#]I\\177\\250\\333\\333.\\357O\\361\\244\\275\\205?-\\247\\240h\\306\\315\\033\\216\\2133\\351\\230\\345}\\223\\363l\\227\\260\\250\\346L\\213\\015\\030\\331\\243nV\\246\\2751Q\\021\\274\\310\\221bb\\346\\265oV\\245}M\\015!\\276Lom\\343k\\306\\345\\222lQ}\\365\\231\\2761\\225\\006+\\034\\311\\221bb\\347+\\255\\312\\324\\257\\251\\340g\\367\\267\\3026(\\336\\372\\314\\337\\030\\311p\\362\\345\\264\\364\\015\\030\\324[\\212\\2135\\351\\235s?\\011\\267#}I?\\250\\313\\333.\\357O\\361\\255\\355\\277F\\355-\\212/\\276\\2437\\306|\\313\\301x\\236\\204\\262\\257\\035\\003A\\303\\212(n\\033#*\\344\\203\\012\\360\\301\\314\\253\\300\\340\\321\\2042\\262\\034\\211\\317M\\271b\\256\\227\\313\\024\\333\\225\\371r\\031\\267kUI\\366A\\3108\\213:R\\200\\030d1\\003\\326\\204q)\\351\\247\\325B\\227K$bE\\011\\2162p3g\\231\\001\\251ZTi\\015\\177r[\\333\\230\\317\\344[2F\\202\\335.\\323\\037l\\331\\007/\\023\\320\\351U\\340`h\\304qZ\\015\\304\\247\\246\\234\\261WT&rl\\312\\374\\270\\023[\\265\\252\\244\\373\\032\\006\\210\\230\\347\\035\\304\\306#(\\245dG\\022\\341M>\\232\\005hd\\347\\002D\\301\\303(]`9\\022\\341M9t\\274L\\235\\264b\\270\\255\\014\\223\\000Hh8\\033\\013\\243\\207!\\274YW&<\\222\\351b\\244\\250\\271\\214\\031\\270\\250\\274y\\006T*\\210\\315F''\\240\\230\\234''\\004\\326yp\\033\\225\\245AW\\221\\236''&Rx\\344d\\017\\211\\321\\204p\\311\\031G\\336\\250\\212s\\271\\214\\227R\\351d\\263\\210\\240\\321\\306q\\206o\\003 I5U\\215t\\273L}\\263b5.\\026)\\266\\267\\227\\001\\233v\\265\\300\\237lQ\\275\\365\\231\\2763\\341\\243O\\351\\372\\350b\\275y\\236\\204\\300\\022\\032\\016\\006\\216(\\301\\310o\\026U\\313\\252*\\234\\356kuES\\235\\315d\\272\\227K%\\234E\\006\\2163\\2143x\\031\\002I\\252\\254k\\344\\337\\273F\\235:\\177\\321\\214\\365\\346E\\223\\003\\250\\2308b8\\243\\010\\341\\274)\\247.\\250\\211\\217\\271\\215\\325\\0211\\3671\\272\\242&>\\3467TD\\307\\334\\306#U\\031b\\244\\253yr&\\270\\250\\274\\011\\366^\\0108\\364:Ux\\350d\\016\\003\\326\\203q)\\031W\\325B\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\012t\\274g&\\314\\321\\314`\\315\\273Z\\245\\3102\\360A\\307\\241\\322\\253\\307C p\\036\\264\\033\\211H\\312\\276\\341q\\357\\254\\263\\362m\\216g\\331?6\\330\\\\{\\023,\\374\\233/"\\274Ns$\\361\\3104\\037\\014\\254\\210\\342r2\\216Hc\\373m\\336\\274\\305\\377\\000\\035\\336r4&+\\215\\020\\311\\316\\004\\206\\214A\\261J\\300r%\\305\\225}\\351t\\247;f\\330S\\245\\34396f\\216c\\006m\\332\\325.A\\227\\202\\016=\\016\\225^:\\031\\003\\200\\365\\240\\334JFU\\365y\\025\\342s\\231''\\216A\\240\\370edG\\023\\221\\224r\\351v\\247;h\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSNF\\201\\242\\031&\\000\\2211\\210\\312)G\\016CxSO\\244j\\242,T\\215oAr&\\270\\250\\274\\031\\366\\305\\033\\337Y\\233\\343\\030\\3204C$\\300\\022&1\\031E(\\341\\310o\\012i\\367\\025\\205BX\\251,\\260\\313\\2215\\305E\\252O\\374\\370\\242\\373\\3523|ct2\\374\\330\\335\\014\\377\\0006\\267C/\\315\\214\\2500\\250\\345\\260\\213\\023\\030\\331\\243q\\321e}7\\003/\\275\\236\\021\\2677#]77\\250\\313\\3271l\\277\\361\\256\\271\\177\\204\\333\\256o\\341&K\\330Tr\\330z\\006\\214l\\321\\270\\350\\263^\\233\\216g\\331?6\\330\\\\\\373\\024,\\374\\233}\\031r!\\256s\\354\\255\\303k>\\332\\236d\\270F\\362\\332E\\206\\213\\232\\325\\305E\\232\\365.\\271\\277\\204\\333\\256_\\3416\\353\\233\\370I\\225\\021\\345\\313q\\026&1\\250\\267\\025\\026W\\323\\020\\322\\344\\347:\\366\\321d\\331\\366\\324\\223b\\213\\357\\254\\316\\361\\214\\250\\210\\336d\\210\\2611sZ\\267kR\\276\\244\\206\\220\\327&7\\267\\357k\\306\\345\\222lQ}\\365\\231\\3361\\261D\\366(f\\370\\306Chk\\234\\373\\333x\\332\\316\\266\\244\\233\\241\\227\\346\\337\\233\\024o}fo\\214e\\344g\\211\\311\\224\\2369\\031\\003\\342ta\\0342FQ\\367\\252"\\234\\356cuES\\235\\315lQ\\275\\211\\231\\2761\\2602\\373\\331\\341>\\011uQ\\031\\2538\\364\\014\\223\\207\\030\\232\\360.\\004\\223UX.*\\351x\\261M\\271_\\227!\\233v\\265T\\237\\370 \\345\\342z\\035*\\274\\014\\015\\030\\216+A\\270\\224\\364\\323\\2269\\177d\\374\\333\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256]QT\\347s[\\252*\\234\\356kuES\\235\\315n\\227i\\217\\266m\\322\\3552v\\321\\227\\221^\\030&Ux\\344\\032\\017\\206Q\\203\\220\\311\\031G$\\272\\250\\214\\325\\234z\\006I\\303\\214Mx\\027\\002I\\252\\254\\024\\214K\\245\\212m\\255\\345\\310f\\335\\255p''\\333\\024o}fo\\214n\\250\\252s\\271\\255\\325\\021Nw1\\215\\003DLs\\216\\342c\\021\\224R\\262#\\211p\\246\\237R\\352\\2423Vq\\350\\031''\\01615\\340\\\\\\011&\\252\\260U\\313\\375\\266\\254\\256\\\\\\377\\000\\216\\257I\\352\\363 \\303:4\\376\\237\\256\\206+\\327\\231\\350L\\001!\\240\\340h\\342\\214\\034\\206\\361e\\\\\\212\\343DLL\\016\\341\\203\\020lR\\214#\\206\\361e_z\\242)\\316\\3462]K\\245\\222\\316"\\203G\\031\\306\\031\\274\\014\\201$\\325V4\\203\\012\\360\\301\\314\\253\\300\\340\\321\\2042\\262\\034\\211\\317M\\271t\\273L\\235\\264n\\227i\\217\\266lh\\025\\241\\223\\234\\011\\023\\007\\014\\241u\\200\\344K\\2054\\344G%\\302\\3057V\\362\\3443n\\326\\270\\023\\354\\274\\027\\211\\350K*\\361\\3204\\0348\\242\\206\\341\\2622\\256X\\\\{\\353,\\374\\233\\036)t\\262RT\\\\\\306\\014\\334T^<\\203/"\\2740L\\252\\361\\3104\\037\\014\\243\\007!\\2222\\216]QT\\347s[\\012uBg)<\\321\\314a5\\305E\\245\\3102\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271\\025\\3500\\213&\\007P\\321\\2108\\017F\\021\\303x\\262\\257\\270\\253\\252\\02396e~\\\\\\011\\255\\312\\325R}\\272\\242\\251\\316\\346\\377\\000\\356\\177\\377\\304\\000>\\020\\000\\001\\002\\005\\001\\006\\003\\007\\003\\004\\000\\004\\007\\000\\000\\000\\002\\003\\023\\000\\001\\004\\021\\024\\025\\005\\022!"23\\020\\205\\324\\026 #4c\\224\\34415A$QabB`q\\202\\0060R\\201\\261\\263\\321\\377\\332\\000\\010\\001\\001\\000\\023?\\000\\377\\000\\2214\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\201\\262\\3754h\\033/\\323F\\201\\262\\3754h\\033/\\323F\\005-+/e\\271\\330H/v\\2024\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\201\\262\\3754h\\033/\\323F\\201\\262\\3757\\216\\223@\\273nP \\251\\363\\252\\201\\037\\0238a%\\333r\\275\\004\\217\\221Q \\235\\300\\316\\\\F0)iY{-\\316\\302A{\\264\\036\\356\\201\\262\\3754h\\033/\\323C\\011 \\343u\\365\\011\\007"B!+\\000\\004\\270\\0140\\222\\355\\271^\\202G\\310\\250\\220N\\340g.#\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\336\\367\\225\\322F:\\253\\266\\342\\240\\220r$$s\\271\\230K\\200\\316\\321\\240mOM\\032\\006\\324\\364\\321\\346\\224\\221\\367\\361\\253P \\343t\\010$|\\212\\256''+\\030F\\255@\\273nP.\\220r$\\271\\037\\0238\\300\\252\\252y\\226\\335\\354$v\\263\\241\\325\\031\\364\\26498\\364\\251R\\255\\360j\\225I`\\262\\310*\\034\\341\\030\\025T98\\365IU-\\361\\252\\222I\\020\\262(*|\\347\\031\\364\\265O3\\226\\357aS\\265\\235\\010\\322+\\327m\\304\\301P\\347I\\002\\011\\334\\014''\\300\\243>\\226\\273\\033"\\225ZT~\\015*\\252\\254wYt\\203\\220#\\002\\252\\225\\227\\261\\032\\357\\244\\027\\273G\\032\\275\\002\\0166\\251\\244|\\212\\256''+\\030\\034\\270\\214`UP\\344\\343\\325%T\\267\\306\\252I$B\\310\\240\\251\\363\\234k\\373/\\324\\306\\277\\262\\375Lg\\322\\327cdR\\253J\\217\\301\\245UU\\216\\353.\\220r\\004`UR\\262\\366#}\\364\\202\\367h\\343I\\257]\\267+\\327T9\\322@\\203\\240\\302<\\322\\222>\\3764\\212\\365\\333q0T9\\322@\\202w\\003\\011\\360(\\3206\\247\\246\\214\\012\\252V^q\\256\\372A{\\264}7\\217+\\244\\367\\274\\256\\222<\\316\\223\\307\\315)#\\357\\343_\\305y\\352T\\227\\355b\\235\\254\\355\\272\\2744\\234\\354\\214\\206>\\272[\\233\\254F&+\\317U*\\277k|\\355gwz\\247\\036YW\\341\\240e2\\315*Hwr\\202\\367j\\3751\\211\\224\\3135I/\\332\\337\\013\\335\\255\\336\\250\\322pq\\261\\330\\372\\312\\357\\357?\\036gW\\032\\006+\\317R\\252\\207w(\\355go\\323\\343\\211\\224\\3135I/\\332\\337\\013\\335\\255\\336\\250\\322pq\\261\\330\\372\\312\\357\\357?\\341\\346\\224\\221\\367\\361\\345\\224\\276\\037\\177\\036WI\\357y]$y\\245''\\217\\232RG\\337\\307\\225\\322F\\201\\262\\3754`R\\322\\262\\366[\\235\\204\\202\\367h#I\\240]\\267(\\020T\\371\\325@\\217\\211\\234y]_\\206\\223@\\273nP \\251\\363\\252\\201\\037\\0238\\322h\\020q\\272\\005\\325\\016t\\220\\023\\340a\\037a\\032E\\002\\355\\270\\251\\252|\\352\\240G;\\231\\234\\370\\2240\\222\\355\\271^\\202G\\310\\250\\220N\\340g.#\\032\\006\\313\\364\\321\\240l\\277M\\032M\\002\\0167@\\272\\241\\316\\222\\002|\\014#\\354<<\\322\\222>\\376<\\256\\223\\303\\357\\343\\312\\351=\\357+\\244\\215\\003jzh\\3206\\247\\246\\215\\003jzh\\322k\\320q\\272\\364\\025>uP\\020\\350\\003\\217\\277\\217+\\244\\214\\372Z\\354l\\212UiQ\\3704\\252\\252\\261\\335e\\322\\016@\\214\\012\\252V^q\\276\\372A{\\264}7\\215"\\275v\\334L\\025\\016t\\220 \\235\\300\\302|\\0125z\\005\\333qPH9\\022\\\\\\216w3\\011p\\030\\317\\245\\245e\\347\\033\\357\\252\\027\\273G\\323x\\300\\252\\256\\306\\310\\252V\\251\\037\\215J\\222\\250\\235\\321]#\\3448\\325\\350\\027m\\305A \\344Ir9\\334\\314%\\300bu\\364\\264\\254\\274\\343}\\365B\\367iN\\233\\303\\351.\\333\\211\\012\\241\\316\\221\\020N\\340a>\\005;G\\232RG\\337\\306\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\036iI\\023\\257\\245\\245e\\347\\033\\357\\252\\027\\273Jt\\336\\037Iv\\334HU\\016t\\210\\202w\\003\\011\\360)\\332<\\322\\2220*\\252\\236g-\\336\\302Gk:\\021\\240mOM\\032\\006\\324\\364\\321\\240mOM\\014*\\203\\215\\320 \\221\\362*"r\\261\\201\\313\\210\\373\\332\\006S,\\322\\244\\207w(/v\\257\\323\\036\\312~l{)\\371\\261\\354\\247\\346\\307\\262\\237\\233\\032N\\016>>G\\327W\\177y\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\363:X\\373\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\363:H\\325pq\\261\\362>\\202\\273\\373\\317\\306^S,\\322\\244\\207wp/v\\267\\272e\\032\\376S,\\325$\\277k\\024/v\\255\\325\\037\\177\\032\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\325$\\277k\\024/v\\255\\325\\032\\266\\0166>G\\320W\\177y\\370\\313\\312e\\232T\\220\\356\\356\\005\\356\\326\\367L\\243\\314\\351c\\357\\343@\\312e\\232T\\220\\356\\345\\005\\356\\325\\372c\\023)\\226j\\222_\\265\\276\\027\\273V\\352\\224{)\\371\\261\\354\\247\\346\\307\\262\\237\\233\\036\\312~l{)\\371\\277\\371\\030\\024\\265O3\\210\\337}#\\265\\2358a$\\034n\\276\\241 \\344HD%`\\000\\227\\001\\206\\022]\\267+\\320H\\371\\025\\022\\011\\334\\014\\345\\304c\\002\\226\\225\\227\\262\\334\\354$\\027\\273A\\341\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\037\\272fb1\\215\\363\\317\\267\\271\\224\\277n\\327\\337\\215\\003e\\372h\\310U\\007\\033T\\025\\016t\\210NV4\\302|\\012W\\215\\177jz\\230\\327\\366\\247\\251\\360\\300\\245\\252y\\227\\033\\357\\244v\\263\\247\\323\\014$\\203\\215\\327\\324$\\034\\211\\010\\204\\254\\000\\022\\340>\\031\\365T\\254\\275\\226\\347aP\\275\\332\\010}U\\333r\\201\\005O\\235R#\\235\\314\\316|J4\\212\\004\\034mPT9\\322@NV0\\011\\360(\\300\\245\\252y\\227\\033\\357\\244v\\263\\247\\323\\014$\\203\\215\\327\\324$\\034\\211\\010\\204\\254\\000\\022\\340>\\030\\024\\265O3\\210\\327}#\\265\\2358\\3206_\\246\\215&\\201\\007\\033\\240]P\\347I\\001>\\006\\021\\201KT\\3638\\215\\367\\322;Y\\323\\215\\003e\\372o{H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\360\\317\\245\\245e\\347\\033\\357\\252\\027\\273G\\323x}%\\333q!T9\\322"\\011\\334\\014''\\300\\247h\\3206\\247\\246\\214\\012\\252V^q\\276\\372A{\\264}7\\215"\\275v\\334L\\025\\016t\\220 \\235\\300\\302|\\012\\037I\\007\\033\\257AS\\347T\\204%`\\003\\237\\022\\214\\372Z\\247\\231\\313w\\260\\251\\332\\316\\204i\\025\\353\\266\\342`\\250s\\244\\201\\004\\356\\006\\023\\340^\\031\\364\\264\\254\\275\\210\\327}P\\275\\3328\\300\\252\\256\\306\\310\\252V\\251\\037\\215J\\222\\250\\235\\321]#\\3448aU\\333r\\202\\241 \\344HH\\347s0\\227\\001\\217\\332\\360\\362\\330\\306\\371\\346\\\\\\337\\304_\\242\\366\\334\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\215Z\\201v\\334\\240] \\344Ir>&q\\201UT\\363-\\271\\330H\\355gC\\252\\320\\302\\2508\\335\\002\\011\\037"\\242''+\\030\\034\\270\\214k\\373/\\324\\306}-S\\314\\345\\273\\330T\\355gB4\\212\\365\\333q0T9\\322@\\202w\\003\\011\\360(\\325\\350\\027m\\305A \\344Ir9\\334\\314%\\300c\\357\\343H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\360\\317\\245\\245e\\354F\\373\\352\\205\\356\\321\\303\\351.\\333\\211\\012\\241\\316\\221\\020N\\340a>\\005;{\\336YK\\030\\231L\\263J\\252\\375\\255\\360\\275\\332\\267T\\243\\366=;O\\373\\227\\\\\\317\\377\\000K5\\031yL\\263J\\222\\035\\335\\300\\275\\332\\336\\351\\224{)\\371\\261\\373\\036\\235\\247\\375\\313\\256g\\377\\000\\245\\232\\214\\274\\246Y\\245I\\016\\356\\340^\\355_\\246Q\\257\\3452\\315*\\253\\366\\261B\\367j\\335^\\032\\006S,\\322\\244\\207w(/v\\257\\323\\031x\\257=T\\222\\035\\335\\303\\265\\235\\336\\351\\234{W\\370Q\\245j\\230x\\237\\320\\374\\313\\310\\271\\277\\212\\347nV\\337\\264{)\\371\\261\\244\\340\\343\\343\\344}uw\\367\\237\\215\\003)\\226iRC\\273\\224\\027\\273W\\351\\214\\274W\\236\\252I\\016\\356\\341\\356\\331\\335\\356\\231\\306\\255\\235\\223\\220\\307\\321Ksu\\210\\3202\\231f\\251T;\\271A{\\265~\\230\\327\\362\\231f\\225U\\373X\\241{\\265n\\250\\325\\260q\\361\\330\\372\\012\\357\\357?\\032V\\251\\207\\211\\375\\007\\314\\276\\213\\233\\370\\256v\\345m\\373F&S,\\325$\\277k|/v\\255\\325\\032N\\0166>G\\327W\\177y\\370\\362\\312_\\037,\\244\\367\\274\\256\\222\\030Iv\\334H\\322>ED\\202w\\0039q\\031\\3320)iYy\\267;\\011\\005\\356\\322}W\\215Z\\275\\007\\033\\257] \\344Iq\\016\\200\\010\\3206_\\246\\214\\012ZV^m\\336\\302A{\\264\\035W\\360\\325\\353\\327m\\304\\315#\\344Ur\\011\\334\\014\\345\\304|4\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\005-\\016N=*\\265H\\374jT\\222X,\\262\\011\\037!\\306\\277\\265=Ld*\\273n*j\\237:\\244G;\\232\\205>%;F\\223@\\203\\215\\320.\\250s\\244\\200\\237\\003\\017\\015&\\201v\\334\\240AS\\347U\\002>&q\\346\\224\\221*\\372\\252V^\\313s\\260\\250^\\355\\004d*\\273n*j\\237:\\244G;\\232\\205>%;G\\225\\325\\307\\330F\\221@\\273n*j\\237:\\250\\021\\316\\346g>%\\014$\\273nW\\240\\221\\362*$\\023\\270\\031\\313\\210\\306\\005-+/e\\273\\330H/v\\2025z\\364\\034m0H9\\022\\\\BV\\000\\011p\\037\\037+\\244\\367\\274\\256\\222\\037I\\007\\033\\257AS\\347T\\204%`\\003\\237\\022\\214\\372Z\\247\\231\\313s\\260\\251\\332\\316\\207\\206:\\253\\266\\342\\240\\220r$$s\\271\\230K\\200\\316\\321\\240mOM\\032\\006\\324\\364\\336\\031\\364\\264\\254\\274\\343]\\365B\\367h\\372o\\030\\025U\\330\\331\\025J\\325#\\361\\251RU\\023\\272+\\244|\\207\\025{v\\201\\224?\\334\\332X\\316\\322\\377\\000\\0038J\\201\\204\\351\\216\\235\\376\\022\\261\\235\\356\\374Sl\\307\\023\\006i\\223C\\252v\\275\\332\\215\\034#G\\010\\250\\245\\232j(\\365J\\253\\316\\343)ZV\\232\\266\\202H\\345)K\\374\\316\\321\\237J\\203ob5g\\225\\013\\335\\243\\214\\012\\252\\354l\\212\\245j\\221\\370\\324\\251*\\211\\335\\025\\322>S\\206\\025]\\267(*\\022\\016D\\204\\216w3\\011p\\030\\375\\257\\017-\\214o\\235e\\315\\374U\\373w\\264`UWcdU+T\\217\\306\\245ITN\\350\\256\\221\\362\\034i5\\3508\\335z\\012\\237:\\250\\010t\\001\\370i5\\353\\266\\345z\\352\\207:H\\020t\\030F}-v6E*\\264\\250\\374\\032UUX\\356\\262\\351\\007 G\\355xylc|\\353.o\\342\\257\\333\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\275\\357,\\245\\214\\274W\\236\\252I\\016\\356\\341\\332\\316\\357t\\3165l\\354\\214\\214\\217\\240\\226\\346\\353\\036\\030\\231L\\263T\\222\\375\\255\\360\\275\\332\\267T\\243\\331O\\315\\217e?7\\303\\357\\343\\313)`\\177Q\\336\\234\\245y\\177\\231^%.\\022\\200\\225\\347\\270\\230L\\247i\\177\\322P\\023\\231H%)\\011\\247;\\317\\214\\356''i\\317\\205\\347+\\312V\\205''a\\001\\224\\2579\\316s\\376%(\\254I\\261\\252I`\\231\\246\\252r\\375d%)^[\\322\\224\\355i\\333\\303\\376\\020\\231^E\\273/\\342S\\230\\336\\337\\336s\\237\\363\\032\\006S,\\322\\244\\207w(/v\\257\\323\\341\\252\\340\\343c\\344}\\005w\\367\\237\\214\\274\\246Y\\245I\\016\\356\\340^\\355ot\\312=\\224\\374\\330\\322pq\\361\\330\\372\\352\\357\\357?\\032\\006S,\\325*\\207w(/v\\257\\323\\030\\231L\\263T\\222\\375\\255\\360\\275\\332\\335\\352\\225\\257\\037\\261\\351\\332\\177\\334\\272\\346w\\372Y\\250\\322\\265Le\\344\\\\\\337\\305s\\2666\\337\\267\\275\\253\\327\\240\\343i\\202A\\310\\222\\342\\022\\260\\000K\\200\\306\\005-\\016N=*\\265H\\374jT\\222X,\\262\\011\\037!\\307\\356\\231\\230\\214c|\\363\\315\\356e\\257\\333\\265\\367\\341\\204\\220q\\272\\372\\204\\203\\221!\\020\\225\\200\\002\\\\\\006\\030Iv\\334\\257A#\\344TH''p3\\227\\021\\214\\012ZV^\\313s\\260\\220^\\355\\004i4\\013\\266\\345\\002\\012\\237:\\250\\021\\3613\\207\\325A\\306\\350*\\025\\016t\\210NV0\\011\\360(\\317\\252\\252y\\227\\033\\357\\252v\\263\\247\\323h\\362\\272H\\377\\000\\276^\\024\\345)c&`I\\344.W\\226\\342r\\234\\347o\\344\\247+\\014\\247;\\333j=\\2763\\012t\\322\\267''\\361\\310S\\275\\347\\372\\313\\204\\255;\\354\\335\\262\\242\\257 %\\274iI\\023@JR=\\335\\311\\363[ve\\306/''RN\\232F J\\207\\352$sP\\347+\\376\\240\\337\\207\\375\\305\\032E\\002\\355\\271@\\202\\247\\316\\252\\004}g\\032\\376\\324\\3651\\257\\355OS\\032\\376\\324\\3651\\240l\\277M\\037\\265\\341\\345\\277\\223\\362,9\\277\\212\\207r\\366\\334\\214\\205Wm\\305MS\\347T\\210\\347sP\\247\\304\\247h\\3206_\\246\\217\\332\\360\\362\\337\\311\\371\\026\\034\\337\\305C\\271{nFB\\253\\266\\342\\246\\251\\363\\252Ds\\271\\250S\\342S\\267\\275\\244W\\256\\333\\211\\202\\241\\316\\222\\004\\023\\270\\030O\\201C\\012\\256\\333\\224\\025\\011\\007"BG;\\231\\204\\270\\014`UR\\262\\363\\215\\367\\322\\013\\335\\243\\351\\274y]$g\\322\\327cdR\\253J\\217\\301\\245UU\\216\\353.\\220r\\004h\\033S\\323F:\\2508\\332\\246\\221\\362*"r\\261\\246R\\3422\\215\\003jzh\\375\\257\\017-\\214o\\236a\\315\\374U\\373w\\266\\344>\\222\\355\\270\\220\\252\\034\\351\\021\\004\\356\\006\\023\\340S\\267\\202t"\\232(\\244g1Et\\252$\\251M@rh\\244R0\\011\\335K\\3326j\\226e\\032\\245j\\022\\246*\\215\\331\\335\\212di\\206d\\234\\247\\2733^\\345\\011^h\\323+J\\324\\222\\250M9\\334F\\357\\024\\212R\\224\\244V\\031\\316*~gh,\\252dF\\252\\0253\\233\\237\\017\\227\\216\\365\\256V\\265\\242\\224d2\\332\\2738Jr_x8_y!x/\\322V\\264\\345\\306\\364\\0336\\242\\260\\225BV\\271\\374 .\\034\\303\\015\\032{\\363\\025\\014K\\224\\345"\\3411\\234\\277H\\325\\350\\020q\\272\\004\\022>EW\\023\\340`~\\037\\177\\036WI\\032\\376\\313\\3651\\237KT\\3639nv\\025;Y\\320\\215Z\\201\\007\\033\\240A#\\344Uq9X\\303\\303\\002\\252\\251\\346r\\334\\354$v\\263\\241\\014*\\203\\215\\320 \\221\\362*"r\\261\\201\\313\\210\\373\\332\\006S,\\322\\244\\207w(/v\\257\\323\\341\\253`\\343c\\344}\\025w\\367\\237\\215+T\\303\\304\\376\\203\\346^E\\315\\374W;cm\\373F&S,\\325$\\277k|/v\\255\\325\\036\\312~lbb\\274\\365R\\253\\366\\267\\317v\\316\\333\\252q\\211\\224\\3134\\252\\257\\332\\337\\013\\335\\255\\336\\251F\\223\\203\\217\\217\\221\\365\\325\\337\\336~<\\262\\227\\300?\\212\\244\\012\\236\\261\\037\\376\\203\\212\\000\\011\\021$i\\2476I5\\004\\304\\303\\226S\\261Js\\224\\370\\312p\\270\\200,T\\223\\031\\246\\224\\303\\2314\\024\\275\\367\\344\\011\\014\\245!.k\\225\\356\\235bL\\2403"\\335H\\226\\020zam\\331\\314\\035\\267\\031\\217L\\002\\222\\232k#0\\2307!\\227\\031\\312r\\237\\3519K\\204RY:\\312\\345\\022:\\272i\\021\\324*[\\251!0\\244RG)\\011L\\255\\024\\225d\\222j''\\220m\\246\\361''9\\362\\201\\215\\313r=\\253\\374(\\3201^z\\251$;\\271Gk;~\\230\\373\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\313\\305y\\352\\244\\220\\356\\356\\036\\355\\235\\336\\351\\234{W\\370Q\\355_\\341F\\201\\212\\363\\325I!\\335\\312;Y\\333\\364\\306\\223\\235\\221\\221\\221\\365\\322\\334\\335b11^z\\225%\\373[\\347k;n\\251\\373\\332M\\002\\355\\271@\\202\\247\\316\\252\\004|L\\343_\\332\\236\\2463\\352\\252\\236g\\021\\256\\372\\247k:q\\244P.\\333\\212\\232\\247\\316\\252\\004s\\271\\231\\317\\211C\\011.\\333\\225\\350$|\\212\\211\\004\\356\\006r\\3421\\201KJ\\313\\331nv\\022\\013\\335\\240\\215&\\201v\\334\\240AS\\347U\\002>&q\\253\\327\\256\\333\\211\\232G\\310\\252\\344\\023\\270\\031\\313\\210\\306\\005-S\\314\\3425\\337H\\355gN3\\352\\250rq\\352\\225\\245G\\340\\322\\252\\222!dPH9\\003\\301\\315\\323U5i\\327H\\3442\\377\\000\\212\\322=\\371\\313\\377\\000H^%\\372G\\367\\215\\217\\263W\\251\\247\\234\\204\\267HNI\\310\\3113\\003\\221\\204\\344_\\256\\346\\364(\\211\\2439\\332v\\237)\\214\\212\\\\e\\374\\312\\020\\342\\342\\013VMm\\371\\312R\\236\\350&\\013)r\\234\\345y\\251iC\\312"\\350o\\316v\\337L\\204\\245\\306_\\304\\345\\032\\376\\323\\3651\\346\\224\\221\\201KT\\363.5\\337H\\355gO\\246\\321\\240l\\277M\\036iI\\343\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\037\\272fb1\\215\\363\\3177\\271\\224\\277n\\327\\337\\214\\372\\252\\034\\234z\\245iQ\\3704\\252\\244\\210Y\\024\\022\\016@\\367\\274\\256\\223\\302T\\025UO2\\333\\235\\204\\216\\326t:\\255\\030\\352\\240\\343j\\232G\\310\\250\\211\\312\\306\\231K\\210\\312\\030Uv\\334\\240\\250H9\\022\\0229\\334\\314%\\300c\\366\\274<\\2661\\276y\\2277\\361\\027\\350\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\243V\\240]\\267(\\027H9\\022\\\\\\217\\211\\237\\216u5N\\372A+\\034\\356\\212\\207h\\336\\340\\231\\230\\356\\221J_\\246\\366\\355\\306S\\376$E\\004\\022\\237\\377\\000\\220I\\316S\\377\\000\\346\\021\\262\\364u'';\\\\\\316\\235In\\310\\371er\\011\\204\\347\\306\\363\\212a\\222`gn$!2\\234\\306S\\376\\327\\235\\277\\274N\\234AY\\246\\222i&\\0032\\227\\022\\224\\267Jr\\217\\355;\\316v\\237\\376\\323\\224\\343\\312\\351#V\\240]\\267(\\027H9\\022\\\\\\217\\211\\237\\206\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\032Ez\\0166\\231\\252|\\352\\240!+\\000\\034\\370\\224`UU<\\313nv\\022;Y\\320\\352\\215\\003jzh\\322k\\320q\\272\\364\\025>uP\\020\\350\\003\\360\\322k\\327m\\312\\365\\325\\016t\\220 \\3500\\367\\274\\262\\2265\\374\\246Y\\245U~\\326(^\\355[\\252>\\3025\\374W\\236\\252U~\\326)\\332\\316\\333\\25212\\231f\\225U\\373[\\341{\\265n\\250\\375\\217N\\323\\376\\345\\3273\\277\\322\\315F\\225\\252a\\342\\177A\\363/"\\346\\376+\\235\\271[~\\336\\032\\266\\0166;\\037A]\\375\\347\\343\\332\\277\\302\\212_\\374C*\\225\\033\\377\\000\\011\\225(H\\347\\3767\\345\\033F\\222\\2415R\\377\\000[L\\006\\032^*\\021Sq=\\343\\020\\033\\332\\177\\311\\020\\312\\031Z)\\320R`\\246\\341\\220\\025\\257?\\340\\204\\245\\011\\323\\034\\347)\\377\\000~3\\265\\377\\000\\353\\013J\\307P|9\\247\\302_\\332_\\304\\277IJR\\224\\245\\032\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\322\\252\\277k\\024/v\\255\\325\\341\\345\\224\\221\\240b\\274\\365*\\250wr\\216\\326v\\3751\\244\\347dd1\\365\\322\\334\\335b11^z\\225%\\373[\\347k;\\273\\3258\\366S\\363c\\331O\\315\\217e?7\\336\\325\\353\\320q\\264\\301 \\344Iq\\011X\\000%\\300c\\312\\352\\343>\\252\\225\\227\\233w\\260\\250^\\355\\007U\\343_\\332\\236\\2463\\352\\253\\261\\262*\\222\\245[\\340\\325*\\252''tWT9\\3020)iYy\\267;\\011\\005\\356\\320u^4\\212\\005\\333qST\\371\\325@\\216w39\\361/\\017\\260\\215Z\\275\\007\\033\\257] \\344Iq\\016\\200\\010\\325\\253\\327m\\312\\364\\022>EW \\3503\\360\\325\\353\\220q\\272\\365\\322\\016D\\226\\020\\225\\200#\\002\\232\\205\\374zU\\252\\221\\370\\324\\311\\246\\250Yd\\022.\\007\\023\\257\\251\\252y\\234F\\273\\312\\035\\254\\351\\307\\231\\325x`R\\325<\\316#]\\364\\216\\326t\\343@\\331~\\232<\\256\\2560)j\\236g\\021\\256\\372Gk:q\\237UC\\223\\217T\\255*?\\006\\225T\\221\\013"\\202A\\310\\021\\240l\\277M\\030\\024\\264\\254\\275\\226\\357a \\275\\332\\010\\325\\353\\320q\\264\\301 \\344Iq\\011X\\000%\\300a\\204\\227m\\312\\364\\022>ED\\202w\\0039q\\030\\300\\245\\245e\\354\\267;\\011\\005\\356\\320F\\223@\\273nP \\251\\363\\252\\201\\037\\023?{H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\2174\\244\\217\\277\\360\\307Uv\\334T\\022\\016D\\204\\216w3\\011p\\031\\332?k\\303\\313c\\033\\347\\231s\\177\\025~\\335\\355\\271\\030\\025U\\330\\331\\025J\\325#\\361\\251RU\\023\\272+\\244|\\207\\341\\237KJ\\313\\330\\215\\367\\325\\013\\335\\243\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\360\\373\\370\\362\\272H\\300\\252\\241\\311\\307\\252J\\251o\\215T\\222H\\205\\221AS\\3478\\375\\3233\\021\\374\\237\\221y\\275\\314\\244;\\226\\276\\374h\\033S\\323F}-v6E*\\264\\250\\374\\032UUX\\356\\262\\351\\007 G\\355xylc|\\353.o\\342\\257\\333\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\243\\035U\\333qPH9\\022\\0229\\334\\314%\\300gh\\235\\005U+/8\\337} \\275\\332>\\233\\307\\225\\322F\\005U\\016N=RUK|j\\244\\222D,\\212\\012\\2379\\306\\275\\263=L`UWcdU+T\\217\\306\\245ITN\\350\\256\\221\\362\\037\\217\\225\\322{\\332\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\325$\\277k\\024/v\\255\\325\\032\\266\\0166>G\\321W\\177y\\370\\366\\257\\360\\243U\\3250\\361?\\256\\371fQs\\177\\025\\276\\344\\255\\277x\\375\\217N\\323\\376\\345\\3273\\277\\322\\315F^S,\\322\\244\\207wp/v\\267\\272e\\343\\345\\224\\221\\240b\\274\\365RHwr\\216\\326v\\3751\\252\\340\\343c\\344}\\025w\\367\\237\\215+T\\303\\304\\376\\203\\346^E\\315\\374W;r\\266\\375\\243@\\305y\\352UP\\356\\345\\035\\254\\355\\372c\\354#@\\312e\\232\\245P\\356\\345\\005\\356\\325\\372c\\023)\\226j\\222_\\265\\276\\027\\273V\\352\\215''\\007\\037\\037#\\353\\253\\277\\274\\374ye,k\\371L\\263T\\222\\375\\254P\\275\\332\\267T}\\374y]$e\\342\\274\\365*\\250ww\\016\\326w{\\246q\\355_\\341F\\225\\252a\\342\\177A\\363/"\\346\\376+\\235\\271[~\\336>YK\\357i4\\013\\266\\345\\002\\012\\237:\\250\\021\\3613\\207\\325A\\306\\350*\\025\\016t\\210NV0\\011\\360(\\317\\252\\252y\\234F\\373\\352\\235\\254\\351\\306\\255^\\203\\215\\327\\256\\220r$\\270\\207@\\004g\\325WcdU%J\\267\\301\\252UTN\\350\\256\\250s\\204~\\327\\207\\226\\376O\\310\\262\\346\\376*\\035\\313\\3325\\375\\251\\352cI\\240A\\306\\350\\027T9\\322@O\\201\\204`R\\325<\\316#}\\364\\216\\326t\\341\\204\\220q\\264\\205 \\344HD%`L%\\300ex\\310U\\007\\033T\\025\\016t\\210NV4\\302|\\012W\\215\\177jz\\230\\310Uv\\334T\\325>uH\\216w5\\012|Jv\\360\\317\\252\\245e\\346\\335\\354*\\027\\273A\\325x\\300\\245\\256\\306\\310\\245J\\251o\\215T\\222\\253\\035\\326]S\\3478a%\\333r\\275\\004\\217\\221Q \\235\\300\\316\\\\F4\\015\\227\\351\\243>\\252\\207''\\036\\251ZT~\\015*\\251"\\026E\\004\\203\\220#_\\332\\236\\2463\\352\\252\\236e\\306\\273\\352\\235\\254\\351\\364\\307\\225\\322x\\351\\024\\013\\266\\342\\246\\251\\363\\252\\201\\034\\356fs\\342Q\\240l\\277M\\032\\006\\313\\364\\321\\237UC\\223\\217T\\255*?\\006\\225T\\221\\013"\\202A\\310\\036\\366\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\032\\006\\324\\364\\321\\240mOM\\032\\006\\324\\364\\321\\240mOM\\030\\025T\\254\\274\\343]\\364\\202\\367h\\372o\\032\\265\\002\\0167@\\202G\\310\\252\\342r\\261\\204`UP\\344\\343\\325%T\\267\\306\\252I$B\\310\\240\\251\\363\\234g\\322\\325<\\316[\\235\\205N\\326t#V\\240A\\306\\350\\020H\\371\\025\\\\NV0\\217+\\253\\217\\260\\2174\\253\\207\\322A\\306\\353\\320T\\371\\325!\\011X\\000\\347\\304\\243\\367L\\314G\\362~E\\366\\3672\\220\\356Z\\373\\361\\216\\252\\0166\\251\\244|\\212\\210\\234\\254i\\224\\270\\214\\243_\\331~\\2463\\351j\\236g-\\316\\302\\247k:\\021\\253P \\343t\\010$|\\212\\256''+\\030C\\351 \\343u\\350*|\\352\\220\\204\\254\\000s\\342Q\\257\\354\\277S\\017\\244\\273n$*\\207:DA;\\201\\204\\370\\024\\355\\030\\352\\256\\333\\212\\202A\\310\\220\\221\\316\\346a.\\003;D\\350*\\251Yy\\306\\373\\351\\005\\356\\321\\364\\336<\\256\\2221\\325]\\267\\025\\004\\203\\221!#\\235\\314\\302\\\\\\006v\\211\\320UR\\262\\366#}\\364\\202\\367h\\375\\377\\000,\\245\\217e?6=\\224\\374\\330\\366S\\363c@\\305y\\352\\244\\220\\356\\345\\035\\254\\355\\372c\\357\\3744\\255/3/\\372\\037\\231yf\\3672\\234\\355\\224{W\\370Q\\355_\\341F\\201\\212\\363\\324\\252\\241\\335\\312;Y\\333\\364\\307\\330G\\231\\325\\370i9\\331\\031\\014}t\\2677X\\214LW\\236\\252U~\\326\\371\\356\\331\\333uN=\\253\\374(\\366\\257\\360\\243\\332\\277\\302\\214\\274W\\236\\252I\\016\\356\\341\\332\\316\\357t\\3165\\\\\\354\\234\\214\\217\\240\\226\\346\\353\\021\\345\\224\\221\\211\\224\\3135I/\\332\\337\\015\\353\\265n\\251F\\225\\203\\215\\217\\221\\365\\325\\337\\336~<\\262\\222<\\316\\2264\\254\\354\\234\\214\\217\\254\\226\\346\\353\\021\\354\\247\\346\\373\\336WI\\014$\\273nW\\240\\221\\362*$\\023\\270\\031\\313\\210\\306\\201\\262\\3754h\\033/\\323G\\232RG\\337\\370`R\\320\\344\\343\\322\\253T\\217\\306\\245I%\\202\\313 \\221\\362\\034g\\325U<\\316#]\\365N\\326t\\3744\\232\\004\\034n\\201uC\\235$\\004\\370\\030G\\330F\\221@\\273n*j\\237:\\250\\021\\316\\346g>%\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\321\\257\\355OS\\032\\376\\324\\3650\\372\\253\\266\\345\\002\\012\\237:\\244G;\\231\\234\\370\\224`R\\320\\344\\343\\322\\253T\\217\\306\\245I%\\202\\313 \\221\\362\\034g\\325U<\\313\\215w\\325;Y\\323\\351\\264y]$h\\033/\\323F\\201\\262\\37540\\222\\0166\\220\\244\\034\\211\\010\\204\\254\\011\\204\\270\\014\\257\\030\\024\\26498\\364\\252\\325#\\361\\251RI`\\262\\310$|\\207\\037\\272fb1\\215\\363\\3177\\271\\226\\277n\\327\\337\\206\\022A\\306\\353\\352\\022\\016D\\204BV\\000\\011p\\037{\\312\\351#\\315)<|\\322\\222>\\3765j\\004\\034n\\201\\004\\217\\221U\\304\\345c\\010\\363JO\\015&\\275v\\334\\257]P\\347I\\002\\016\\203\\010aU\\333r\\202\\241 \\344HH\\347s0\\227\\001\\211\\320UR\\262\\353\\215\\367\\322\\013\\335\\243\\351\\274i\\025\\353\\266\\342`\\250s\\244\\201\\004\\356\\006\\023\\340Q\\253P.\\333\\224\\013\\244\\034\\211.G\\304\\316>\\303\\301\\205Wm\\312\\012\\204\\203\\221!#\\235\\314\\302\\\\\\006?k\\303\\313c\\033\\347\\231s\\177\\021~\\335\\355\\271\\017\\244\\273nW\\324*\\034\\351\\021\\004\\356\\006\\023\\340Q\\345uq*\\012\\252\\247\\231m\\316\\302Gk:\\237U\\243\\035T\\034mSH\\371\\025\\0219X\\323)q\\031F\\255@\\273nP.\\220r$\\271\\037\\0238\\317\\245\\245e\\354F\\373\\352\\205\\356\\321\\306\\005Uv6ER\\265H\\374jT\\225D\\356\\212\\351\\037!\\307\\232RD\\353\\351iYy\\306\\373\\352\\205\\356\\322\\2357\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\367\\274\\256\\22212\\231f\\251%\\373[\\341\\275v\\255\\325(\\366S\\363c\\331O\\315\\2173\\245\\217\\277\\360\\327\\362\\231f\\251%\\373X\\241{\\265n\\257\\015\\003)\\226j\\225C\\273\\224\\027\\273W\\351\\214L\\246Y\\245U~\\326\\370^\\355n\\365J4\\254\\034l|\\217\\256\\256\\376\\363\\361\\345\\224\\221\\355_\\341F\\253\\235\\223\\220\\307\\320Ksu\\217\\015\\003\\025\\347\\252\\222C\\273\\224v\\263\\267\\351\\217\\277\\360\\362\\272\\270\\373\\010\\327\\361^z\\251U\\373X\\247k;n\\257\\035\\003)\\226iRC\\273\\224\\027\\273W\\351\\215WT\\303\\304\\376\\277\\345\\231E\\315\\374V\\373\\222\\266\\375\\343I\\301\\307\\307\\310\\372\\312\\357\\357?\\032\\006S,\\322\\244\\207w(/v\\257\\323\\357y]$h\\033/\\323F\\201\\262\\3754h\\033/\\323F\\221@\\203\\215\\252\\012\\207:H\\011\\312\\306\\001>\\005\\037\\177\\356i\\024\\013\\266\\342\\246\\251\\363\\252\\201\\034\\356fs\\342P\\302K\\266\\342F\\221\\362*$\\023\\270\\031\\313\\210\\316\\321\\240l\\317M\\031\\365T98\\365J\\322\\243\\360iUI\\020\\262($\\034\\201\\017\\252\\203\\215\\320T*\\034\\351\\020\\234\\254`\\023\\340Q\\257\\355OS\\032\\376\\324\\3651\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\023\\257\\252\\252y\\227\\033\\357\\252v\\263\\247\\323h\\322h\\027m\\312\\004\\025>uP#\\342g\\036WW\\031\\365T\\254\\274\\333\\235\\205B\\367h:\\257\\017\\252\\273nP \\251\\363\\252Ds\\271\\231\\317\\211F\\201\\262\\3754`R\\322\\262\\366[\\235\\204\\202\\367h#I\\240]\\267(\\020T\\371\\325@\\217\\211\\234j\\365\\353\\266\\342f\\221\\362*\\271\\004\\356\\006r\\3421\\201KT\\3638\\215w\\322;Y\\323\\215\\003e\\372o\\371\\237\\377\\304\\000*\\021\\000\\001\\003\\003\\002\\005\\004\\002\\003\\000\\000\\000\\000\\000\\000\\000\\001\\000\\002\\003\\004\\005\\021\\006!\\022\\0231@Q\\020\\024"A2\\200\\026$B\\377\\332\\000\\010\\001\\002\\001\\001?\\000\\375\\232\\007>\\203p\\206A\\357\\245\\220F2T3\\211z)$\\021\\214\\225\\014\\302^\\235\\356\\335\\025\\336\\262*jw\\361\\356U\\267V\\262\\337\\027*f\\365U\\372\\245\\265t\\216\\345FA+L\\201\\354\\203\\270\\262\\343\\351\\370\\367Gg\\247T\\226\\316B\\243\\202:\\332\\242\\3717\\307\\322\\275Z\\250\\337;\\036\\346c\\013\\330R\\032Q\\037\\000\\003\\012\\331V\\353U\\321\\360\\003\\226\\022\\271\\340\\014\\224\\307\\207\\216\\350\\214\\253\\354\\202\\000\\307\\370GSU\\321\\327\\020\\303\\262\\236\\360+\\242\\314\\262\\340\\2515|\\320\\216@9\\036T\\267h^\\033#\\177/+\\334>\\261\\214\\204\\177\\245L\\013X"?]\\326p\\026\\247g\\364\\336\\357\\012B\\343!*\\234\\021&$\\033*\\273#$9\\245\\361\\366\\244\\202JiC\\036\\254%\\262S\\302\\343\\364\\027F\\343\\272\\350r\\025\\306\\334\\333\\2238\\034vRh(\\016x^\\237\\240e\\316Y"\\376;[\\024|\\271\\007\\022\\250\\322W\\016o\\034L\\300VZSKB\\326;\\252\\306q\\335\\017\\216\\305`\\215\\302\\371,\\037+\\207\\354\\204x_\\262\\331\\277\\000\\272~\\335\\377\\000\\377\\304\\000%\\021\\000\\001\\004\\001\\004\\001\\004\\003\\000\\000\\000\\000\\000\\000\\000\\000\\001\\000\\002\\003\\004\\021\\005\\022!@2\\020"A\\200\\024Ba\\377\\332\\000\\010\\001\\003\\001\\001?\\000\\373v\\326\\2477\\011\\2419\\270\\356\\362\\252@\\371^$\\370Ri\\337\\220w\\205\\006\\236\\030\\375\\305\\312\\376\\335\\374\\017@{ML\\213r\\230IR=\\241T\\2651a\\010J\\367\\277 \\2535\\2375m\\305\\2500\\242;C\\311Q?\\252\\265\\030\\270\\334\\025\\0353_\\305U\\245\\030p|\\241_\\271M\\364\\004,\\034\\246\\342"\\364}\\335\\257\\225\\247sd5\\017\\342w\\011\\266\\234\\337k\\302k\\204\\215\\341Z\\341\\317C\\201\\332\\306T\\023\\030\\216Bn\\262\\360\\233\\255\\037\\220\\205\\370\\363\\225\\036\\251\\020n\\025\\271w\\277!\\036[\\332j\\306J\\300\\\\.\\020!y!\\366\\357\\377\\331', '1', '2022-03-16 21:51:49', '1', '2022-03-16 21:51:49', 0); -INSERT INTO "public"."infra_file_content" ("id", "config_id", "path", "content", "creator", "create_time", "updater", "update_time", "deleted") VALUES (4, 4, 'a408952f4db5433b83a275df444b7467.jpg', E'\\377\\330\\377\\340\\000\\020JFIF\\000\\001\\001\\000\\000\\001\\000\\001\\000\\000\\377\\333\\000C\\000\\003\\002\\002\\003\\002\\002\\003\\003\\003\\003\\004\\003\\003\\004\\005\\010\\005\\005\\004\\004\\005\\012\\007\\007\\006\\010\\014\\012\\014\\014\\013\\012\\013\\013\\015\\016\\022\\020\\015\\016\\021\\016\\013\\013\\020\\026\\020\\021\\023\\024\\025\\025\\025\\014\\017\\027\\030\\026\\024\\030\\022\\024\\025\\024\\377\\333\\000C\\001\\003\\004\\004\\005\\004\\005\\011\\005\\005\\011\\024\\015\\013\\015\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\377\\302\\000\\021\\010\\001\\002\\001\\002\\003\\001\\021\\000\\002\\021\\001\\003\\021\\001\\377\\304\\000\\036\\000\\000\\003\\001\\001\\001\\001\\001\\001\\001\\001\\000\\000\\000\\000\\000\\000\\000\\010\\011\\007\\001\\006\\012\\002\\004\\005\\003\\377\\304\\000\\034\\001\\001\\000\\002\\003\\001\\001\\001\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\001\\005\\002\\004\\006\\007\\003\\010\\377\\332\\000\\014\\003\\001\\000\\002\\020\\003\\020\\000\\000\\000\\252`\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\007\\000\\000\\000\\000\\000\\350\\034:p\\350\\000\\034\\003\\240p\\000\\000\\350\\000\\034$\\001\\200\\200\\000\\377\\000\\013\\371\\200\\200\\027\\370\\341 \\007\\370\\300\\012\\002\\000\\004\\001\\002\\276\\001 \\300\\000\\013\\374\\000\\007\\010\\004]\\003\\0038\\002\\252y@)A+\\306\\234\\015\\374\\233 `\\005&\\020 5`7\\363~\\025Q\\323<\\261\\252\\021`\\277\\300\\000p\\200ES \\020\\027\\364UMP\\240\\002\\250j\\244X/\\340\\200\\015Q\\026J\\246e\\003\\376t\\312H\\262*\\205\\375\\025QV\\025R\\251\\212\\261\\177\\200\\000\\341\\000\\212\\246@ /\\350\\252\\212\\260\\017\\360\\277\\230\\011\\177I\\000\\007\\253\\022\\322\\322\\222\\014\\015\\370\\365d\\254/\\350\\252\\212\\260\\252\\225LU\\213\\374\\000\\007\\010\\004U0\\003\\001<\\240\\252\\232\\261T\\017*E\\243\\312\\225@\\233''\\225<\\261s\\305Tt\\317,E\\223\\313\\027<@G\\370\\016\\222\\010\\372''\\000\\003\\204\\377\\0002\\303\\207@j\\014\\250\\325\\205T\\325\\015X\\225\\246V5&\\246j\\202\\260eFVZaU5A\\252\\020\\023\\240p\\012\\252\\000\\000\\000O\\343\\177\\003\\000(\\011\\344I\\262*\\245\\32003\\204\\0025r\\347\\237;%\\0000\\000<\\251s\\306\\010\\237\\342\\002o\\303\\000 %\\376\\000\\003\\362/\\347\\316\\311\\253\\236X\\271\\346\\246yP0\\003\\177\\030"\\177\\234&\\310\\351\\023h~\\212PC\\003\\324\\217\\351\\277\\221ht\\207L`\\211\\374Hc\\351\\350\\000\\016\\020\\010\\312\\307\\364@\\307\\364\\340\\201\\225@\\177\\304\\000j\\204\\004\\351\\301\\2512\\241\\252"\\321\\252\\0159\\252\\212\\270\\376\\231I+\\213\\374p\\200E\\376\\000\\003\\204\\00203\\324\\224\\240J\\214\\260\\312\\017\\242a\\201$\\001\\345\\307\\370\\337\\011ZW\\362@\\016\\250\\201\\025\\350\\205\\343T%\\205\\2450\\003\\177\\030#\\204\\002/\\360\\000\\034 \\021_\\014\\000\\240''\\22103\\204\\0025r\\250\\010yO\\317\\006f\\260\\350\\360b\\322\\263!\\007\\354\\233#\\246jg\\227$\\001_\\314\\000\\324\\311\\264}=\\000\\001\\302\\001\\026\\234\\312\\206\\260\\312\\004\\004\\351*\\312\\246*\\305\\361?\\244\\377\\0003\\343\\226]\\204\\353\\277X\\314\\376M[g\\037\\362\\304L\\213\\003Vec\\372*\\306\\252U\\001\\002:U@\\000?"\\376M\\223S\\03500\\003\\000\\025\\202\\347\\221d\\276P\\376\\244c\\264\\033\\331\\357\\227_\\177\\322\\333_\\322\\365\\225\\373\\347]W\\374\\011\\221\\362u@\\011X5E&!x\\325\\024\\230\\365\\300\\000~E\\374\\213E\\317"\\311\\253\\017\\361\\276\\030\\020\\252\\223h\\2501,\\305\\026\\336S[\\275\\353\\251s\\367\\335mvG\\345\\375+)\\354\\234\\217\\240\\373\\304\\262\\313\\031\\256U1V\\001\\376\\027\\362k\\224\\000\\300\\017\\242p\\0008O\\362,\\015X\\324\\217\\350\\200\\217\\361\\001KJJ\\321\\307\\206\\371\\310\\333y\\277\\035\\355\\274m\\325?\\277\\254\\334\\361\\377\\000\\037A\\377\\000''\\325|]\\204\\354j\\023\\355\\254r\\303S5A\\252\\020\\0202\\303*2\\263\\351D\\000\\016\\022\\000uD\\010\\300\\013J`\\006\\000?\\306\\000\\007\\207Cy\\306\\332\\376\\177.\\372\\011\\365\\214_\\254\\257\\324\\371\\215\\345S\\364\\277\\021C{*L\\032A\\026ML\\252d\\002\\003\\351\\350\\233&\\246P\\020\\0008@"\\377\\000\\031A\\352H\\014:D\\332\\037\\242\\277\\235\\020\\361\\306\\245\\331\\377\\000/\\316\\356\\177\\222\\263c0\\336\\303\\326q\\266_\\305\\356\\234\\226\\313\\320\\351\\301C\\177+\\370\\277\\001\\352\\214\\260\\300I\\000W\\362\\224\\200\\001\\302\\001\\017\\351\\226\\031X\\253\\017\\340\\025PU\\005\\\\\\377\\000\\264\\313Y\\030\\177\\246\\313K\\305\\232Liq?\\353D\\376\\376\\220\\224\\300\\037\\362\\001\\217\\351\\252\\021l\\177N\\035*\\240\\000\\037\\221\\177$\\031i\\314\\254\\312I^z\\243\\350\\234\\225g\\253\\002@\\225\\354]\\017\\356\\036\\341\\246\\020\\361\\006\\001\\3768 C\\372o\\340`\\006\\000X\\000\\000?"\\376yaV*\\241\\344I\\262je\\001''\\361!\\217"U1V\\037\\323,\\032\\221\\00252m\\037I\\207\\225"\\310\\376\\210\\020\\376\\224\\004\\341\\000\\213\\374\\000\\007\\011\\376+\\006V5\\000p@\\317\\245\\003\\204\\0035c+\\032\\203S2\\263,*\\211\\225\\022\\264\\325\\215PUL\\260\\177\\016\\225L\\010\\004_\\340\\0008H\\001X7\\363\\177=A\\226\\015H\\225\\033\\371!\\217\\244\\303\\0037\\303\\327\\0319+\\312LH1\\3755cT"\\300\\252\\235\\030\\003\\324\\200\\376\\224\\004\\000\\017\\310\\277\\236X\\000\\015P\\232\\306\\376t_\\314\\004jF\\250\\365"XRr\\027\\217\\360\\277\\217\\361 \\314\\014\\372L<\\251\\026K\\240HR\\177\\237U\\000\\000p\\200CT\\000ef\\250U2V\\034\\003T2\\261\\252\\032\\241T5Q\\0028\\003\\374eD\\255-9\\225\\022\\264\\252d\\255\\032\\202\\252\\200\\001\\302\\001\\025\\360\\220`U1V*\\241\\025\\300\\237\\345(=X\\226\\236\\244\\000\\252gI\\004o\\345P"\\310\\001\\201\\216\\221\\251\\216\\230\\301\\000\\001\\302\\001\\025L\\200@_\\321U<\\240\\352\\220\\010\\257\\342\\002\\\\\\363\\312\\210\\011\\352\\311X0#\\244:d\\203-1\\352\\211Z0\\007\\015X\\213''\\226>\\236\\200\\000\\341\\000\\213N 5B\\252UB,\\023\\374\\240\\002\\254ZRV\\215H\\253\\212\\241@\\015P\\252d\\002\\032\\243+-9\\301\\0002\\301\\2472\\262\\200\\200\\001\\302\\001\\000\\001\\345\\207L\\252\\207\\312\\271\\321\\2002\\303|\\037\\322l\\225\\364\\341\\276\\236T\\232\\346\\002Zb\\030\\036\\244\\177\\205\\374\\177\\214\\000@\\213\\374\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\007\\377\\304\\000B\\020\\000\\000\\003\\006\\002\\011\\002\\005\\003\\003\\002\\003\\011\\000\\000\\000\\006\\007\\010\\000\\004\\005\\024\\025\\026\\011\\027\\001\\002\\003\\021\\023\\030\\031W\\205%8\\020 !Gg\\022&''()FAu"7901BPQ`ac\\203\\377\\332\\000\\010\\001\\001\\000\\001\\022\\000\\377\\000\\310\\367\\266\\366\\336\\333\\333{om\\355\\275\\267\\266\\377\\000\\216\\377\\000\\206\\215:4\\374\\273\\333\\365h\\370\\376\\255\\015\\275\\267\\266\\366\\337\\363/\\005\\342z\\022\\312\\274t\\015\\007\\016(\\241\\270l\\214\\253\\227TU9\\334\\326\\352\\212\\247;\\232\\335QT\\347s[\\252*\\234\\356kaN\\250L\\345''\\2329\\214&\\270\\250\\264\\271\\006^\\013\\304\\364%\\225x\\350\\032\\016\\034QCp\\331\\031W.\\250\\252s\\271\\255\\325\\025Nw5\\272\\242\\251\\316\\346\\374W\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\311y\\031\\342re''\\216F@\\370\\235\\030G\\014\\221\\224}\\302\\231P\\231\\312K43\\030MqQir\\037/TU9\\334\\326\\352\\210\\247;\\230\\3100\\317\\023\\234\\311<\\0162\\030D\\353"8\\234\\364\\333\\352\\3623\\304\\344\\312O\\034\\214\\201\\361:0\\216\\031#(\\373\\325\\021Nw1\\272\\242\\251\\316\\346\\267TU9\\334\\326\\352\\212\\247;\\232\\335QT\\347s~lQ\\275\\365\\231\\2761\\215\\003D2L\\001"c\\021\\224R\\216\\034\\206\\360\\246\\237z\\242&>\\345\\267TD\\307\\334\\306\\305\\033\\330\\231\\233\\343\\033\\003/\\275\\236\\021\\227\\202\\016=\\016\\225^:\\031\\003\\200\\365\\240\\334JFU\\365\\007 \\343\\320\\226U\\340a\\220\\304\\017E\\015\\303g\\246\\237O\\025FX\\246\\352.c\\011\\255\\332\\327\\036A\\225\\012]3Vq\\350&8\\311\\300\\315\\340\\\\\\011%iQ\\245B\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\012\\204\\274g&\\314\\321\\314p\\315\\271Z\\245\\3101\\236\\274\\310\\262`u\\023\\007\\014G\\024a\\0347\\2054\\344\\227R\\351\\232\\214O@\\311\\306q\\206l\\362\\34075U\\215b\\254\\250\\013\\025''\\225\\371p&\\270\\250\\265I\\366+\\320a\\350s\\201!\\243\\020h\\036\\262\\034\\211qe_U\\012\\242,\\226q\\024&''\\011\\3015\\340d\\011%iP^\\227Js\\266m\\322\\351Nv\\315\\222\\352]3Q\\211\\350\\0318\\3160\\315\\236\\\\\\006\\346\\252\\261\\254U\\325\\011b\\244\\362\\277.D\\327\\025\\026\\251>\\3109x\\221d\\262P\\003\\003F#\\212(\\216\\033=4\\345\\2127\\26137\\3066\\006_{<#\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSN]Q\\023\\037s\\030\\215TE\\212\\222\\255\\345\\300\\232\\342\\242\\360''\\333\\024o}fo\\214\\371\\261F\\367\\326f\\370\\306\\305\\033\\330\\241\\233\\343>8\\243{\\0233|c`g\\367\\263\\3022\\240\\305_\\226\\303\\320L\\\\eu\\307E\\225\\365/\\243.D7\\316u\\223\\270mg[S\\254\\227\\010\\336[H\\260\\321sZ\\270\\250\\263^\\247\\205\\317\\276\\242\\317\\311\\266\\355\\033\\231PaQ\\314\\221\\350&1\\263F\\334\\255Kzb\\242#y\\222"\\304\\305\\315j\\335\\255J\\372\\232\\344C|\\230Y;\\306\\267\\215\\313:\\330\\\\\\373\\024,\\374\\233%\\334)\\371l=\\003F6h\\334tY\\237L\\321\\273s}\\031Q\\021\\274\\311\\021bb\\346\\265n\\326\\245}Mr\\241\\276L,\\235\\343k\\306\\345\\235\\370b\\215\\354L\\315\\361\\215\\201\\237\\336\\317\\010\\330\\242\\373\\3523|g\\303\\003?\\275\\236\\021\\261F\\367\\326f\\370\\317\\233\\024o}fo\\214lQ\\275\\211\\231\\2763\\343\\2127\\26137\\3066\\006\\177{<#b\\215\\357\\254\\315\\361\\215\\325\\025Nw5\\260\\247T&r\\223\\315\\034\\306\\023\\\\TZ\\\\\\203/\\005\\342z\\022\\312\\274t\\015\\007\\016(\\241\\270l\\214\\253\\226\\027\\036\\372\\313?&\\337\\367\\352\\262\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271 \\345\\342z\\035*\\274\\014\\015\\030\\216+A\\270\\224\\364\\323\\2269\\177d\\374\\333\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256K\\310\\317\\023\\223)\\331\\374\\010\\325Df\\246\\332\\336\\\\\\211\\255\\332\\327\\002}\\220a\\236''9\\222x\\034d0\\211\\326Dq9\\351\\267\\326\\302\\231/\\026*O4s\\0303qQir\\014\\274\\212\\360\\3012\\253\\307 \\320|2\\214\\034\\206H\\3129\\031\\353\\314\\3649\\300\\2210p\\310qY\\016D\\270SNDj\\2433\\223uo.D\\326\\355k\\203>\\3100\\317\\023\\234\\311<\\0162\\030D\\353"8\\234\\364\\333\\353b\\260\\250\\214\\344\\331\\225\\371r&\\267kUI\\366\\352\\212\\247;\\232\\3109x\\236\\207J\\257\\003\\003F#\\212\\320n%=4\\345\\212\\272\\2413\\223fW\\345\\310\\232\\335\\255U''\\333\\252*\\234\\356o\\313\\277v\\215:t\\377\\000\\243\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSNLF\\245\\3235H\\326\\362\\3443qQx\\023\\354h\\025\\302b`w\\023\\007\\014\\241\\224a\\0347\\2054\\345\\325\\0211\\3671\\210\\325HX\\251\\032\\336\\\\\\211\\256*/\\002}\\214\\365\\346E\\223\\003\\250\\2308b8\\243\\010\\341\\274)\\247%\\344W\\211\\316d\\2369\\006\\203\\341\\225\\221\\034NFQ\\313\\012t\\276f\\246\\314\\321\\314`\\315\\273Z\\245\\310i3\\327\\231\\026L\\016\\242`\\341\\210\\342\\214#\\206\\360\\246\\234\\233\\025t\\272g),\\257\\313\\220\\315\\305E\\252O\\262]TE\\2221"\\203D\\341\\306&\\263\\314\\200\\324\\325V\\012\\203\\014\\360\\3012\\253\\300\\343!\\204N\\214\\034\\206OM\\276\\256_\\356Ger\\347\\374\\211e\\317W\\230\\320+\\204\\304\\300\\356&\\016\\031C(\\3028o\\012i\\311\\007 \\343\\320\\226U\\340a\\220\\304\\017E\\015\\303g\\246\\237O\\025DY&\\332.c\\011\\255\\332\\327\\036A\\227\\221\\236\\0309\\225x\\344d\\017\\211\\326C\\221)\\031G\\336\\227Js\\266m\\205:^3\\223^h\\3468f\\334\\255R\\344\\030\\317^dY0:\\211\\203\\206#\\2120\\216\\033\\302\\232r3\\320a\\350L\\001"c\\021\\220\\036\\214\\034\\206\\360\\246\\237p4\\373\\333\\341\\030\\317^dY0:\\211\\203\\206#\\2120\\216\\033\\302\\232rlV\\022\\361\\234\\244\\262\\303.C7\\025\\026\\251>\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSN_.(\\276\\372\\214\\337\\030\\311p\\215\\346H\\364\\015\\0275\\253v\\2655\\352_L\\030?1fK*#\\313\\231#\\320LcQm\\332\\324\\257\\246\\3642\\374\\330\\337\\364_\\374\\305\\231,\\250\\217.d\\217A1\\215E\\267k2\\276\\230\\227\\261W\\346L\\364\\015\\0279]nV\\246}Ov\\217\\322\\312\\203\\012\\216d\\217A1\\215\\2326\\345j[\\323\\025\\021\\345\\313i\\026&1\\250\\267\\025\\026W\\323:\\345~\\023nF\\272\\222\\177Q\\227\\266]^\\237\\343]\\014\\2776\\262\\032C\\\\\\230\\336\\337\\275\\257\\033\\226I\\225\\006\\025\\034\\311\\236\\202c\\0334m\\312\\324\\257\\246\\252#\\313\\226\\322,LcQn*,\\257\\246\\2565\\313\\316}\\223\\373*\\316\\266\\247Y/aO\\314\\231\\026\\0321\\263F\\335\\255L\\372b^\\305_\\2313\\3204\\\\eu\\271Z\\232\\365%\\312\\27191\\262\\177e^7,\\353r3\\324\\223\\372\\214\\275\\262\\356\\364\\377\\000\\032TDo2$X\\230\\271\\255[\\325\\251_SC(k\\223\\013\\333\\367\\255\\341r\\310\\266(\\276\\372\\214\\337\\031\\360\\335\\241\\261E\\367\\326gx\\317\\233\\024o}fo\\214b\\270\\321\\023\\023\\003\\270`\\304\\033\\024\\243\\010\\341\\274YW\\323\\305Q\\231\\252F\\213\\230\\302k\\212\\213\\307\\220d\\034\\203\\210\\263\\245(\\001\\206C\\020=hG\\022\\236\\232}\\352\\212\\247;\\232\\307\\222\\2433\\224\\235\\0271\\304\\327\\035\\027\\217!\\360+\\320a\\026L\\016\\241\\243\\020p\\036\\214#\\206\\361e_wh\\321\\253\\271\\227\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\311.\\252#5g\\036\\201\\222p\\343\\023^\\005\\300\\222j\\253\\005\\351v\\230\\373h\\305qZ\\031&\\000\\220\\320p6\\027G\\016Cx\\262\\256H9x\\236\\207J\\257\\003\\003F#\\212\\320n%=4\\345\\273\\351\\271\\227\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\313\\024obfo\\214l)\\222\\361b\\244\\263C1\\2037\\025\\026\\227 \\305qZ\\031&\\000\\220\\320p6\\027G\\016Cx\\262\\256X\\\\{\\353,\\374\\233c\\227\\366O\\315\\261^\\274\\317B`\\011\\015\\007\\003G\\024`\\3447\\213*\\344\\274\\214\\36192\\223\\307# |N\\214#\\206H\\312>\\341N\\250\\014\\325''\\2329\\214&\\270\\250\\264\\271\\015\\006z\\014"\\316q\\324Lb1\\003\\326Dq.\\024\\323\\357\\303\\024o}fo\\214\\371\\261F\\367\\326f\\370\\306^Ex\\234\\346I\\343\\220h>\\031Y\\021\\304\\344e\\034\\260\\246K\\306rm\\315\\014\\306\\014\\333\\265\\252\\\\\\207\\300\\3204C$\\300\\022&1\\031E(\\341\\310o\\012i\\367\\252"c\\356[uDL}\\314\\370\\021\\211t\\316RU\\274\\270\\014\\334T^\\004\\373%\\325DY#\\022(4N\\034bk<\\310\\015MU`\\260|,\\024\\253\\374M\\331\\323n\\004v\\205l6\\332\\377\\000\\243]\\365\\014"\\367Dn\\342,\\324\\2745\\305\\217\\342\\031)\\306Q\\330`\\006\\024y\\316#0\\337\\307\\021\\2503\\344b_\\365\\270\\364O\\005\\3674B\\335\\023\\301\\235\\316\\020\\262p''\\\\\\023\\231.\\035.\\334"/\\221\\227H4\\307\\015\\373m\\023ww\\331k\\3556\\272v\\233=\\236\\256\\215\\372\\332\\370\\250&c%Ml\\212\\335r\\314;s\\352B*s\\272R\\352\\241,\\221\\211\\022\\031''\\01615\\236c\\206\\246\\252\\260T\\030g\\206\\011\\225^\\007\\031\\014"t`\\3442zm\\365r\\350\\352Ier\\347\\374\\211e\\317W\\231.\\252"\\311\\030\\221A\\242p\\343\\023Y\\346@jj\\253\\005^\\013\\304\\213:R\\200\\350\\032\\016\\034V\\204q)\\031W-\\314\\203\\227\\211\\026K%\\00004b8\\242\\210\\341\\263\\323NIu.\\231\\250\\304\\364\\014\\234g\\030f\\317.\\003sUX\\322\\345\\376\\344\\266W.\\177\\310\\226\\\\\\365y\\215\\002\\270LL\\016\\342`\\341\\2242\\214#\\206\\360\\246\\234\\276\\\\Q}\\365\\031\\2761\\225\\021\\345\\313q\\026&1\\250\\267\\025\\026W\\323\\020\\322\\344\\347:\\366\\375\\225g[R?\\005DF\\363$E\\011\\213\\232\\325\\275Z\\225\\365>\\206\\177\\233[\\241\\237\\346\\337\\206\\006\\177{<#b\\213\\357\\250\\315\\361\\214\\377\\000\\372\\265\\335v\\232\\232\\232\\372vz\\332\\332uvz5\\366;-M\\206\\317F\\317g\\253\\243SSWF\\355\\032\\242\\210\\373\\270P5\\025\\215=~\\251X{\\256\\325\\357j\\311\\224\\357\\212\\035\\241\\241\\003\\304v\\013\\250\\036\\215\\301\\342\\373hk\\313\\203\\343\\356\\302\\036\\351\\267yy\\332\\352l6\\033\\035M;M\\246\\324\\240Pp#\\224H/\\203\\301\\235_\\266\\033@\\356\\321\\337F\\266\\333s:;j\\303\\236\\037uvzt\\350\\330\\353i\\325\\333h\\331\\252\\014*9\\223<\\304\\3066h\\333\\225\\251_L\\372\\262\\032\\\\\\234\\230\\336\\333\\301W\\215\\313$\\312\\210\\362\\346H\\364\\023\\030\\324[z\\265+\\351\\235\\014\\27762\\344C\\\\\\230\\331_\\275o\\033\\226u\\222\\366\\024\\374\\311\\021a\\243\\0334m\\312\\324\\327\\246*"7\\231",L\\\\\\326\\255\\352\\324\\257\\251\\377\\000\\321\\207\\363\\026d\\267#]I\\177\\250\\333\\333.\\357O\\361\\257\\223v\\375\\032tic=\\006\\021g8\\352&1\\030\\201\\353"8\\227\\012i\\365.\\252#5g\\036\\201\\222p\\343\\023^\\005\\300\\222j\\253\\005\\\\\\277\\333j\\312\\345\\317\\370\\352\\364\\236\\2572\\0143\\304\\3472O\\003\\214\\206\\021:\\310\\216''=6\\372\\274\\214\\36192\\223\\307# |N\\214#\\206H\\312>\\341N\\250L\\345%\\2329\\216&\\270\\250\\264\\271\\006^\\013\\304\\364%\\225x\\350\\032\\016\\034QCp\\331\\031W$\\030W\\206\\016e^\\007\\006\\214!\\225\\220\\344Nzm\\310\\215K\\245\\222m\\255\\345\\310f\\335\\255p''\\333\\024o}fo\\214g\\255?O\\377\\000M\\233o\\3721\\3766r\\330\\006\\242`\\227-\\216\\326"%\\217\\303^\\035\\366.\\2607\\261\\320*:#{\\015\\350\\016\\355\\335\\342\\373}\\216\\335\\205\\003a\\331\\211\\010\\265#\\241\\310+\\2049\\357i\\263\\250\\304\\023|.\\026\\370#\\035\\212\\335\\366\\273-H\\214E\\347a\\017\\333\\271ng\\257\\246\\321\\347O\\377\\000V\\315\\227r\\362=\\011eZ9\\007\\003G\\024`\\3346FU\\313\\245\\332c\\355\\233t\\273L}\\263n\\227i\\217\\266m\\325\\025Nw5\\220\\316\\236\\244\\267\\2671\\177\\310\\226\\\\\\215\\011\\212\\342\\2642L\\001!\\240\\340l.\\216\\034\\206\\361e\\\\\\272\\242\\251\\316\\346\\262\\031\\323\\324\\226\\366\\346/\\371\\022\\313\\221\\2411\\\\V\\206I\\200$4\\034\\015\\205\\321\\303\\220\\336,\\253\\227\\311\\277v\\215:t\\377\\000\\243\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSNH0\\317\\014\\023*\\274\\0162\\030D\\350\\301\\310d\\364\\333\\351\\032\\250\\213%#[\\313\\2215\\305E\\340O\\266(\\336\\372\\314\\337\\030\\311u.\\231\\250\\304\\364\\014\\234g\\030f\\317.\\003sUX\\327TD\\307\\334\\266+\\215\\020\\311\\316\\004\\206\\214A\\261J\\300r%\\305\\225}\\352\\210\\230\\373\\230\\313\\233ORK+\\227?\\344K.z\\272\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSNX)}\\012\\363;\\375\\351\\301\\240G\\210\\350$il F\\024\\263\\243\\273\\336\\323\\364\\351\\331\\005\\204\\033\\023T\\307y\\177z\\200?\\215a\\021\\207\\347\\027\\347\\247c\\376\\032\\346ED\\236,m\\236\\2443R \\034\\210\\277m!\\201\\302\\244\\033\\037}\\025@v\\300=\\274/e\\017\\330;k\\273\\215\\341c8\\2748\\276\\015\\232\\016\\217\\033\\343\\220\\215\\226\\207\\230\\233\\014\\224X(\\004\\361\\002v\\212\\275\\277k\\274\\306\\234\\347\\334\\266@\\261\\364\\010\\315\\016j\\010CO\\325(;\\336\\246\\355\\213\\312\\355A\\247\\241\\322\\253\\207#\\020h\\036\\262\\033\\211H\\312\\276\\266\\006\\177{<#b\\215\\357\\254\\315\\361\\215\\322\\351Nv\\315\\260\\247K\\306rl\\315\\034\\306\\014\\333\\265\\252\\\\\\203/\\004\\034z\\035*\\274t2\\007\\001\\353A\\270\\224\\214\\253\\353aL\\250K\\024\\331\\2329\\214&\\267kT\\271\\006^Fx`\\346U\\343\\221\\220>''Y\\016D\\244e\\037~UA\\205G2G\\240\\230\\306\\315\\033r\\265-\\351\\237VCK\\227\\223\\013\\337\\366M\\343r\\3117#]I?\\250\\333\\333.\\357O\\361\\245DF\\363"E\\211\\213\\232\\325\\275Z\\225\\365>\\206\\277\\233Y.\\021\\274\\266\\221a\\242\\346\\265qQf\\275I.\\021\\274\\311\\036\\201\\242\\346\\265n\\326\\246\\275M\\015!\\276L/o\\336\\327\\215\\313$\\330\\242\\373\\3533|c`\\241\\377\\000,L\\357\\367\\247\\006[P=\\253\\374j\\017\\250\\353\\265\\327\\330\\276\\305\\003\\361W'']\\261%\\002l\\341\\261!\\010\\212\\003\\005x\\331\\353\\357\\011\\200I\\330\\354(C\\241\\335\\373a\\252\\355\\006\\324\\330\\353\\273m\\2302.\\020\\214 \\000\\000\\233\\3243c\\267z\\011\\3046P\\330f\\303o\\033\\212$D\\223\\022\\212F!\\316\\361\\347\\320\\224/\\211!\\327+\\360\\233*\\014*9l"\\304\\3066h\\334tY_M\\300\\317\\357o\\204eA\\205G2g\\240\\230\\306\\315\\033r\\265+\\351\\252\\210\\362\\345\\264\\213\\023\\030\\324[\\212\\213+\\351\\275s?\\011\\267\\\\\\337\\302L\\2500\\247\\345\\260\\213\\023\\030\\331\\243q\\321e}1\\015!\\276s\\257o\\336\\326u\\265$\\312\\210\\215\\345\\264\\364\\023\\0275\\253\\212\\213+\\352\\177*\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271t\\273L}\\263lU\\322\\361b\\2332\\277.C6\\355j\\251>\\305z\\363=\\011\\200$4\\034\\015\\034Q\\203\\220\\336,\\253\\222\\3623\\304\\344\\312O\\034\\214\\201\\361:0\\216\\031#(\\373\\205:\\2413\\224\\226h\\3468\\232\\342\\242\\322\\344\\031x/\\023\\320\\226U\\343\\240h8qE\\015\\303de\\\\\\212\\364\\030E\\223\\003\\250h\\304\\034\\007\\243\\010\\341\\274YW\\334U\\225\\011\\234\\2332\\277.\\004\\326\\345j\\251>\\311u.\\226K8\\212\\015\\034g\\030f\\3602\\004\\223UX\\326\\011\\377\\000\\362\\304\\315\\377\\000{peJ\\351\\277hZ\\304vZ\\3739\\2471N\\307SWe\\251\\243F\\256\\215\\3324h\\321\\243\\377\\000M\\337M?M\\377\\000\\374\\001\\0177\\335\\001\\215G\\321\\244)\\357a\\257\\255\\266\\327\\324\\324}\\013\\212!\\243\\030&\\302-\\011\\332\\353\\355\\3346\\373\\370{@\\344z"\\374\\255B\\301\\300\\373\\203\\336\\327o\\005\\024<\\355\\242\\232\\346(\\006\\004g\\204\\243aQ;\\225N\\003\\023v\\331\\354\\037\\035:]\\246N\\3326(\\336\\304\\314\\337\\030\\304b\\2423\\223eo.\\004\\326\\355k\\201>\\335QT\\347s[\\024obfo\\214\\370\\232\\005hd\\347\\002D\\301\\303(]`9\\022\\341M9.]=6\\354\\256\\\\\\377\\000\\216\\257I\\352\\363%\\324\\272Y,\\342(4q\\234a\\233\\300\\310\\022MUc_.(\\336\\372\\314\\337\\031\\360\\030a\\247c\\0216\\200\\207\\256&0v\\334\\333\\277\\304\\235\\036\\335\\264\\012\\3000\\261\\203\\3541\\361\\377\\000g\\255\\265x\\206\\353m5\\335t\\353\\225\\373/\\257\\015\\367_WF\\237\\364\\332\\025\\357;\\377\\000\\340~\\331\\351\\325h\\332b\\213\\273F\\037c!1\\006\\3241\\021}\\327\\323\\264{\\331\\270\\201\\004N\\220\\367}G\\355M\\233\\333\\346\\256\\317WF\\333j\\230\\203{7\\015\\251\\215\\026\\333\\270\\352l"o\\202g\\215\\216\\323k\\266\\332\\352m6\\357\\272\\272\\272\\3325\\264\\352j\\354\\365u\\233\\024?}\\006_\\214d\\034\\203\\217BYW\\201\\206C\\020=\\0247\\015\\236\\232}\\337\\243\\364\\357c=y\\221d\\300\\352&\\016\\030\\216(\\3028o\\012i\\310\\257^dY\\316:\\206\\203\\201\\303\\212\\310\\216%\\305\\225r!\\0248B`\\356\\237\\243\\216\\371\\317\\371\\001\\335\\260\\363\\003N\\220\\210\\3748\\351\\036\\017\\211\\334"\\320w\\277\\327\\300|\\326\\027\\3035\\366z\\372\\273\\030\\273\\276\\246\\276\\267\\376(V\\337Q\\357N\\256\\301\\317Wi\\254\\355\\372\\270\\233g\\245?\\205G2G\\230\\224\\306\\315\\033r\\263+\\351\\251{\\025~d\\317@\\321q\\225\\326\\345jk\\324\\267\\350\\321\\243v\\226\\305\\023\\337Y\\231\\343\\031/aO\\313a\\350\\0321\\263F\\343\\242\\314\\372b\\345C\\\\\\347Y_\\275\\254\\353ju\\225\\021\\033\\313i\\350&.kW\\025\\026W\\324\\372\\031~ln\\206\\237\\233\\033\\241\\227\\346\\317\\227v\\375\\032tic=\\006\\021g8\\352&1\\030\\201\\353"8\\227\\012i\\367\\013\\217}e\\237\\223c\\305.\\026*J\\213\\230\\341\\233\\212\\213\\307\\220n\\227i\\217\\266l\\250R\\351d\\214H\\2411\\306N\\006l\\363 5+J\\215\\036*\\220\\316R4\\\\\\306\\023\\\\T^<\\203\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256M\\216g\\331?6\\3109\\007\\021gJP\\003\\014\\206 z\\320\\216%=4\\372\\274\\020q\\026K%\\001\\320\\310\\034\\007\\242\\210\\341\\2622\\257\\277\\253K \\364\\026F\\035ID\\0163\\030\\202k\\002H\\224\\364\\323\\342VP\\306\\002\\305>\\303\\005\\001\\273\\037\\272\\313\\261\\034\\325R\\017\\212\\252],\\223^W\\345\\310j\\201Z\\252O\\266\\030\\220\\007\\027\\344:[m\\266\\333\\035\\372\\372\\365&\\324\\014C\\2654\\357\\320\\357\\243{b\\242\\246\\014\\244\\313\\225\\372\\013Q%\\267Z\\252O\\267TU9\\334\\326\\302\\343\\337Yg\\344\\333\\025uDg&\\314\\257\\313\\2215\\273Z\\252O\\262]K\\245\\222\\316"\\203G\\031\\306\\031\\274\\014\\201$\\325V5\\325\\025Nw5\\260\\247T&r\\223\\315\\034\\307\\023\\\\tZ\\\\\\203\\031\\3500\\2139\\307Q1\\210\\304\\017Y\\021\\304\\270SO\\253\\310\\317\\023\\223)\\221\\252\\210\\261R5\\275\\005\\310\\232\\342\\242\\360g\\333\\024o}fo\\214eB\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\245\\312\\234\\355\\233%\\325DY#\\022(4N\\034bk<\\310\\015MU`\\277\\014Q\\275\\365\\231\\2763\\346T\\030Ts$z\\011\\214l\\321\\267+R\\336\\230\\2501W\\346L\\213\\023\\027\\031]nV\\245}I\\015.NK\\357\\177\\331W\\215\\313"\\335s\\177\\011\\267<\\235I?\\247+''.\\257O\\362_\\246\\014?\\230\\263%\\225\\021\\345\\314\\221\\350&1\\250\\266\\365jW\\3237\\267\\321\\261E\\367\\326gx\\306T\\030S\\362\\330E\\211\\214l\\321\\270\\350\\262\\276\\230\\206\\227''%\\367\\276\\340U\\343r\\3117#]I\\177\\250\\333\\333.\\357O\\361\\244\\275\\205?-\\247\\240h\\306\\315\\033\\216\\2133\\351\\230\\345}\\223\\363l\\227\\260\\250\\346L\\213\\015\\030\\331\\243nV\\246\\2751Q\\021\\274\\310\\221bb\\346\\265oV\\245}M\\015!\\276Lom\\343k\\306\\345\\222lQ}\\365\\231\\2761\\225\\006+\\034\\311\\221bb\\347+\\255\\312\\324\\257\\251\\340g\\367\\267\\3026(\\336\\372\\314\\337\\030\\311p\\362\\345\\264\\364\\015\\030\\324[\\212\\2135\\351\\235s?\\011\\267#}I?\\250\\313\\333.\\357O\\361\\255\\355\\277F\\355-\\212/\\276\\2437\\306|\\313\\301x\\236\\204\\262\\257\\035\\003A\\303\\212(n\\033#*\\344\\203\\012\\360\\301\\314\\253\\300\\340\\321\\2042\\262\\034\\211\\317M\\271b\\256\\227\\313\\024\\333\\225\\371r\\031\\267kUI\\366A\\3108\\213:R\\200\\030d1\\003\\326\\204q)\\351\\247\\325B\\227K$bE\\011\\2162p3g\\231\\001\\251ZTi\\015\\177r[\\333\\230\\317\\344[2F\\202\\335.\\323\\037l\\331\\007/\\023\\320\\351U\\340`h\\304qZ\\015\\304\\247\\246\\234\\261WT&rl\\312\\374\\270\\023[\\265\\252\\244\\373\\032\\006\\210\\230\\347\\035\\304\\306#(\\245dG\\022\\341M>\\232\\005hd\\347\\002D\\301\\303(]`9\\022\\341M9t\\274L\\235\\264b\\270\\255\\014\\223\\000Hh8\\033\\013\\243\\207!\\274YW&<\\222\\351b\\244\\250\\271\\214\\031\\270\\250\\274y\\006T*\\210\\315F''\\240\\230\\234''\\004\\326yp\\033\\225\\245AW\\221\\236''&Rx\\344d\\017\\211\\321\\204p\\311\\031G\\336\\250\\212s\\271\\214\\227R\\351d\\263\\210\\240\\321\\306q\\206o\\003 I5U\\215t\\273L}\\263b5.\\026)\\266\\267\\227\\001\\233v\\265\\300\\237lQ\\275\\365\\231\\2763\\341\\243O\\351\\372\\350b\\275y\\236\\204\\300\\022\\032\\016\\006\\216(\\301\\310o\\026U\\313\\252*\\234\\356kuES\\235\\315d\\272\\227K%\\234E\\006\\2163\\2143x\\031\\002I\\252\\254k\\344\\337\\273F\\235:\\177\\321\\214\\365\\346E\\223\\003\\250\\2308b8\\243\\010\\341\\274)\\247.\\250\\211\\217\\271\\215\\325\\0211\\3671\\272\\242&>\\3467TD\\307\\334\\306#U\\031b\\244\\253yr&\\270\\250\\274\\011\\366^\\0108\\364:Ux\\350d\\016\\003\\326\\203q)\\031W\\325B\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\012t\\274g&\\314\\321\\314`\\315\\273Z\\245\\3102\\360A\\307\\241\\322\\253\\307C p\\036\\264\\033\\211H\\312\\276\\341q\\357\\254\\263\\362m\\216g\\331?6\\330\\\\{\\023,\\374\\233/"\\274Ns$\\361\\3104\\037\\014\\254\\210\\342r2\\216Hc\\373m\\336\\274\\305\\377\\000\\035\\336r4&+\\215\\020\\311\\316\\004\\206\\214A\\261J\\300r%\\305\\225}\\351t\\247;f\\330S\\245\\34396f\\216c\\006m\\332\\325.A\\227\\202\\016=\\016\\225^:\\031\\003\\200\\365\\240\\334JFU\\365y\\025\\342s\\231''\\216A\\240\\370edG\\023\\221\\224r\\351v\\247;h\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSNF\\201\\242\\031&\\000\\2211\\210\\312)G\\016CxSO\\244j\\242,T\\215oAr&\\270\\250\\274\\031\\366\\305\\033\\337Y\\233\\343\\030\\3204C$\\300\\022&1\\031E(\\341\\310o\\012i\\367\\025\\205BX\\251,\\260\\313\\2215\\305E\\252O\\374\\370\\242\\373\\3523|ct2\\374\\330\\335\\014\\377\\0006\\267C/\\315\\214\\2500\\250\\345\\260\\213\\023\\030\\331\\243q\\321e}7\\003/\\275\\236\\021\\2677#]77\\250\\313\\3271l\\277\\361\\256\\271\\177\\204\\333\\256o\\341&K\\330Tr\\330z\\006\\214l\\321\\270\\350\\263^\\233\\216g\\331?6\\330\\\\\\373\\024,\\374\\233}\\031r!\\256s\\354\\255\\303k>\\332\\236d\\270F\\362\\332E\\206\\213\\232\\325\\305E\\232\\365.\\271\\277\\204\\333\\256_\\3416\\353\\233\\370I\\225\\021\\345\\313q\\026&1\\250\\267\\025\\026W\\323\\020\\322\\344\\347:\\366\\321d\\331\\366\\324\\223b\\213\\357\\254\\316\\361\\214\\250\\210\\336d\\210\\2611sZ\\267kR\\276\\244\\206\\220\\327&7\\267\\357k\\306\\345\\222lQ}\\365\\231\\3361\\261D\\366(f\\370\\306Chk\\234\\373\\333x\\332\\316\\266\\244\\233\\241\\227\\346\\337\\233\\024o}fo\\214e\\344g\\211\\311\\224\\2369\\031\\003\\342ta\\0342FQ\\367\\252"\\234\\356cuES\\235\\315lQ\\275\\211\\231\\2761\\2602\\373\\331\\341>\\011uQ\\031\\2538\\364\\014\\223\\207\\030\\232\\360.\\004\\223UX.*\\351x\\261M\\271_\\227!\\233v\\265T\\237\\370 \\345\\342z\\035*\\274\\014\\015\\030\\216+A\\270\\224\\364\\323\\2269\\177d\\374\\333\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256]QT\\347s[\\252*\\234\\356kuES\\235\\315n\\227i\\217\\266m\\322\\3552v\\321\\227\\221^\\030&Ux\\344\\032\\017\\206Q\\203\\220\\311\\031G$\\272\\250\\214\\325\\234z\\006I\\303\\214Mx\\027\\002I\\252\\254\\024\\214K\\245\\212m\\255\\345\\310f\\335\\255p''\\333\\024o}fo\\214n\\250\\252s\\271\\255\\325\\021Nw1\\215\\003DLs\\216\\342c\\021\\224R\\262#\\211p\\246\\237R\\352\\2423Vq\\350\\031''\\01615\\340\\\\\\011&\\252\\260U\\313\\375\\266\\254\\256\\\\\\377\\000\\216\\257I\\352\\363 \\303:4\\376\\237\\256\\206+\\327\\231\\350L\\001!\\240\\340h\\342\\214\\034\\206\\361e\\\\\\212\\343DLL\\016\\341\\203\\020lR\\214#\\206\\361e_z\\242)\\316\\3462]K\\245\\222\\316"\\203G\\031\\306\\031\\274\\014\\201$\\325V4\\203\\012\\360\\301\\314\\253\\300\\340\\321\\2042\\262\\034\\211\\317M\\271t\\273L\\235\\264n\\227i\\217\\266lh\\025\\241\\223\\234\\011\\023\\007\\014\\241u\\200\\344K\\2054\\344G%\\302\\3057V\\362\\3443n\\326\\270\\023\\354\\274\\027\\211\\350K*\\361\\3204\\0348\\242\\206\\341\\2622\\256X\\\\{\\353,\\374\\233\\036)t\\262RT\\\\\\306\\014\\334T^<\\203/"\\2740L\\252\\361\\3104\\037\\014\\243\\007!\\2222\\216]QT\\347s[\\012uBg)<\\321\\314a5\\305E\\245\\3102\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271\\025\\3500\\213&\\007P\\321\\2108\\017F\\021\\303x\\262\\257\\270\\253\\252\\02396e~\\\\\\011\\255\\312\\325R}\\272\\242\\251\\316\\346\\377\\000\\356\\177\\377\\304\\000>\\020\\000\\001\\002\\005\\001\\006\\003\\007\\003\\004\\000\\004\\007\\000\\000\\000\\002\\003\\023\\000\\001\\004\\021\\024\\025\\005\\022!"23\\020\\205\\324\\026 #4c\\224\\34415A$QabB`q\\202\\0060R\\201\\261\\263\\321\\377\\332\\000\\010\\001\\001\\000\\023?\\000\\377\\000\\2214\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\201\\262\\3754h\\033/\\323F\\201\\262\\3754h\\033/\\323F\\005-+/e\\271\\330H/v\\2024\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\201\\262\\3754h\\033/\\323F\\201\\262\\3757\\216\\223@\\273nP \\251\\363\\252\\201\\037\\0238a%\\333r\\275\\004\\217\\221Q \\235\\300\\316\\\\F0)iY{-\\316\\302A{\\264\\036\\356\\201\\262\\3754h\\033/\\323C\\011 \\343u\\365\\011\\007"B!+\\000\\004\\270\\0140\\222\\355\\271^\\202G\\310\\250\\220N\\340g.#\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\336\\367\\225\\322F:\\253\\266\\342\\240\\220r$$s\\271\\230K\\200\\316\\321\\240mOM\\032\\006\\324\\364\\321\\346\\224\\221\\367\\361\\253P \\343t\\010$|\\212\\256''+\\030F\\255@\\273nP.\\220r$\\271\\037\\0238\\300\\252\\252y\\226\\335\\354$v\\263\\241\\325\\031\\364\\26498\\364\\251R\\255\\360j\\225I`\\262\\310*\\034\\341\\030\\025T98\\365IU-\\361\\252\\222I\\020\\262(*|\\347\\031\\364\\265O3\\226\\357aS\\265\\235\\010\\322+\\327m\\304\\301P\\347I\\002\\011\\334\\014''\\300\\243>\\226\\273\\033"\\225ZT~\\015*\\252\\254wYt\\203\\220#\\002\\252\\225\\227\\261\\032\\357\\244\\027\\273G\\032\\275\\002\\0166\\251\\244|\\212\\256''+\\030\\034\\270\\214`UP\\344\\343\\325%T\\267\\306\\252I$B\\310\\240\\251\\363\\234k\\373/\\324\\306\\277\\262\\375Lg\\322\\327cdR\\253J\\217\\301\\245UU\\216\\353.\\220r\\004`UR\\262\\366#}\\364\\202\\367h\\343I\\257]\\267+\\327T9\\322@\\203\\240\\302<\\322\\222>\\3764\\212\\365\\333q0T9\\322@\\202w\\003\\011\\360(\\3206\\247\\246\\214\\012\\252V^q\\256\\372A{\\264}7\\217+\\244\\367\\274\\256\\222<\\316\\223\\307\\315)#\\357\\343_\\305y\\352T\\227\\355b\\235\\254\\355\\272\\2744\\234\\354\\214\\206>\\272[\\233\\254F&+\\317U*\\277k|\\355gwz\\247\\036YW\\341\\240e2\\315*Hwr\\202\\367j\\3751\\211\\224\\3135I/\\332\\337\\013\\335\\255\\336\\250\\322pq\\261\\330\\372\\312\\357\\357?\\036gW\\032\\006+\\317R\\252\\207w(\\355go\\323\\343\\211\\224\\3135I/\\332\\337\\013\\335\\255\\336\\250\\322pq\\261\\330\\372\\312\\357\\357?\\341\\346\\224\\221\\367\\361\\345\\224\\276\\037\\177\\036WI\\357y]$y\\245''\\217\\232RG\\337\\307\\225\\322F\\201\\262\\3754`R\\322\\262\\366[\\235\\204\\202\\367h#I\\240]\\267(\\020T\\371\\325@\\217\\211\\234y]_\\206\\223@\\273nP \\251\\363\\252\\201\\037\\0238\\322h\\020q\\272\\005\\325\\016t\\220\\023\\340a\\037a\\032E\\002\\355\\270\\251\\252|\\352\\240G;\\231\\234\\370\\2240\\222\\355\\271^\\202G\\310\\250\\220N\\340g.#\\032\\006\\313\\364\\321\\240l\\277M\\032M\\002\\0167@\\272\\241\\316\\222\\002|\\014#\\354<<\\322\\222>\\376<\\256\\223\\303\\357\\343\\312\\351=\\357+\\244\\215\\003jzh\\3206\\247\\246\\215\\003jzh\\322k\\320q\\272\\364\\025>uP\\020\\350\\003\\217\\277\\217+\\244\\214\\372Z\\354l\\212UiQ\\3704\\252\\252\\261\\335e\\322\\016@\\214\\012\\252V^q\\276\\372A{\\264}7\\215"\\275v\\334L\\025\\016t\\220 \\235\\300\\302|\\0125z\\005\\333qPH9\\022\\\\\\216w3\\011p\\030\\317\\245\\245e\\347\\033\\357\\252\\027\\273G\\323x\\300\\252\\256\\306\\310\\252V\\251\\037\\215J\\222\\250\\235\\321]#\\3448\\325\\350\\027m\\305A \\344Ir9\\334\\314%\\300bu\\364\\264\\254\\274\\343}\\365B\\367iN\\233\\303\\351.\\333\\211\\012\\241\\316\\221\\020N\\340a>\\005;G\\232RG\\337\\306\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\036iI\\023\\257\\245\\245e\\347\\033\\357\\252\\027\\273Jt\\336\\037Iv\\334HU\\016t\\210\\202w\\003\\011\\360)\\332<\\322\\2220*\\252\\236g-\\336\\302Gk:\\021\\240mOM\\032\\006\\324\\364\\321\\240mOM\\014*\\203\\215\\320 \\221\\362*"r\\261\\201\\313\\210\\373\\332\\006S,\\322\\244\\207w(/v\\257\\323\\036\\312~l{)\\371\\261\\354\\247\\346\\307\\262\\237\\233\\032N\\016>>G\\327W\\177y\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\363:X\\373\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\363:H\\325pq\\261\\362>\\202\\273\\373\\317\\306^S,\\322\\244\\207wp/v\\267\\272e\\032\\376S,\\325$\\277k\\024/v\\255\\325\\037\\177\\032\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\325$\\277k\\024/v\\255\\325\\032\\266\\0166>G\\320W\\177y\\370\\313\\312e\\232T\\220\\356\\356\\005\\356\\326\\367L\\243\\314\\351c\\357\\343@\\312e\\232T\\220\\356\\345\\005\\356\\325\\372c\\023)\\226j\\222_\\265\\276\\027\\273V\\352\\224{)\\371\\261\\354\\247\\346\\307\\262\\237\\233\\036\\312~l{)\\371\\277\\371\\030\\024\\265O3\\210\\337}#\\265\\2358a$\\034n\\276\\241 \\344HD%`\\000\\227\\001\\206\\022]\\267+\\320H\\371\\025\\022\\011\\334\\014\\345\\304c\\002\\226\\225\\227\\262\\334\\354$\\027\\273A\\341\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\037\\272fb1\\215\\363\\317\\267\\271\\224\\277n\\327\\337\\215\\003e\\372h\\310U\\007\\033T\\025\\016t\\210NV4\\302|\\012W\\215\\177jz\\230\\327\\366\\247\\251\\360\\300\\245\\252y\\227\\033\\357\\244v\\263\\247\\323\\014$\\203\\215\\327\\324$\\034\\211\\010\\204\\254\\000\\022\\340>\\031\\365T\\254\\275\\226\\347aP\\275\\332\\010}U\\333r\\201\\005O\\235R#\\235\\314\\316|J4\\212\\004\\034mPT9\\322@NV0\\011\\360(\\300\\245\\252y\\227\\033\\357\\244v\\263\\247\\323\\014$\\203\\215\\327\\324$\\034\\211\\010\\204\\254\\000\\022\\340>\\030\\024\\265O3\\210\\327}#\\265\\2358\\3206_\\246\\215&\\201\\007\\033\\240]P\\347I\\001>\\006\\021\\201KT\\3638\\215\\367\\322;Y\\323\\215\\003e\\372o{H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\360\\317\\245\\245e\\347\\033\\357\\252\\027\\273G\\323x}%\\333q!T9\\322"\\011\\334\\014''\\300\\247h\\3206\\247\\246\\214\\012\\252V^q\\276\\372A{\\264}7\\215"\\275v\\334L\\025\\016t\\220 \\235\\300\\302|\\012\\037I\\007\\033\\257AS\\347T\\204%`\\003\\237\\022\\214\\372Z\\247\\231\\313w\\260\\251\\332\\316\\204i\\025\\353\\266\\342`\\250s\\244\\201\\004\\356\\006\\023\\340^\\031\\364\\264\\254\\275\\210\\327}P\\275\\3328\\300\\252\\256\\306\\310\\252V\\251\\037\\215J\\222\\250\\235\\321]#\\3448aU\\333r\\202\\241 \\344HH\\347s0\\227\\001\\217\\332\\360\\362\\330\\306\\371\\346\\\\\\337\\304_\\242\\366\\334\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\215Z\\201v\\334\\240] \\344Ir>&q\\201UT\\363-\\271\\330H\\355gC\\252\\320\\302\\2508\\335\\002\\011\\037"\\242''+\\030\\034\\270\\214k\\373/\\324\\306}-S\\314\\345\\273\\330T\\355gB4\\212\\365\\333q0T9\\322@\\202w\\003\\011\\360(\\325\\350\\027m\\305A \\344Ir9\\334\\314%\\300c\\357\\343H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\360\\317\\245\\245e\\354F\\373\\352\\205\\356\\321\\303\\351.\\333\\211\\012\\241\\316\\221\\020N\\340a>\\005;{\\336YK\\030\\231L\\263J\\252\\375\\255\\360\\275\\332\\267T\\243\\366=;O\\373\\227\\\\\\317\\377\\000K5\\031yL\\263J\\222\\035\\335\\300\\275\\332\\336\\351\\224{)\\371\\261\\373\\036\\235\\247\\375\\313\\256g\\377\\000\\245\\232\\214\\274\\246Y\\245I\\016\\356\\340^\\355_\\246Q\\257\\3452\\315*\\253\\366\\261B\\367j\\335^\\032\\006S,\\322\\244\\207w(/v\\257\\323\\031x\\257=T\\222\\035\\335\\303\\265\\235\\336\\351\\234{W\\370Q\\245j\\230x\\237\\320\\374\\313\\310\\271\\277\\212\\347nV\\337\\264{)\\371\\261\\244\\340\\343\\343\\344}uw\\367\\237\\215\\003)\\226iRC\\273\\224\\027\\273W\\351\\214\\274W\\236\\252I\\016\\356\\341\\356\\331\\335\\356\\231\\306\\255\\235\\223\\220\\307\\321Ksu\\210\\3202\\231f\\251T;\\271A{\\265~\\230\\327\\362\\231f\\225U\\373X\\241{\\265n\\250\\325\\260q\\361\\330\\372\\012\\357\\357?\\032V\\251\\207\\211\\375\\007\\314\\276\\213\\233\\370\\256v\\345m\\373F&S,\\325$\\277k|/v\\255\\325\\032N\\0166>G\\327W\\177y\\370\\362\\312_\\037,\\244\\367\\274\\256\\222\\030Iv\\334H\\322>ED\\202w\\0039q\\031\\3320)iYy\\267;\\011\\005\\356\\322}W\\215Z\\275\\007\\033\\257] \\344Iq\\016\\200\\010\\3206_\\246\\214\\012ZV^m\\336\\302A{\\264\\035W\\360\\325\\353\\327m\\304\\315#\\344Ur\\011\\334\\014\\345\\304|4\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\005-\\016N=*\\265H\\374jT\\222X,\\262\\011\\037!\\306\\277\\265=Ld*\\273n*j\\237:\\244G;\\232\\205>%;F\\223@\\203\\215\\320.\\250s\\244\\200\\237\\003\\017\\015&\\201v\\334\\240AS\\347U\\002>&q\\346\\224\\221*\\372\\252V^\\313s\\260\\250^\\355\\004d*\\273n*j\\237:\\244G;\\232\\205>%;G\\225\\325\\307\\330F\\221@\\273n*j\\237:\\250\\021\\316\\346g>%\\014$\\273nW\\240\\221\\362*$\\023\\270\\031\\313\\210\\306\\005-+/e\\273\\330H/v\\2025z\\364\\034m0H9\\022\\\\BV\\000\\011p\\037\\037+\\244\\367\\274\\256\\222\\037I\\007\\033\\257AS\\347T\\204%`\\003\\237\\022\\214\\372Z\\247\\231\\313s\\260\\251\\332\\316\\207\\206:\\253\\266\\342\\240\\220r$$s\\271\\230K\\200\\316\\321\\240mOM\\032\\006\\324\\364\\336\\031\\364\\264\\254\\274\\343]\\365B\\367h\\372o\\030\\025U\\330\\331\\025J\\325#\\361\\251RU\\023\\272+\\244|\\207\\025{v\\201\\224?\\334\\332X\\316\\322\\377\\000\\0038J\\201\\204\\351\\216\\235\\376\\022\\261\\235\\356\\374Sl\\307\\023\\006i\\223C\\252v\\275\\332\\215\\034#G\\010\\250\\245\\232j(\\365J\\253\\316\\343)ZV\\232\\266\\202H\\345)K\\374\\316\\321\\237J\\203ob5g\\225\\013\\335\\243\\214\\012\\252\\354l\\212\\245j\\221\\370\\324\\251*\\211\\335\\025\\322>S\\206\\025]\\267(*\\022\\016D\\204\\216w3\\011p\\030\\375\\257\\017-\\214o\\235e\\315\\374U\\373w\\264`UWcdU+T\\217\\306\\245ITN\\350\\256\\221\\362\\034i5\\3508\\335z\\012\\237:\\250\\010t\\001\\370i5\\353\\266\\345z\\352\\207:H\\020t\\030F}-v6E*\\264\\250\\374\\032UUX\\356\\262\\351\\007 G\\355xylc|\\353.o\\342\\257\\333\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\275\\357,\\245\\214\\274W\\236\\252I\\016\\356\\341\\332\\316\\357t\\3165l\\354\\214\\214\\217\\240\\226\\346\\353\\036\\030\\231L\\263T\\222\\375\\255\\360\\275\\332\\267T\\243\\331O\\315\\217e?7\\303\\357\\343\\313)`\\177Q\\336\\234\\245y\\177\\231^%.\\022\\200\\225\\347\\270\\230L\\247i\\177\\322P\\023\\231H%)\\011\\247;\\317\\214\\356''i\\317\\205\\347+\\312V\\205''a\\001\\224\\2579\\316s\\376%(\\254I\\261\\252I`\\231\\246\\252r\\375d%)^[\\322\\224\\355i\\333\\303\\376\\020\\231^E\\273/\\342S\\230\\336\\337\\336s\\237\\363\\032\\006S,\\322\\244\\207w(/v\\257\\323\\341\\252\\340\\343c\\344}\\005w\\367\\237\\214\\274\\246Y\\245I\\016\\356\\340^\\355ot\\312=\\224\\374\\330\\322pq\\361\\330\\372\\352\\357\\357?\\032\\006S,\\325*\\207w(/v\\257\\323\\030\\231L\\263T\\222\\375\\255\\360\\275\\332\\335\\352\\225\\257\\037\\261\\351\\332\\177\\334\\272\\346w\\372Y\\250\\322\\265Le\\344\\\\\\337\\305s\\2666\\337\\267\\275\\253\\327\\240\\343i\\202A\\310\\222\\342\\022\\260\\000K\\200\\306\\005-\\016N=*\\265H\\374jT\\222X,\\262\\011\\037!\\307\\356\\231\\230\\214c|\\363\\315\\356e\\257\\333\\265\\367\\341\\204\\220q\\272\\372\\204\\203\\221!\\020\\225\\200\\002\\\\\\006\\030Iv\\334\\257A#\\344TH''p3\\227\\021\\214\\012ZV^\\313s\\260\\220^\\355\\004i4\\013\\266\\345\\002\\012\\237:\\250\\021\\3613\\207\\325A\\306\\350*\\025\\016t\\210NV0\\011\\360(\\317\\252\\252y\\227\\033\\357\\252v\\263\\247\\323h\\362\\272H\\377\\000\\276^\\024\\345)c&`I\\344.W\\226\\342r\\234\\347o\\344\\247+\\014\\247;\\333j=\\2763\\012t\\322\\267''\\361\\310S\\275\\347\\372\\313\\204\\255;\\354\\335\\262\\242\\257 %\\274iI\\023@JR=\\335\\311\\363[ve\\306/''RN\\232F J\\207\\352$sP\\347+\\376\\240\\337\\207\\375\\305\\032E\\002\\355\\271@\\202\\247\\316\\252\\004}g\\032\\376\\324\\3651\\257\\355OS\\032\\376\\324\\3651\\240l\\277M\\037\\265\\341\\345\\277\\223\\362,9\\277\\212\\207r\\366\\334\\214\\205Wm\\305MS\\347T\\210\\347sP\\247\\304\\247h\\3206_\\246\\217\\332\\360\\362\\337\\311\\371\\026\\034\\337\\305C\\271{nFB\\253\\266\\342\\246\\251\\363\\252Ds\\271\\250S\\342S\\267\\275\\244W\\256\\333\\211\\202\\241\\316\\222\\004\\023\\270\\030O\\201C\\012\\256\\333\\224\\025\\011\\007"BG;\\231\\204\\270\\014`UR\\262\\363\\215\\367\\322\\013\\335\\243\\351\\274y]$g\\322\\327cdR\\253J\\217\\301\\245UU\\216\\353.\\220r\\004h\\033S\\323F:\\2508\\332\\246\\221\\362*"r\\261\\246R\\3422\\215\\003jzh\\375\\257\\017-\\214o\\236a\\315\\374U\\373w\\266\\344>\\222\\355\\270\\220\\252\\034\\351\\021\\004\\356\\006\\023\\340S\\267\\202t"\\232(\\244g1Et\\252$\\251M@rh\\244R0\\011\\335K\\3326j\\226e\\032\\245j\\022\\246*\\215\\331\\335\\212di\\206d\\234\\247\\2733^\\345\\011^h\\323+J\\324\\222\\250M9\\334F\\357\\024\\212R\\224\\244V\\031\\316*~gh,\\252dF\\252\\0253\\233\\237\\017\\227\\216\\365\\256V\\265\\242\\224d2\\332\\2738Jr_x8_y!x/\\322V\\264\\345\\306\\364\\0336\\242\\260\\225BV\\271\\374 .\\034\\303\\015\\032{\\363\\025\\014K\\224\\345"\\3411\\234\\277H\\325\\350\\020q\\272\\004\\022>EW\\023\\340`~\\037\\177\\036WI\\032\\376\\313\\3651\\237KT\\3639nv\\025;Y\\320\\215Z\\201\\007\\033\\240A#\\344Uq9X\\303\\303\\002\\252\\251\\346r\\334\\354$v\\263\\241\\014*\\203\\215\\320 \\221\\362*"r\\261\\201\\313\\210\\373\\332\\006S,\\322\\244\\207w(/v\\257\\323\\341\\253`\\343c\\344}\\025w\\367\\237\\215+T\\303\\304\\376\\203\\346^E\\315\\374W;cm\\373F&S,\\325$\\277k|/v\\255\\325\\036\\312~lbb\\274\\365R\\253\\366\\267\\317v\\316\\333\\252q\\211\\224\\3134\\252\\257\\332\\337\\013\\335\\255\\336\\251F\\223\\203\\217\\217\\221\\365\\325\\337\\336~<\\262\\227\\300?\\212\\244\\012\\236\\261\\037\\376\\203\\212\\000\\011\\021$i\\2476I5\\004\\304\\303\\226S\\261Js\\224\\370\\312p\\270\\200,T\\223\\031\\246\\224\\303\\2314\\024\\275\\367\\344\\011\\014\\245!.k\\225\\356\\235bL\\2403"\\335H\\226\\020zam\\331\\314\\035\\267\\031\\217L\\002\\222\\232k#0\\2307!\\227\\031\\312r\\237\\3519K\\204RY:\\312\\345\\022:\\272i\\021\\324*[\\251!0\\244RG)\\011L\\255\\024\\225d\\222j''\\220m\\246\\361''9\\362\\201\\215\\313r=\\253\\374(\\3201^z\\251$;\\271Gk;~\\230\\373\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\313\\305y\\352\\244\\220\\356\\356\\036\\355\\235\\336\\351\\234{W\\370Q\\355_\\341F\\201\\212\\363\\325I!\\335\\312;Y\\333\\364\\306\\223\\235\\221\\221\\221\\365\\322\\334\\335b11^z\\225%\\373[\\347k;n\\251\\373\\332M\\002\\355\\271@\\202\\247\\316\\252\\004|L\\343_\\332\\236\\2463\\352\\252\\236g\\021\\256\\372\\247k:q\\244P.\\333\\212\\232\\247\\316\\252\\004s\\271\\231\\317\\211C\\011.\\333\\225\\350$|\\212\\211\\004\\356\\006r\\3421\\201KJ\\313\\331nv\\022\\013\\335\\240\\215&\\201v\\334\\240AS\\347U\\002>&q\\253\\327\\256\\333\\211\\232G\\310\\252\\344\\023\\270\\031\\313\\210\\306\\005-S\\314\\3425\\337H\\355gN3\\352\\250rq\\352\\225\\245G\\340\\322\\252\\222!dPH9\\003\\301\\315\\323U5i\\327H\\3442\\377\\000\\212\\322=\\371\\313\\377\\000H^%\\372G\\367\\215\\217\\263W\\251\\247\\234\\204\\267HNI\\310\\3113\\003\\221\\204\\344_\\256\\346\\364(\\211\\2439\\332v\\237)\\214\\212\\\\e\\374\\312\\020\\342\\342\\013VMm\\371\\312R\\236\\350&\\013)r\\234\\345y\\251iC\\312"\\350o\\316v\\337L\\204\\245\\306_\\304\\345\\032\\376\\323\\3651\\346\\224\\221\\201KT\\363.5\\337H\\355gO\\246\\321\\240l\\277M\\036iI\\343\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\037\\272fb1\\215\\363\\3177\\271\\224\\277n\\327\\337\\214\\372\\252\\034\\234z\\245iQ\\3704\\252\\244\\210Y\\024\\022\\016@\\367\\274\\256\\223\\302T\\025UO2\\333\\235\\204\\216\\326t:\\255\\030\\352\\240\\343j\\232G\\310\\250\\211\\312\\306\\231K\\210\\312\\030Uv\\334\\240\\250H9\\022\\0229\\334\\314%\\300c\\366\\274<\\2661\\276y\\2277\\361\\027\\350\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\243V\\240]\\267(\\027H9\\022\\\\\\217\\211\\237\\216u5N\\372A+\\034\\356\\212\\207h\\336\\340\\231\\230\\356\\221J_\\246\\366\\355\\306S\\376$E\\004\\022\\237\\377\\000\\220I\\316S\\377\\000\\346\\021\\262\\364u'';\\\\\\316\\235In\\310\\371er\\011\\204\\347\\306\\363\\212a\\222`gn$!2\\234\\306S\\376\\327\\235\\277\\274N\\234AY\\246\\222i&\\0032\\227\\022\\224\\267Jr\\217\\355;\\316v\\237\\376\\323\\224\\343\\312\\351#V\\240]\\267(\\027H9\\022\\\\\\217\\211\\237\\206\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\032Ez\\0166\\231\\252|\\352\\240!+\\000\\034\\370\\224`UU<\\313nv\\022;Y\\320\\352\\215\\003jzh\\322k\\320q\\272\\364\\025>uP\\020\\350\\003\\360\\322k\\327m\\312\\365\\325\\016t\\220 \\3500\\367\\274\\262\\2265\\374\\246Y\\245U~\\326(^\\355[\\252>\\3025\\374W\\236\\252U~\\326)\\332\\316\\333\\25212\\231f\\225U\\373[\\341{\\265n\\250\\375\\217N\\323\\376\\345\\3273\\277\\322\\315F\\225\\252a\\342\\177A\\363/"\\346\\376+\\235\\271[~\\336\\032\\266\\0166;\\037A]\\375\\347\\343\\332\\277\\302\\212_\\374C*\\225\\033\\377\\000\\011\\225(H\\347\\3767\\345\\033F\\222\\2415R\\377\\000[L\\006\\032^*\\021Sq=\\343\\020\\033\\332\\177\\311\\020\\312\\031Z)\\320R`\\246\\341\\220\\025\\257?\\340\\204\\245\\011\\323\\034\\347)\\377\\000~3\\265\\377\\000\\353\\013J\\307P|9\\247\\302_\\332_\\304\\277IJR\\224\\245\\032\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\322\\252\\277k\\024/v\\255\\325\\341\\345\\224\\221\\240b\\274\\365*\\250wr\\216\\326v\\3751\\244\\347dd1\\365\\322\\334\\335b11^z\\225%\\373[\\347k;\\273\\3258\\366S\\363c\\331O\\315\\217e?7\\336\\325\\353\\320q\\264\\301 \\344Iq\\011X\\000%\\300c\\312\\352\\343>\\252\\225\\227\\233w\\260\\250^\\355\\007U\\343_\\332\\236\\2463\\352\\253\\261\\262*\\222\\245[\\340\\325*\\252''tWT9\\3020)iYy\\267;\\011\\005\\356\\320u^4\\212\\005\\333qST\\371\\325@\\216w39\\361/\\017\\260\\215Z\\275\\007\\033\\257] \\344Iq\\016\\200\\010\\325\\253\\327m\\312\\364\\022>EW \\3503\\360\\325\\353\\220q\\272\\365\\322\\016D\\226\\020\\225\\200#\\002\\232\\205\\374zU\\252\\221\\370\\324\\311\\246\\250Yd\\022.\\007\\023\\257\\251\\252y\\234F\\273\\312\\035\\254\\351\\307\\231\\325x`R\\325<\\316#]\\364\\216\\326t\\343@\\331~\\232<\\256\\2560)j\\236g\\021\\256\\372Gk:q\\237UC\\223\\217T\\255*?\\006\\225T\\221\\013"\\202A\\310\\021\\240l\\277M\\030\\024\\264\\254\\275\\226\\357a \\275\\332\\010\\325\\353\\320q\\264\\301 \\344Iq\\011X\\000%\\300a\\204\\227m\\312\\364\\022>ED\\202w\\0039q\\030\\300\\245\\245e\\354\\267;\\011\\005\\356\\320F\\223@\\273nP \\251\\363\\252\\201\\037\\023?{H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\2174\\244\\217\\277\\360\\307Uv\\334T\\022\\016D\\204\\216w3\\011p\\031\\332?k\\303\\313c\\033\\347\\231s\\177\\025~\\335\\355\\271\\030\\025U\\330\\331\\025J\\325#\\361\\251RU\\023\\272+\\244|\\207\\341\\237KJ\\313\\330\\215\\367\\325\\013\\335\\243\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\360\\373\\370\\362\\272H\\300\\252\\241\\311\\307\\252J\\251o\\215T\\222H\\205\\221AS\\3478\\375\\3233\\021\\374\\237\\221y\\275\\314\\244;\\226\\276\\374h\\033S\\323F}-v6E*\\264\\250\\374\\032UUX\\356\\262\\351\\007 G\\355xylc|\\353.o\\342\\257\\333\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\243\\035U\\333qPH9\\022\\0229\\334\\314%\\300gh\\235\\005U+/8\\337} \\275\\332>\\233\\307\\225\\322F\\005U\\016N=RUK|j\\244\\222D,\\212\\012\\2379\\306\\275\\263=L`UWcdU+T\\217\\306\\245ITN\\350\\256\\221\\362\\037\\217\\225\\322{\\332\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\325$\\277k\\024/v\\255\\325\\032\\266\\0166>G\\321W\\177y\\370\\366\\257\\360\\243U\\3250\\361?\\256\\371fQs\\177\\025\\276\\344\\255\\277x\\375\\217N\\323\\376\\345\\3273\\277\\322\\315F^S,\\322\\244\\207wp/v\\267\\272e\\343\\345\\224\\221\\240b\\274\\365RHwr\\216\\326v\\3751\\252\\340\\343c\\344}\\025w\\367\\237\\215+T\\303\\304\\376\\203\\346^E\\315\\374W;r\\266\\375\\243@\\305y\\352UP\\356\\345\\035\\254\\355\\372c\\354#@\\312e\\232\\245P\\356\\345\\005\\356\\325\\372c\\023)\\226j\\222_\\265\\276\\027\\273V\\352\\215''\\007\\037\\037#\\353\\253\\277\\274\\374ye,k\\371L\\263T\\222\\375\\254P\\275\\332\\267T}\\374y]$e\\342\\274\\365*\\250ww\\016\\326w{\\246q\\355_\\341F\\225\\252a\\342\\177A\\363/"\\346\\376+\\235\\271[~\\336>YK\\357i4\\013\\266\\345\\002\\012\\237:\\250\\021\\3613\\207\\325A\\306\\350*\\025\\016t\\210NV0\\011\\360(\\317\\252\\252y\\234F\\373\\352\\235\\254\\351\\306\\255^\\203\\215\\327\\256\\220r$\\270\\207@\\004g\\325WcdU%J\\267\\301\\252UTN\\350\\256\\250s\\204~\\327\\207\\226\\376O\\310\\262\\346\\376*\\035\\313\\3325\\375\\251\\352cI\\240A\\306\\350\\027T9\\322@O\\201\\204`R\\325<\\316#}\\364\\216\\326t\\341\\204\\220q\\264\\205 \\344HD%`L%\\300ex\\310U\\007\\033T\\025\\016t\\210NV4\\302|\\012W\\215\\177jz\\230\\310Uv\\334T\\325>uH\\216w5\\012|Jv\\360\\317\\252\\245e\\346\\335\\354*\\027\\273A\\325x\\300\\245\\256\\306\\310\\245J\\251o\\215T\\222\\253\\035\\326]S\\3478a%\\333r\\275\\004\\217\\221Q \\235\\300\\316\\\\F4\\015\\227\\351\\243>\\252\\207''\\036\\251ZT~\\015*\\251"\\026E\\004\\203\\220#_\\332\\236\\2463\\352\\252\\236e\\306\\273\\352\\235\\254\\351\\364\\307\\225\\322x\\351\\024\\013\\266\\342\\246\\251\\363\\252\\201\\034\\356fs\\342Q\\240l\\277M\\032\\006\\313\\364\\321\\237UC\\223\\217T\\255*?\\006\\225T\\221\\013"\\202A\\310\\036\\366\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\032\\006\\324\\364\\321\\240mOM\\032\\006\\324\\364\\321\\240mOM\\030\\025T\\254\\274\\343]\\364\\202\\367h\\372o\\032\\265\\002\\0167@\\202G\\310\\252\\342r\\261\\204`UP\\344\\343\\325%T\\267\\306\\252I$B\\310\\240\\251\\363\\234g\\322\\325<\\316[\\235\\205N\\326t#V\\240A\\306\\350\\020H\\371\\025\\\\NV0\\217+\\253\\217\\260\\2174\\253\\207\\322A\\306\\353\\320T\\371\\325!\\011X\\000\\347\\304\\243\\367L\\314G\\362~E\\366\\3672\\220\\356Z\\373\\361\\216\\252\\0166\\251\\244|\\212\\210\\234\\254i\\224\\270\\214\\243_\\331~\\2463\\351j\\236g-\\316\\302\\247k:\\021\\253P \\343t\\010$|\\212\\256''+\\030C\\351 \\343u\\350*|\\352\\220\\204\\254\\000s\\342Q\\257\\354\\277S\\017\\244\\273n$*\\207:DA;\\201\\204\\370\\024\\355\\030\\352\\256\\333\\212\\202A\\310\\220\\221\\316\\346a.\\003;D\\350*\\251Yy\\306\\373\\351\\005\\356\\321\\364\\336<\\256\\2221\\325]\\267\\025\\004\\203\\221!#\\235\\314\\302\\\\\\006v\\211\\320UR\\262\\366#}\\364\\202\\367h\\375\\377\\000,\\245\\217e?6=\\224\\374\\330\\366S\\363c@\\305y\\352\\244\\220\\356\\345\\035\\254\\355\\372c\\357\\3744\\255/3/\\372\\037\\231yf\\3672\\234\\355\\224{W\\370Q\\355_\\341F\\201\\212\\363\\324\\252\\241\\335\\312;Y\\333\\364\\307\\330G\\231\\325\\370i9\\331\\031\\014}t\\2677X\\214LW\\236\\252U~\\326\\371\\356\\331\\333uN=\\253\\374(\\366\\257\\360\\243\\332\\277\\302\\214\\274W\\236\\252I\\016\\356\\341\\332\\316\\357t\\3165\\\\\\354\\234\\214\\217\\240\\226\\346\\353\\021\\345\\224\\221\\211\\224\\3135I/\\332\\337\\015\\353\\265n\\251F\\225\\203\\215\\217\\221\\365\\325\\337\\336~<\\262\\222<\\316\\2264\\254\\354\\234\\214\\217\\254\\226\\346\\353\\021\\354\\247\\346\\373\\336WI\\014$\\273nW\\240\\221\\362*$\\023\\270\\031\\313\\210\\306\\201\\262\\3754h\\033/\\323G\\232RG\\337\\370`R\\320\\344\\343\\322\\253T\\217\\306\\245I%\\202\\313 \\221\\362\\034g\\325U<\\316#]\\365N\\326t\\3744\\232\\004\\034n\\201uC\\235$\\004\\370\\030G\\330F\\221@\\273n*j\\237:\\250\\021\\316\\346g>%\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\321\\257\\355OS\\032\\376\\324\\3650\\372\\253\\266\\345\\002\\012\\237:\\244G;\\231\\234\\370\\224`R\\320\\344\\343\\322\\253T\\217\\306\\245I%\\202\\313 \\221\\362\\034g\\325U<\\313\\215w\\325;Y\\323\\351\\264y]$h\\033/\\323F\\201\\262\\37540\\222\\0166\\220\\244\\034\\211\\010\\204\\254\\011\\204\\270\\014\\257\\030\\024\\26498\\364\\252\\325#\\361\\251RI`\\262\\310$|\\207\\037\\272fb1\\215\\363\\3177\\271\\226\\277n\\327\\337\\206\\022A\\306\\353\\352\\022\\016D\\204BV\\000\\011p\\037{\\312\\351#\\315)<|\\322\\222>\\3765j\\004\\034n\\201\\004\\217\\221U\\304\\345c\\010\\363JO\\015&\\275v\\334\\257]P\\347I\\002\\016\\203\\010aU\\333r\\202\\241 \\344HH\\347s0\\227\\001\\211\\320UR\\262\\353\\215\\367\\322\\013\\335\\243\\351\\274i\\025\\353\\266\\342`\\250s\\244\\201\\004\\356\\006\\023\\340Q\\253P.\\333\\224\\013\\244\\034\\211.G\\304\\316>\\303\\301\\205Wm\\312\\012\\204\\203\\221!#\\235\\314\\302\\\\\\006?k\\303\\313c\\033\\347\\231s\\177\\021~\\335\\355\\271\\017\\244\\273nW\\324*\\034\\351\\021\\004\\356\\006\\023\\340Q\\345uq*\\012\\252\\247\\231m\\316\\302Gk:\\237U\\243\\035T\\034mSH\\371\\025\\0219X\\323)q\\031F\\255@\\273nP.\\220r$\\271\\037\\0238\\317\\245\\245e\\354F\\373\\352\\205\\356\\321\\306\\005Uv6ER\\265H\\374jT\\225D\\356\\212\\351\\037!\\307\\232RD\\353\\351iYy\\306\\373\\352\\205\\356\\322\\2357\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\367\\274\\256\\22212\\231f\\251%\\373[\\341\\275v\\255\\325(\\366S\\363c\\331O\\315\\2173\\245\\217\\277\\360\\327\\362\\231f\\251%\\373X\\241{\\265n\\257\\015\\003)\\226j\\225C\\273\\224\\027\\273W\\351\\214L\\246Y\\245U~\\326\\370^\\355n\\365J4\\254\\034l|\\217\\256\\256\\376\\363\\361\\345\\224\\221\\355_\\341F\\253\\235\\223\\220\\307\\320Ksu\\217\\015\\003\\025\\347\\252\\222C\\273\\224v\\263\\267\\351\\217\\277\\360\\362\\272\\270\\373\\010\\327\\361^z\\251U\\373X\\247k;n\\257\\035\\003)\\226iRC\\273\\224\\027\\273W\\351\\215WT\\303\\304\\376\\277\\345\\231E\\315\\374V\\373\\222\\266\\375\\343I\\301\\307\\307\\310\\372\\312\\357\\357?\\032\\006S,\\322\\244\\207w(/v\\257\\323\\357y]$h\\033/\\323F\\201\\262\\3754h\\033/\\323F\\221@\\203\\215\\252\\012\\207:H\\011\\312\\306\\001>\\005\\037\\177\\356i\\024\\013\\266\\342\\246\\251\\363\\252\\201\\034\\356fs\\342P\\302K\\266\\342F\\221\\362*$\\023\\270\\031\\313\\210\\316\\321\\240l\\317M\\031\\365T98\\365J\\322\\243\\360iUI\\020\\262($\\034\\201\\017\\252\\203\\215\\320T*\\034\\351\\020\\234\\254`\\023\\340Q\\257\\355OS\\032\\376\\324\\3651\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\023\\257\\252\\252y\\227\\033\\357\\252v\\263\\247\\323h\\322h\\027m\\312\\004\\025>uP#\\342g\\036WW\\031\\365T\\254\\274\\333\\235\\205B\\367h:\\257\\017\\252\\273nP \\251\\363\\252Ds\\271\\231\\317\\211F\\201\\262\\3754`R\\322\\262\\366[\\235\\204\\202\\367h#I\\240]\\267(\\020T\\371\\325@\\217\\211\\234j\\365\\353\\266\\342f\\221\\362*\\271\\004\\356\\006r\\3421\\201KT\\3638\\215w\\322;Y\\323\\215\\003e\\372o\\371\\237\\377\\304\\000*\\021\\000\\001\\003\\003\\002\\005\\004\\002\\003\\000\\000\\000\\000\\000\\000\\000\\001\\000\\002\\003\\004\\005\\021\\006!\\022\\0231@Q\\020\\024"A2\\200\\026$B\\377\\332\\000\\010\\001\\002\\001\\001?\\000\\375\\232\\007>\\203p\\206A\\357\\245\\220F2T3\\211z)$\\021\\214\\225\\014\\302^\\235\\356\\335\\025\\336\\262*jw\\361\\356U\\267V\\262\\337\\027*f\\365U\\372\\245\\265t\\216\\345FA+L\\201\\354\\203\\270\\262\\343\\351\\370\\367Gg\\247T\\226\\316B\\243\\202:\\332\\242\\3717\\307\\322\\275Z\\250\\337;\\036\\346c\\013\\330R\\032Q\\037\\000\\003\\012\\331V\\353U\\321\\360\\003\\226\\022\\271\\340\\014\\224\\307\\207\\216\\350\\214\\253\\354\\202\\000\\307\\370GSU\\321\\327\\020\\303\\262\\236\\360+\\242\\314\\262\\340\\2515|\\320\\216@9\\036T\\267h^\\033#\\177/+\\334>\\261\\214\\204\\177\\245L\\013X"?]\\326p\\026\\247g\\364\\336\\357\\012B\\343!*\\234\\021&$\\033*\\273#$9\\245\\361\\366\\244\\202JiC\\036\\254%\\262S\\302\\343\\364\\027F\\343\\272\\350r\\025\\306\\334\\333\\2238\\034vRh(\\016x^\\237\\240e\\316Y"\\376;[\\024|\\271\\007\\022\\250\\322W\\016o\\034L\\300VZSKB\\326;\\252\\306q\\335\\017\\216\\305`\\215\\302\\371,\\037+\\207\\354\\204x_\\262\\331\\277\\000\\272~\\335\\377\\000\\377\\304\\000%\\021\\000\\001\\004\\001\\004\\001\\004\\003\\000\\000\\000\\000\\000\\000\\000\\000\\001\\000\\002\\003\\004\\021\\005\\022!@2\\020"A\\200\\024Ba\\377\\332\\000\\010\\001\\003\\001\\001?\\000\\373v\\326\\2477\\011\\2419\\270\\356\\362\\252@\\371^$\\370Ri\\337\\220w\\205\\006\\236\\030\\375\\305\\312\\376\\335\\374\\017@{ML\\213r\\230IR=\\241T\\2651a\\010J\\367\\277 \\2535\\2375m\\305\\2500\\242;C\\311Q?\\252\\265\\030\\270\\334\\025\\0353_\\305U\\245\\030p|\\241_\\271M\\364\\004,\\034\\246\\342"\\364}\\335\\257\\225\\247sd5\\017\\342w\\011\\266\\234\\337k\\302k\\204\\215\\341Z\\341\\317C\\201\\332\\306T\\023\\030\\216Bn\\262\\360\\233\\255\\037\\220\\205\\370\\363\\225\\036\\251\\020n\\025\\271w\\277!\\036[\\332j\\306J\\300\\\\.\\020!y!\\366\\357\\377\\331', '1', '2022-03-16 22:15:46', '1', '2022-03-16 22:15:46', 0); -INSERT INTO "public"."infra_file_content" ("id", "config_id", "path", "content", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5, 4, '0d9be64ab8674344b236df60f4c39b62.jpg', E'\\377\\330\\377\\340\\000\\020JFIF\\000\\001\\001\\000\\000\\001\\000\\001\\000\\000\\377\\333\\000C\\000\\003\\002\\002\\003\\002\\002\\003\\003\\003\\003\\004\\003\\003\\004\\005\\010\\005\\005\\004\\004\\005\\012\\007\\007\\006\\010\\014\\012\\014\\014\\013\\012\\013\\013\\015\\016\\022\\020\\015\\016\\021\\016\\013\\013\\020\\026\\020\\021\\023\\024\\025\\025\\025\\014\\017\\027\\030\\026\\024\\030\\022\\024\\025\\024\\377\\333\\000C\\001\\003\\004\\004\\005\\004\\005\\011\\005\\005\\011\\024\\015\\013\\015\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\377\\302\\000\\021\\010\\001\\002\\001\\002\\003\\001\\021\\000\\002\\021\\001\\003\\021\\001\\377\\304\\000\\036\\000\\000\\003\\001\\001\\001\\001\\001\\001\\001\\001\\000\\000\\000\\000\\000\\000\\000\\010\\011\\007\\001\\006\\012\\002\\004\\005\\003\\377\\304\\000\\034\\001\\001\\000\\002\\003\\001\\001\\001\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\001\\005\\002\\004\\006\\007\\003\\010\\377\\332\\000\\014\\003\\001\\000\\002\\020\\003\\020\\000\\000\\000\\252`\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\007\\000\\000\\000\\000\\000\\350\\034:p\\350\\000\\034\\003\\240p\\000\\000\\350\\000\\034$\\001\\200\\200\\000\\377\\000\\013\\371\\200\\200\\027\\370\\341 \\007\\370\\300\\012\\002\\000\\004\\001\\002\\276\\001 \\300\\000\\013\\374\\000\\007\\010\\004]\\003\\0038\\002\\252y@)A+\\306\\234\\015\\374\\233 `\\005&\\020 5`7\\363~\\025Q\\323<\\261\\252\\021`\\277\\300\\000p\\200ES \\020\\027\\364UMP\\240\\002\\250j\\244X/\\340\\200\\015Q\\026J\\246e\\003\\376t\\312H\\262*\\205\\375\\025QV\\025R\\251\\212\\261\\177\\200\\000\\341\\000\\212\\246@ /\\350\\252\\212\\260\\017\\360\\277\\230\\011\\177I\\000\\007\\253\\022\\322\\322\\222\\014\\015\\370\\365d\\254/\\350\\252\\212\\260\\252\\225LU\\213\\374\\000\\007\\010\\004U0\\003\\001<\\240\\252\\232\\261T\\017*E\\243\\312\\225@\\233''\\225<\\261s\\305Tt\\317,E\\223\\313\\027<@G\\370\\016\\222\\010\\372''\\000\\003\\204\\377\\0002\\303\\207@j\\014\\250\\325\\205T\\325\\015X\\225\\246V5&\\246j\\202\\260eFVZaU5A\\252\\020\\023\\240p\\012\\252\\000\\000\\000O\\343\\177\\003\\000(\\011\\344I\\262*\\245\\32003\\204\\0025r\\347\\237;%\\0000\\000<\\251s\\306\\010\\237\\342\\002o\\303\\000 %\\376\\000\\003\\362/\\347\\316\\311\\253\\236X\\271\\346\\246yP0\\003\\177\\030"\\177\\234&\\310\\351\\023h~\\212PC\\003\\324\\217\\351\\277\\221ht\\207L`\\211\\374Hc\\351\\350\\000\\016\\020\\010\\312\\307\\364@\\307\\364\\340\\201\\225@\\177\\304\\000j\\204\\004\\351\\301\\2512\\241\\252"\\321\\252\\0159\\252\\212\\270\\376\\231I+\\213\\374p\\200E\\376\\000\\003\\204\\00203\\324\\224\\240J\\214\\260\\312\\017\\242a\\201$\\001\\345\\307\\370\\337\\011ZW\\362@\\016\\250\\201\\025\\350\\205\\343T%\\205\\2450\\003\\177\\030#\\204\\002/\\360\\000\\034 \\021_\\014\\000\\240''\\22103\\204\\0025r\\250\\010yO\\317\\006f\\260\\350\\360b\\322\\263!\\007\\354\\233#\\246jg\\227$\\001_\\314\\000\\324\\311\\264}=\\000\\001\\302\\001\\026\\234\\312\\206\\260\\312\\004\\004\\351*\\312\\246*\\305\\361?\\244\\377\\0003\\343\\226]\\204\\353\\277X\\314\\376M[g\\037\\362\\304L\\213\\003Vec\\372*\\306\\252U\\001\\002:U@\\000?"\\376M\\223S\\03500\\003\\000\\025\\202\\347\\221d\\276P\\376\\244c\\264\\033\\331\\357\\227_\\177\\322\\333_\\322\\365\\225\\373\\347]W\\374\\011\\221\\362u@\\011X5E&!x\\325\\024\\230\\365\\300\\000~E\\374\\213E\\317"\\311\\253\\017\\361\\276\\030\\020\\252\\223h\\2501,\\305\\026\\336S[\\275\\353\\251s\\367\\335mvG\\345\\375+)\\354\\234\\217\\240\\373\\304\\262\\313\\031\\256U1V\\001\\376\\027\\362k\\224\\000\\300\\017\\242p\\0008O\\362,\\015X\\324\\217\\350\\200\\217\\361\\001KJJ\\321\\307\\206\\371\\310\\333y\\277\\035\\355\\274m\\325?\\277\\254\\334\\361\\377\\000\\037A\\377\\000''\\325|]\\204\\354j\\023\\355\\254r\\303S5A\\252\\020\\0202\\303*2\\263\\351D\\000\\016\\022\\000uD\\010\\300\\013J`\\006\\000?\\306\\000\\007\\207Cy\\306\\332\\376\\177.\\372\\011\\365\\214_\\254\\257\\324\\371\\215\\345S\\364\\277\\021C{*L\\032A\\026ML\\252d\\002\\003\\351\\350\\233&\\246P\\020\\0008@"\\377\\000\\031A\\352H\\014:D\\332\\037\\242\\277\\235\\020\\361\\306\\245\\331\\377\\000/\\316\\356\\177\\222\\263c0\\336\\303\\326q\\266_\\305\\356\\234\\226\\313\\320\\351\\301C\\177+\\370\\277\\001\\352\\214\\260\\300I\\000W\\362\\224\\200\\001\\302\\001\\017\\351\\226\\031X\\253\\017\\340\\025PU\\005\\\\\\377\\000\\264\\313Y\\030\\177\\246\\313K\\305\\232Liq?\\353D\\376\\376\\220\\224\\300\\037\\362\\001\\217\\351\\252\\021l\\177N\\035*\\240\\000\\037\\221\\177$\\031i\\314\\254\\312I^z\\243\\350\\234\\225g\\253\\002@\\225\\354]\\017\\356\\036\\341\\246\\020\\361\\006\\001\\3768 C\\372o\\340`\\006\\000X\\000\\000?"\\376yaV*\\241\\344I\\262je\\001''\\361!\\217"U1V\\037\\323,\\032\\221\\00252m\\037I\\207\\225"\\310\\376\\210\\020\\376\\224\\004\\341\\000\\213\\374\\000\\007\\011\\376+\\006V5\\000p@\\317\\245\\003\\204\\0035c+\\032\\203S2\\263,*\\211\\225\\022\\264\\325\\215PUL\\260\\177\\016\\225L\\010\\004_\\340\\0008H\\001X7\\363\\177=A\\226\\015H\\225\\033\\371!\\217\\244\\303\\0037\\303\\327\\0319+\\312LH1\\3755cT"\\300\\252\\235\\030\\003\\324\\200\\376\\224\\004\\000\\017\\310\\277\\236X\\000\\015P\\232\\306\\376t_\\314\\004jF\\250\\365"XRr\\027\\217\\360\\277\\217\\361 \\314\\014\\372L<\\251\\026K\\240HR\\177\\237U\\000\\000p\\200CT\\000ef\\250U2V\\034\\003T2\\261\\252\\032\\241T5Q\\0028\\003\\374eD\\255-9\\225\\022\\264\\252d\\255\\032\\202\\252\\200\\001\\302\\001\\025\\360\\220`U1V*\\241\\025\\300\\237\\345(=X\\226\\236\\244\\000\\252gI\\004o\\345P"\\310\\001\\201\\216\\221\\251\\216\\230\\301\\000\\001\\302\\001\\025L\\200@_\\321U<\\240\\352\\220\\010\\257\\342\\002\\\\\\363\\312\\210\\011\\352\\311X0#\\244:d\\203-1\\352\\211Z0\\007\\015X\\213''\\226>\\236\\200\\000\\341\\000\\213N 5B\\252UB,\\023\\374\\240\\002\\254ZRV\\215H\\253\\212\\241@\\015P\\252d\\002\\032\\243+-9\\301\\0002\\301\\2472\\262\\200\\200\\001\\302\\001\\000\\001\\345\\207L\\252\\207\\312\\271\\321\\2002\\303|\\037\\322l\\225\\364\\341\\276\\236T\\232\\346\\002Zb\\030\\036\\244\\177\\205\\374\\177\\214\\000@\\213\\374\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\007\\377\\304\\000B\\020\\000\\000\\003\\006\\002\\011\\002\\005\\003\\003\\002\\003\\011\\000\\000\\000\\006\\007\\010\\000\\004\\005\\024\\025\\026\\011\\027\\001\\002\\003\\021\\023\\030\\031W\\205%8\\020 !Gg\\022&''()FAu"7901BPQ`ac\\203\\377\\332\\000\\010\\001\\001\\000\\001\\022\\000\\377\\000\\310\\367\\266\\366\\336\\333\\333{om\\355\\275\\267\\266\\377\\000\\216\\377\\000\\206\\215:4\\374\\273\\333\\365h\\370\\376\\255\\015\\275\\267\\266\\366\\337\\363/\\005\\342z\\022\\312\\274t\\015\\007\\016(\\241\\270l\\214\\253\\227TU9\\334\\326\\352\\212\\247;\\232\\335QT\\347s[\\252*\\234\\356kaN\\250L\\345''\\2329\\214&\\270\\250\\264\\271\\006^\\013\\304\\364%\\225x\\350\\032\\016\\034QCp\\331\\031W.\\250\\252s\\271\\255\\325\\025Nw5\\272\\242\\251\\316\\346\\374W\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\311y\\031\\342re''\\216F@\\370\\235\\030G\\014\\221\\224}\\302\\231P\\231\\312K43\\030MqQir\\037/TU9\\334\\326\\352\\210\\247;\\230\\3100\\317\\023\\234\\311<\\0162\\030D\\353"8\\234\\364\\333\\352\\3623\\304\\344\\312O\\034\\214\\201\\361:0\\216\\031#(\\373\\325\\021Nw1\\272\\242\\251\\316\\346\\267TU9\\334\\326\\352\\212\\247;\\232\\335QT\\347s~lQ\\275\\365\\231\\2761\\215\\003D2L\\001"c\\021\\224R\\216\\034\\206\\360\\246\\237z\\242&>\\345\\267TD\\307\\334\\306\\305\\033\\330\\231\\233\\343\\033\\003/\\275\\236\\021\\227\\202\\016=\\016\\225^:\\031\\003\\200\\365\\240\\334JFU\\365\\007 \\343\\320\\226U\\340a\\220\\304\\017E\\015\\303g\\246\\237O\\025FX\\246\\352.c\\011\\255\\332\\327\\036A\\225\\012]3Vq\\350&8\\311\\300\\315\\340\\\\\\011%iQ\\245B\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\012\\204\\274g&\\314\\321\\314p\\315\\271Z\\245\\3101\\236\\274\\310\\262`u\\023\\007\\014G\\024a\\0347\\2054\\344\\227R\\351\\232\\214O@\\311\\306q\\206l\\362\\34075U\\215b\\254\\250\\013\\025''\\225\\371p&\\270\\250\\265I\\366+\\320a\\350s\\201!\\243\\020h\\036\\262\\034\\211qe_U\\012\\242,\\226q\\024&''\\011\\3015\\340d\\011%iP^\\227Js\\266m\\322\\351Nv\\315\\222\\352]3Q\\211\\350\\0318\\3160\\315\\236\\\\\\006\\346\\252\\261\\254U\\325\\011b\\244\\362\\277.D\\327\\025\\026\\251>\\3109x\\221d\\262P\\003\\003F#\\212(\\216\\033=4\\345\\2127\\26137\\3066\\006_{<#\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSN]Q\\023\\037s\\030\\215TE\\212\\222\\255\\345\\300\\232\\342\\242\\360''\\333\\024o}fo\\214\\371\\261F\\367\\326f\\370\\306\\305\\033\\330\\241\\233\\343>8\\243{\\0233|c`g\\367\\263\\3022\\240\\305_\\226\\303\\320L\\\\eu\\307E\\225\\365/\\243.D7\\316u\\223\\270mg[S\\254\\227\\010\\336[H\\260\\321sZ\\270\\250\\263^\\247\\205\\317\\276\\242\\317\\311\\266\\355\\033\\231PaQ\\314\\221\\350&1\\263F\\334\\255Kzb\\242#y\\222"\\304\\305\\315j\\335\\255J\\372\\232\\344C|\\230Y;\\306\\267\\215\\313:\\330\\\\\\373\\024,\\374\\233%\\334)\\371l=\\003F6h\\334tY\\237L\\321\\273s}\\031Q\\021\\274\\311\\021bb\\346\\265n\\326\\245}Mr\\241\\276L,\\235\\343k\\306\\345\\235\\370b\\215\\354L\\315\\361\\215\\201\\237\\336\\317\\010\\330\\242\\373\\3523|g\\303\\003?\\275\\236\\021\\261F\\367\\326f\\370\\317\\233\\024o}fo\\214lQ\\275\\211\\231\\2763\\343\\2127\\26137\\3066\\006\\177{<#b\\215\\357\\254\\315\\361\\215\\325\\025Nw5\\260\\247T&r\\223\\315\\034\\306\\023\\\\TZ\\\\\\203/\\005\\342z\\022\\312\\274t\\015\\007\\016(\\241\\270l\\214\\253\\226\\027\\036\\372\\313?&\\337\\367\\352\\262\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271 \\345\\342z\\035*\\274\\014\\015\\030\\216+A\\270\\224\\364\\323\\2269\\177d\\374\\333\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256K\\310\\317\\023\\223)\\331\\374\\010\\325Df\\246\\332\\336\\\\\\211\\255\\332\\327\\002}\\220a\\236''9\\222x\\034d0\\211\\326Dq9\\351\\267\\326\\302\\231/\\026*O4s\\0303qQir\\014\\274\\212\\360\\3012\\253\\307 \\320|2\\214\\034\\206H\\3129\\031\\353\\314\\3649\\300\\2210p\\310qY\\016D\\270SNDj\\2433\\223uo.D\\326\\355k\\203>\\3100\\317\\023\\234\\311<\\0162\\030D\\353"8\\234\\364\\333\\353b\\260\\250\\214\\344\\331\\225\\371r&\\267kUI\\366\\352\\212\\247;\\232\\3109x\\236\\207J\\257\\003\\003F#\\212\\320n%=4\\345\\212\\272\\2413\\223fW\\345\\310\\232\\335\\255U''\\333\\252*\\234\\356o\\313\\277v\\215:t\\377\\000\\243\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSNLF\\245\\3235H\\326\\362\\3443qQx\\023\\354h\\025\\302b`w\\023\\007\\014\\241\\224a\\0347\\2054\\345\\325\\0211\\3671\\210\\325HX\\251\\032\\336\\\\\\211\\256*/\\002}\\214\\365\\346E\\223\\003\\250\\2308b8\\243\\010\\341\\274)\\247%\\344W\\211\\316d\\2369\\006\\203\\341\\225\\221\\034NFQ\\313\\012t\\276f\\246\\314\\321\\314`\\315\\273Z\\245\\310i3\\327\\231\\026L\\016\\242`\\341\\210\\342\\214#\\206\\360\\246\\234\\233\\025t\\272g),\\257\\313\\220\\315\\305E\\252O\\262]TE\\2221"\\203D\\341\\306&\\263\\314\\200\\324\\325V\\012\\203\\014\\360\\3012\\253\\300\\343!\\204N\\214\\034\\206OM\\276\\256_\\356Ger\\347\\374\\211e\\317W\\230\\320+\\204\\304\\300\\356&\\016\\031C(\\3028o\\012i\\311\\007 \\343\\320\\226U\\340a\\220\\304\\017E\\015\\303g\\246\\237O\\025DY&\\332.c\\011\\255\\332\\327\\036A\\227\\221\\236\\0309\\225x\\344d\\017\\211\\326C\\221)\\031G\\336\\227Js\\266m\\205:^3\\223^h\\3468f\\334\\255R\\344\\030\\317^dY0:\\211\\203\\206#\\2120\\216\\033\\302\\232r3\\320a\\350L\\001"c\\021\\220\\036\\214\\034\\206\\360\\246\\237p4\\373\\333\\341\\030\\317^dY0:\\211\\203\\206#\\2120\\216\\033\\302\\232rlV\\022\\361\\234\\244\\262\\303.C7\\025\\026\\251>\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSN_.(\\276\\372\\214\\337\\030\\311p\\215\\346H\\364\\015\\0275\\253v\\2655\\352_L\\030?1fK*#\\313\\231#\\320LcQm\\332\\324\\257\\246\\3642\\374\\330\\337\\364_\\374\\305\\231,\\250\\217.d\\217A1\\215E\\267k2\\276\\230\\227\\261W\\346L\\364\\015\\0279]nV\\246}Ov\\217\\322\\312\\203\\012\\216d\\217A1\\215\\2326\\345j[\\323\\025\\021\\345\\313i\\026&1\\250\\267\\025\\026W\\323:\\345~\\023nF\\272\\222\\177Q\\227\\266]^\\237\\343]\\014\\2776\\262\\032C\\\\\\230\\336\\337\\275\\257\\033\\226I\\225\\006\\025\\034\\311\\236\\202c\\0334m\\312\\324\\257\\246\\252#\\313\\226\\322,LcQn*,\\257\\246\\2565\\313\\316}\\223\\373*\\316\\266\\247Y/aO\\314\\231\\026\\0321\\263F\\335\\255L\\372b^\\305_\\2313\\3204\\\\eu\\271Z\\232\\365%\\312\\27191\\262\\177e^7,\\353r3\\324\\223\\372\\214\\275\\262\\356\\364\\377\\000\\032TDo2$X\\230\\271\\255[\\325\\251_SC(k\\223\\013\\333\\367\\255\\341r\\310\\266(\\276\\372\\214\\337\\031\\360\\335\\241\\261E\\367\\326gx\\317\\233\\024o}fo\\214b\\270\\321\\023\\023\\003\\270`\\304\\033\\024\\243\\010\\341\\274YW\\323\\305Q\\231\\252F\\213\\230\\302k\\212\\213\\307\\220d\\034\\203\\210\\263\\245(\\001\\206C\\020=hG\\022\\236\\232}\\352\\212\\247;\\232\\307\\222\\2433\\224\\235\\0271\\304\\327\\035\\027\\217!\\360+\\320a\\026L\\016\\241\\243\\020p\\036\\214#\\206\\361e_wh\\321\\253\\271\\227\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\311.\\252#5g\\036\\201\\222p\\343\\023^\\005\\300\\222j\\253\\005\\351v\\230\\373h\\305qZ\\031&\\000\\220\\320p6\\027G\\016Cx\\262\\256H9x\\236\\207J\\257\\003\\003F#\\212\\320n%=4\\345\\273\\351\\271\\227\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\313\\024obfo\\214l)\\222\\361b\\244\\263C1\\2037\\025\\026\\227 \\305qZ\\031&\\000\\220\\320p6\\027G\\016Cx\\262\\256X\\\\{\\353,\\374\\233c\\227\\366O\\315\\261^\\274\\317B`\\011\\015\\007\\003G\\024`\\3447\\213*\\344\\274\\214\\36192\\223\\307# |N\\214#\\206H\\312>\\341N\\250\\014\\325''\\2329\\214&\\270\\250\\264\\271\\015\\006z\\014"\\316q\\324Lb1\\003\\326Dq.\\024\\323\\357\\303\\024o}fo\\214\\371\\261F\\367\\326f\\370\\306^Ex\\234\\346I\\343\\220h>\\031Y\\021\\304\\344e\\034\\260\\246K\\306rm\\315\\014\\306\\014\\333\\265\\252\\\\\\207\\300\\3204C$\\300\\022&1\\031E(\\341\\310o\\012i\\367\\252"c\\356[uDL}\\314\\370\\021\\211t\\316RU\\274\\270\\014\\334T^\\004\\373%\\325DY#\\022(4N\\034bk<\\310\\015MU`\\260|,\\024\\253\\374M\\331\\323n\\004v\\205l6\\332\\377\\000\\243]\\365\\014"\\367Dn\\342,\\324\\2745\\305\\217\\342\\031)\\306Q\\330`\\006\\024y\\316#0\\337\\307\\021\\2503\\344b_\\365\\270\\364O\\005\\3674B\\335\\023\\301\\235\\316\\020\\262p''\\\\\\023\\231.\\035.\\334"/\\221\\227H4\\307\\015\\373m\\023ww\\331k\\3556\\272v\\233=\\236\\256\\215\\372\\332\\370\\250&c%Ml\\212\\335r\\314;s\\352B*s\\272R\\352\\241,\\221\\211\\022\\031''\\01615\\236c\\206\\246\\252\\260T\\030g\\206\\011\\225^\\007\\031\\014"t`\\3442zm\\365r\\350\\352Ier\\347\\374\\211e\\317W\\231.\\252"\\311\\030\\221A\\242p\\343\\023Y\\346@jj\\253\\005^\\013\\304\\213:R\\200\\350\\032\\016\\034V\\204q)\\031W-\\314\\203\\227\\211\\026K%\\00004b8\\242\\210\\341\\263\\323NIu.\\231\\250\\304\\364\\014\\234g\\030f\\317.\\003sUX\\322\\345\\376\\344\\266W.\\177\\310\\226\\\\\\365y\\215\\002\\270LL\\016\\342`\\341\\2242\\214#\\206\\360\\246\\234\\276\\\\Q}\\365\\031\\2761\\225\\021\\345\\313q\\026&1\\250\\267\\025\\026W\\323\\020\\322\\344\\347:\\366\\375\\225g[R?\\005DF\\363$E\\011\\213\\232\\325\\275Z\\225\\365>\\206\\177\\233[\\241\\237\\346\\337\\206\\006\\177{<#b\\213\\357\\250\\315\\361\\214\\377\\000\\372\\265\\335v\\232\\232\\232\\372vz\\332\\332uvz5\\366;-M\\206\\317F\\317g\\253\\243SSWF\\355\\032\\242\\210\\373\\270P5\\025\\215=~\\251X{\\256\\325\\357j\\311\\224\\357\\212\\035\\241\\241\\003\\304v\\013\\250\\036\\215\\301\\342\\373hk\\313\\203\\343\\356\\302\\036\\351\\267yy\\332\\352l6\\033\\035M;M\\246\\324\\240Pp#\\224H/\\203\\301\\235_\\266\\033@\\356\\321\\337F\\266\\333s:;j\\303\\236\\037uvzt\\350\\330\\353i\\325\\333h\\331\\252\\014*9\\223<\\304\\3066h\\333\\225\\251_L\\372\\262\\032\\\\\\234\\230\\336\\333\\301W\\215\\313$\\312\\210\\362\\346H\\364\\023\\030\\324[z\\265+\\351\\235\\014\\27762\\344C\\\\\\230\\331_\\275o\\033\\226u\\222\\366\\024\\374\\311\\021a\\243\\0334m\\312\\324\\327\\246*"7\\231",L\\\\\\326\\255\\352\\324\\257\\251\\377\\000\\321\\207\\363\\026d\\267#]I\\177\\250\\333\\333.\\357O\\361\\257\\223v\\375\\032tic=\\006\\021g8\\352&1\\030\\201\\353"8\\227\\012i\\365.\\252#5g\\036\\201\\222p\\343\\023^\\005\\300\\222j\\253\\005\\\\\\277\\333j\\312\\345\\317\\370\\352\\364\\236\\2572\\0143\\304\\3472O\\003\\214\\206\\021:\\310\\216''=6\\372\\274\\214\\36192\\223\\307# |N\\214#\\206H\\312>\\341N\\250L\\345%\\2329\\216&\\270\\250\\264\\271\\006^\\013\\304\\364%\\225x\\350\\032\\016\\034QCp\\331\\031W$\\030W\\206\\016e^\\007\\006\\214!\\225\\220\\344Nzm\\310\\215K\\245\\222m\\255\\345\\310f\\335\\255p''\\333\\024o}fo\\214g\\255?O\\377\\000M\\233o\\3721\\3766r\\330\\006\\242`\\227-\\216\\326"%\\217\\303^\\035\\366.\\2607\\261\\320*:#{\\015\\350\\016\\355\\335\\342\\373}\\216\\335\\205\\003a\\331\\211\\010\\265#\\241\\310+\\2049\\357i\\263\\250\\304\\023|.\\026\\370#\\035\\212\\335\\366\\273-H\\214E\\347a\\017\\333\\271ng\\257\\246\\321\\347O\\377\\000V\\315\\227r\\362=\\011eZ9\\007\\003G\\024`\\3346FU\\313\\245\\332c\\355\\233t\\273L}\\263n\\227i\\217\\266m\\325\\025Nw5\\220\\316\\236\\244\\267\\2671\\177\\310\\226\\\\\\215\\011\\212\\342\\2642L\\001!\\240\\340l.\\216\\034\\206\\361e\\\\\\272\\242\\251\\316\\346\\262\\031\\323\\324\\226\\366\\346/\\371\\022\\313\\221\\2411\\\\V\\206I\\200$4\\034\\015\\205\\321\\303\\220\\336,\\253\\227\\311\\277v\\215:t\\377\\000\\243\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSNH0\\317\\014\\023*\\274\\0162\\030D\\350\\301\\310d\\364\\333\\351\\032\\250\\213%#[\\313\\2215\\305E\\340O\\266(\\336\\372\\314\\337\\030\\311u.\\231\\250\\304\\364\\014\\234g\\030f\\317.\\003sUX\\327TD\\307\\334\\266+\\215\\020\\311\\316\\004\\206\\214A\\261J\\300r%\\305\\225}\\352\\210\\230\\373\\230\\313\\233ORK+\\227?\\344K.z\\272\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSNX)}\\012\\363;\\375\\351\\301\\240G\\210\\350$il F\\024\\263\\243\\273\\336\\323\\364\\351\\331\\005\\204\\033\\023T\\307y\\177z\\200?\\215a\\021\\207\\347\\027\\347\\247c\\376\\032\\346ED\\236,m\\236\\2443R \\034\\210\\277m!\\201\\302\\244\\033\\037}\\025@v\\300=\\274/e\\017\\330;k\\273\\215\\341c8\\2748\\276\\015\\232\\016\\217\\033\\343\\220\\215\\226\\207\\230\\233\\014\\224X(\\004\\361\\002v\\212\\275\\277k\\274\\306\\234\\347\\334\\266@\\261\\364\\010\\315\\016j\\010CO\\325(;\\336\\246\\355\\213\\312\\355A\\247\\241\\322\\253\\207#\\020h\\036\\262\\033\\211H\\312\\276\\266\\006\\177{<#b\\215\\357\\254\\315\\361\\215\\322\\351Nv\\315\\260\\247K\\306rl\\315\\034\\306\\014\\333\\265\\252\\\\\\203/\\004\\034z\\035*\\274t2\\007\\001\\353A\\270\\224\\214\\253\\353aL\\250K\\024\\331\\2329\\214&\\267kT\\271\\006^Fx`\\346U\\343\\221\\220>''Y\\016D\\244e\\037~UA\\205G2G\\240\\230\\306\\315\\033r\\265-\\351\\237VCK\\227\\223\\013\\337\\366M\\343r\\3117#]I?\\250\\333\\333.\\357O\\361\\245DF\\363"E\\211\\213\\232\\325\\275Z\\225\\365>\\206\\277\\233Y.\\021\\274\\266\\221a\\242\\346\\265qQf\\275I.\\021\\274\\311\\036\\201\\242\\346\\265n\\326\\246\\275M\\015!\\276L/o\\336\\327\\215\\313$\\330\\242\\373\\3533|c`\\241\\377\\000,L\\357\\367\\247\\006[P=\\253\\374j\\017\\250\\353\\265\\327\\330\\276\\305\\003\\361W'']\\261%\\002l\\341\\261!\\010\\212\\003\\005x\\331\\353\\357\\011\\200I\\330\\354(C\\241\\335\\373a\\252\\355\\006\\324\\330\\353\\273m\\2302.\\020\\214 \\000\\000\\233\\3243c\\267z\\011\\3046P\\330f\\303o\\033\\212$D\\223\\022\\212F!\\316\\361\\347\\320\\224/\\211!\\327+\\360\\233*\\014*9l"\\304\\3066h\\334tY_M\\300\\317\\357o\\204eA\\205G2g\\240\\230\\306\\315\\033r\\265+\\351\\252\\210\\362\\345\\264\\213\\023\\030\\324[\\212\\213+\\351\\275s?\\011\\267\\\\\\337\\302L\\2500\\247\\345\\260\\213\\023\\030\\331\\243q\\321e}1\\015!\\276s\\257o\\336\\326u\\265$\\312\\210\\215\\345\\264\\364\\023\\0275\\253\\212\\213+\\352\\177*\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271t\\273L}\\263lU\\322\\361b\\2332\\277.C6\\355j\\251>\\305z\\363=\\011\\200$4\\034\\015\\034Q\\203\\220\\336,\\253\\222\\3623\\304\\344\\312O\\034\\214\\201\\361:0\\216\\031#(\\373\\205:\\2413\\224\\226h\\3468\\232\\342\\242\\322\\344\\031x/\\023\\320\\226U\\343\\240h8qE\\015\\303de\\\\\\212\\364\\030E\\223\\003\\250h\\304\\034\\007\\243\\010\\341\\274YW\\334U\\225\\011\\234\\2332\\277.\\004\\326\\345j\\251>\\311u.\\226K8\\212\\015\\034g\\030f\\3602\\004\\223UX\\326\\011\\377\\000\\362\\304\\315\\377\\000{peJ\\351\\277hZ\\304vZ\\3739\\2471N\\307SWe\\251\\243F\\256\\215\\3324h\\321\\243\\377\\000M\\337M?M\\377\\000\\374\\001\\0177\\335\\001\\215G\\321\\244)\\357a\\257\\255\\266\\327\\324\\324}\\013\\212!\\243\\030&\\302-\\011\\332\\353\\355\\3346\\373\\370{@\\344z"\\374\\255B\\301\\300\\373\\203\\336\\327o\\005\\024<\\355\\242\\232\\346(\\006\\004g\\204\\243aQ;\\225N\\003\\023v\\331\\354\\037\\035:]\\246N\\3326(\\336\\304\\314\\337\\030\\304b\\2423\\223eo.\\004\\326\\355k\\201>\\335QT\\347s[\\024obfo\\214\\370\\232\\005hd\\347\\002D\\301\\303(]`9\\022\\341M9.]=6\\354\\256\\\\\\377\\000\\216\\257I\\352\\363%\\324\\272Y,\\342(4q\\234a\\233\\300\\310\\022MUc_.(\\336\\372\\314\\337\\031\\360\\030a\\247c\\0216\\200\\207\\256&0v\\334\\333\\277\\304\\235\\036\\335\\264\\012\\3000\\261\\203\\3541\\361\\377\\000g\\255\\265x\\206\\353m5\\335t\\353\\225\\373/\\257\\015\\367_WF\\237\\364\\332\\025\\357;\\377\\000\\340~\\331\\351\\325h\\332b\\213\\273F\\037c!1\\006\\3241\\021}\\327\\323\\264{\\331\\270\\201\\004N\\220\\367}G\\355M\\233\\333\\346\\256\\317WF\\333j\\230\\203{7\\015\\251\\215\\026\\333\\270\\352l"o\\202g\\215\\216\\323k\\266\\332\\352m6\\357\\272\\272\\272\\3325\\264\\352j\\354\\365u\\233\\024?}\\006_\\214d\\034\\203\\217BYW\\201\\206C\\020=\\0247\\015\\236\\232}\\337\\243\\364\\357c=y\\221d\\300\\352&\\016\\030\\216(\\3028o\\012i\\310\\257^dY\\316:\\206\\203\\201\\303\\212\\310\\216%\\305\\225r!\\0248B`\\356\\237\\243\\216\\371\\317\\371\\001\\335\\260\\363\\003N\\220\\210\\3748\\351\\036\\017\\211\\334"\\320w\\277\\327\\300|\\326\\027\\3035\\366z\\372\\273\\030\\273\\276\\246\\276\\267\\376(V\\337Q\\357N\\256\\301\\317Wi\\254\\355\\372\\270\\233g\\245?\\205G2G\\230\\224\\306\\315\\033r\\263+\\351\\251{\\025~d\\317@\\321q\\225\\326\\345jk\\324\\267\\350\\321\\243v\\226\\305\\023\\337Y\\231\\343\\031/aO\\313a\\350\\0321\\263F\\343\\242\\314\\372b\\345C\\\\\\347Y_\\275\\254\\353ju\\225\\021\\033\\313i\\350&.kW\\025\\026W\\324\\372\\031~ln\\206\\237\\233\\033\\241\\227\\346\\317\\227v\\375\\032tic=\\006\\021g8\\352&1\\030\\201\\353"8\\227\\012i\\367\\013\\217}e\\237\\223c\\305.\\026*J\\213\\230\\341\\233\\212\\213\\307\\220n\\227i\\217\\266l\\250R\\351d\\214H\\2411\\306N\\006l\\363 5+J\\215\\036*\\220\\316R4\\\\\\306\\023\\\\T^<\\203\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256M\\216g\\331?6\\3109\\007\\021gJP\\003\\014\\206 z\\320\\216%=4\\372\\274\\020q\\026K%\\001\\320\\310\\034\\007\\242\\210\\341\\2622\\257\\277\\253K \\364\\026F\\035ID\\0163\\030\\202k\\002H\\224\\364\\323\\342VP\\306\\002\\305>\\303\\005\\001\\273\\037\\272\\313\\261\\034\\325R\\017\\212\\252],\\223^W\\345\\310j\\201Z\\252O\\266\\030\\220\\007\\027\\344:[m\\266\\333\\035\\372\\372\\365&\\324\\014C\\2654\\357\\320\\357\\243{b\\242\\246\\014\\244\\313\\225\\372\\013Q%\\267Z\\252O\\267TU9\\334\\326\\302\\343\\337Yg\\344\\333\\025uDg&\\314\\257\\313\\2215\\273Z\\252O\\262]K\\245\\222\\316"\\203G\\031\\306\\031\\274\\014\\201$\\325V5\\325\\025Nw5\\260\\247T&r\\223\\315\\034\\307\\023\\\\tZ\\\\\\203\\031\\3500\\2139\\307Q1\\210\\304\\017Y\\021\\304\\270SO\\253\\310\\317\\023\\223)\\221\\252\\210\\261R5\\275\\005\\310\\232\\342\\242\\360g\\333\\024o}fo\\214eB\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\245\\312\\234\\355\\233%\\325DY#\\022(4N\\034bk<\\310\\015MU`\\277\\014Q\\275\\365\\231\\2763\\346T\\030Ts$z\\011\\214l\\321\\267+R\\336\\230\\2501W\\346L\\213\\023\\027\\031]nV\\245}I\\015.NK\\357\\177\\331W\\215\\313"\\335s\\177\\011\\267<\\235I?\\247+''.\\257O\\362_\\246\\014?\\230\\263%\\225\\021\\345\\314\\221\\350&1\\250\\266\\365jW\\3237\\267\\321\\261E\\367\\326gx\\306T\\030S\\362\\330E\\211\\214l\\321\\270\\350\\262\\276\\230\\206\\227''%\\367\\276\\340U\\343r\\3117#]I\\177\\250\\333\\333.\\357O\\361\\244\\275\\205?-\\247\\240h\\306\\315\\033\\216\\2133\\351\\230\\345}\\223\\363l\\227\\260\\250\\346L\\213\\015\\030\\331\\243nV\\246\\2751Q\\021\\274\\310\\221bb\\346\\265oV\\245}M\\015!\\276Lom\\343k\\306\\345\\222lQ}\\365\\231\\2761\\225\\006+\\034\\311\\221bb\\347+\\255\\312\\324\\257\\251\\340g\\367\\267\\3026(\\336\\372\\314\\337\\030\\311p\\362\\345\\264\\364\\015\\030\\324[\\212\\2135\\351\\235s?\\011\\267#}I?\\250\\313\\333.\\357O\\361\\255\\355\\277F\\355-\\212/\\276\\2437\\306|\\313\\301x\\236\\204\\262\\257\\035\\003A\\303\\212(n\\033#*\\344\\203\\012\\360\\301\\314\\253\\300\\340\\321\\2042\\262\\034\\211\\317M\\271b\\256\\227\\313\\024\\333\\225\\371r\\031\\267kUI\\366A\\3108\\213:R\\200\\030d1\\003\\326\\204q)\\351\\247\\325B\\227K$bE\\011\\2162p3g\\231\\001\\251ZTi\\015\\177r[\\333\\230\\317\\344[2F\\202\\335.\\323\\037l\\331\\007/\\023\\320\\351U\\340`h\\304qZ\\015\\304\\247\\246\\234\\261WT&rl\\312\\374\\270\\023[\\265\\252\\244\\373\\032\\006\\210\\230\\347\\035\\304\\306#(\\245dG\\022\\341M>\\232\\005hd\\347\\002D\\301\\303(]`9\\022\\341M9t\\274L\\235\\264b\\270\\255\\014\\223\\000Hh8\\033\\013\\243\\207!\\274YW&<\\222\\351b\\244\\250\\271\\214\\031\\270\\250\\274y\\006T*\\210\\315F''\\240\\230\\234''\\004\\326yp\\033\\225\\245AW\\221\\236''&Rx\\344d\\017\\211\\321\\204p\\311\\031G\\336\\250\\212s\\271\\214\\227R\\351d\\263\\210\\240\\321\\306q\\206o\\003 I5U\\215t\\273L}\\263b5.\\026)\\266\\267\\227\\001\\233v\\265\\300\\237lQ\\275\\365\\231\\2763\\341\\243O\\351\\372\\350b\\275y\\236\\204\\300\\022\\032\\016\\006\\216(\\301\\310o\\026U\\313\\252*\\234\\356kuES\\235\\315d\\272\\227K%\\234E\\006\\2163\\2143x\\031\\002I\\252\\254k\\344\\337\\273F\\235:\\177\\321\\214\\365\\346E\\223\\003\\250\\2308b8\\243\\010\\341\\274)\\247.\\250\\211\\217\\271\\215\\325\\0211\\3671\\272\\242&>\\3467TD\\307\\334\\306#U\\031b\\244\\253yr&\\270\\250\\274\\011\\366^\\0108\\364:Ux\\350d\\016\\003\\326\\203q)\\031W\\325B\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\012t\\274g&\\314\\321\\314`\\315\\273Z\\245\\3102\\360A\\307\\241\\322\\253\\307C p\\036\\264\\033\\211H\\312\\276\\341q\\357\\254\\263\\362m\\216g\\331?6\\330\\\\{\\023,\\374\\233/"\\274Ns$\\361\\3104\\037\\014\\254\\210\\342r2\\216Hc\\373m\\336\\274\\305\\377\\000\\035\\336r4&+\\215\\020\\311\\316\\004\\206\\214A\\261J\\300r%\\305\\225}\\351t\\247;f\\330S\\245\\34396f\\216c\\006m\\332\\325.A\\227\\202\\016=\\016\\225^:\\031\\003\\200\\365\\240\\334JFU\\365y\\025\\342s\\231''\\216A\\240\\370edG\\023\\221\\224r\\351v\\247;h\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSNF\\201\\242\\031&\\000\\2211\\210\\312)G\\016CxSO\\244j\\242,T\\215oAr&\\270\\250\\274\\031\\366\\305\\033\\337Y\\233\\343\\030\\3204C$\\300\\022&1\\031E(\\341\\310o\\012i\\367\\025\\205BX\\251,\\260\\313\\2215\\305E\\252O\\374\\370\\242\\373\\3523|ct2\\374\\330\\335\\014\\377\\0006\\267C/\\315\\214\\2500\\250\\345\\260\\213\\023\\030\\331\\243q\\321e}7\\003/\\275\\236\\021\\2677#]77\\250\\313\\3271l\\277\\361\\256\\271\\177\\204\\333\\256o\\341&K\\330Tr\\330z\\006\\214l\\321\\270\\350\\263^\\233\\216g\\331?6\\330\\\\\\373\\024,\\374\\233}\\031r!\\256s\\354\\255\\303k>\\332\\236d\\270F\\362\\332E\\206\\213\\232\\325\\305E\\232\\365.\\271\\277\\204\\333\\256_\\3416\\353\\233\\370I\\225\\021\\345\\313q\\026&1\\250\\267\\025\\026W\\323\\020\\322\\344\\347:\\366\\321d\\331\\366\\324\\223b\\213\\357\\254\\316\\361\\214\\250\\210\\336d\\210\\2611sZ\\267kR\\276\\244\\206\\220\\327&7\\267\\357k\\306\\345\\222lQ}\\365\\231\\3361\\261D\\366(f\\370\\306Chk\\234\\373\\333x\\332\\316\\266\\244\\233\\241\\227\\346\\337\\233\\024o}fo\\214e\\344g\\211\\311\\224\\2369\\031\\003\\342ta\\0342FQ\\367\\252"\\234\\356cuES\\235\\315lQ\\275\\211\\231\\2761\\2602\\373\\331\\341>\\011uQ\\031\\2538\\364\\014\\223\\207\\030\\232\\360.\\004\\223UX.*\\351x\\261M\\271_\\227!\\233v\\265T\\237\\370 \\345\\342z\\035*\\274\\014\\015\\030\\216+A\\270\\224\\364\\323\\2269\\177d\\374\\333\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256]QT\\347s[\\252*\\234\\356kuES\\235\\315n\\227i\\217\\266m\\322\\3552v\\321\\227\\221^\\030&Ux\\344\\032\\017\\206Q\\203\\220\\311\\031G$\\272\\250\\214\\325\\234z\\006I\\303\\214Mx\\027\\002I\\252\\254\\024\\214K\\245\\212m\\255\\345\\310f\\335\\255p''\\333\\024o}fo\\214n\\250\\252s\\271\\255\\325\\021Nw1\\215\\003DLs\\216\\342c\\021\\224R\\262#\\211p\\246\\237R\\352\\2423Vq\\350\\031''\\01615\\340\\\\\\011&\\252\\260U\\313\\375\\266\\254\\256\\\\\\377\\000\\216\\257I\\352\\363 \\303:4\\376\\237\\256\\206+\\327\\231\\350L\\001!\\240\\340h\\342\\214\\034\\206\\361e\\\\\\212\\343DLL\\016\\341\\203\\020lR\\214#\\206\\361e_z\\242)\\316\\3462]K\\245\\222\\316"\\203G\\031\\306\\031\\274\\014\\201$\\325V4\\203\\012\\360\\301\\314\\253\\300\\340\\321\\2042\\262\\034\\211\\317M\\271t\\273L\\235\\264n\\227i\\217\\266lh\\025\\241\\223\\234\\011\\023\\007\\014\\241u\\200\\344K\\2054\\344G%\\302\\3057V\\362\\3443n\\326\\270\\023\\354\\274\\027\\211\\350K*\\361\\3204\\0348\\242\\206\\341\\2622\\256X\\\\{\\353,\\374\\233\\036)t\\262RT\\\\\\306\\014\\334T^<\\203/"\\2740L\\252\\361\\3104\\037\\014\\243\\007!\\2222\\216]QT\\347s[\\012uBg)<\\321\\314a5\\305E\\245\\3102\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271\\025\\3500\\213&\\007P\\321\\2108\\017F\\021\\303x\\262\\257\\270\\253\\252\\02396e~\\\\\\011\\255\\312\\325R}\\272\\242\\251\\316\\346\\377\\000\\356\\177\\377\\304\\000>\\020\\000\\001\\002\\005\\001\\006\\003\\007\\003\\004\\000\\004\\007\\000\\000\\000\\002\\003\\023\\000\\001\\004\\021\\024\\025\\005\\022!"23\\020\\205\\324\\026 #4c\\224\\34415A$QabB`q\\202\\0060R\\201\\261\\263\\321\\377\\332\\000\\010\\001\\001\\000\\023?\\000\\377\\000\\2214\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\201\\262\\3754h\\033/\\323F\\201\\262\\3754h\\033/\\323F\\005-+/e\\271\\330H/v\\2024\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\201\\262\\3754h\\033/\\323F\\201\\262\\3757\\216\\223@\\273nP \\251\\363\\252\\201\\037\\0238a%\\333r\\275\\004\\217\\221Q \\235\\300\\316\\\\F0)iY{-\\316\\302A{\\264\\036\\356\\201\\262\\3754h\\033/\\323C\\011 \\343u\\365\\011\\007"B!+\\000\\004\\270\\0140\\222\\355\\271^\\202G\\310\\250\\220N\\340g.#\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\336\\367\\225\\322F:\\253\\266\\342\\240\\220r$$s\\271\\230K\\200\\316\\321\\240mOM\\032\\006\\324\\364\\321\\346\\224\\221\\367\\361\\253P \\343t\\010$|\\212\\256''+\\030F\\255@\\273nP.\\220r$\\271\\037\\0238\\300\\252\\252y\\226\\335\\354$v\\263\\241\\325\\031\\364\\26498\\364\\251R\\255\\360j\\225I`\\262\\310*\\034\\341\\030\\025T98\\365IU-\\361\\252\\222I\\020\\262(*|\\347\\031\\364\\265O3\\226\\357aS\\265\\235\\010\\322+\\327m\\304\\301P\\347I\\002\\011\\334\\014''\\300\\243>\\226\\273\\033"\\225ZT~\\015*\\252\\254wYt\\203\\220#\\002\\252\\225\\227\\261\\032\\357\\244\\027\\273G\\032\\275\\002\\0166\\251\\244|\\212\\256''+\\030\\034\\270\\214`UP\\344\\343\\325%T\\267\\306\\252I$B\\310\\240\\251\\363\\234k\\373/\\324\\306\\277\\262\\375Lg\\322\\327cdR\\253J\\217\\301\\245UU\\216\\353.\\220r\\004`UR\\262\\366#}\\364\\202\\367h\\343I\\257]\\267+\\327T9\\322@\\203\\240\\302<\\322\\222>\\3764\\212\\365\\333q0T9\\322@\\202w\\003\\011\\360(\\3206\\247\\246\\214\\012\\252V^q\\256\\372A{\\264}7\\217+\\244\\367\\274\\256\\222<\\316\\223\\307\\315)#\\357\\343_\\305y\\352T\\227\\355b\\235\\254\\355\\272\\2744\\234\\354\\214\\206>\\272[\\233\\254F&+\\317U*\\277k|\\355gwz\\247\\036YW\\341\\240e2\\315*Hwr\\202\\367j\\3751\\211\\224\\3135I/\\332\\337\\013\\335\\255\\336\\250\\322pq\\261\\330\\372\\312\\357\\357?\\036gW\\032\\006+\\317R\\252\\207w(\\355go\\323\\343\\211\\224\\3135I/\\332\\337\\013\\335\\255\\336\\250\\322pq\\261\\330\\372\\312\\357\\357?\\341\\346\\224\\221\\367\\361\\345\\224\\276\\037\\177\\036WI\\357y]$y\\245''\\217\\232RG\\337\\307\\225\\322F\\201\\262\\3754`R\\322\\262\\366[\\235\\204\\202\\367h#I\\240]\\267(\\020T\\371\\325@\\217\\211\\234y]_\\206\\223@\\273nP \\251\\363\\252\\201\\037\\0238\\322h\\020q\\272\\005\\325\\016t\\220\\023\\340a\\037a\\032E\\002\\355\\270\\251\\252|\\352\\240G;\\231\\234\\370\\2240\\222\\355\\271^\\202G\\310\\250\\220N\\340g.#\\032\\006\\313\\364\\321\\240l\\277M\\032M\\002\\0167@\\272\\241\\316\\222\\002|\\014#\\354<<\\322\\222>\\376<\\256\\223\\303\\357\\343\\312\\351=\\357+\\244\\215\\003jzh\\3206\\247\\246\\215\\003jzh\\322k\\320q\\272\\364\\025>uP\\020\\350\\003\\217\\277\\217+\\244\\214\\372Z\\354l\\212UiQ\\3704\\252\\252\\261\\335e\\322\\016@\\214\\012\\252V^q\\276\\372A{\\264}7\\215"\\275v\\334L\\025\\016t\\220 \\235\\300\\302|\\0125z\\005\\333qPH9\\022\\\\\\216w3\\011p\\030\\317\\245\\245e\\347\\033\\357\\252\\027\\273G\\323x\\300\\252\\256\\306\\310\\252V\\251\\037\\215J\\222\\250\\235\\321]#\\3448\\325\\350\\027m\\305A \\344Ir9\\334\\314%\\300bu\\364\\264\\254\\274\\343}\\365B\\367iN\\233\\303\\351.\\333\\211\\012\\241\\316\\221\\020N\\340a>\\005;G\\232RG\\337\\306\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\036iI\\023\\257\\245\\245e\\347\\033\\357\\252\\027\\273Jt\\336\\037Iv\\334HU\\016t\\210\\202w\\003\\011\\360)\\332<\\322\\2220*\\252\\236g-\\336\\302Gk:\\021\\240mOM\\032\\006\\324\\364\\321\\240mOM\\014*\\203\\215\\320 \\221\\362*"r\\261\\201\\313\\210\\373\\332\\006S,\\322\\244\\207w(/v\\257\\323\\036\\312~l{)\\371\\261\\354\\247\\346\\307\\262\\237\\233\\032N\\016>>G\\327W\\177y\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\363:X\\373\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\363:H\\325pq\\261\\362>\\202\\273\\373\\317\\306^S,\\322\\244\\207wp/v\\267\\272e\\032\\376S,\\325$\\277k\\024/v\\255\\325\\037\\177\\032\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\325$\\277k\\024/v\\255\\325\\032\\266\\0166>G\\320W\\177y\\370\\313\\312e\\232T\\220\\356\\356\\005\\356\\326\\367L\\243\\314\\351c\\357\\343@\\312e\\232T\\220\\356\\345\\005\\356\\325\\372c\\023)\\226j\\222_\\265\\276\\027\\273V\\352\\224{)\\371\\261\\354\\247\\346\\307\\262\\237\\233\\036\\312~l{)\\371\\277\\371\\030\\024\\265O3\\210\\337}#\\265\\2358a$\\034n\\276\\241 \\344HD%`\\000\\227\\001\\206\\022]\\267+\\320H\\371\\025\\022\\011\\334\\014\\345\\304c\\002\\226\\225\\227\\262\\334\\354$\\027\\273A\\341\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\037\\272fb1\\215\\363\\317\\267\\271\\224\\277n\\327\\337\\215\\003e\\372h\\310U\\007\\033T\\025\\016t\\210NV4\\302|\\012W\\215\\177jz\\230\\327\\366\\247\\251\\360\\300\\245\\252y\\227\\033\\357\\244v\\263\\247\\323\\014$\\203\\215\\327\\324$\\034\\211\\010\\204\\254\\000\\022\\340>\\031\\365T\\254\\275\\226\\347aP\\275\\332\\010}U\\333r\\201\\005O\\235R#\\235\\314\\316|J4\\212\\004\\034mPT9\\322@NV0\\011\\360(\\300\\245\\252y\\227\\033\\357\\244v\\263\\247\\323\\014$\\203\\215\\327\\324$\\034\\211\\010\\204\\254\\000\\022\\340>\\030\\024\\265O3\\210\\327}#\\265\\2358\\3206_\\246\\215&\\201\\007\\033\\240]P\\347I\\001>\\006\\021\\201KT\\3638\\215\\367\\322;Y\\323\\215\\003e\\372o{H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\360\\317\\245\\245e\\347\\033\\357\\252\\027\\273G\\323x}%\\333q!T9\\322"\\011\\334\\014''\\300\\247h\\3206\\247\\246\\214\\012\\252V^q\\276\\372A{\\264}7\\215"\\275v\\334L\\025\\016t\\220 \\235\\300\\302|\\012\\037I\\007\\033\\257AS\\347T\\204%`\\003\\237\\022\\214\\372Z\\247\\231\\313w\\260\\251\\332\\316\\204i\\025\\353\\266\\342`\\250s\\244\\201\\004\\356\\006\\023\\340^\\031\\364\\264\\254\\275\\210\\327}P\\275\\3328\\300\\252\\256\\306\\310\\252V\\251\\037\\215J\\222\\250\\235\\321]#\\3448aU\\333r\\202\\241 \\344HH\\347s0\\227\\001\\217\\332\\360\\362\\330\\306\\371\\346\\\\\\337\\304_\\242\\366\\334\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\215Z\\201v\\334\\240] \\344Ir>&q\\201UT\\363-\\271\\330H\\355gC\\252\\320\\302\\2508\\335\\002\\011\\037"\\242''+\\030\\034\\270\\214k\\373/\\324\\306}-S\\314\\345\\273\\330T\\355gB4\\212\\365\\333q0T9\\322@\\202w\\003\\011\\360(\\325\\350\\027m\\305A \\344Ir9\\334\\314%\\300c\\357\\343H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\360\\317\\245\\245e\\354F\\373\\352\\205\\356\\321\\303\\351.\\333\\211\\012\\241\\316\\221\\020N\\340a>\\005;{\\336YK\\030\\231L\\263J\\252\\375\\255\\360\\275\\332\\267T\\243\\366=;O\\373\\227\\\\\\317\\377\\000K5\\031yL\\263J\\222\\035\\335\\300\\275\\332\\336\\351\\224{)\\371\\261\\373\\036\\235\\247\\375\\313\\256g\\377\\000\\245\\232\\214\\274\\246Y\\245I\\016\\356\\340^\\355_\\246Q\\257\\3452\\315*\\253\\366\\261B\\367j\\335^\\032\\006S,\\322\\244\\207w(/v\\257\\323\\031x\\257=T\\222\\035\\335\\303\\265\\235\\336\\351\\234{W\\370Q\\245j\\230x\\237\\320\\374\\313\\310\\271\\277\\212\\347nV\\337\\264{)\\371\\261\\244\\340\\343\\343\\344}uw\\367\\237\\215\\003)\\226iRC\\273\\224\\027\\273W\\351\\214\\274W\\236\\252I\\016\\356\\341\\356\\331\\335\\356\\231\\306\\255\\235\\223\\220\\307\\321Ksu\\210\\3202\\231f\\251T;\\271A{\\265~\\230\\327\\362\\231f\\225U\\373X\\241{\\265n\\250\\325\\260q\\361\\330\\372\\012\\357\\357?\\032V\\251\\207\\211\\375\\007\\314\\276\\213\\233\\370\\256v\\345m\\373F&S,\\325$\\277k|/v\\255\\325\\032N\\0166>G\\327W\\177y\\370\\362\\312_\\037,\\244\\367\\274\\256\\222\\030Iv\\334H\\322>ED\\202w\\0039q\\031\\3320)iYy\\267;\\011\\005\\356\\322}W\\215Z\\275\\007\\033\\257] \\344Iq\\016\\200\\010\\3206_\\246\\214\\012ZV^m\\336\\302A{\\264\\035W\\360\\325\\353\\327m\\304\\315#\\344Ur\\011\\334\\014\\345\\304|4\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\005-\\016N=*\\265H\\374jT\\222X,\\262\\011\\037!\\306\\277\\265=Ld*\\273n*j\\237:\\244G;\\232\\205>%;F\\223@\\203\\215\\320.\\250s\\244\\200\\237\\003\\017\\015&\\201v\\334\\240AS\\347U\\002>&q\\346\\224\\221*\\372\\252V^\\313s\\260\\250^\\355\\004d*\\273n*j\\237:\\244G;\\232\\205>%;G\\225\\325\\307\\330F\\221@\\273n*j\\237:\\250\\021\\316\\346g>%\\014$\\273nW\\240\\221\\362*$\\023\\270\\031\\313\\210\\306\\005-+/e\\273\\330H/v\\2025z\\364\\034m0H9\\022\\\\BV\\000\\011p\\037\\037+\\244\\367\\274\\256\\222\\037I\\007\\033\\257AS\\347T\\204%`\\003\\237\\022\\214\\372Z\\247\\231\\313s\\260\\251\\332\\316\\207\\206:\\253\\266\\342\\240\\220r$$s\\271\\230K\\200\\316\\321\\240mOM\\032\\006\\324\\364\\336\\031\\364\\264\\254\\274\\343]\\365B\\367h\\372o\\030\\025U\\330\\331\\025J\\325#\\361\\251RU\\023\\272+\\244|\\207\\025{v\\201\\224?\\334\\332X\\316\\322\\377\\000\\0038J\\201\\204\\351\\216\\235\\376\\022\\261\\235\\356\\374Sl\\307\\023\\006i\\223C\\252v\\275\\332\\215\\034#G\\010\\250\\245\\232j(\\365J\\253\\316\\343)ZV\\232\\266\\202H\\345)K\\374\\316\\321\\237J\\203ob5g\\225\\013\\335\\243\\214\\012\\252\\354l\\212\\245j\\221\\370\\324\\251*\\211\\335\\025\\322>S\\206\\025]\\267(*\\022\\016D\\204\\216w3\\011p\\030\\375\\257\\017-\\214o\\235e\\315\\374U\\373w\\264`UWcdU+T\\217\\306\\245ITN\\350\\256\\221\\362\\034i5\\3508\\335z\\012\\237:\\250\\010t\\001\\370i5\\353\\266\\345z\\352\\207:H\\020t\\030F}-v6E*\\264\\250\\374\\032UUX\\356\\262\\351\\007 G\\355xylc|\\353.o\\342\\257\\333\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\275\\357,\\245\\214\\274W\\236\\252I\\016\\356\\341\\332\\316\\357t\\3165l\\354\\214\\214\\217\\240\\226\\346\\353\\036\\030\\231L\\263T\\222\\375\\255\\360\\275\\332\\267T\\243\\331O\\315\\217e?7\\303\\357\\343\\313)`\\177Q\\336\\234\\245y\\177\\231^%.\\022\\200\\225\\347\\270\\230L\\247i\\177\\322P\\023\\231H%)\\011\\247;\\317\\214\\356''i\\317\\205\\347+\\312V\\205''a\\001\\224\\2579\\316s\\376%(\\254I\\261\\252I`\\231\\246\\252r\\375d%)^[\\322\\224\\355i\\333\\303\\376\\020\\231^E\\273/\\342S\\230\\336\\337\\336s\\237\\363\\032\\006S,\\322\\244\\207w(/v\\257\\323\\341\\252\\340\\343c\\344}\\005w\\367\\237\\214\\274\\246Y\\245I\\016\\356\\340^\\355ot\\312=\\224\\374\\330\\322pq\\361\\330\\372\\352\\357\\357?\\032\\006S,\\325*\\207w(/v\\257\\323\\030\\231L\\263T\\222\\375\\255\\360\\275\\332\\335\\352\\225\\257\\037\\261\\351\\332\\177\\334\\272\\346w\\372Y\\250\\322\\265Le\\344\\\\\\337\\305s\\2666\\337\\267\\275\\253\\327\\240\\343i\\202A\\310\\222\\342\\022\\260\\000K\\200\\306\\005-\\016N=*\\265H\\374jT\\222X,\\262\\011\\037!\\307\\356\\231\\230\\214c|\\363\\315\\356e\\257\\333\\265\\367\\341\\204\\220q\\272\\372\\204\\203\\221!\\020\\225\\200\\002\\\\\\006\\030Iv\\334\\257A#\\344TH''p3\\227\\021\\214\\012ZV^\\313s\\260\\220^\\355\\004i4\\013\\266\\345\\002\\012\\237:\\250\\021\\3613\\207\\325A\\306\\350*\\025\\016t\\210NV0\\011\\360(\\317\\252\\252y\\227\\033\\357\\252v\\263\\247\\323h\\362\\272H\\377\\000\\276^\\024\\345)c&`I\\344.W\\226\\342r\\234\\347o\\344\\247+\\014\\247;\\333j=\\2763\\012t\\322\\267''\\361\\310S\\275\\347\\372\\313\\204\\255;\\354\\335\\262\\242\\257 %\\274iI\\023@JR=\\335\\311\\363[ve\\306/''RN\\232F J\\207\\352$sP\\347+\\376\\240\\337\\207\\375\\305\\032E\\002\\355\\271@\\202\\247\\316\\252\\004}g\\032\\376\\324\\3651\\257\\355OS\\032\\376\\324\\3651\\240l\\277M\\037\\265\\341\\345\\277\\223\\362,9\\277\\212\\207r\\366\\334\\214\\205Wm\\305MS\\347T\\210\\347sP\\247\\304\\247h\\3206_\\246\\217\\332\\360\\362\\337\\311\\371\\026\\034\\337\\305C\\271{nFB\\253\\266\\342\\246\\251\\363\\252Ds\\271\\250S\\342S\\267\\275\\244W\\256\\333\\211\\202\\241\\316\\222\\004\\023\\270\\030O\\201C\\012\\256\\333\\224\\025\\011\\007"BG;\\231\\204\\270\\014`UR\\262\\363\\215\\367\\322\\013\\335\\243\\351\\274y]$g\\322\\327cdR\\253J\\217\\301\\245UU\\216\\353.\\220r\\004h\\033S\\323F:\\2508\\332\\246\\221\\362*"r\\261\\246R\\3422\\215\\003jzh\\375\\257\\017-\\214o\\236a\\315\\374U\\373w\\266\\344>\\222\\355\\270\\220\\252\\034\\351\\021\\004\\356\\006\\023\\340S\\267\\202t"\\232(\\244g1Et\\252$\\251M@rh\\244R0\\011\\335K\\3326j\\226e\\032\\245j\\022\\246*\\215\\331\\335\\212di\\206d\\234\\247\\2733^\\345\\011^h\\323+J\\324\\222\\250M9\\334F\\357\\024\\212R\\224\\244V\\031\\316*~gh,\\252dF\\252\\0253\\233\\237\\017\\227\\216\\365\\256V\\265\\242\\224d2\\332\\2738Jr_x8_y!x/\\322V\\264\\345\\306\\364\\0336\\242\\260\\225BV\\271\\374 .\\034\\303\\015\\032{\\363\\025\\014K\\224\\345"\\3411\\234\\277H\\325\\350\\020q\\272\\004\\022>EW\\023\\340`~\\037\\177\\036WI\\032\\376\\313\\3651\\237KT\\3639nv\\025;Y\\320\\215Z\\201\\007\\033\\240A#\\344Uq9X\\303\\303\\002\\252\\251\\346r\\334\\354$v\\263\\241\\014*\\203\\215\\320 \\221\\362*"r\\261\\201\\313\\210\\373\\332\\006S,\\322\\244\\207w(/v\\257\\323\\341\\253`\\343c\\344}\\025w\\367\\237\\215+T\\303\\304\\376\\203\\346^E\\315\\374W;cm\\373F&S,\\325$\\277k|/v\\255\\325\\036\\312~lbb\\274\\365R\\253\\366\\267\\317v\\316\\333\\252q\\211\\224\\3134\\252\\257\\332\\337\\013\\335\\255\\336\\251F\\223\\203\\217\\217\\221\\365\\325\\337\\336~<\\262\\227\\300?\\212\\244\\012\\236\\261\\037\\376\\203\\212\\000\\011\\021$i\\2476I5\\004\\304\\303\\226S\\261Js\\224\\370\\312p\\270\\200,T\\223\\031\\246\\224\\303\\2314\\024\\275\\367\\344\\011\\014\\245!.k\\225\\356\\235bL\\2403"\\335H\\226\\020zam\\331\\314\\035\\267\\031\\217L\\002\\222\\232k#0\\2307!\\227\\031\\312r\\237\\3519K\\204RY:\\312\\345\\022:\\272i\\021\\324*[\\251!0\\244RG)\\011L\\255\\024\\225d\\222j''\\220m\\246\\361''9\\362\\201\\215\\313r=\\253\\374(\\3201^z\\251$;\\271Gk;~\\230\\373\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\313\\305y\\352\\244\\220\\356\\356\\036\\355\\235\\336\\351\\234{W\\370Q\\355_\\341F\\201\\212\\363\\325I!\\335\\312;Y\\333\\364\\306\\223\\235\\221\\221\\221\\365\\322\\334\\335b11^z\\225%\\373[\\347k;n\\251\\373\\332M\\002\\355\\271@\\202\\247\\316\\252\\004|L\\343_\\332\\236\\2463\\352\\252\\236g\\021\\256\\372\\247k:q\\244P.\\333\\212\\232\\247\\316\\252\\004s\\271\\231\\317\\211C\\011.\\333\\225\\350$|\\212\\211\\004\\356\\006r\\3421\\201KJ\\313\\331nv\\022\\013\\335\\240\\215&\\201v\\334\\240AS\\347U\\002>&q\\253\\327\\256\\333\\211\\232G\\310\\252\\344\\023\\270\\031\\313\\210\\306\\005-S\\314\\3425\\337H\\355gN3\\352\\250rq\\352\\225\\245G\\340\\322\\252\\222!dPH9\\003\\301\\315\\323U5i\\327H\\3442\\377\\000\\212\\322=\\371\\313\\377\\000H^%\\372G\\367\\215\\217\\263W\\251\\247\\234\\204\\267HNI\\310\\3113\\003\\221\\204\\344_\\256\\346\\364(\\211\\2439\\332v\\237)\\214\\212\\\\e\\374\\312\\020\\342\\342\\013VMm\\371\\312R\\236\\350&\\013)r\\234\\345y\\251iC\\312"\\350o\\316v\\337L\\204\\245\\306_\\304\\345\\032\\376\\323\\3651\\346\\224\\221\\201KT\\363.5\\337H\\355gO\\246\\321\\240l\\277M\\036iI\\343\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\037\\272fb1\\215\\363\\3177\\271\\224\\277n\\327\\337\\214\\372\\252\\034\\234z\\245iQ\\3704\\252\\244\\210Y\\024\\022\\016@\\367\\274\\256\\223\\302T\\025UO2\\333\\235\\204\\216\\326t:\\255\\030\\352\\240\\343j\\232G\\310\\250\\211\\312\\306\\231K\\210\\312\\030Uv\\334\\240\\250H9\\022\\0229\\334\\314%\\300c\\366\\274<\\2661\\276y\\2277\\361\\027\\350\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\243V\\240]\\267(\\027H9\\022\\\\\\217\\211\\237\\216u5N\\372A+\\034\\356\\212\\207h\\336\\340\\231\\230\\356\\221J_\\246\\366\\355\\306S\\376$E\\004\\022\\237\\377\\000\\220I\\316S\\377\\000\\346\\021\\262\\364u'';\\\\\\316\\235In\\310\\371er\\011\\204\\347\\306\\363\\212a\\222`gn$!2\\234\\306S\\376\\327\\235\\277\\274N\\234AY\\246\\222i&\\0032\\227\\022\\224\\267Jr\\217\\355;\\316v\\237\\376\\323\\224\\343\\312\\351#V\\240]\\267(\\027H9\\022\\\\\\217\\211\\237\\206\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\032Ez\\0166\\231\\252|\\352\\240!+\\000\\034\\370\\224`UU<\\313nv\\022;Y\\320\\352\\215\\003jzh\\322k\\320q\\272\\364\\025>uP\\020\\350\\003\\360\\322k\\327m\\312\\365\\325\\016t\\220 \\3500\\367\\274\\262\\2265\\374\\246Y\\245U~\\326(^\\355[\\252>\\3025\\374W\\236\\252U~\\326)\\332\\316\\333\\25212\\231f\\225U\\373[\\341{\\265n\\250\\375\\217N\\323\\376\\345\\3273\\277\\322\\315F\\225\\252a\\342\\177A\\363/"\\346\\376+\\235\\271[~\\336\\032\\266\\0166;\\037A]\\375\\347\\343\\332\\277\\302\\212_\\374C*\\225\\033\\377\\000\\011\\225(H\\347\\3767\\345\\033F\\222\\2415R\\377\\000[L\\006\\032^*\\021Sq=\\343\\020\\033\\332\\177\\311\\020\\312\\031Z)\\320R`\\246\\341\\220\\025\\257?\\340\\204\\245\\011\\323\\034\\347)\\377\\000~3\\265\\377\\000\\353\\013J\\307P|9\\247\\302_\\332_\\304\\277IJR\\224\\245\\032\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\322\\252\\277k\\024/v\\255\\325\\341\\345\\224\\221\\240b\\274\\365*\\250wr\\216\\326v\\3751\\244\\347dd1\\365\\322\\334\\335b11^z\\225%\\373[\\347k;\\273\\3258\\366S\\363c\\331O\\315\\217e?7\\336\\325\\353\\320q\\264\\301 \\344Iq\\011X\\000%\\300c\\312\\352\\343>\\252\\225\\227\\233w\\260\\250^\\355\\007U\\343_\\332\\236\\2463\\352\\253\\261\\262*\\222\\245[\\340\\325*\\252''tWT9\\3020)iYy\\267;\\011\\005\\356\\320u^4\\212\\005\\333qST\\371\\325@\\216w39\\361/\\017\\260\\215Z\\275\\007\\033\\257] \\344Iq\\016\\200\\010\\325\\253\\327m\\312\\364\\022>EW \\3503\\360\\325\\353\\220q\\272\\365\\322\\016D\\226\\020\\225\\200#\\002\\232\\205\\374zU\\252\\221\\370\\324\\311\\246\\250Yd\\022.\\007\\023\\257\\251\\252y\\234F\\273\\312\\035\\254\\351\\307\\231\\325x`R\\325<\\316#]\\364\\216\\326t\\343@\\331~\\232<\\256\\2560)j\\236g\\021\\256\\372Gk:q\\237UC\\223\\217T\\255*?\\006\\225T\\221\\013"\\202A\\310\\021\\240l\\277M\\030\\024\\264\\254\\275\\226\\357a \\275\\332\\010\\325\\353\\320q\\264\\301 \\344Iq\\011X\\000%\\300a\\204\\227m\\312\\364\\022>ED\\202w\\0039q\\030\\300\\245\\245e\\354\\267;\\011\\005\\356\\320F\\223@\\273nP \\251\\363\\252\\201\\037\\023?{H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\2174\\244\\217\\277\\360\\307Uv\\334T\\022\\016D\\204\\216w3\\011p\\031\\332?k\\303\\313c\\033\\347\\231s\\177\\025~\\335\\355\\271\\030\\025U\\330\\331\\025J\\325#\\361\\251RU\\023\\272+\\244|\\207\\341\\237KJ\\313\\330\\215\\367\\325\\013\\335\\243\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\360\\373\\370\\362\\272H\\300\\252\\241\\311\\307\\252J\\251o\\215T\\222H\\205\\221AS\\3478\\375\\3233\\021\\374\\237\\221y\\275\\314\\244;\\226\\276\\374h\\033S\\323F}-v6E*\\264\\250\\374\\032UUX\\356\\262\\351\\007 G\\355xylc|\\353.o\\342\\257\\333\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\243\\035U\\333qPH9\\022\\0229\\334\\314%\\300gh\\235\\005U+/8\\337} \\275\\332>\\233\\307\\225\\322F\\005U\\016N=RUK|j\\244\\222D,\\212\\012\\2379\\306\\275\\263=L`UWcdU+T\\217\\306\\245ITN\\350\\256\\221\\362\\037\\217\\225\\322{\\332\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\325$\\277k\\024/v\\255\\325\\032\\266\\0166>G\\321W\\177y\\370\\366\\257\\360\\243U\\3250\\361?\\256\\371fQs\\177\\025\\276\\344\\255\\277x\\375\\217N\\323\\376\\345\\3273\\277\\322\\315F^S,\\322\\244\\207wp/v\\267\\272e\\343\\345\\224\\221\\240b\\274\\365RHwr\\216\\326v\\3751\\252\\340\\343c\\344}\\025w\\367\\237\\215+T\\303\\304\\376\\203\\346^E\\315\\374W;r\\266\\375\\243@\\305y\\352UP\\356\\345\\035\\254\\355\\372c\\354#@\\312e\\232\\245P\\356\\345\\005\\356\\325\\372c\\023)\\226j\\222_\\265\\276\\027\\273V\\352\\215''\\007\\037\\037#\\353\\253\\277\\274\\374ye,k\\371L\\263T\\222\\375\\254P\\275\\332\\267T}\\374y]$e\\342\\274\\365*\\250ww\\016\\326w{\\246q\\355_\\341F\\225\\252a\\342\\177A\\363/"\\346\\376+\\235\\271[~\\336>YK\\357i4\\013\\266\\345\\002\\012\\237:\\250\\021\\3613\\207\\325A\\306\\350*\\025\\016t\\210NV0\\011\\360(\\317\\252\\252y\\234F\\373\\352\\235\\254\\351\\306\\255^\\203\\215\\327\\256\\220r$\\270\\207@\\004g\\325WcdU%J\\267\\301\\252UTN\\350\\256\\250s\\204~\\327\\207\\226\\376O\\310\\262\\346\\376*\\035\\313\\3325\\375\\251\\352cI\\240A\\306\\350\\027T9\\322@O\\201\\204`R\\325<\\316#}\\364\\216\\326t\\341\\204\\220q\\264\\205 \\344HD%`L%\\300ex\\310U\\007\\033T\\025\\016t\\210NV4\\302|\\012W\\215\\177jz\\230\\310Uv\\334T\\325>uH\\216w5\\012|Jv\\360\\317\\252\\245e\\346\\335\\354*\\027\\273A\\325x\\300\\245\\256\\306\\310\\245J\\251o\\215T\\222\\253\\035\\326]S\\3478a%\\333r\\275\\004\\217\\221Q \\235\\300\\316\\\\F4\\015\\227\\351\\243>\\252\\207''\\036\\251ZT~\\015*\\251"\\026E\\004\\203\\220#_\\332\\236\\2463\\352\\252\\236e\\306\\273\\352\\235\\254\\351\\364\\307\\225\\322x\\351\\024\\013\\266\\342\\246\\251\\363\\252\\201\\034\\356fs\\342Q\\240l\\277M\\032\\006\\313\\364\\321\\237UC\\223\\217T\\255*?\\006\\225T\\221\\013"\\202A\\310\\036\\366\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\032\\006\\324\\364\\321\\240mOM\\032\\006\\324\\364\\321\\240mOM\\030\\025T\\254\\274\\343]\\364\\202\\367h\\372o\\032\\265\\002\\0167@\\202G\\310\\252\\342r\\261\\204`UP\\344\\343\\325%T\\267\\306\\252I$B\\310\\240\\251\\363\\234g\\322\\325<\\316[\\235\\205N\\326t#V\\240A\\306\\350\\020H\\371\\025\\\\NV0\\217+\\253\\217\\260\\2174\\253\\207\\322A\\306\\353\\320T\\371\\325!\\011X\\000\\347\\304\\243\\367L\\314G\\362~E\\366\\3672\\220\\356Z\\373\\361\\216\\252\\0166\\251\\244|\\212\\210\\234\\254i\\224\\270\\214\\243_\\331~\\2463\\351j\\236g-\\316\\302\\247k:\\021\\253P \\343t\\010$|\\212\\256''+\\030C\\351 \\343u\\350*|\\352\\220\\204\\254\\000s\\342Q\\257\\354\\277S\\017\\244\\273n$*\\207:DA;\\201\\204\\370\\024\\355\\030\\352\\256\\333\\212\\202A\\310\\220\\221\\316\\346a.\\003;D\\350*\\251Yy\\306\\373\\351\\005\\356\\321\\364\\336<\\256\\2221\\325]\\267\\025\\004\\203\\221!#\\235\\314\\302\\\\\\006v\\211\\320UR\\262\\366#}\\364\\202\\367h\\375\\377\\000,\\245\\217e?6=\\224\\374\\330\\366S\\363c@\\305y\\352\\244\\220\\356\\345\\035\\254\\355\\372c\\357\\3744\\255/3/\\372\\037\\231yf\\3672\\234\\355\\224{W\\370Q\\355_\\341F\\201\\212\\363\\324\\252\\241\\335\\312;Y\\333\\364\\307\\330G\\231\\325\\370i9\\331\\031\\014}t\\2677X\\214LW\\236\\252U~\\326\\371\\356\\331\\333uN=\\253\\374(\\366\\257\\360\\243\\332\\277\\302\\214\\274W\\236\\252I\\016\\356\\341\\332\\316\\357t\\3165\\\\\\354\\234\\214\\217\\240\\226\\346\\353\\021\\345\\224\\221\\211\\224\\3135I/\\332\\337\\015\\353\\265n\\251F\\225\\203\\215\\217\\221\\365\\325\\337\\336~<\\262\\222<\\316\\2264\\254\\354\\234\\214\\217\\254\\226\\346\\353\\021\\354\\247\\346\\373\\336WI\\014$\\273nW\\240\\221\\362*$\\023\\270\\031\\313\\210\\306\\201\\262\\3754h\\033/\\323G\\232RG\\337\\370`R\\320\\344\\343\\322\\253T\\217\\306\\245I%\\202\\313 \\221\\362\\034g\\325U<\\316#]\\365N\\326t\\3744\\232\\004\\034n\\201uC\\235$\\004\\370\\030G\\330F\\221@\\273n*j\\237:\\250\\021\\316\\346g>%\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\321\\257\\355OS\\032\\376\\324\\3650\\372\\253\\266\\345\\002\\012\\237:\\244G;\\231\\234\\370\\224`R\\320\\344\\343\\322\\253T\\217\\306\\245I%\\202\\313 \\221\\362\\034g\\325U<\\313\\215w\\325;Y\\323\\351\\264y]$h\\033/\\323F\\201\\262\\37540\\222\\0166\\220\\244\\034\\211\\010\\204\\254\\011\\204\\270\\014\\257\\030\\024\\26498\\364\\252\\325#\\361\\251RI`\\262\\310$|\\207\\037\\272fb1\\215\\363\\3177\\271\\226\\277n\\327\\337\\206\\022A\\306\\353\\352\\022\\016D\\204BV\\000\\011p\\037{\\312\\351#\\315)<|\\322\\222>\\3765j\\004\\034n\\201\\004\\217\\221U\\304\\345c\\010\\363JO\\015&\\275v\\334\\257]P\\347I\\002\\016\\203\\010aU\\333r\\202\\241 \\344HH\\347s0\\227\\001\\211\\320UR\\262\\353\\215\\367\\322\\013\\335\\243\\351\\274i\\025\\353\\266\\342`\\250s\\244\\201\\004\\356\\006\\023\\340Q\\253P.\\333\\224\\013\\244\\034\\211.G\\304\\316>\\303\\301\\205Wm\\312\\012\\204\\203\\221!#\\235\\314\\302\\\\\\006?k\\303\\313c\\033\\347\\231s\\177\\021~\\335\\355\\271\\017\\244\\273nW\\324*\\034\\351\\021\\004\\356\\006\\023\\340Q\\345uq*\\012\\252\\247\\231m\\316\\302Gk:\\237U\\243\\035T\\034mSH\\371\\025\\0219X\\323)q\\031F\\255@\\273nP.\\220r$\\271\\037\\0238\\317\\245\\245e\\354F\\373\\352\\205\\356\\321\\306\\005Uv6ER\\265H\\374jT\\225D\\356\\212\\351\\037!\\307\\232RD\\353\\351iYy\\306\\373\\352\\205\\356\\322\\2357\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\367\\274\\256\\22212\\231f\\251%\\373[\\341\\275v\\255\\325(\\366S\\363c\\331O\\315\\2173\\245\\217\\277\\360\\327\\362\\231f\\251%\\373X\\241{\\265n\\257\\015\\003)\\226j\\225C\\273\\224\\027\\273W\\351\\214L\\246Y\\245U~\\326\\370^\\355n\\365J4\\254\\034l|\\217\\256\\256\\376\\363\\361\\345\\224\\221\\355_\\341F\\253\\235\\223\\220\\307\\320Ksu\\217\\015\\003\\025\\347\\252\\222C\\273\\224v\\263\\267\\351\\217\\277\\360\\362\\272\\270\\373\\010\\327\\361^z\\251U\\373X\\247k;n\\257\\035\\003)\\226iRC\\273\\224\\027\\273W\\351\\215WT\\303\\304\\376\\277\\345\\231E\\315\\374V\\373\\222\\266\\375\\343I\\301\\307\\307\\310\\372\\312\\357\\357?\\032\\006S,\\322\\244\\207w(/v\\257\\323\\357y]$h\\033/\\323F\\201\\262\\3754h\\033/\\323F\\221@\\203\\215\\252\\012\\207:H\\011\\312\\306\\001>\\005\\037\\177\\356i\\024\\013\\266\\342\\246\\251\\363\\252\\201\\034\\356fs\\342P\\302K\\266\\342F\\221\\362*$\\023\\270\\031\\313\\210\\316\\321\\240l\\317M\\031\\365T98\\365J\\322\\243\\360iUI\\020\\262($\\034\\201\\017\\252\\203\\215\\320T*\\034\\351\\020\\234\\254`\\023\\340Q\\257\\355OS\\032\\376\\324\\3651\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\023\\257\\252\\252y\\227\\033\\357\\252v\\263\\247\\323h\\322h\\027m\\312\\004\\025>uP#\\342g\\036WW\\031\\365T\\254\\274\\333\\235\\205B\\367h:\\257\\017\\252\\273nP \\251\\363\\252Ds\\271\\231\\317\\211F\\201\\262\\3754`R\\322\\262\\366[\\235\\204\\202\\367h#I\\240]\\267(\\020T\\371\\325@\\217\\211\\234j\\365\\353\\266\\342f\\221\\362*\\271\\004\\356\\006r\\3421\\201KT\\3638\\215w\\322;Y\\323\\215\\003e\\372o\\371\\237\\377\\304\\000*\\021\\000\\001\\003\\003\\002\\005\\004\\002\\003\\000\\000\\000\\000\\000\\000\\000\\001\\000\\002\\003\\004\\005\\021\\006!\\022\\0231@Q\\020\\024"A2\\200\\026$B\\377\\332\\000\\010\\001\\002\\001\\001?\\000\\375\\232\\007>\\203p\\206A\\357\\245\\220F2T3\\211z)$\\021\\214\\225\\014\\302^\\235\\356\\335\\025\\336\\262*jw\\361\\356U\\267V\\262\\337\\027*f\\365U\\372\\245\\265t\\216\\345FA+L\\201\\354\\203\\270\\262\\343\\351\\370\\367Gg\\247T\\226\\316B\\243\\202:\\332\\242\\3717\\307\\322\\275Z\\250\\337;\\036\\346c\\013\\330R\\032Q\\037\\000\\003\\012\\331V\\353U\\321\\360\\003\\226\\022\\271\\340\\014\\224\\307\\207\\216\\350\\214\\253\\354\\202\\000\\307\\370GSU\\321\\327\\020\\303\\262\\236\\360+\\242\\314\\262\\340\\2515|\\320\\216@9\\036T\\267h^\\033#\\177/+\\334>\\261\\214\\204\\177\\245L\\013X"?]\\326p\\026\\247g\\364\\336\\357\\012B\\343!*\\234\\021&$\\033*\\273#$9\\245\\361\\366\\244\\202JiC\\036\\254%\\262S\\302\\343\\364\\027F\\343\\272\\350r\\025\\306\\334\\333\\2238\\034vRh(\\016x^\\237\\240e\\316Y"\\376;[\\024|\\271\\007\\022\\250\\322W\\016o\\034L\\300VZSKB\\326;\\252\\306q\\335\\017\\216\\305`\\215\\302\\371,\\037+\\207\\354\\204x_\\262\\331\\277\\000\\272~\\335\\377\\000\\377\\304\\000%\\021\\000\\001\\004\\001\\004\\001\\004\\003\\000\\000\\000\\000\\000\\000\\000\\000\\001\\000\\002\\003\\004\\021\\005\\022!@2\\020"A\\200\\024Ba\\377\\332\\000\\010\\001\\003\\001\\001?\\000\\373v\\326\\2477\\011\\2419\\270\\356\\362\\252@\\371^$\\370Ri\\337\\220w\\205\\006\\236\\030\\375\\305\\312\\376\\335\\374\\017@{ML\\213r\\230IR=\\241T\\2651a\\010J\\367\\277 \\2535\\2375m\\305\\2500\\242;C\\311Q?\\252\\265\\030\\270\\334\\025\\0353_\\305U\\245\\030p|\\241_\\271M\\364\\004,\\034\\246\\342"\\364}\\335\\257\\225\\247sd5\\017\\342w\\011\\266\\234\\337k\\302k\\204\\215\\341Z\\341\\317C\\201\\332\\306T\\023\\030\\216Bn\\262\\360\\233\\255\\037\\220\\205\\370\\363\\225\\036\\251\\020n\\025\\271w\\277!\\036[\\332j\\306J\\300\\\\.\\020!y!\\366\\357\\377\\331', '1', '2022-03-16 22:19:44', '1', '2022-03-16 22:19:44', 0); -INSERT INTO "public"."infra_file_content" ("id", "config_id", "path", "content", "creator", "create_time", "updater", "update_time", "deleted") VALUES (6, 4, '822aebded6e6414e912534c6091771a4.jpg', E'\\377\\330\\377\\340\\000\\020JFIF\\000\\001\\001\\000\\000\\001\\000\\001\\000\\000\\377\\333\\000C\\000\\003\\002\\002\\003\\002\\002\\003\\003\\003\\003\\004\\003\\003\\004\\005\\010\\005\\005\\004\\004\\005\\012\\007\\007\\006\\010\\014\\012\\014\\014\\013\\012\\013\\013\\015\\016\\022\\020\\015\\016\\021\\016\\013\\013\\020\\026\\020\\021\\023\\024\\025\\025\\025\\014\\017\\027\\030\\026\\024\\030\\022\\024\\025\\024\\377\\333\\000C\\001\\003\\004\\004\\005\\004\\005\\011\\005\\005\\011\\024\\015\\013\\015\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\377\\302\\000\\021\\010\\001\\002\\001\\002\\003\\001\\021\\000\\002\\021\\001\\003\\021\\001\\377\\304\\000\\036\\000\\000\\003\\001\\001\\001\\001\\001\\001\\001\\001\\000\\000\\000\\000\\000\\000\\000\\010\\011\\007\\001\\006\\012\\002\\004\\005\\003\\377\\304\\000\\034\\001\\001\\000\\002\\003\\001\\001\\001\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\001\\005\\002\\004\\006\\007\\003\\010\\377\\332\\000\\014\\003\\001\\000\\002\\020\\003\\020\\000\\000\\000\\252`\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\007\\000\\000\\000\\000\\000\\350\\034:p\\350\\000\\034\\003\\240p\\000\\000\\350\\000\\034$\\001\\200\\200\\000\\377\\000\\013\\371\\200\\200\\027\\370\\341 \\007\\370\\300\\012\\002\\000\\004\\001\\002\\276\\001 \\300\\000\\013\\374\\000\\007\\010\\004]\\003\\0038\\002\\252y@)A+\\306\\234\\015\\374\\233 `\\005&\\020 5`7\\363~\\025Q\\323<\\261\\252\\021`\\277\\300\\000p\\200ES \\020\\027\\364UMP\\240\\002\\250j\\244X/\\340\\200\\015Q\\026J\\246e\\003\\376t\\312H\\262*\\205\\375\\025QV\\025R\\251\\212\\261\\177\\200\\000\\341\\000\\212\\246@ /\\350\\252\\212\\260\\017\\360\\277\\230\\011\\177I\\000\\007\\253\\022\\322\\322\\222\\014\\015\\370\\365d\\254/\\350\\252\\212\\260\\252\\225LU\\213\\374\\000\\007\\010\\004U0\\003\\001<\\240\\252\\232\\261T\\017*E\\243\\312\\225@\\233''\\225<\\261s\\305Tt\\317,E\\223\\313\\027<@G\\370\\016\\222\\010\\372''\\000\\003\\204\\377\\0002\\303\\207@j\\014\\250\\325\\205T\\325\\015X\\225\\246V5&\\246j\\202\\260eFVZaU5A\\252\\020\\023\\240p\\012\\252\\000\\000\\000O\\343\\177\\003\\000(\\011\\344I\\262*\\245\\32003\\204\\0025r\\347\\237;%\\0000\\000<\\251s\\306\\010\\237\\342\\002o\\303\\000 %\\376\\000\\003\\362/\\347\\316\\311\\253\\236X\\271\\346\\246yP0\\003\\177\\030"\\177\\234&\\310\\351\\023h~\\212PC\\003\\324\\217\\351\\277\\221ht\\207L`\\211\\374Hc\\351\\350\\000\\016\\020\\010\\312\\307\\364@\\307\\364\\340\\201\\225@\\177\\304\\000j\\204\\004\\351\\301\\2512\\241\\252"\\321\\252\\0159\\252\\212\\270\\376\\231I+\\213\\374p\\200E\\376\\000\\003\\204\\00203\\324\\224\\240J\\214\\260\\312\\017\\242a\\201$\\001\\345\\307\\370\\337\\011ZW\\362@\\016\\250\\201\\025\\350\\205\\343T%\\205\\2450\\003\\177\\030#\\204\\002/\\360\\000\\034 \\021_\\014\\000\\240''\\22103\\204\\0025r\\250\\010yO\\317\\006f\\260\\350\\360b\\322\\263!\\007\\354\\233#\\246jg\\227$\\001_\\314\\000\\324\\311\\264}=\\000\\001\\302\\001\\026\\234\\312\\206\\260\\312\\004\\004\\351*\\312\\246*\\305\\361?\\244\\377\\0003\\343\\226]\\204\\353\\277X\\314\\376M[g\\037\\362\\304L\\213\\003Vec\\372*\\306\\252U\\001\\002:U@\\000?"\\376M\\223S\\03500\\003\\000\\025\\202\\347\\221d\\276P\\376\\244c\\264\\033\\331\\357\\227_\\177\\322\\333_\\322\\365\\225\\373\\347]W\\374\\011\\221\\362u@\\011X5E&!x\\325\\024\\230\\365\\300\\000~E\\374\\213E\\317"\\311\\253\\017\\361\\276\\030\\020\\252\\223h\\2501,\\305\\026\\336S[\\275\\353\\251s\\367\\335mvG\\345\\375+)\\354\\234\\217\\240\\373\\304\\262\\313\\031\\256U1V\\001\\376\\027\\362k\\224\\000\\300\\017\\242p\\0008O\\362,\\015X\\324\\217\\350\\200\\217\\361\\001KJJ\\321\\307\\206\\371\\310\\333y\\277\\035\\355\\274m\\325?\\277\\254\\334\\361\\377\\000\\037A\\377\\000''\\325|]\\204\\354j\\023\\355\\254r\\303S5A\\252\\020\\0202\\303*2\\263\\351D\\000\\016\\022\\000uD\\010\\300\\013J`\\006\\000?\\306\\000\\007\\207Cy\\306\\332\\376\\177.\\372\\011\\365\\214_\\254\\257\\324\\371\\215\\345S\\364\\277\\021C{*L\\032A\\026ML\\252d\\002\\003\\351\\350\\233&\\246P\\020\\0008@"\\377\\000\\031A\\352H\\014:D\\332\\037\\242\\277\\235\\020\\361\\306\\245\\331\\377\\000/\\316\\356\\177\\222\\263c0\\336\\303\\326q\\266_\\305\\356\\234\\226\\313\\320\\351\\301C\\177+\\370\\277\\001\\352\\214\\260\\300I\\000W\\362\\224\\200\\001\\302\\001\\017\\351\\226\\031X\\253\\017\\340\\025PU\\005\\\\\\377\\000\\264\\313Y\\030\\177\\246\\313K\\305\\232Liq?\\353D\\376\\376\\220\\224\\300\\037\\362\\001\\217\\351\\252\\021l\\177N\\035*\\240\\000\\037\\221\\177$\\031i\\314\\254\\312I^z\\243\\350\\234\\225g\\253\\002@\\225\\354]\\017\\356\\036\\341\\246\\020\\361\\006\\001\\3768 C\\372o\\340`\\006\\000X\\000\\000?"\\376yaV*\\241\\344I\\262je\\001''\\361!\\217"U1V\\037\\323,\\032\\221\\00252m\\037I\\207\\225"\\310\\376\\210\\020\\376\\224\\004\\341\\000\\213\\374\\000\\007\\011\\376+\\006V5\\000p@\\317\\245\\003\\204\\0035c+\\032\\203S2\\263,*\\211\\225\\022\\264\\325\\215PUL\\260\\177\\016\\225L\\010\\004_\\340\\0008H\\001X7\\363\\177=A\\226\\015H\\225\\033\\371!\\217\\244\\303\\0037\\303\\327\\0319+\\312LH1\\3755cT"\\300\\252\\235\\030\\003\\324\\200\\376\\224\\004\\000\\017\\310\\277\\236X\\000\\015P\\232\\306\\376t_\\314\\004jF\\250\\365"XRr\\027\\217\\360\\277\\217\\361 \\314\\014\\372L<\\251\\026K\\240HR\\177\\237U\\000\\000p\\200CT\\000ef\\250U2V\\034\\003T2\\261\\252\\032\\241T5Q\\0028\\003\\374eD\\255-9\\225\\022\\264\\252d\\255\\032\\202\\252\\200\\001\\302\\001\\025\\360\\220`U1V*\\241\\025\\300\\237\\345(=X\\226\\236\\244\\000\\252gI\\004o\\345P"\\310\\001\\201\\216\\221\\251\\216\\230\\301\\000\\001\\302\\001\\025L\\200@_\\321U<\\240\\352\\220\\010\\257\\342\\002\\\\\\363\\312\\210\\011\\352\\311X0#\\244:d\\203-1\\352\\211Z0\\007\\015X\\213''\\226>\\236\\200\\000\\341\\000\\213N 5B\\252UB,\\023\\374\\240\\002\\254ZRV\\215H\\253\\212\\241@\\015P\\252d\\002\\032\\243+-9\\301\\0002\\301\\2472\\262\\200\\200\\001\\302\\001\\000\\001\\345\\207L\\252\\207\\312\\271\\321\\2002\\303|\\037\\322l\\225\\364\\341\\276\\236T\\232\\346\\002Zb\\030\\036\\244\\177\\205\\374\\177\\214\\000@\\213\\374\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\007\\377\\304\\000B\\020\\000\\000\\003\\006\\002\\011\\002\\005\\003\\003\\002\\003\\011\\000\\000\\000\\006\\007\\010\\000\\004\\005\\024\\025\\026\\011\\027\\001\\002\\003\\021\\023\\030\\031W\\205%8\\020 !Gg\\022&''()FAu"7901BPQ`ac\\203\\377\\332\\000\\010\\001\\001\\000\\001\\022\\000\\377\\000\\310\\367\\266\\366\\336\\333\\333{om\\355\\275\\267\\266\\377\\000\\216\\377\\000\\206\\215:4\\374\\273\\333\\365h\\370\\376\\255\\015\\275\\267\\266\\366\\337\\363/\\005\\342z\\022\\312\\274t\\015\\007\\016(\\241\\270l\\214\\253\\227TU9\\334\\326\\352\\212\\247;\\232\\335QT\\347s[\\252*\\234\\356kaN\\250L\\345''\\2329\\214&\\270\\250\\264\\271\\006^\\013\\304\\364%\\225x\\350\\032\\016\\034QCp\\331\\031W.\\250\\252s\\271\\255\\325\\025Nw5\\272\\242\\251\\316\\346\\374W\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\311y\\031\\342re''\\216F@\\370\\235\\030G\\014\\221\\224}\\302\\231P\\231\\312K43\\030MqQir\\037/TU9\\334\\326\\352\\210\\247;\\230\\3100\\317\\023\\234\\311<\\0162\\030D\\353"8\\234\\364\\333\\352\\3623\\304\\344\\312O\\034\\214\\201\\361:0\\216\\031#(\\373\\325\\021Nw1\\272\\242\\251\\316\\346\\267TU9\\334\\326\\352\\212\\247;\\232\\335QT\\347s~lQ\\275\\365\\231\\2761\\215\\003D2L\\001"c\\021\\224R\\216\\034\\206\\360\\246\\237z\\242&>\\345\\267TD\\307\\334\\306\\305\\033\\330\\231\\233\\343\\033\\003/\\275\\236\\021\\227\\202\\016=\\016\\225^:\\031\\003\\200\\365\\240\\334JFU\\365\\007 \\343\\320\\226U\\340a\\220\\304\\017E\\015\\303g\\246\\237O\\025FX\\246\\352.c\\011\\255\\332\\327\\036A\\225\\012]3Vq\\350&8\\311\\300\\315\\340\\\\\\011%iQ\\245B\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\012\\204\\274g&\\314\\321\\314p\\315\\271Z\\245\\3101\\236\\274\\310\\262`u\\023\\007\\014G\\024a\\0347\\2054\\344\\227R\\351\\232\\214O@\\311\\306q\\206l\\362\\34075U\\215b\\254\\250\\013\\025''\\225\\371p&\\270\\250\\265I\\366+\\320a\\350s\\201!\\243\\020h\\036\\262\\034\\211qe_U\\012\\242,\\226q\\024&''\\011\\3015\\340d\\011%iP^\\227Js\\266m\\322\\351Nv\\315\\222\\352]3Q\\211\\350\\0318\\3160\\315\\236\\\\\\006\\346\\252\\261\\254U\\325\\011b\\244\\362\\277.D\\327\\025\\026\\251>\\3109x\\221d\\262P\\003\\003F#\\212(\\216\\033=4\\345\\2127\\26137\\3066\\006_{<#\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSN]Q\\023\\037s\\030\\215TE\\212\\222\\255\\345\\300\\232\\342\\242\\360''\\333\\024o}fo\\214\\371\\261F\\367\\326f\\370\\306\\305\\033\\330\\241\\233\\343>8\\243{\\0233|c`g\\367\\263\\3022\\240\\305_\\226\\303\\320L\\\\eu\\307E\\225\\365/\\243.D7\\316u\\223\\270mg[S\\254\\227\\010\\336[H\\260\\321sZ\\270\\250\\263^\\247\\205\\317\\276\\242\\317\\311\\266\\355\\033\\231PaQ\\314\\221\\350&1\\263F\\334\\255Kzb\\242#y\\222"\\304\\305\\315j\\335\\255J\\372\\232\\344C|\\230Y;\\306\\267\\215\\313:\\330\\\\\\373\\024,\\374\\233%\\334)\\371l=\\003F6h\\334tY\\237L\\321\\273s}\\031Q\\021\\274\\311\\021bb\\346\\265n\\326\\245}Mr\\241\\276L,\\235\\343k\\306\\345\\235\\370b\\215\\354L\\315\\361\\215\\201\\237\\336\\317\\010\\330\\242\\373\\3523|g\\303\\003?\\275\\236\\021\\261F\\367\\326f\\370\\317\\233\\024o}fo\\214lQ\\275\\211\\231\\2763\\343\\2127\\26137\\3066\\006\\177{<#b\\215\\357\\254\\315\\361\\215\\325\\025Nw5\\260\\247T&r\\223\\315\\034\\306\\023\\\\TZ\\\\\\203/\\005\\342z\\022\\312\\274t\\015\\007\\016(\\241\\270l\\214\\253\\226\\027\\036\\372\\313?&\\337\\367\\352\\262\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271 \\345\\342z\\035*\\274\\014\\015\\030\\216+A\\270\\224\\364\\323\\2269\\177d\\374\\333\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256K\\310\\317\\023\\223)\\331\\374\\010\\325Df\\246\\332\\336\\\\\\211\\255\\332\\327\\002}\\220a\\236''9\\222x\\034d0\\211\\326Dq9\\351\\267\\326\\302\\231/\\026*O4s\\0303qQir\\014\\274\\212\\360\\3012\\253\\307 \\320|2\\214\\034\\206H\\3129\\031\\353\\314\\3649\\300\\2210p\\310qY\\016D\\270SNDj\\2433\\223uo.D\\326\\355k\\203>\\3100\\317\\023\\234\\311<\\0162\\030D\\353"8\\234\\364\\333\\353b\\260\\250\\214\\344\\331\\225\\371r&\\267kUI\\366\\352\\212\\247;\\232\\3109x\\236\\207J\\257\\003\\003F#\\212\\320n%=4\\345\\212\\272\\2413\\223fW\\345\\310\\232\\335\\255U''\\333\\252*\\234\\356o\\313\\277v\\215:t\\377\\000\\243\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSNLF\\245\\3235H\\326\\362\\3443qQx\\023\\354h\\025\\302b`w\\023\\007\\014\\241\\224a\\0347\\2054\\345\\325\\0211\\3671\\210\\325HX\\251\\032\\336\\\\\\211\\256*/\\002}\\214\\365\\346E\\223\\003\\250\\2308b8\\243\\010\\341\\274)\\247%\\344W\\211\\316d\\2369\\006\\203\\341\\225\\221\\034NFQ\\313\\012t\\276f\\246\\314\\321\\314`\\315\\273Z\\245\\310i3\\327\\231\\026L\\016\\242`\\341\\210\\342\\214#\\206\\360\\246\\234\\233\\025t\\272g),\\257\\313\\220\\315\\305E\\252O\\262]TE\\2221"\\203D\\341\\306&\\263\\314\\200\\324\\325V\\012\\203\\014\\360\\3012\\253\\300\\343!\\204N\\214\\034\\206OM\\276\\256_\\356Ger\\347\\374\\211e\\317W\\230\\320+\\204\\304\\300\\356&\\016\\031C(\\3028o\\012i\\311\\007 \\343\\320\\226U\\340a\\220\\304\\017E\\015\\303g\\246\\237O\\025DY&\\332.c\\011\\255\\332\\327\\036A\\227\\221\\236\\0309\\225x\\344d\\017\\211\\326C\\221)\\031G\\336\\227Js\\266m\\205:^3\\223^h\\3468f\\334\\255R\\344\\030\\317^dY0:\\211\\203\\206#\\2120\\216\\033\\302\\232r3\\320a\\350L\\001"c\\021\\220\\036\\214\\034\\206\\360\\246\\237p4\\373\\333\\341\\030\\317^dY0:\\211\\203\\206#\\2120\\216\\033\\302\\232rlV\\022\\361\\234\\244\\262\\303.C7\\025\\026\\251>\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSN_.(\\276\\372\\214\\337\\030\\311p\\215\\346H\\364\\015\\0275\\253v\\2655\\352_L\\030?1fK*#\\313\\231#\\320LcQm\\332\\324\\257\\246\\3642\\374\\330\\337\\364_\\374\\305\\231,\\250\\217.d\\217A1\\215E\\267k2\\276\\230\\227\\261W\\346L\\364\\015\\0279]nV\\246}Ov\\217\\322\\312\\203\\012\\216d\\217A1\\215\\2326\\345j[\\323\\025\\021\\345\\313i\\026&1\\250\\267\\025\\026W\\323:\\345~\\023nF\\272\\222\\177Q\\227\\266]^\\237\\343]\\014\\2776\\262\\032C\\\\\\230\\336\\337\\275\\257\\033\\226I\\225\\006\\025\\034\\311\\236\\202c\\0334m\\312\\324\\257\\246\\252#\\313\\226\\322,LcQn*,\\257\\246\\2565\\313\\316}\\223\\373*\\316\\266\\247Y/aO\\314\\231\\026\\0321\\263F\\335\\255L\\372b^\\305_\\2313\\3204\\\\eu\\271Z\\232\\365%\\312\\27191\\262\\177e^7,\\353r3\\324\\223\\372\\214\\275\\262\\356\\364\\377\\000\\032TDo2$X\\230\\271\\255[\\325\\251_SC(k\\223\\013\\333\\367\\255\\341r\\310\\266(\\276\\372\\214\\337\\031\\360\\335\\241\\261E\\367\\326gx\\317\\233\\024o}fo\\214b\\270\\321\\023\\023\\003\\270`\\304\\033\\024\\243\\010\\341\\274YW\\323\\305Q\\231\\252F\\213\\230\\302k\\212\\213\\307\\220d\\034\\203\\210\\263\\245(\\001\\206C\\020=hG\\022\\236\\232}\\352\\212\\247;\\232\\307\\222\\2433\\224\\235\\0271\\304\\327\\035\\027\\217!\\360+\\320a\\026L\\016\\241\\243\\020p\\036\\214#\\206\\361e_wh\\321\\253\\271\\227\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\311.\\252#5g\\036\\201\\222p\\343\\023^\\005\\300\\222j\\253\\005\\351v\\230\\373h\\305qZ\\031&\\000\\220\\320p6\\027G\\016Cx\\262\\256H9x\\236\\207J\\257\\003\\003F#\\212\\320n%=4\\345\\273\\351\\271\\227\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\313\\024obfo\\214l)\\222\\361b\\244\\263C1\\2037\\025\\026\\227 \\305qZ\\031&\\000\\220\\320p6\\027G\\016Cx\\262\\256X\\\\{\\353,\\374\\233c\\227\\366O\\315\\261^\\274\\317B`\\011\\015\\007\\003G\\024`\\3447\\213*\\344\\274\\214\\36192\\223\\307# |N\\214#\\206H\\312>\\341N\\250\\014\\325''\\2329\\214&\\270\\250\\264\\271\\015\\006z\\014"\\316q\\324Lb1\\003\\326Dq.\\024\\323\\357\\303\\024o}fo\\214\\371\\261F\\367\\326f\\370\\306^Ex\\234\\346I\\343\\220h>\\031Y\\021\\304\\344e\\034\\260\\246K\\306rm\\315\\014\\306\\014\\333\\265\\252\\\\\\207\\300\\3204C$\\300\\022&1\\031E(\\341\\310o\\012i\\367\\252"c\\356[uDL}\\314\\370\\021\\211t\\316RU\\274\\270\\014\\334T^\\004\\373%\\325DY#\\022(4N\\034bk<\\310\\015MU`\\260|,\\024\\253\\374M\\331\\323n\\004v\\205l6\\332\\377\\000\\243]\\365\\014"\\367Dn\\342,\\324\\2745\\305\\217\\342\\031)\\306Q\\330`\\006\\024y\\316#0\\337\\307\\021\\2503\\344b_\\365\\270\\364O\\005\\3674B\\335\\023\\301\\235\\316\\020\\262p''\\\\\\023\\231.\\035.\\334"/\\221\\227H4\\307\\015\\373m\\023ww\\331k\\3556\\272v\\233=\\236\\256\\215\\372\\332\\370\\250&c%Ml\\212\\335r\\314;s\\352B*s\\272R\\352\\241,\\221\\211\\022\\031''\\01615\\236c\\206\\246\\252\\260T\\030g\\206\\011\\225^\\007\\031\\014"t`\\3442zm\\365r\\350\\352Ier\\347\\374\\211e\\317W\\231.\\252"\\311\\030\\221A\\242p\\343\\023Y\\346@jj\\253\\005^\\013\\304\\213:R\\200\\350\\032\\016\\034V\\204q)\\031W-\\314\\203\\227\\211\\026K%\\00004b8\\242\\210\\341\\263\\323NIu.\\231\\250\\304\\364\\014\\234g\\030f\\317.\\003sUX\\322\\345\\376\\344\\266W.\\177\\310\\226\\\\\\365y\\215\\002\\270LL\\016\\342`\\341\\2242\\214#\\206\\360\\246\\234\\276\\\\Q}\\365\\031\\2761\\225\\021\\345\\313q\\026&1\\250\\267\\025\\026W\\323\\020\\322\\344\\347:\\366\\375\\225g[R?\\005DF\\363$E\\011\\213\\232\\325\\275Z\\225\\365>\\206\\177\\233[\\241\\237\\346\\337\\206\\006\\177{<#b\\213\\357\\250\\315\\361\\214\\377\\000\\372\\265\\335v\\232\\232\\232\\372vz\\332\\332uvz5\\366;-M\\206\\317F\\317g\\253\\243SSWF\\355\\032\\242\\210\\373\\270P5\\025\\215=~\\251X{\\256\\325\\357j\\311\\224\\357\\212\\035\\241\\241\\003\\304v\\013\\250\\036\\215\\301\\342\\373hk\\313\\203\\343\\356\\302\\036\\351\\267yy\\332\\352l6\\033\\035M;M\\246\\324\\240Pp#\\224H/\\203\\301\\235_\\266\\033@\\356\\321\\337F\\266\\333s:;j\\303\\236\\037uvzt\\350\\330\\353i\\325\\333h\\331\\252\\014*9\\223<\\304\\3066h\\333\\225\\251_L\\372\\262\\032\\\\\\234\\230\\336\\333\\301W\\215\\313$\\312\\210\\362\\346H\\364\\023\\030\\324[z\\265+\\351\\235\\014\\27762\\344C\\\\\\230\\331_\\275o\\033\\226u\\222\\366\\024\\374\\311\\021a\\243\\0334m\\312\\324\\327\\246*"7\\231",L\\\\\\326\\255\\352\\324\\257\\251\\377\\000\\321\\207\\363\\026d\\267#]I\\177\\250\\333\\333.\\357O\\361\\257\\223v\\375\\032tic=\\006\\021g8\\352&1\\030\\201\\353"8\\227\\012i\\365.\\252#5g\\036\\201\\222p\\343\\023^\\005\\300\\222j\\253\\005\\\\\\277\\333j\\312\\345\\317\\370\\352\\364\\236\\2572\\0143\\304\\3472O\\003\\214\\206\\021:\\310\\216''=6\\372\\274\\214\\36192\\223\\307# |N\\214#\\206H\\312>\\341N\\250L\\345%\\2329\\216&\\270\\250\\264\\271\\006^\\013\\304\\364%\\225x\\350\\032\\016\\034QCp\\331\\031W$\\030W\\206\\016e^\\007\\006\\214!\\225\\220\\344Nzm\\310\\215K\\245\\222m\\255\\345\\310f\\335\\255p''\\333\\024o}fo\\214g\\255?O\\377\\000M\\233o\\3721\\3766r\\330\\006\\242`\\227-\\216\\326"%\\217\\303^\\035\\366.\\2607\\261\\320*:#{\\015\\350\\016\\355\\335\\342\\373}\\216\\335\\205\\003a\\331\\211\\010\\265#\\241\\310+\\2049\\357i\\263\\250\\304\\023|.\\026\\370#\\035\\212\\335\\366\\273-H\\214E\\347a\\017\\333\\271ng\\257\\246\\321\\347O\\377\\000V\\315\\227r\\362=\\011eZ9\\007\\003G\\024`\\3346FU\\313\\245\\332c\\355\\233t\\273L}\\263n\\227i\\217\\266m\\325\\025Nw5\\220\\316\\236\\244\\267\\2671\\177\\310\\226\\\\\\215\\011\\212\\342\\2642L\\001!\\240\\340l.\\216\\034\\206\\361e\\\\\\272\\242\\251\\316\\346\\262\\031\\323\\324\\226\\366\\346/\\371\\022\\313\\221\\2411\\\\V\\206I\\200$4\\034\\015\\205\\321\\303\\220\\336,\\253\\227\\311\\277v\\215:t\\377\\000\\243\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSNH0\\317\\014\\023*\\274\\0162\\030D\\350\\301\\310d\\364\\333\\351\\032\\250\\213%#[\\313\\2215\\305E\\340O\\266(\\336\\372\\314\\337\\030\\311u.\\231\\250\\304\\364\\014\\234g\\030f\\317.\\003sUX\\327TD\\307\\334\\266+\\215\\020\\311\\316\\004\\206\\214A\\261J\\300r%\\305\\225}\\352\\210\\230\\373\\230\\313\\233ORK+\\227?\\344K.z\\272\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSNX)}\\012\\363;\\375\\351\\301\\240G\\210\\350$il F\\024\\263\\243\\273\\336\\323\\364\\351\\331\\005\\204\\033\\023T\\307y\\177z\\200?\\215a\\021\\207\\347\\027\\347\\247c\\376\\032\\346ED\\236,m\\236\\2443R \\034\\210\\277m!\\201\\302\\244\\033\\037}\\025@v\\300=\\274/e\\017\\330;k\\273\\215\\341c8\\2748\\276\\015\\232\\016\\217\\033\\343\\220\\215\\226\\207\\230\\233\\014\\224X(\\004\\361\\002v\\212\\275\\277k\\274\\306\\234\\347\\334\\266@\\261\\364\\010\\315\\016j\\010CO\\325(;\\336\\246\\355\\213\\312\\355A\\247\\241\\322\\253\\207#\\020h\\036\\262\\033\\211H\\312\\276\\266\\006\\177{<#b\\215\\357\\254\\315\\361\\215\\322\\351Nv\\315\\260\\247K\\306rl\\315\\034\\306\\014\\333\\265\\252\\\\\\203/\\004\\034z\\035*\\274t2\\007\\001\\353A\\270\\224\\214\\253\\353aL\\250K\\024\\331\\2329\\214&\\267kT\\271\\006^Fx`\\346U\\343\\221\\220>''Y\\016D\\244e\\037~UA\\205G2G\\240\\230\\306\\315\\033r\\265-\\351\\237VCK\\227\\223\\013\\337\\366M\\343r\\3117#]I?\\250\\333\\333.\\357O\\361\\245DF\\363"E\\211\\213\\232\\325\\275Z\\225\\365>\\206\\277\\233Y.\\021\\274\\266\\221a\\242\\346\\265qQf\\275I.\\021\\274\\311\\036\\201\\242\\346\\265n\\326\\246\\275M\\015!\\276L/o\\336\\327\\215\\313$\\330\\242\\373\\3533|c`\\241\\377\\000,L\\357\\367\\247\\006[P=\\253\\374j\\017\\250\\353\\265\\327\\330\\276\\305\\003\\361W'']\\261%\\002l\\341\\261!\\010\\212\\003\\005x\\331\\353\\357\\011\\200I\\330\\354(C\\241\\335\\373a\\252\\355\\006\\324\\330\\353\\273m\\2302.\\020\\214 \\000\\000\\233\\3243c\\267z\\011\\3046P\\330f\\303o\\033\\212$D\\223\\022\\212F!\\316\\361\\347\\320\\224/\\211!\\327+\\360\\233*\\014*9l"\\304\\3066h\\334tY_M\\300\\317\\357o\\204eA\\205G2g\\240\\230\\306\\315\\033r\\265+\\351\\252\\210\\362\\345\\264\\213\\023\\030\\324[\\212\\213+\\351\\275s?\\011\\267\\\\\\337\\302L\\2500\\247\\345\\260\\213\\023\\030\\331\\243q\\321e}1\\015!\\276s\\257o\\336\\326u\\265$\\312\\210\\215\\345\\264\\364\\023\\0275\\253\\212\\213+\\352\\177*\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271t\\273L}\\263lU\\322\\361b\\2332\\277.C6\\355j\\251>\\305z\\363=\\011\\200$4\\034\\015\\034Q\\203\\220\\336,\\253\\222\\3623\\304\\344\\312O\\034\\214\\201\\361:0\\216\\031#(\\373\\205:\\2413\\224\\226h\\3468\\232\\342\\242\\322\\344\\031x/\\023\\320\\226U\\343\\240h8qE\\015\\303de\\\\\\212\\364\\030E\\223\\003\\250h\\304\\034\\007\\243\\010\\341\\274YW\\334U\\225\\011\\234\\2332\\277.\\004\\326\\345j\\251>\\311u.\\226K8\\212\\015\\034g\\030f\\3602\\004\\223UX\\326\\011\\377\\000\\362\\304\\315\\377\\000{peJ\\351\\277hZ\\304vZ\\3739\\2471N\\307SWe\\251\\243F\\256\\215\\3324h\\321\\243\\377\\000M\\337M?M\\377\\000\\374\\001\\0177\\335\\001\\215G\\321\\244)\\357a\\257\\255\\266\\327\\324\\324}\\013\\212!\\243\\030&\\302-\\011\\332\\353\\355\\3346\\373\\370{@\\344z"\\374\\255B\\301\\300\\373\\203\\336\\327o\\005\\024<\\355\\242\\232\\346(\\006\\004g\\204\\243aQ;\\225N\\003\\023v\\331\\354\\037\\035:]\\246N\\3326(\\336\\304\\314\\337\\030\\304b\\2423\\223eo.\\004\\326\\355k\\201>\\335QT\\347s[\\024obfo\\214\\370\\232\\005hd\\347\\002D\\301\\303(]`9\\022\\341M9.]=6\\354\\256\\\\\\377\\000\\216\\257I\\352\\363%\\324\\272Y,\\342(4q\\234a\\233\\300\\310\\022MUc_.(\\336\\372\\314\\337\\031\\360\\030a\\247c\\0216\\200\\207\\256&0v\\334\\333\\277\\304\\235\\036\\335\\264\\012\\3000\\261\\203\\3541\\361\\377\\000g\\255\\265x\\206\\353m5\\335t\\353\\225\\373/\\257\\015\\367_WF\\237\\364\\332\\025\\357;\\377\\000\\340~\\331\\351\\325h\\332b\\213\\273F\\037c!1\\006\\3241\\021}\\327\\323\\264{\\331\\270\\201\\004N\\220\\367}G\\355M\\233\\333\\346\\256\\317WF\\333j\\230\\203{7\\015\\251\\215\\026\\333\\270\\352l"o\\202g\\215\\216\\323k\\266\\332\\352m6\\357\\272\\272\\272\\3325\\264\\352j\\354\\365u\\233\\024?}\\006_\\214d\\034\\203\\217BYW\\201\\206C\\020=\\0247\\015\\236\\232}\\337\\243\\364\\357c=y\\221d\\300\\352&\\016\\030\\216(\\3028o\\012i\\310\\257^dY\\316:\\206\\203\\201\\303\\212\\310\\216%\\305\\225r!\\0248B`\\356\\237\\243\\216\\371\\317\\371\\001\\335\\260\\363\\003N\\220\\210\\3748\\351\\036\\017\\211\\334"\\320w\\277\\327\\300|\\326\\027\\3035\\366z\\372\\273\\030\\273\\276\\246\\276\\267\\376(V\\337Q\\357N\\256\\301\\317Wi\\254\\355\\372\\270\\233g\\245?\\205G2G\\230\\224\\306\\315\\033r\\263+\\351\\251{\\025~d\\317@\\321q\\225\\326\\345jk\\324\\267\\350\\321\\243v\\226\\305\\023\\337Y\\231\\343\\031/aO\\313a\\350\\0321\\263F\\343\\242\\314\\372b\\345C\\\\\\347Y_\\275\\254\\353ju\\225\\021\\033\\313i\\350&.kW\\025\\026W\\324\\372\\031~ln\\206\\237\\233\\033\\241\\227\\346\\317\\227v\\375\\032tic=\\006\\021g8\\352&1\\030\\201\\353"8\\227\\012i\\367\\013\\217}e\\237\\223c\\305.\\026*J\\213\\230\\341\\233\\212\\213\\307\\220n\\227i\\217\\266l\\250R\\351d\\214H\\2411\\306N\\006l\\363 5+J\\215\\036*\\220\\316R4\\\\\\306\\023\\\\T^<\\203\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256M\\216g\\331?6\\3109\\007\\021gJP\\003\\014\\206 z\\320\\216%=4\\372\\274\\020q\\026K%\\001\\320\\310\\034\\007\\242\\210\\341\\2622\\257\\277\\253K \\364\\026F\\035ID\\0163\\030\\202k\\002H\\224\\364\\323\\342VP\\306\\002\\305>\\303\\005\\001\\273\\037\\272\\313\\261\\034\\325R\\017\\212\\252],\\223^W\\345\\310j\\201Z\\252O\\266\\030\\220\\007\\027\\344:[m\\266\\333\\035\\372\\372\\365&\\324\\014C\\2654\\357\\320\\357\\243{b\\242\\246\\014\\244\\313\\225\\372\\013Q%\\267Z\\252O\\267TU9\\334\\326\\302\\343\\337Yg\\344\\333\\025uDg&\\314\\257\\313\\2215\\273Z\\252O\\262]K\\245\\222\\316"\\203G\\031\\306\\031\\274\\014\\201$\\325V5\\325\\025Nw5\\260\\247T&r\\223\\315\\034\\307\\023\\\\tZ\\\\\\203\\031\\3500\\2139\\307Q1\\210\\304\\017Y\\021\\304\\270SO\\253\\310\\317\\023\\223)\\221\\252\\210\\261R5\\275\\005\\310\\232\\342\\242\\360g\\333\\024o}fo\\214eB\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\245\\312\\234\\355\\233%\\325DY#\\022(4N\\034bk<\\310\\015MU`\\277\\014Q\\275\\365\\231\\2763\\346T\\030Ts$z\\011\\214l\\321\\267+R\\336\\230\\2501W\\346L\\213\\023\\027\\031]nV\\245}I\\015.NK\\357\\177\\331W\\215\\313"\\335s\\177\\011\\267<\\235I?\\247+''.\\257O\\362_\\246\\014?\\230\\263%\\225\\021\\345\\314\\221\\350&1\\250\\266\\365jW\\3237\\267\\321\\261E\\367\\326gx\\306T\\030S\\362\\330E\\211\\214l\\321\\270\\350\\262\\276\\230\\206\\227''%\\367\\276\\340U\\343r\\3117#]I\\177\\250\\333\\333.\\357O\\361\\244\\275\\205?-\\247\\240h\\306\\315\\033\\216\\2133\\351\\230\\345}\\223\\363l\\227\\260\\250\\346L\\213\\015\\030\\331\\243nV\\246\\2751Q\\021\\274\\310\\221bb\\346\\265oV\\245}M\\015!\\276Lom\\343k\\306\\345\\222lQ}\\365\\231\\2761\\225\\006+\\034\\311\\221bb\\347+\\255\\312\\324\\257\\251\\340g\\367\\267\\3026(\\336\\372\\314\\337\\030\\311p\\362\\345\\264\\364\\015\\030\\324[\\212\\2135\\351\\235s?\\011\\267#}I?\\250\\313\\333.\\357O\\361\\255\\355\\277F\\355-\\212/\\276\\2437\\306|\\313\\301x\\236\\204\\262\\257\\035\\003A\\303\\212(n\\033#*\\344\\203\\012\\360\\301\\314\\253\\300\\340\\321\\2042\\262\\034\\211\\317M\\271b\\256\\227\\313\\024\\333\\225\\371r\\031\\267kUI\\366A\\3108\\213:R\\200\\030d1\\003\\326\\204q)\\351\\247\\325B\\227K$bE\\011\\2162p3g\\231\\001\\251ZTi\\015\\177r[\\333\\230\\317\\344[2F\\202\\335.\\323\\037l\\331\\007/\\023\\320\\351U\\340`h\\304qZ\\015\\304\\247\\246\\234\\261WT&rl\\312\\374\\270\\023[\\265\\252\\244\\373\\032\\006\\210\\230\\347\\035\\304\\306#(\\245dG\\022\\341M>\\232\\005hd\\347\\002D\\301\\303(]`9\\022\\341M9t\\274L\\235\\264b\\270\\255\\014\\223\\000Hh8\\033\\013\\243\\207!\\274YW&<\\222\\351b\\244\\250\\271\\214\\031\\270\\250\\274y\\006T*\\210\\315F''\\240\\230\\234''\\004\\326yp\\033\\225\\245AW\\221\\236''&Rx\\344d\\017\\211\\321\\204p\\311\\031G\\336\\250\\212s\\271\\214\\227R\\351d\\263\\210\\240\\321\\306q\\206o\\003 I5U\\215t\\273L}\\263b5.\\026)\\266\\267\\227\\001\\233v\\265\\300\\237lQ\\275\\365\\231\\2763\\341\\243O\\351\\372\\350b\\275y\\236\\204\\300\\022\\032\\016\\006\\216(\\301\\310o\\026U\\313\\252*\\234\\356kuES\\235\\315d\\272\\227K%\\234E\\006\\2163\\2143x\\031\\002I\\252\\254k\\344\\337\\273F\\235:\\177\\321\\214\\365\\346E\\223\\003\\250\\2308b8\\243\\010\\341\\274)\\247.\\250\\211\\217\\271\\215\\325\\0211\\3671\\272\\242&>\\3467TD\\307\\334\\306#U\\031b\\244\\253yr&\\270\\250\\274\\011\\366^\\0108\\364:Ux\\350d\\016\\003\\326\\203q)\\031W\\325B\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\012t\\274g&\\314\\321\\314`\\315\\273Z\\245\\3102\\360A\\307\\241\\322\\253\\307C p\\036\\264\\033\\211H\\312\\276\\341q\\357\\254\\263\\362m\\216g\\331?6\\330\\\\{\\023,\\374\\233/"\\274Ns$\\361\\3104\\037\\014\\254\\210\\342r2\\216Hc\\373m\\336\\274\\305\\377\\000\\035\\336r4&+\\215\\020\\311\\316\\004\\206\\214A\\261J\\300r%\\305\\225}\\351t\\247;f\\330S\\245\\34396f\\216c\\006m\\332\\325.A\\227\\202\\016=\\016\\225^:\\031\\003\\200\\365\\240\\334JFU\\365y\\025\\342s\\231''\\216A\\240\\370edG\\023\\221\\224r\\351v\\247;h\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSNF\\201\\242\\031&\\000\\2211\\210\\312)G\\016CxSO\\244j\\242,T\\215oAr&\\270\\250\\274\\031\\366\\305\\033\\337Y\\233\\343\\030\\3204C$\\300\\022&1\\031E(\\341\\310o\\012i\\367\\025\\205BX\\251,\\260\\313\\2215\\305E\\252O\\374\\370\\242\\373\\3523|ct2\\374\\330\\335\\014\\377\\0006\\267C/\\315\\214\\2500\\250\\345\\260\\213\\023\\030\\331\\243q\\321e}7\\003/\\275\\236\\021\\2677#]77\\250\\313\\3271l\\277\\361\\256\\271\\177\\204\\333\\256o\\341&K\\330Tr\\330z\\006\\214l\\321\\270\\350\\263^\\233\\216g\\331?6\\330\\\\\\373\\024,\\374\\233}\\031r!\\256s\\354\\255\\303k>\\332\\236d\\270F\\362\\332E\\206\\213\\232\\325\\305E\\232\\365.\\271\\277\\204\\333\\256_\\3416\\353\\233\\370I\\225\\021\\345\\313q\\026&1\\250\\267\\025\\026W\\323\\020\\322\\344\\347:\\366\\321d\\331\\366\\324\\223b\\213\\357\\254\\316\\361\\214\\250\\210\\336d\\210\\2611sZ\\267kR\\276\\244\\206\\220\\327&7\\267\\357k\\306\\345\\222lQ}\\365\\231\\3361\\261D\\366(f\\370\\306Chk\\234\\373\\333x\\332\\316\\266\\244\\233\\241\\227\\346\\337\\233\\024o}fo\\214e\\344g\\211\\311\\224\\2369\\031\\003\\342ta\\0342FQ\\367\\252"\\234\\356cuES\\235\\315lQ\\275\\211\\231\\2761\\2602\\373\\331\\341>\\011uQ\\031\\2538\\364\\014\\223\\207\\030\\232\\360.\\004\\223UX.*\\351x\\261M\\271_\\227!\\233v\\265T\\237\\370 \\345\\342z\\035*\\274\\014\\015\\030\\216+A\\270\\224\\364\\323\\2269\\177d\\374\\333\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256]QT\\347s[\\252*\\234\\356kuES\\235\\315n\\227i\\217\\266m\\322\\3552v\\321\\227\\221^\\030&Ux\\344\\032\\017\\206Q\\203\\220\\311\\031G$\\272\\250\\214\\325\\234z\\006I\\303\\214Mx\\027\\002I\\252\\254\\024\\214K\\245\\212m\\255\\345\\310f\\335\\255p''\\333\\024o}fo\\214n\\250\\252s\\271\\255\\325\\021Nw1\\215\\003DLs\\216\\342c\\021\\224R\\262#\\211p\\246\\237R\\352\\2423Vq\\350\\031''\\01615\\340\\\\\\011&\\252\\260U\\313\\375\\266\\254\\256\\\\\\377\\000\\216\\257I\\352\\363 \\303:4\\376\\237\\256\\206+\\327\\231\\350L\\001!\\240\\340h\\342\\214\\034\\206\\361e\\\\\\212\\343DLL\\016\\341\\203\\020lR\\214#\\206\\361e_z\\242)\\316\\3462]K\\245\\222\\316"\\203G\\031\\306\\031\\274\\014\\201$\\325V4\\203\\012\\360\\301\\314\\253\\300\\340\\321\\2042\\262\\034\\211\\317M\\271t\\273L\\235\\264n\\227i\\217\\266lh\\025\\241\\223\\234\\011\\023\\007\\014\\241u\\200\\344K\\2054\\344G%\\302\\3057V\\362\\3443n\\326\\270\\023\\354\\274\\027\\211\\350K*\\361\\3204\\0348\\242\\206\\341\\2622\\256X\\\\{\\353,\\374\\233\\036)t\\262RT\\\\\\306\\014\\334T^<\\203/"\\2740L\\252\\361\\3104\\037\\014\\243\\007!\\2222\\216]QT\\347s[\\012uBg)<\\321\\314a5\\305E\\245\\3102\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271\\025\\3500\\213&\\007P\\321\\2108\\017F\\021\\303x\\262\\257\\270\\253\\252\\02396e~\\\\\\011\\255\\312\\325R}\\272\\242\\251\\316\\346\\377\\000\\356\\177\\377\\304\\000>\\020\\000\\001\\002\\005\\001\\006\\003\\007\\003\\004\\000\\004\\007\\000\\000\\000\\002\\003\\023\\000\\001\\004\\021\\024\\025\\005\\022!"23\\020\\205\\324\\026 #4c\\224\\34415A$QabB`q\\202\\0060R\\201\\261\\263\\321\\377\\332\\000\\010\\001\\001\\000\\023?\\000\\377\\000\\2214\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\201\\262\\3754h\\033/\\323F\\201\\262\\3754h\\033/\\323F\\005-+/e\\271\\330H/v\\2024\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\201\\262\\3754h\\033/\\323F\\201\\262\\3757\\216\\223@\\273nP \\251\\363\\252\\201\\037\\0238a%\\333r\\275\\004\\217\\221Q \\235\\300\\316\\\\F0)iY{-\\316\\302A{\\264\\036\\356\\201\\262\\3754h\\033/\\323C\\011 \\343u\\365\\011\\007"B!+\\000\\004\\270\\0140\\222\\355\\271^\\202G\\310\\250\\220N\\340g.#\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\336\\367\\225\\322F:\\253\\266\\342\\240\\220r$$s\\271\\230K\\200\\316\\321\\240mOM\\032\\006\\324\\364\\321\\346\\224\\221\\367\\361\\253P \\343t\\010$|\\212\\256''+\\030F\\255@\\273nP.\\220r$\\271\\037\\0238\\300\\252\\252y\\226\\335\\354$v\\263\\241\\325\\031\\364\\26498\\364\\251R\\255\\360j\\225I`\\262\\310*\\034\\341\\030\\025T98\\365IU-\\361\\252\\222I\\020\\262(*|\\347\\031\\364\\265O3\\226\\357aS\\265\\235\\010\\322+\\327m\\304\\301P\\347I\\002\\011\\334\\014''\\300\\243>\\226\\273\\033"\\225ZT~\\015*\\252\\254wYt\\203\\220#\\002\\252\\225\\227\\261\\032\\357\\244\\027\\273G\\032\\275\\002\\0166\\251\\244|\\212\\256''+\\030\\034\\270\\214`UP\\344\\343\\325%T\\267\\306\\252I$B\\310\\240\\251\\363\\234k\\373/\\324\\306\\277\\262\\375Lg\\322\\327cdR\\253J\\217\\301\\245UU\\216\\353.\\220r\\004`UR\\262\\366#}\\364\\202\\367h\\343I\\257]\\267+\\327T9\\322@\\203\\240\\302<\\322\\222>\\3764\\212\\365\\333q0T9\\322@\\202w\\003\\011\\360(\\3206\\247\\246\\214\\012\\252V^q\\256\\372A{\\264}7\\217+\\244\\367\\274\\256\\222<\\316\\223\\307\\315)#\\357\\343_\\305y\\352T\\227\\355b\\235\\254\\355\\272\\2744\\234\\354\\214\\206>\\272[\\233\\254F&+\\317U*\\277k|\\355gwz\\247\\036YW\\341\\240e2\\315*Hwr\\202\\367j\\3751\\211\\224\\3135I/\\332\\337\\013\\335\\255\\336\\250\\322pq\\261\\330\\372\\312\\357\\357?\\036gW\\032\\006+\\317R\\252\\207w(\\355go\\323\\343\\211\\224\\3135I/\\332\\337\\013\\335\\255\\336\\250\\322pq\\261\\330\\372\\312\\357\\357?\\341\\346\\224\\221\\367\\361\\345\\224\\276\\037\\177\\036WI\\357y]$y\\245''\\217\\232RG\\337\\307\\225\\322F\\201\\262\\3754`R\\322\\262\\366[\\235\\204\\202\\367h#I\\240]\\267(\\020T\\371\\325@\\217\\211\\234y]_\\206\\223@\\273nP \\251\\363\\252\\201\\037\\0238\\322h\\020q\\272\\005\\325\\016t\\220\\023\\340a\\037a\\032E\\002\\355\\270\\251\\252|\\352\\240G;\\231\\234\\370\\2240\\222\\355\\271^\\202G\\310\\250\\220N\\340g.#\\032\\006\\313\\364\\321\\240l\\277M\\032M\\002\\0167@\\272\\241\\316\\222\\002|\\014#\\354<<\\322\\222>\\376<\\256\\223\\303\\357\\343\\312\\351=\\357+\\244\\215\\003jzh\\3206\\247\\246\\215\\003jzh\\322k\\320q\\272\\364\\025>uP\\020\\350\\003\\217\\277\\217+\\244\\214\\372Z\\354l\\212UiQ\\3704\\252\\252\\261\\335e\\322\\016@\\214\\012\\252V^q\\276\\372A{\\264}7\\215"\\275v\\334L\\025\\016t\\220 \\235\\300\\302|\\0125z\\005\\333qPH9\\022\\\\\\216w3\\011p\\030\\317\\245\\245e\\347\\033\\357\\252\\027\\273G\\323x\\300\\252\\256\\306\\310\\252V\\251\\037\\215J\\222\\250\\235\\321]#\\3448\\325\\350\\027m\\305A \\344Ir9\\334\\314%\\300bu\\364\\264\\254\\274\\343}\\365B\\367iN\\233\\303\\351.\\333\\211\\012\\241\\316\\221\\020N\\340a>\\005;G\\232RG\\337\\306\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\036iI\\023\\257\\245\\245e\\347\\033\\357\\252\\027\\273Jt\\336\\037Iv\\334HU\\016t\\210\\202w\\003\\011\\360)\\332<\\322\\2220*\\252\\236g-\\336\\302Gk:\\021\\240mOM\\032\\006\\324\\364\\321\\240mOM\\014*\\203\\215\\320 \\221\\362*"r\\261\\201\\313\\210\\373\\332\\006S,\\322\\244\\207w(/v\\257\\323\\036\\312~l{)\\371\\261\\354\\247\\346\\307\\262\\237\\233\\032N\\016>>G\\327W\\177y\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\363:X\\373\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\363:H\\325pq\\261\\362>\\202\\273\\373\\317\\306^S,\\322\\244\\207wp/v\\267\\272e\\032\\376S,\\325$\\277k\\024/v\\255\\325\\037\\177\\032\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\325$\\277k\\024/v\\255\\325\\032\\266\\0166>G\\320W\\177y\\370\\313\\312e\\232T\\220\\356\\356\\005\\356\\326\\367L\\243\\314\\351c\\357\\343@\\312e\\232T\\220\\356\\345\\005\\356\\325\\372c\\023)\\226j\\222_\\265\\276\\027\\273V\\352\\224{)\\371\\261\\354\\247\\346\\307\\262\\237\\233\\036\\312~l{)\\371\\277\\371\\030\\024\\265O3\\210\\337}#\\265\\2358a$\\034n\\276\\241 \\344HD%`\\000\\227\\001\\206\\022]\\267+\\320H\\371\\025\\022\\011\\334\\014\\345\\304c\\002\\226\\225\\227\\262\\334\\354$\\027\\273A\\341\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\037\\272fb1\\215\\363\\317\\267\\271\\224\\277n\\327\\337\\215\\003e\\372h\\310U\\007\\033T\\025\\016t\\210NV4\\302|\\012W\\215\\177jz\\230\\327\\366\\247\\251\\360\\300\\245\\252y\\227\\033\\357\\244v\\263\\247\\323\\014$\\203\\215\\327\\324$\\034\\211\\010\\204\\254\\000\\022\\340>\\031\\365T\\254\\275\\226\\347aP\\275\\332\\010}U\\333r\\201\\005O\\235R#\\235\\314\\316|J4\\212\\004\\034mPT9\\322@NV0\\011\\360(\\300\\245\\252y\\227\\033\\357\\244v\\263\\247\\323\\014$\\203\\215\\327\\324$\\034\\211\\010\\204\\254\\000\\022\\340>\\030\\024\\265O3\\210\\327}#\\265\\2358\\3206_\\246\\215&\\201\\007\\033\\240]P\\347I\\001>\\006\\021\\201KT\\3638\\215\\367\\322;Y\\323\\215\\003e\\372o{H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\360\\317\\245\\245e\\347\\033\\357\\252\\027\\273G\\323x}%\\333q!T9\\322"\\011\\334\\014''\\300\\247h\\3206\\247\\246\\214\\012\\252V^q\\276\\372A{\\264}7\\215"\\275v\\334L\\025\\016t\\220 \\235\\300\\302|\\012\\037I\\007\\033\\257AS\\347T\\204%`\\003\\237\\022\\214\\372Z\\247\\231\\313w\\260\\251\\332\\316\\204i\\025\\353\\266\\342`\\250s\\244\\201\\004\\356\\006\\023\\340^\\031\\364\\264\\254\\275\\210\\327}P\\275\\3328\\300\\252\\256\\306\\310\\252V\\251\\037\\215J\\222\\250\\235\\321]#\\3448aU\\333r\\202\\241 \\344HH\\347s0\\227\\001\\217\\332\\360\\362\\330\\306\\371\\346\\\\\\337\\304_\\242\\366\\334\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\215Z\\201v\\334\\240] \\344Ir>&q\\201UT\\363-\\271\\330H\\355gC\\252\\320\\302\\2508\\335\\002\\011\\037"\\242''+\\030\\034\\270\\214k\\373/\\324\\306}-S\\314\\345\\273\\330T\\355gB4\\212\\365\\333q0T9\\322@\\202w\\003\\011\\360(\\325\\350\\027m\\305A \\344Ir9\\334\\314%\\300c\\357\\343H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\360\\317\\245\\245e\\354F\\373\\352\\205\\356\\321\\303\\351.\\333\\211\\012\\241\\316\\221\\020N\\340a>\\005;{\\336YK\\030\\231L\\263J\\252\\375\\255\\360\\275\\332\\267T\\243\\366=;O\\373\\227\\\\\\317\\377\\000K5\\031yL\\263J\\222\\035\\335\\300\\275\\332\\336\\351\\224{)\\371\\261\\373\\036\\235\\247\\375\\313\\256g\\377\\000\\245\\232\\214\\274\\246Y\\245I\\016\\356\\340^\\355_\\246Q\\257\\3452\\315*\\253\\366\\261B\\367j\\335^\\032\\006S,\\322\\244\\207w(/v\\257\\323\\031x\\257=T\\222\\035\\335\\303\\265\\235\\336\\351\\234{W\\370Q\\245j\\230x\\237\\320\\374\\313\\310\\271\\277\\212\\347nV\\337\\264{)\\371\\261\\244\\340\\343\\343\\344}uw\\367\\237\\215\\003)\\226iRC\\273\\224\\027\\273W\\351\\214\\274W\\236\\252I\\016\\356\\341\\356\\331\\335\\356\\231\\306\\255\\235\\223\\220\\307\\321Ksu\\210\\3202\\231f\\251T;\\271A{\\265~\\230\\327\\362\\231f\\225U\\373X\\241{\\265n\\250\\325\\260q\\361\\330\\372\\012\\357\\357?\\032V\\251\\207\\211\\375\\007\\314\\276\\213\\233\\370\\256v\\345m\\373F&S,\\325$\\277k|/v\\255\\325\\032N\\0166>G\\327W\\177y\\370\\362\\312_\\037,\\244\\367\\274\\256\\222\\030Iv\\334H\\322>ED\\202w\\0039q\\031\\3320)iYy\\267;\\011\\005\\356\\322}W\\215Z\\275\\007\\033\\257] \\344Iq\\016\\200\\010\\3206_\\246\\214\\012ZV^m\\336\\302A{\\264\\035W\\360\\325\\353\\327m\\304\\315#\\344Ur\\011\\334\\014\\345\\304|4\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\005-\\016N=*\\265H\\374jT\\222X,\\262\\011\\037!\\306\\277\\265=Ld*\\273n*j\\237:\\244G;\\232\\205>%;F\\223@\\203\\215\\320.\\250s\\244\\200\\237\\003\\017\\015&\\201v\\334\\240AS\\347U\\002>&q\\346\\224\\221*\\372\\252V^\\313s\\260\\250^\\355\\004d*\\273n*j\\237:\\244G;\\232\\205>%;G\\225\\325\\307\\330F\\221@\\273n*j\\237:\\250\\021\\316\\346g>%\\014$\\273nW\\240\\221\\362*$\\023\\270\\031\\313\\210\\306\\005-+/e\\273\\330H/v\\2025z\\364\\034m0H9\\022\\\\BV\\000\\011p\\037\\037+\\244\\367\\274\\256\\222\\037I\\007\\033\\257AS\\347T\\204%`\\003\\237\\022\\214\\372Z\\247\\231\\313s\\260\\251\\332\\316\\207\\206:\\253\\266\\342\\240\\220r$$s\\271\\230K\\200\\316\\321\\240mOM\\032\\006\\324\\364\\336\\031\\364\\264\\254\\274\\343]\\365B\\367h\\372o\\030\\025U\\330\\331\\025J\\325#\\361\\251RU\\023\\272+\\244|\\207\\025{v\\201\\224?\\334\\332X\\316\\322\\377\\000\\0038J\\201\\204\\351\\216\\235\\376\\022\\261\\235\\356\\374Sl\\307\\023\\006i\\223C\\252v\\275\\332\\215\\034#G\\010\\250\\245\\232j(\\365J\\253\\316\\343)ZV\\232\\266\\202H\\345)K\\374\\316\\321\\237J\\203ob5g\\225\\013\\335\\243\\214\\012\\252\\354l\\212\\245j\\221\\370\\324\\251*\\211\\335\\025\\322>S\\206\\025]\\267(*\\022\\016D\\204\\216w3\\011p\\030\\375\\257\\017-\\214o\\235e\\315\\374U\\373w\\264`UWcdU+T\\217\\306\\245ITN\\350\\256\\221\\362\\034i5\\3508\\335z\\012\\237:\\250\\010t\\001\\370i5\\353\\266\\345z\\352\\207:H\\020t\\030F}-v6E*\\264\\250\\374\\032UUX\\356\\262\\351\\007 G\\355xylc|\\353.o\\342\\257\\333\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\275\\357,\\245\\214\\274W\\236\\252I\\016\\356\\341\\332\\316\\357t\\3165l\\354\\214\\214\\217\\240\\226\\346\\353\\036\\030\\231L\\263T\\222\\375\\255\\360\\275\\332\\267T\\243\\331O\\315\\217e?7\\303\\357\\343\\313)`\\177Q\\336\\234\\245y\\177\\231^%.\\022\\200\\225\\347\\270\\230L\\247i\\177\\322P\\023\\231H%)\\011\\247;\\317\\214\\356''i\\317\\205\\347+\\312V\\205''a\\001\\224\\2579\\316s\\376%(\\254I\\261\\252I`\\231\\246\\252r\\375d%)^[\\322\\224\\355i\\333\\303\\376\\020\\231^E\\273/\\342S\\230\\336\\337\\336s\\237\\363\\032\\006S,\\322\\244\\207w(/v\\257\\323\\341\\252\\340\\343c\\344}\\005w\\367\\237\\214\\274\\246Y\\245I\\016\\356\\340^\\355ot\\312=\\224\\374\\330\\322pq\\361\\330\\372\\352\\357\\357?\\032\\006S,\\325*\\207w(/v\\257\\323\\030\\231L\\263T\\222\\375\\255\\360\\275\\332\\335\\352\\225\\257\\037\\261\\351\\332\\177\\334\\272\\346w\\372Y\\250\\322\\265Le\\344\\\\\\337\\305s\\2666\\337\\267\\275\\253\\327\\240\\343i\\202A\\310\\222\\342\\022\\260\\000K\\200\\306\\005-\\016N=*\\265H\\374jT\\222X,\\262\\011\\037!\\307\\356\\231\\230\\214c|\\363\\315\\356e\\257\\333\\265\\367\\341\\204\\220q\\272\\372\\204\\203\\221!\\020\\225\\200\\002\\\\\\006\\030Iv\\334\\257A#\\344TH''p3\\227\\021\\214\\012ZV^\\313s\\260\\220^\\355\\004i4\\013\\266\\345\\002\\012\\237:\\250\\021\\3613\\207\\325A\\306\\350*\\025\\016t\\210NV0\\011\\360(\\317\\252\\252y\\227\\033\\357\\252v\\263\\247\\323h\\362\\272H\\377\\000\\276^\\024\\345)c&`I\\344.W\\226\\342r\\234\\347o\\344\\247+\\014\\247;\\333j=\\2763\\012t\\322\\267''\\361\\310S\\275\\347\\372\\313\\204\\255;\\354\\335\\262\\242\\257 %\\274iI\\023@JR=\\335\\311\\363[ve\\306/''RN\\232F J\\207\\352$sP\\347+\\376\\240\\337\\207\\375\\305\\032E\\002\\355\\271@\\202\\247\\316\\252\\004}g\\032\\376\\324\\3651\\257\\355OS\\032\\376\\324\\3651\\240l\\277M\\037\\265\\341\\345\\277\\223\\362,9\\277\\212\\207r\\366\\334\\214\\205Wm\\305MS\\347T\\210\\347sP\\247\\304\\247h\\3206_\\246\\217\\332\\360\\362\\337\\311\\371\\026\\034\\337\\305C\\271{nFB\\253\\266\\342\\246\\251\\363\\252Ds\\271\\250S\\342S\\267\\275\\244W\\256\\333\\211\\202\\241\\316\\222\\004\\023\\270\\030O\\201C\\012\\256\\333\\224\\025\\011\\007"BG;\\231\\204\\270\\014`UR\\262\\363\\215\\367\\322\\013\\335\\243\\351\\274y]$g\\322\\327cdR\\253J\\217\\301\\245UU\\216\\353.\\220r\\004h\\033S\\323F:\\2508\\332\\246\\221\\362*"r\\261\\246R\\3422\\215\\003jzh\\375\\257\\017-\\214o\\236a\\315\\374U\\373w\\266\\344>\\222\\355\\270\\220\\252\\034\\351\\021\\004\\356\\006\\023\\340S\\267\\202t"\\232(\\244g1Et\\252$\\251M@rh\\244R0\\011\\335K\\3326j\\226e\\032\\245j\\022\\246*\\215\\331\\335\\212di\\206d\\234\\247\\2733^\\345\\011^h\\323+J\\324\\222\\250M9\\334F\\357\\024\\212R\\224\\244V\\031\\316*~gh,\\252dF\\252\\0253\\233\\237\\017\\227\\216\\365\\256V\\265\\242\\224d2\\332\\2738Jr_x8_y!x/\\322V\\264\\345\\306\\364\\0336\\242\\260\\225BV\\271\\374 .\\034\\303\\015\\032{\\363\\025\\014K\\224\\345"\\3411\\234\\277H\\325\\350\\020q\\272\\004\\022>EW\\023\\340`~\\037\\177\\036WI\\032\\376\\313\\3651\\237KT\\3639nv\\025;Y\\320\\215Z\\201\\007\\033\\240A#\\344Uq9X\\303\\303\\002\\252\\251\\346r\\334\\354$v\\263\\241\\014*\\203\\215\\320 \\221\\362*"r\\261\\201\\313\\210\\373\\332\\006S,\\322\\244\\207w(/v\\257\\323\\341\\253`\\343c\\344}\\025w\\367\\237\\215+T\\303\\304\\376\\203\\346^E\\315\\374W;cm\\373F&S,\\325$\\277k|/v\\255\\325\\036\\312~lbb\\274\\365R\\253\\366\\267\\317v\\316\\333\\252q\\211\\224\\3134\\252\\257\\332\\337\\013\\335\\255\\336\\251F\\223\\203\\217\\217\\221\\365\\325\\337\\336~<\\262\\227\\300?\\212\\244\\012\\236\\261\\037\\376\\203\\212\\000\\011\\021$i\\2476I5\\004\\304\\303\\226S\\261Js\\224\\370\\312p\\270\\200,T\\223\\031\\246\\224\\303\\2314\\024\\275\\367\\344\\011\\014\\245!.k\\225\\356\\235bL\\2403"\\335H\\226\\020zam\\331\\314\\035\\267\\031\\217L\\002\\222\\232k#0\\2307!\\227\\031\\312r\\237\\3519K\\204RY:\\312\\345\\022:\\272i\\021\\324*[\\251!0\\244RG)\\011L\\255\\024\\225d\\222j''\\220m\\246\\361''9\\362\\201\\215\\313r=\\253\\374(\\3201^z\\251$;\\271Gk;~\\230\\373\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\313\\305y\\352\\244\\220\\356\\356\\036\\355\\235\\336\\351\\234{W\\370Q\\355_\\341F\\201\\212\\363\\325I!\\335\\312;Y\\333\\364\\306\\223\\235\\221\\221\\221\\365\\322\\334\\335b11^z\\225%\\373[\\347k;n\\251\\373\\332M\\002\\355\\271@\\202\\247\\316\\252\\004|L\\343_\\332\\236\\2463\\352\\252\\236g\\021\\256\\372\\247k:q\\244P.\\333\\212\\232\\247\\316\\252\\004s\\271\\231\\317\\211C\\011.\\333\\225\\350$|\\212\\211\\004\\356\\006r\\3421\\201KJ\\313\\331nv\\022\\013\\335\\240\\215&\\201v\\334\\240AS\\347U\\002>&q\\253\\327\\256\\333\\211\\232G\\310\\252\\344\\023\\270\\031\\313\\210\\306\\005-S\\314\\3425\\337H\\355gN3\\352\\250rq\\352\\225\\245G\\340\\322\\252\\222!dPH9\\003\\301\\315\\323U5i\\327H\\3442\\377\\000\\212\\322=\\371\\313\\377\\000H^%\\372G\\367\\215\\217\\263W\\251\\247\\234\\204\\267HNI\\310\\3113\\003\\221\\204\\344_\\256\\346\\364(\\211\\2439\\332v\\237)\\214\\212\\\\e\\374\\312\\020\\342\\342\\013VMm\\371\\312R\\236\\350&\\013)r\\234\\345y\\251iC\\312"\\350o\\316v\\337L\\204\\245\\306_\\304\\345\\032\\376\\323\\3651\\346\\224\\221\\201KT\\363.5\\337H\\355gO\\246\\321\\240l\\277M\\036iI\\343\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\037\\272fb1\\215\\363\\3177\\271\\224\\277n\\327\\337\\214\\372\\252\\034\\234z\\245iQ\\3704\\252\\244\\210Y\\024\\022\\016@\\367\\274\\256\\223\\302T\\025UO2\\333\\235\\204\\216\\326t:\\255\\030\\352\\240\\343j\\232G\\310\\250\\211\\312\\306\\231K\\210\\312\\030Uv\\334\\240\\250H9\\022\\0229\\334\\314%\\300c\\366\\274<\\2661\\276y\\2277\\361\\027\\350\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\243V\\240]\\267(\\027H9\\022\\\\\\217\\211\\237\\216u5N\\372A+\\034\\356\\212\\207h\\336\\340\\231\\230\\356\\221J_\\246\\366\\355\\306S\\376$E\\004\\022\\237\\377\\000\\220I\\316S\\377\\000\\346\\021\\262\\364u'';\\\\\\316\\235In\\310\\371er\\011\\204\\347\\306\\363\\212a\\222`gn$!2\\234\\306S\\376\\327\\235\\277\\274N\\234AY\\246\\222i&\\0032\\227\\022\\224\\267Jr\\217\\355;\\316v\\237\\376\\323\\224\\343\\312\\351#V\\240]\\267(\\027H9\\022\\\\\\217\\211\\237\\206\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\032Ez\\0166\\231\\252|\\352\\240!+\\000\\034\\370\\224`UU<\\313nv\\022;Y\\320\\352\\215\\003jzh\\322k\\320q\\272\\364\\025>uP\\020\\350\\003\\360\\322k\\327m\\312\\365\\325\\016t\\220 \\3500\\367\\274\\262\\2265\\374\\246Y\\245U~\\326(^\\355[\\252>\\3025\\374W\\236\\252U~\\326)\\332\\316\\333\\25212\\231f\\225U\\373[\\341{\\265n\\250\\375\\217N\\323\\376\\345\\3273\\277\\322\\315F\\225\\252a\\342\\177A\\363/"\\346\\376+\\235\\271[~\\336\\032\\266\\0166;\\037A]\\375\\347\\343\\332\\277\\302\\212_\\374C*\\225\\033\\377\\000\\011\\225(H\\347\\3767\\345\\033F\\222\\2415R\\377\\000[L\\006\\032^*\\021Sq=\\343\\020\\033\\332\\177\\311\\020\\312\\031Z)\\320R`\\246\\341\\220\\025\\257?\\340\\204\\245\\011\\323\\034\\347)\\377\\000~3\\265\\377\\000\\353\\013J\\307P|9\\247\\302_\\332_\\304\\277IJR\\224\\245\\032\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\322\\252\\277k\\024/v\\255\\325\\341\\345\\224\\221\\240b\\274\\365*\\250wr\\216\\326v\\3751\\244\\347dd1\\365\\322\\334\\335b11^z\\225%\\373[\\347k;\\273\\3258\\366S\\363c\\331O\\315\\217e?7\\336\\325\\353\\320q\\264\\301 \\344Iq\\011X\\000%\\300c\\312\\352\\343>\\252\\225\\227\\233w\\260\\250^\\355\\007U\\343_\\332\\236\\2463\\352\\253\\261\\262*\\222\\245[\\340\\325*\\252''tWT9\\3020)iYy\\267;\\011\\005\\356\\320u^4\\212\\005\\333qST\\371\\325@\\216w39\\361/\\017\\260\\215Z\\275\\007\\033\\257] \\344Iq\\016\\200\\010\\325\\253\\327m\\312\\364\\022>EW \\3503\\360\\325\\353\\220q\\272\\365\\322\\016D\\226\\020\\225\\200#\\002\\232\\205\\374zU\\252\\221\\370\\324\\311\\246\\250Yd\\022.\\007\\023\\257\\251\\252y\\234F\\273\\312\\035\\254\\351\\307\\231\\325x`R\\325<\\316#]\\364\\216\\326t\\343@\\331~\\232<\\256\\2560)j\\236g\\021\\256\\372Gk:q\\237UC\\223\\217T\\255*?\\006\\225T\\221\\013"\\202A\\310\\021\\240l\\277M\\030\\024\\264\\254\\275\\226\\357a \\275\\332\\010\\325\\353\\320q\\264\\301 \\344Iq\\011X\\000%\\300a\\204\\227m\\312\\364\\022>ED\\202w\\0039q\\030\\300\\245\\245e\\354\\267;\\011\\005\\356\\320F\\223@\\273nP \\251\\363\\252\\201\\037\\023?{H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\2174\\244\\217\\277\\360\\307Uv\\334T\\022\\016D\\204\\216w3\\011p\\031\\332?k\\303\\313c\\033\\347\\231s\\177\\025~\\335\\355\\271\\030\\025U\\330\\331\\025J\\325#\\361\\251RU\\023\\272+\\244|\\207\\341\\237KJ\\313\\330\\215\\367\\325\\013\\335\\243\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\360\\373\\370\\362\\272H\\300\\252\\241\\311\\307\\252J\\251o\\215T\\222H\\205\\221AS\\3478\\375\\3233\\021\\374\\237\\221y\\275\\314\\244;\\226\\276\\374h\\033S\\323F}-v6E*\\264\\250\\374\\032UUX\\356\\262\\351\\007 G\\355xylc|\\353.o\\342\\257\\333\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\243\\035U\\333qPH9\\022\\0229\\334\\314%\\300gh\\235\\005U+/8\\337} \\275\\332>\\233\\307\\225\\322F\\005U\\016N=RUK|j\\244\\222D,\\212\\012\\2379\\306\\275\\263=L`UWcdU+T\\217\\306\\245ITN\\350\\256\\221\\362\\037\\217\\225\\322{\\332\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\325$\\277k\\024/v\\255\\325\\032\\266\\0166>G\\321W\\177y\\370\\366\\257\\360\\243U\\3250\\361?\\256\\371fQs\\177\\025\\276\\344\\255\\277x\\375\\217N\\323\\376\\345\\3273\\277\\322\\315F^S,\\322\\244\\207wp/v\\267\\272e\\343\\345\\224\\221\\240b\\274\\365RHwr\\216\\326v\\3751\\252\\340\\343c\\344}\\025w\\367\\237\\215+T\\303\\304\\376\\203\\346^E\\315\\374W;r\\266\\375\\243@\\305y\\352UP\\356\\345\\035\\254\\355\\372c\\354#@\\312e\\232\\245P\\356\\345\\005\\356\\325\\372c\\023)\\226j\\222_\\265\\276\\027\\273V\\352\\215''\\007\\037\\037#\\353\\253\\277\\274\\374ye,k\\371L\\263T\\222\\375\\254P\\275\\332\\267T}\\374y]$e\\342\\274\\365*\\250ww\\016\\326w{\\246q\\355_\\341F\\225\\252a\\342\\177A\\363/"\\346\\376+\\235\\271[~\\336>YK\\357i4\\013\\266\\345\\002\\012\\237:\\250\\021\\3613\\207\\325A\\306\\350*\\025\\016t\\210NV0\\011\\360(\\317\\252\\252y\\234F\\373\\352\\235\\254\\351\\306\\255^\\203\\215\\327\\256\\220r$\\270\\207@\\004g\\325WcdU%J\\267\\301\\252UTN\\350\\256\\250s\\204~\\327\\207\\226\\376O\\310\\262\\346\\376*\\035\\313\\3325\\375\\251\\352cI\\240A\\306\\350\\027T9\\322@O\\201\\204`R\\325<\\316#}\\364\\216\\326t\\341\\204\\220q\\264\\205 \\344HD%`L%\\300ex\\310U\\007\\033T\\025\\016t\\210NV4\\302|\\012W\\215\\177jz\\230\\310Uv\\334T\\325>uH\\216w5\\012|Jv\\360\\317\\252\\245e\\346\\335\\354*\\027\\273A\\325x\\300\\245\\256\\306\\310\\245J\\251o\\215T\\222\\253\\035\\326]S\\3478a%\\333r\\275\\004\\217\\221Q \\235\\300\\316\\\\F4\\015\\227\\351\\243>\\252\\207''\\036\\251ZT~\\015*\\251"\\026E\\004\\203\\220#_\\332\\236\\2463\\352\\252\\236e\\306\\273\\352\\235\\254\\351\\364\\307\\225\\322x\\351\\024\\013\\266\\342\\246\\251\\363\\252\\201\\034\\356fs\\342Q\\240l\\277M\\032\\006\\313\\364\\321\\237UC\\223\\217T\\255*?\\006\\225T\\221\\013"\\202A\\310\\036\\366\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\032\\006\\324\\364\\321\\240mOM\\032\\006\\324\\364\\321\\240mOM\\030\\025T\\254\\274\\343]\\364\\202\\367h\\372o\\032\\265\\002\\0167@\\202G\\310\\252\\342r\\261\\204`UP\\344\\343\\325%T\\267\\306\\252I$B\\310\\240\\251\\363\\234g\\322\\325<\\316[\\235\\205N\\326t#V\\240A\\306\\350\\020H\\371\\025\\\\NV0\\217+\\253\\217\\260\\2174\\253\\207\\322A\\306\\353\\320T\\371\\325!\\011X\\000\\347\\304\\243\\367L\\314G\\362~E\\366\\3672\\220\\356Z\\373\\361\\216\\252\\0166\\251\\244|\\212\\210\\234\\254i\\224\\270\\214\\243_\\331~\\2463\\351j\\236g-\\316\\302\\247k:\\021\\253P \\343t\\010$|\\212\\256''+\\030C\\351 \\343u\\350*|\\352\\220\\204\\254\\000s\\342Q\\257\\354\\277S\\017\\244\\273n$*\\207:DA;\\201\\204\\370\\024\\355\\030\\352\\256\\333\\212\\202A\\310\\220\\221\\316\\346a.\\003;D\\350*\\251Yy\\306\\373\\351\\005\\356\\321\\364\\336<\\256\\2221\\325]\\267\\025\\004\\203\\221!#\\235\\314\\302\\\\\\006v\\211\\320UR\\262\\366#}\\364\\202\\367h\\375\\377\\000,\\245\\217e?6=\\224\\374\\330\\366S\\363c@\\305y\\352\\244\\220\\356\\345\\035\\254\\355\\372c\\357\\3744\\255/3/\\372\\037\\231yf\\3672\\234\\355\\224{W\\370Q\\355_\\341F\\201\\212\\363\\324\\252\\241\\335\\312;Y\\333\\364\\307\\330G\\231\\325\\370i9\\331\\031\\014}t\\2677X\\214LW\\236\\252U~\\326\\371\\356\\331\\333uN=\\253\\374(\\366\\257\\360\\243\\332\\277\\302\\214\\274W\\236\\252I\\016\\356\\341\\332\\316\\357t\\3165\\\\\\354\\234\\214\\217\\240\\226\\346\\353\\021\\345\\224\\221\\211\\224\\3135I/\\332\\337\\015\\353\\265n\\251F\\225\\203\\215\\217\\221\\365\\325\\337\\336~<\\262\\222<\\316\\2264\\254\\354\\234\\214\\217\\254\\226\\346\\353\\021\\354\\247\\346\\373\\336WI\\014$\\273nW\\240\\221\\362*$\\023\\270\\031\\313\\210\\306\\201\\262\\3754h\\033/\\323G\\232RG\\337\\370`R\\320\\344\\343\\322\\253T\\217\\306\\245I%\\202\\313 \\221\\362\\034g\\325U<\\316#]\\365N\\326t\\3744\\232\\004\\034n\\201uC\\235$\\004\\370\\030G\\330F\\221@\\273n*j\\237:\\250\\021\\316\\346g>%\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\321\\257\\355OS\\032\\376\\324\\3650\\372\\253\\266\\345\\002\\012\\237:\\244G;\\231\\234\\370\\224`R\\320\\344\\343\\322\\253T\\217\\306\\245I%\\202\\313 \\221\\362\\034g\\325U<\\313\\215w\\325;Y\\323\\351\\264y]$h\\033/\\323F\\201\\262\\37540\\222\\0166\\220\\244\\034\\211\\010\\204\\254\\011\\204\\270\\014\\257\\030\\024\\26498\\364\\252\\325#\\361\\251RI`\\262\\310$|\\207\\037\\272fb1\\215\\363\\3177\\271\\226\\277n\\327\\337\\206\\022A\\306\\353\\352\\022\\016D\\204BV\\000\\011p\\037{\\312\\351#\\315)<|\\322\\222>\\3765j\\004\\034n\\201\\004\\217\\221U\\304\\345c\\010\\363JO\\015&\\275v\\334\\257]P\\347I\\002\\016\\203\\010aU\\333r\\202\\241 \\344HH\\347s0\\227\\001\\211\\320UR\\262\\353\\215\\367\\322\\013\\335\\243\\351\\274i\\025\\353\\266\\342`\\250s\\244\\201\\004\\356\\006\\023\\340Q\\253P.\\333\\224\\013\\244\\034\\211.G\\304\\316>\\303\\301\\205Wm\\312\\012\\204\\203\\221!#\\235\\314\\302\\\\\\006?k\\303\\313c\\033\\347\\231s\\177\\021~\\335\\355\\271\\017\\244\\273nW\\324*\\034\\351\\021\\004\\356\\006\\023\\340Q\\345uq*\\012\\252\\247\\231m\\316\\302Gk:\\237U\\243\\035T\\034mSH\\371\\025\\0219X\\323)q\\031F\\255@\\273nP.\\220r$\\271\\037\\0238\\317\\245\\245e\\354F\\373\\352\\205\\356\\321\\306\\005Uv6ER\\265H\\374jT\\225D\\356\\212\\351\\037!\\307\\232RD\\353\\351iYy\\306\\373\\352\\205\\356\\322\\2357\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\367\\274\\256\\22212\\231f\\251%\\373[\\341\\275v\\255\\325(\\366S\\363c\\331O\\315\\2173\\245\\217\\277\\360\\327\\362\\231f\\251%\\373X\\241{\\265n\\257\\015\\003)\\226j\\225C\\273\\224\\027\\273W\\351\\214L\\246Y\\245U~\\326\\370^\\355n\\365J4\\254\\034l|\\217\\256\\256\\376\\363\\361\\345\\224\\221\\355_\\341F\\253\\235\\223\\220\\307\\320Ksu\\217\\015\\003\\025\\347\\252\\222C\\273\\224v\\263\\267\\351\\217\\277\\360\\362\\272\\270\\373\\010\\327\\361^z\\251U\\373X\\247k;n\\257\\035\\003)\\226iRC\\273\\224\\027\\273W\\351\\215WT\\303\\304\\376\\277\\345\\231E\\315\\374V\\373\\222\\266\\375\\343I\\301\\307\\307\\310\\372\\312\\357\\357?\\032\\006S,\\322\\244\\207w(/v\\257\\323\\357y]$h\\033/\\323F\\201\\262\\3754h\\033/\\323F\\221@\\203\\215\\252\\012\\207:H\\011\\312\\306\\001>\\005\\037\\177\\356i\\024\\013\\266\\342\\246\\251\\363\\252\\201\\034\\356fs\\342P\\302K\\266\\342F\\221\\362*$\\023\\270\\031\\313\\210\\316\\321\\240l\\317M\\031\\365T98\\365J\\322\\243\\360iUI\\020\\262($\\034\\201\\017\\252\\203\\215\\320T*\\034\\351\\020\\234\\254`\\023\\340Q\\257\\355OS\\032\\376\\324\\3651\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\023\\257\\252\\252y\\227\\033\\357\\252v\\263\\247\\323h\\322h\\027m\\312\\004\\025>uP#\\342g\\036WW\\031\\365T\\254\\274\\333\\235\\205B\\367h:\\257\\017\\252\\273nP \\251\\363\\252Ds\\271\\231\\317\\211F\\201\\262\\3754`R\\322\\262\\366[\\235\\204\\202\\367h#I\\240]\\267(\\020T\\371\\325@\\217\\211\\234j\\365\\353\\266\\342f\\221\\362*\\271\\004\\356\\006r\\3421\\201KT\\3638\\215w\\322;Y\\323\\215\\003e\\372o\\371\\237\\377\\304\\000*\\021\\000\\001\\003\\003\\002\\005\\004\\002\\003\\000\\000\\000\\000\\000\\000\\000\\001\\000\\002\\003\\004\\005\\021\\006!\\022\\0231@Q\\020\\024"A2\\200\\026$B\\377\\332\\000\\010\\001\\002\\001\\001?\\000\\375\\232\\007>\\203p\\206A\\357\\245\\220F2T3\\211z)$\\021\\214\\225\\014\\302^\\235\\356\\335\\025\\336\\262*jw\\361\\356U\\267V\\262\\337\\027*f\\365U\\372\\245\\265t\\216\\345FA+L\\201\\354\\203\\270\\262\\343\\351\\370\\367Gg\\247T\\226\\316B\\243\\202:\\332\\242\\3717\\307\\322\\275Z\\250\\337;\\036\\346c\\013\\330R\\032Q\\037\\000\\003\\012\\331V\\353U\\321\\360\\003\\226\\022\\271\\340\\014\\224\\307\\207\\216\\350\\214\\253\\354\\202\\000\\307\\370GSU\\321\\327\\020\\303\\262\\236\\360+\\242\\314\\262\\340\\2515|\\320\\216@9\\036T\\267h^\\033#\\177/+\\334>\\261\\214\\204\\177\\245L\\013X"?]\\326p\\026\\247g\\364\\336\\357\\012B\\343!*\\234\\021&$\\033*\\273#$9\\245\\361\\366\\244\\202JiC\\036\\254%\\262S\\302\\343\\364\\027F\\343\\272\\350r\\025\\306\\334\\333\\2238\\034vRh(\\016x^\\237\\240e\\316Y"\\376;[\\024|\\271\\007\\022\\250\\322W\\016o\\034L\\300VZSKB\\326;\\252\\306q\\335\\017\\216\\305`\\215\\302\\371,\\037+\\207\\354\\204x_\\262\\331\\277\\000\\272~\\335\\377\\000\\377\\304\\000%\\021\\000\\001\\004\\001\\004\\001\\004\\003\\000\\000\\000\\000\\000\\000\\000\\000\\001\\000\\002\\003\\004\\021\\005\\022!@2\\020"A\\200\\024Ba\\377\\332\\000\\010\\001\\003\\001\\001?\\000\\373v\\326\\2477\\011\\2419\\270\\356\\362\\252@\\371^$\\370Ri\\337\\220w\\205\\006\\236\\030\\375\\305\\312\\376\\335\\374\\017@{ML\\213r\\230IR=\\241T\\2651a\\010J\\367\\277 \\2535\\2375m\\305\\2500\\242;C\\311Q?\\252\\265\\030\\270\\334\\025\\0353_\\305U\\245\\030p|\\241_\\271M\\364\\004,\\034\\246\\342"\\364}\\335\\257\\225\\247sd5\\017\\342w\\011\\266\\234\\337k\\302k\\204\\215\\341Z\\341\\317C\\201\\332\\306T\\023\\030\\216Bn\\262\\360\\233\\255\\037\\220\\205\\370\\363\\225\\036\\251\\020n\\025\\271w\\277!\\036[\\332j\\306J\\300\\\\.\\020!y!\\366\\357\\377\\331', '1', '2022-03-16 22:22:30', '1', '2022-03-16 22:22:30', 0); -INSERT INTO "public"."infra_file_content" ("id", "config_id", "path", "content", "creator", "create_time", "updater", "update_time", "deleted") VALUES (7, 4, '53659126d51042fab67d070aa294efce.jpg', E'\\377\\330\\377\\340\\000\\020JFIF\\000\\001\\001\\000\\000\\001\\000\\001\\000\\000\\377\\333\\000C\\000\\003\\002\\002\\003\\002\\002\\003\\003\\003\\003\\004\\003\\003\\004\\005\\010\\005\\005\\004\\004\\005\\012\\007\\007\\006\\010\\014\\012\\014\\014\\013\\012\\013\\013\\015\\016\\022\\020\\015\\016\\021\\016\\013\\013\\020\\026\\020\\021\\023\\024\\025\\025\\025\\014\\017\\027\\030\\026\\024\\030\\022\\024\\025\\024\\377\\333\\000C\\001\\003\\004\\004\\005\\004\\005\\011\\005\\005\\011\\024\\015\\013\\015\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\024\\377\\302\\000\\021\\010\\001\\002\\001\\002\\003\\001\\021\\000\\002\\021\\001\\003\\021\\001\\377\\304\\000\\036\\000\\000\\003\\001\\001\\001\\001\\001\\001\\001\\001\\000\\000\\000\\000\\000\\000\\000\\010\\011\\007\\001\\006\\012\\002\\004\\005\\003\\377\\304\\000\\034\\001\\001\\000\\002\\003\\001\\001\\001\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\001\\005\\002\\004\\006\\007\\003\\010\\377\\332\\000\\014\\003\\001\\000\\002\\020\\003\\020\\000\\000\\000\\252`\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\007\\000\\000\\000\\000\\000\\350\\034:p\\350\\000\\034\\003\\240p\\000\\000\\350\\000\\034$\\001\\200\\200\\000\\377\\000\\013\\371\\200\\200\\027\\370\\341 \\007\\370\\300\\012\\002\\000\\004\\001\\002\\276\\001 \\300\\000\\013\\374\\000\\007\\010\\004]\\003\\0038\\002\\252y@)A+\\306\\234\\015\\374\\233 `\\005&\\020 5`7\\363~\\025Q\\323<\\261\\252\\021`\\277\\300\\000p\\200ES \\020\\027\\364UMP\\240\\002\\250j\\244X/\\340\\200\\015Q\\026J\\246e\\003\\376t\\312H\\262*\\205\\375\\025QV\\025R\\251\\212\\261\\177\\200\\000\\341\\000\\212\\246@ /\\350\\252\\212\\260\\017\\360\\277\\230\\011\\177I\\000\\007\\253\\022\\322\\322\\222\\014\\015\\370\\365d\\254/\\350\\252\\212\\260\\252\\225LU\\213\\374\\000\\007\\010\\004U0\\003\\001<\\240\\252\\232\\261T\\017*E\\243\\312\\225@\\233''\\225<\\261s\\305Tt\\317,E\\223\\313\\027<@G\\370\\016\\222\\010\\372''\\000\\003\\204\\377\\0002\\303\\207@j\\014\\250\\325\\205T\\325\\015X\\225\\246V5&\\246j\\202\\260eFVZaU5A\\252\\020\\023\\240p\\012\\252\\000\\000\\000O\\343\\177\\003\\000(\\011\\344I\\262*\\245\\32003\\204\\0025r\\347\\237;%\\0000\\000<\\251s\\306\\010\\237\\342\\002o\\303\\000 %\\376\\000\\003\\362/\\347\\316\\311\\253\\236X\\271\\346\\246yP0\\003\\177\\030"\\177\\234&\\310\\351\\023h~\\212PC\\003\\324\\217\\351\\277\\221ht\\207L`\\211\\374Hc\\351\\350\\000\\016\\020\\010\\312\\307\\364@\\307\\364\\340\\201\\225@\\177\\304\\000j\\204\\004\\351\\301\\2512\\241\\252"\\321\\252\\0159\\252\\212\\270\\376\\231I+\\213\\374p\\200E\\376\\000\\003\\204\\00203\\324\\224\\240J\\214\\260\\312\\017\\242a\\201$\\001\\345\\307\\370\\337\\011ZW\\362@\\016\\250\\201\\025\\350\\205\\343T%\\205\\2450\\003\\177\\030#\\204\\002/\\360\\000\\034 \\021_\\014\\000\\240''\\22103\\204\\0025r\\250\\010yO\\317\\006f\\260\\350\\360b\\322\\263!\\007\\354\\233#\\246jg\\227$\\001_\\314\\000\\324\\311\\264}=\\000\\001\\302\\001\\026\\234\\312\\206\\260\\312\\004\\004\\351*\\312\\246*\\305\\361?\\244\\377\\0003\\343\\226]\\204\\353\\277X\\314\\376M[g\\037\\362\\304L\\213\\003Vec\\372*\\306\\252U\\001\\002:U@\\000?"\\376M\\223S\\03500\\003\\000\\025\\202\\347\\221d\\276P\\376\\244c\\264\\033\\331\\357\\227_\\177\\322\\333_\\322\\365\\225\\373\\347]W\\374\\011\\221\\362u@\\011X5E&!x\\325\\024\\230\\365\\300\\000~E\\374\\213E\\317"\\311\\253\\017\\361\\276\\030\\020\\252\\223h\\2501,\\305\\026\\336S[\\275\\353\\251s\\367\\335mvG\\345\\375+)\\354\\234\\217\\240\\373\\304\\262\\313\\031\\256U1V\\001\\376\\027\\362k\\224\\000\\300\\017\\242p\\0008O\\362,\\015X\\324\\217\\350\\200\\217\\361\\001KJJ\\321\\307\\206\\371\\310\\333y\\277\\035\\355\\274m\\325?\\277\\254\\334\\361\\377\\000\\037A\\377\\000''\\325|]\\204\\354j\\023\\355\\254r\\303S5A\\252\\020\\0202\\303*2\\263\\351D\\000\\016\\022\\000uD\\010\\300\\013J`\\006\\000?\\306\\000\\007\\207Cy\\306\\332\\376\\177.\\372\\011\\365\\214_\\254\\257\\324\\371\\215\\345S\\364\\277\\021C{*L\\032A\\026ML\\252d\\002\\003\\351\\350\\233&\\246P\\020\\0008@"\\377\\000\\031A\\352H\\014:D\\332\\037\\242\\277\\235\\020\\361\\306\\245\\331\\377\\000/\\316\\356\\177\\222\\263c0\\336\\303\\326q\\266_\\305\\356\\234\\226\\313\\320\\351\\301C\\177+\\370\\277\\001\\352\\214\\260\\300I\\000W\\362\\224\\200\\001\\302\\001\\017\\351\\226\\031X\\253\\017\\340\\025PU\\005\\\\\\377\\000\\264\\313Y\\030\\177\\246\\313K\\305\\232Liq?\\353D\\376\\376\\220\\224\\300\\037\\362\\001\\217\\351\\252\\021l\\177N\\035*\\240\\000\\037\\221\\177$\\031i\\314\\254\\312I^z\\243\\350\\234\\225g\\253\\002@\\225\\354]\\017\\356\\036\\341\\246\\020\\361\\006\\001\\3768 C\\372o\\340`\\006\\000X\\000\\000?"\\376yaV*\\241\\344I\\262je\\001''\\361!\\217"U1V\\037\\323,\\032\\221\\00252m\\037I\\207\\225"\\310\\376\\210\\020\\376\\224\\004\\341\\000\\213\\374\\000\\007\\011\\376+\\006V5\\000p@\\317\\245\\003\\204\\0035c+\\032\\203S2\\263,*\\211\\225\\022\\264\\325\\215PUL\\260\\177\\016\\225L\\010\\004_\\340\\0008H\\001X7\\363\\177=A\\226\\015H\\225\\033\\371!\\217\\244\\303\\0037\\303\\327\\0319+\\312LH1\\3755cT"\\300\\252\\235\\030\\003\\324\\200\\376\\224\\004\\000\\017\\310\\277\\236X\\000\\015P\\232\\306\\376t_\\314\\004jF\\250\\365"XRr\\027\\217\\360\\277\\217\\361 \\314\\014\\372L<\\251\\026K\\240HR\\177\\237U\\000\\000p\\200CT\\000ef\\250U2V\\034\\003T2\\261\\252\\032\\241T5Q\\0028\\003\\374eD\\255-9\\225\\022\\264\\252d\\255\\032\\202\\252\\200\\001\\302\\001\\025\\360\\220`U1V*\\241\\025\\300\\237\\345(=X\\226\\236\\244\\000\\252gI\\004o\\345P"\\310\\001\\201\\216\\221\\251\\216\\230\\301\\000\\001\\302\\001\\025L\\200@_\\321U<\\240\\352\\220\\010\\257\\342\\002\\\\\\363\\312\\210\\011\\352\\311X0#\\244:d\\203-1\\352\\211Z0\\007\\015X\\213''\\226>\\236\\200\\000\\341\\000\\213N 5B\\252UB,\\023\\374\\240\\002\\254ZRV\\215H\\253\\212\\241@\\015P\\252d\\002\\032\\243+-9\\301\\0002\\301\\2472\\262\\200\\200\\001\\302\\001\\000\\001\\345\\207L\\252\\207\\312\\271\\321\\2002\\303|\\037\\322l\\225\\364\\341\\276\\236T\\232\\346\\002Zb\\030\\036\\244\\177\\205\\374\\177\\214\\000@\\213\\374\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\007\\377\\304\\000B\\020\\000\\000\\003\\006\\002\\011\\002\\005\\003\\003\\002\\003\\011\\000\\000\\000\\006\\007\\010\\000\\004\\005\\024\\025\\026\\011\\027\\001\\002\\003\\021\\023\\030\\031W\\205%8\\020 !Gg\\022&''()FAu"7901BPQ`ac\\203\\377\\332\\000\\010\\001\\001\\000\\001\\022\\000\\377\\000\\310\\367\\266\\366\\336\\333\\333{om\\355\\275\\267\\266\\377\\000\\216\\377\\000\\206\\215:4\\374\\273\\333\\365h\\370\\376\\255\\015\\275\\267\\266\\366\\337\\363/\\005\\342z\\022\\312\\274t\\015\\007\\016(\\241\\270l\\214\\253\\227TU9\\334\\326\\352\\212\\247;\\232\\335QT\\347s[\\252*\\234\\356kaN\\250L\\345''\\2329\\214&\\270\\250\\264\\271\\006^\\013\\304\\364%\\225x\\350\\032\\016\\034QCp\\331\\031W.\\250\\252s\\271\\255\\325\\025Nw5\\272\\242\\251\\316\\346\\374W\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\311y\\031\\342re''\\216F@\\370\\235\\030G\\014\\221\\224}\\302\\231P\\231\\312K43\\030MqQir\\037/TU9\\334\\326\\352\\210\\247;\\230\\3100\\317\\023\\234\\311<\\0162\\030D\\353"8\\234\\364\\333\\352\\3623\\304\\344\\312O\\034\\214\\201\\361:0\\216\\031#(\\373\\325\\021Nw1\\272\\242\\251\\316\\346\\267TU9\\334\\326\\352\\212\\247;\\232\\335QT\\347s~lQ\\275\\365\\231\\2761\\215\\003D2L\\001"c\\021\\224R\\216\\034\\206\\360\\246\\237z\\242&>\\345\\267TD\\307\\334\\306\\305\\033\\330\\231\\233\\343\\033\\003/\\275\\236\\021\\227\\202\\016=\\016\\225^:\\031\\003\\200\\365\\240\\334JFU\\365\\007 \\343\\320\\226U\\340a\\220\\304\\017E\\015\\303g\\246\\237O\\025FX\\246\\352.c\\011\\255\\332\\327\\036A\\225\\012]3Vq\\350&8\\311\\300\\315\\340\\\\\\011%iQ\\245B\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\012\\204\\274g&\\314\\321\\314p\\315\\271Z\\245\\3101\\236\\274\\310\\262`u\\023\\007\\014G\\024a\\0347\\2054\\344\\227R\\351\\232\\214O@\\311\\306q\\206l\\362\\34075U\\215b\\254\\250\\013\\025''\\225\\371p&\\270\\250\\265I\\366+\\320a\\350s\\201!\\243\\020h\\036\\262\\034\\211qe_U\\012\\242,\\226q\\024&''\\011\\3015\\340d\\011%iP^\\227Js\\266m\\322\\351Nv\\315\\222\\352]3Q\\211\\350\\0318\\3160\\315\\236\\\\\\006\\346\\252\\261\\254U\\325\\011b\\244\\362\\277.D\\327\\025\\026\\251>\\3109x\\221d\\262P\\003\\003F#\\212(\\216\\033=4\\345\\2127\\26137\\3066\\006_{<#\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSN]Q\\023\\037s\\030\\215TE\\212\\222\\255\\345\\300\\232\\342\\242\\360''\\333\\024o}fo\\214\\371\\261F\\367\\326f\\370\\306\\305\\033\\330\\241\\233\\343>8\\243{\\0233|c`g\\367\\263\\3022\\240\\305_\\226\\303\\320L\\\\eu\\307E\\225\\365/\\243.D7\\316u\\223\\270mg[S\\254\\227\\010\\336[H\\260\\321sZ\\270\\250\\263^\\247\\205\\317\\276\\242\\317\\311\\266\\355\\033\\231PaQ\\314\\221\\350&1\\263F\\334\\255Kzb\\242#y\\222"\\304\\305\\315j\\335\\255J\\372\\232\\344C|\\230Y;\\306\\267\\215\\313:\\330\\\\\\373\\024,\\374\\233%\\334)\\371l=\\003F6h\\334tY\\237L\\321\\273s}\\031Q\\021\\274\\311\\021bb\\346\\265n\\326\\245}Mr\\241\\276L,\\235\\343k\\306\\345\\235\\370b\\215\\354L\\315\\361\\215\\201\\237\\336\\317\\010\\330\\242\\373\\3523|g\\303\\003?\\275\\236\\021\\261F\\367\\326f\\370\\317\\233\\024o}fo\\214lQ\\275\\211\\231\\2763\\343\\2127\\26137\\3066\\006\\177{<#b\\215\\357\\254\\315\\361\\215\\325\\025Nw5\\260\\247T&r\\223\\315\\034\\306\\023\\\\TZ\\\\\\203/\\005\\342z\\022\\312\\274t\\015\\007\\016(\\241\\270l\\214\\253\\226\\027\\036\\372\\313?&\\337\\367\\352\\262\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271 \\345\\342z\\035*\\274\\014\\015\\030\\216+A\\270\\224\\364\\323\\2269\\177d\\374\\333\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256K\\310\\317\\023\\223)\\331\\374\\010\\325Df\\246\\332\\336\\\\\\211\\255\\332\\327\\002}\\220a\\236''9\\222x\\034d0\\211\\326Dq9\\351\\267\\326\\302\\231/\\026*O4s\\0303qQir\\014\\274\\212\\360\\3012\\253\\307 \\320|2\\214\\034\\206H\\3129\\031\\353\\314\\3649\\300\\2210p\\310qY\\016D\\270SNDj\\2433\\223uo.D\\326\\355k\\203>\\3100\\317\\023\\234\\311<\\0162\\030D\\353"8\\234\\364\\333\\353b\\260\\250\\214\\344\\331\\225\\371r&\\267kUI\\366\\352\\212\\247;\\232\\3109x\\236\\207J\\257\\003\\003F#\\212\\320n%=4\\345\\212\\272\\2413\\223fW\\345\\310\\232\\335\\255U''\\333\\252*\\234\\356o\\313\\277v\\215:t\\377\\000\\243\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSNLF\\245\\3235H\\326\\362\\3443qQx\\023\\354h\\025\\302b`w\\023\\007\\014\\241\\224a\\0347\\2054\\345\\325\\0211\\3671\\210\\325HX\\251\\032\\336\\\\\\211\\256*/\\002}\\214\\365\\346E\\223\\003\\250\\2308b8\\243\\010\\341\\274)\\247%\\344W\\211\\316d\\2369\\006\\203\\341\\225\\221\\034NFQ\\313\\012t\\276f\\246\\314\\321\\314`\\315\\273Z\\245\\310i3\\327\\231\\026L\\016\\242`\\341\\210\\342\\214#\\206\\360\\246\\234\\233\\025t\\272g),\\257\\313\\220\\315\\305E\\252O\\262]TE\\2221"\\203D\\341\\306&\\263\\314\\200\\324\\325V\\012\\203\\014\\360\\3012\\253\\300\\343!\\204N\\214\\034\\206OM\\276\\256_\\356Ger\\347\\374\\211e\\317W\\230\\320+\\204\\304\\300\\356&\\016\\031C(\\3028o\\012i\\311\\007 \\343\\320\\226U\\340a\\220\\304\\017E\\015\\303g\\246\\237O\\025DY&\\332.c\\011\\255\\332\\327\\036A\\227\\221\\236\\0309\\225x\\344d\\017\\211\\326C\\221)\\031G\\336\\227Js\\266m\\205:^3\\223^h\\3468f\\334\\255R\\344\\030\\317^dY0:\\211\\203\\206#\\2120\\216\\033\\302\\232r3\\320a\\350L\\001"c\\021\\220\\036\\214\\034\\206\\360\\246\\237p4\\373\\333\\341\\030\\317^dY0:\\211\\203\\206#\\2120\\216\\033\\302\\232rlV\\022\\361\\234\\244\\262\\303.C7\\025\\026\\251>\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSN_.(\\276\\372\\214\\337\\030\\311p\\215\\346H\\364\\015\\0275\\253v\\2655\\352_L\\030?1fK*#\\313\\231#\\320LcQm\\332\\324\\257\\246\\3642\\374\\330\\337\\364_\\374\\305\\231,\\250\\217.d\\217A1\\215E\\267k2\\276\\230\\227\\261W\\346L\\364\\015\\0279]nV\\246}Ov\\217\\322\\312\\203\\012\\216d\\217A1\\215\\2326\\345j[\\323\\025\\021\\345\\313i\\026&1\\250\\267\\025\\026W\\323:\\345~\\023nF\\272\\222\\177Q\\227\\266]^\\237\\343]\\014\\2776\\262\\032C\\\\\\230\\336\\337\\275\\257\\033\\226I\\225\\006\\025\\034\\311\\236\\202c\\0334m\\312\\324\\257\\246\\252#\\313\\226\\322,LcQn*,\\257\\246\\2565\\313\\316}\\223\\373*\\316\\266\\247Y/aO\\314\\231\\026\\0321\\263F\\335\\255L\\372b^\\305_\\2313\\3204\\\\eu\\271Z\\232\\365%\\312\\27191\\262\\177e^7,\\353r3\\324\\223\\372\\214\\275\\262\\356\\364\\377\\000\\032TDo2$X\\230\\271\\255[\\325\\251_SC(k\\223\\013\\333\\367\\255\\341r\\310\\266(\\276\\372\\214\\337\\031\\360\\335\\241\\261E\\367\\326gx\\317\\233\\024o}fo\\214b\\270\\321\\023\\023\\003\\270`\\304\\033\\024\\243\\010\\341\\274YW\\323\\305Q\\231\\252F\\213\\230\\302k\\212\\213\\307\\220d\\034\\203\\210\\263\\245(\\001\\206C\\020=hG\\022\\236\\232}\\352\\212\\247;\\232\\307\\222\\2433\\224\\235\\0271\\304\\327\\035\\027\\217!\\360+\\320a\\026L\\016\\241\\243\\020p\\036\\214#\\206\\361e_wh\\321\\253\\271\\227\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\311.\\252#5g\\036\\201\\222p\\343\\023^\\005\\300\\222j\\253\\005\\351v\\230\\373h\\305qZ\\031&\\000\\220\\320p6\\027G\\016Cx\\262\\256H9x\\236\\207J\\257\\003\\003F#\\212\\320n%=4\\345\\273\\351\\271\\227\\202\\361=\\011e^:\\006\\203\\207\\024P\\3346FU\\313\\024obfo\\214l)\\222\\361b\\244\\263C1\\2037\\025\\026\\227 \\305qZ\\031&\\000\\220\\320p6\\027G\\016Cx\\262\\256X\\\\{\\353,\\374\\233c\\227\\366O\\315\\261^\\274\\317B`\\011\\015\\007\\003G\\024`\\3447\\213*\\344\\274\\214\\36192\\223\\307# |N\\214#\\206H\\312>\\341N\\250\\014\\325''\\2329\\214&\\270\\250\\264\\271\\015\\006z\\014"\\316q\\324Lb1\\003\\326Dq.\\024\\323\\357\\303\\024o}fo\\214\\371\\261F\\367\\326f\\370\\306^Ex\\234\\346I\\343\\220h>\\031Y\\021\\304\\344e\\034\\260\\246K\\306rm\\315\\014\\306\\014\\333\\265\\252\\\\\\207\\300\\3204C$\\300\\022&1\\031E(\\341\\310o\\012i\\367\\252"c\\356[uDL}\\314\\370\\021\\211t\\316RU\\274\\270\\014\\334T^\\004\\373%\\325DY#\\022(4N\\034bk<\\310\\015MU`\\260|,\\024\\253\\374M\\331\\323n\\004v\\205l6\\332\\377\\000\\243]\\365\\014"\\367Dn\\342,\\324\\2745\\305\\217\\342\\031)\\306Q\\330`\\006\\024y\\316#0\\337\\307\\021\\2503\\344b_\\365\\270\\364O\\005\\3674B\\335\\023\\301\\235\\316\\020\\262p''\\\\\\023\\231.\\035.\\334"/\\221\\227H4\\307\\015\\373m\\023ww\\331k\\3556\\272v\\233=\\236\\256\\215\\372\\332\\370\\250&c%Ml\\212\\335r\\314;s\\352B*s\\272R\\352\\241,\\221\\211\\022\\031''\\01615\\236c\\206\\246\\252\\260T\\030g\\206\\011\\225^\\007\\031\\014"t`\\3442zm\\365r\\350\\352Ier\\347\\374\\211e\\317W\\231.\\252"\\311\\030\\221A\\242p\\343\\023Y\\346@jj\\253\\005^\\013\\304\\213:R\\200\\350\\032\\016\\034V\\204q)\\031W-\\314\\203\\227\\211\\026K%\\00004b8\\242\\210\\341\\263\\323NIu.\\231\\250\\304\\364\\014\\234g\\030f\\317.\\003sUX\\322\\345\\376\\344\\266W.\\177\\310\\226\\\\\\365y\\215\\002\\270LL\\016\\342`\\341\\2242\\214#\\206\\360\\246\\234\\276\\\\Q}\\365\\031\\2761\\225\\021\\345\\313q\\026&1\\250\\267\\025\\026W\\323\\020\\322\\344\\347:\\366\\375\\225g[R?\\005DF\\363$E\\011\\213\\232\\325\\275Z\\225\\365>\\206\\177\\233[\\241\\237\\346\\337\\206\\006\\177{<#b\\213\\357\\250\\315\\361\\214\\377\\000\\372\\265\\335v\\232\\232\\232\\372vz\\332\\332uvz5\\366;-M\\206\\317F\\317g\\253\\243SSWF\\355\\032\\242\\210\\373\\270P5\\025\\215=~\\251X{\\256\\325\\357j\\311\\224\\357\\212\\035\\241\\241\\003\\304v\\013\\250\\036\\215\\301\\342\\373hk\\313\\203\\343\\356\\302\\036\\351\\267yy\\332\\352l6\\033\\035M;M\\246\\324\\240Pp#\\224H/\\203\\301\\235_\\266\\033@\\356\\321\\337F\\266\\333s:;j\\303\\236\\037uvzt\\350\\330\\353i\\325\\333h\\331\\252\\014*9\\223<\\304\\3066h\\333\\225\\251_L\\372\\262\\032\\\\\\234\\230\\336\\333\\301W\\215\\313$\\312\\210\\362\\346H\\364\\023\\030\\324[z\\265+\\351\\235\\014\\27762\\344C\\\\\\230\\331_\\275o\\033\\226u\\222\\366\\024\\374\\311\\021a\\243\\0334m\\312\\324\\327\\246*"7\\231",L\\\\\\326\\255\\352\\324\\257\\251\\377\\000\\321\\207\\363\\026d\\267#]I\\177\\250\\333\\333.\\357O\\361\\257\\223v\\375\\032tic=\\006\\021g8\\352&1\\030\\201\\353"8\\227\\012i\\365.\\252#5g\\036\\201\\222p\\343\\023^\\005\\300\\222j\\253\\005\\\\\\277\\333j\\312\\345\\317\\370\\352\\364\\236\\2572\\0143\\304\\3472O\\003\\214\\206\\021:\\310\\216''=6\\372\\274\\214\\36192\\223\\307# |N\\214#\\206H\\312>\\341N\\250L\\345%\\2329\\216&\\270\\250\\264\\271\\006^\\013\\304\\364%\\225x\\350\\032\\016\\034QCp\\331\\031W$\\030W\\206\\016e^\\007\\006\\214!\\225\\220\\344Nzm\\310\\215K\\245\\222m\\255\\345\\310f\\335\\255p''\\333\\024o}fo\\214g\\255?O\\377\\000M\\233o\\3721\\3766r\\330\\006\\242`\\227-\\216\\326"%\\217\\303^\\035\\366.\\2607\\261\\320*:#{\\015\\350\\016\\355\\335\\342\\373}\\216\\335\\205\\003a\\331\\211\\010\\265#\\241\\310+\\2049\\357i\\263\\250\\304\\023|.\\026\\370#\\035\\212\\335\\366\\273-H\\214E\\347a\\017\\333\\271ng\\257\\246\\321\\347O\\377\\000V\\315\\227r\\362=\\011eZ9\\007\\003G\\024`\\3346FU\\313\\245\\332c\\355\\233t\\273L}\\263n\\227i\\217\\266m\\325\\025Nw5\\220\\316\\236\\244\\267\\2671\\177\\310\\226\\\\\\215\\011\\212\\342\\2642L\\001!\\240\\340l.\\216\\034\\206\\361e\\\\\\272\\242\\251\\316\\346\\262\\031\\323\\324\\226\\366\\346/\\371\\022\\313\\221\\2411\\\\V\\206I\\200$4\\034\\015\\205\\321\\303\\220\\336,\\253\\227\\311\\277v\\215:t\\377\\000\\243\\031\\353\\314\\213&\\007Q0p\\304qF\\021\\303xSNH0\\317\\014\\023*\\274\\0162\\030D\\350\\301\\310d\\364\\333\\351\\032\\250\\213%#[\\313\\2215\\305E\\340O\\266(\\336\\372\\314\\337\\030\\311u.\\231\\250\\304\\364\\014\\234g\\030f\\317.\\003sUX\\327TD\\307\\334\\266+\\215\\020\\311\\316\\004\\206\\214A\\261J\\300r%\\305\\225}\\352\\210\\230\\373\\230\\313\\233ORK+\\227?\\344K.z\\272\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSNX)}\\012\\363;\\375\\351\\301\\240G\\210\\350$il F\\024\\263\\243\\273\\336\\323\\364\\351\\331\\005\\204\\033\\023T\\307y\\177z\\200?\\215a\\021\\207\\347\\027\\347\\247c\\376\\032\\346ED\\236,m\\236\\2443R \\034\\210\\277m!\\201\\302\\244\\033\\037}\\025@v\\300=\\274/e\\017\\330;k\\273\\215\\341c8\\2748\\276\\015\\232\\016\\217\\033\\343\\220\\215\\226\\207\\230\\233\\014\\224X(\\004\\361\\002v\\212\\275\\277k\\274\\306\\234\\347\\334\\266@\\261\\364\\010\\315\\016j\\010CO\\325(;\\336\\246\\355\\213\\312\\355A\\247\\241\\322\\253\\207#\\020h\\036\\262\\033\\211H\\312\\276\\266\\006\\177{<#b\\215\\357\\254\\315\\361\\215\\322\\351Nv\\315\\260\\247K\\306rl\\315\\034\\306\\014\\333\\265\\252\\\\\\203/\\004\\034z\\035*\\274t2\\007\\001\\353A\\270\\224\\214\\253\\353aL\\250K\\024\\331\\2329\\214&\\267kT\\271\\006^Fx`\\346U\\343\\221\\220>''Y\\016D\\244e\\037~UA\\205G2G\\240\\230\\306\\315\\033r\\265-\\351\\237VCK\\227\\223\\013\\337\\366M\\343r\\3117#]I?\\250\\333\\333.\\357O\\361\\245DF\\363"E\\211\\213\\232\\325\\275Z\\225\\365>\\206\\277\\233Y.\\021\\274\\266\\221a\\242\\346\\265qQf\\275I.\\021\\274\\311\\036\\201\\242\\346\\265n\\326\\246\\275M\\015!\\276L/o\\336\\327\\215\\313$\\330\\242\\373\\3533|c`\\241\\377\\000,L\\357\\367\\247\\006[P=\\253\\374j\\017\\250\\353\\265\\327\\330\\276\\305\\003\\361W'']\\261%\\002l\\341\\261!\\010\\212\\003\\005x\\331\\353\\357\\011\\200I\\330\\354(C\\241\\335\\373a\\252\\355\\006\\324\\330\\353\\273m\\2302.\\020\\214 \\000\\000\\233\\3243c\\267z\\011\\3046P\\330f\\303o\\033\\212$D\\223\\022\\212F!\\316\\361\\347\\320\\224/\\211!\\327+\\360\\233*\\014*9l"\\304\\3066h\\334tY_M\\300\\317\\357o\\204eA\\205G2g\\240\\230\\306\\315\\033r\\265+\\351\\252\\210\\362\\345\\264\\213\\023\\030\\324[\\212\\213+\\351\\275s?\\011\\267\\\\\\337\\302L\\2500\\247\\345\\260\\213\\023\\030\\331\\243q\\321e}1\\015!\\276s\\257o\\336\\326u\\265$\\312\\210\\215\\345\\264\\364\\023\\0275\\253\\212\\213+\\352\\177*\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271t\\273L}\\263lU\\322\\361b\\2332\\277.C6\\355j\\251>\\305z\\363=\\011\\200$4\\034\\015\\034Q\\203\\220\\336,\\253\\222\\3623\\304\\344\\312O\\034\\214\\201\\361:0\\216\\031#(\\373\\205:\\2413\\224\\226h\\3468\\232\\342\\242\\322\\344\\031x/\\023\\320\\226U\\343\\240h8qE\\015\\303de\\\\\\212\\364\\030E\\223\\003\\250h\\304\\034\\007\\243\\010\\341\\274YW\\334U\\225\\011\\234\\2332\\277.\\004\\326\\345j\\251>\\311u.\\226K8\\212\\015\\034g\\030f\\3602\\004\\223UX\\326\\011\\377\\000\\362\\304\\315\\377\\000{peJ\\351\\277hZ\\304vZ\\3739\\2471N\\307SWe\\251\\243F\\256\\215\\3324h\\321\\243\\377\\000M\\337M?M\\377\\000\\374\\001\\0177\\335\\001\\215G\\321\\244)\\357a\\257\\255\\266\\327\\324\\324}\\013\\212!\\243\\030&\\302-\\011\\332\\353\\355\\3346\\373\\370{@\\344z"\\374\\255B\\301\\300\\373\\203\\336\\327o\\005\\024<\\355\\242\\232\\346(\\006\\004g\\204\\243aQ;\\225N\\003\\023v\\331\\354\\037\\035:]\\246N\\3326(\\336\\304\\314\\337\\030\\304b\\2423\\223eo.\\004\\326\\355k\\201>\\335QT\\347s[\\024obfo\\214\\370\\232\\005hd\\347\\002D\\301\\303(]`9\\022\\341M9.]=6\\354\\256\\\\\\377\\000\\216\\257I\\352\\363%\\324\\272Y,\\342(4q\\234a\\233\\300\\310\\022MUc_.(\\336\\372\\314\\337\\031\\360\\030a\\247c\\0216\\200\\207\\256&0v\\334\\333\\277\\304\\235\\036\\335\\264\\012\\3000\\261\\203\\3541\\361\\377\\000g\\255\\265x\\206\\353m5\\335t\\353\\225\\373/\\257\\015\\367_WF\\237\\364\\332\\025\\357;\\377\\000\\340~\\331\\351\\325h\\332b\\213\\273F\\037c!1\\006\\3241\\021}\\327\\323\\264{\\331\\270\\201\\004N\\220\\367}G\\355M\\233\\333\\346\\256\\317WF\\333j\\230\\203{7\\015\\251\\215\\026\\333\\270\\352l"o\\202g\\215\\216\\323k\\266\\332\\352m6\\357\\272\\272\\272\\3325\\264\\352j\\354\\365u\\233\\024?}\\006_\\214d\\034\\203\\217BYW\\201\\206C\\020=\\0247\\015\\236\\232}\\337\\243\\364\\357c=y\\221d\\300\\352&\\016\\030\\216(\\3028o\\012i\\310\\257^dY\\316:\\206\\203\\201\\303\\212\\310\\216%\\305\\225r!\\0248B`\\356\\237\\243\\216\\371\\317\\371\\001\\335\\260\\363\\003N\\220\\210\\3748\\351\\036\\017\\211\\334"\\320w\\277\\327\\300|\\326\\027\\3035\\366z\\372\\273\\030\\273\\276\\246\\276\\267\\376(V\\337Q\\357N\\256\\301\\317Wi\\254\\355\\372\\270\\233g\\245?\\205G2G\\230\\224\\306\\315\\033r\\263+\\351\\251{\\025~d\\317@\\321q\\225\\326\\345jk\\324\\267\\350\\321\\243v\\226\\305\\023\\337Y\\231\\343\\031/aO\\313a\\350\\0321\\263F\\343\\242\\314\\372b\\345C\\\\\\347Y_\\275\\254\\353ju\\225\\021\\033\\313i\\350&.kW\\025\\026W\\324\\372\\031~ln\\206\\237\\233\\033\\241\\227\\346\\317\\227v\\375\\032tic=\\006\\021g8\\352&1\\030\\201\\353"8\\227\\012i\\367\\013\\217}e\\237\\223c\\305.\\026*J\\213\\230\\341\\233\\212\\213\\307\\220n\\227i\\217\\266l\\250R\\351d\\214H\\2411\\306N\\006l\\363 5+J\\215\\036*\\220\\316R4\\\\\\306\\023\\\\T^<\\203\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256M\\216g\\331?6\\3109\\007\\021gJP\\003\\014\\206 z\\320\\216%=4\\372\\274\\020q\\026K%\\001\\320\\310\\034\\007\\242\\210\\341\\2622\\257\\277\\253K \\364\\026F\\035ID\\0163\\030\\202k\\002H\\224\\364\\323\\342VP\\306\\002\\305>\\303\\005\\001\\273\\037\\272\\313\\261\\034\\325R\\017\\212\\252],\\223^W\\345\\310j\\201Z\\252O\\266\\030\\220\\007\\027\\344:[m\\266\\333\\035\\372\\372\\365&\\324\\014C\\2654\\357\\320\\357\\243{b\\242\\246\\014\\244\\313\\225\\372\\013Q%\\267Z\\252O\\267TU9\\334\\326\\302\\343\\337Yg\\344\\333\\025uDg&\\314\\257\\313\\2215\\273Z\\252O\\262]K\\245\\222\\316"\\203G\\031\\306\\031\\274\\014\\201$\\325V5\\325\\025Nw5\\260\\247T&r\\223\\315\\034\\307\\023\\\\tZ\\\\\\203\\031\\3500\\2139\\307Q1\\210\\304\\017Y\\021\\304\\270SO\\253\\310\\317\\023\\223)\\221\\252\\210\\261R5\\275\\005\\310\\232\\342\\242\\360g\\333\\024o}fo\\214eB\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\245\\312\\234\\355\\233%\\325DY#\\022(4N\\034bk<\\310\\015MU`\\277\\014Q\\275\\365\\231\\2763\\346T\\030Ts$z\\011\\214l\\321\\267+R\\336\\230\\2501W\\346L\\213\\023\\027\\031]nV\\245}I\\015.NK\\357\\177\\331W\\215\\313"\\335s\\177\\011\\267<\\235I?\\247+''.\\257O\\362_\\246\\014?\\230\\263%\\225\\021\\345\\314\\221\\350&1\\250\\266\\365jW\\3237\\267\\321\\261E\\367\\326gx\\306T\\030S\\362\\330E\\211\\214l\\321\\270\\350\\262\\276\\230\\206\\227''%\\367\\276\\340U\\343r\\3117#]I\\177\\250\\333\\333.\\357O\\361\\244\\275\\205?-\\247\\240h\\306\\315\\033\\216\\2133\\351\\230\\345}\\223\\363l\\227\\260\\250\\346L\\213\\015\\030\\331\\243nV\\246\\2751Q\\021\\274\\310\\221bb\\346\\265oV\\245}M\\015!\\276Lom\\343k\\306\\345\\222lQ}\\365\\231\\2761\\225\\006+\\034\\311\\221bb\\347+\\255\\312\\324\\257\\251\\340g\\367\\267\\3026(\\336\\372\\314\\337\\030\\311p\\362\\345\\264\\364\\015\\030\\324[\\212\\2135\\351\\235s?\\011\\267#}I?\\250\\313\\333.\\357O\\361\\255\\355\\277F\\355-\\212/\\276\\2437\\306|\\313\\301x\\236\\204\\262\\257\\035\\003A\\303\\212(n\\033#*\\344\\203\\012\\360\\301\\314\\253\\300\\340\\321\\2042\\262\\034\\211\\317M\\271b\\256\\227\\313\\024\\333\\225\\371r\\031\\267kUI\\366A\\3108\\213:R\\200\\030d1\\003\\326\\204q)\\351\\247\\325B\\227K$bE\\011\\2162p3g\\231\\001\\251ZTi\\015\\177r[\\333\\230\\317\\344[2F\\202\\335.\\323\\037l\\331\\007/\\023\\320\\351U\\340`h\\304qZ\\015\\304\\247\\246\\234\\261WT&rl\\312\\374\\270\\023[\\265\\252\\244\\373\\032\\006\\210\\230\\347\\035\\304\\306#(\\245dG\\022\\341M>\\232\\005hd\\347\\002D\\301\\303(]`9\\022\\341M9t\\274L\\235\\264b\\270\\255\\014\\223\\000Hh8\\033\\013\\243\\207!\\274YW&<\\222\\351b\\244\\250\\271\\214\\031\\270\\250\\274y\\006T*\\210\\315F''\\240\\230\\234''\\004\\326yp\\033\\225\\245AW\\221\\236''&Rx\\344d\\017\\211\\321\\204p\\311\\031G\\336\\250\\212s\\271\\214\\227R\\351d\\263\\210\\240\\321\\306q\\206o\\003 I5U\\215t\\273L}\\263b5.\\026)\\266\\267\\227\\001\\233v\\265\\300\\237lQ\\275\\365\\231\\2763\\341\\243O\\351\\372\\350b\\275y\\236\\204\\300\\022\\032\\016\\006\\216(\\301\\310o\\026U\\313\\252*\\234\\356kuES\\235\\315d\\272\\227K%\\234E\\006\\2163\\2143x\\031\\002I\\252\\254k\\344\\337\\273F\\235:\\177\\321\\214\\365\\346E\\223\\003\\250\\2308b8\\243\\010\\341\\274)\\247.\\250\\211\\217\\271\\215\\325\\0211\\3671\\272\\242&>\\3467TD\\307\\334\\306#U\\031b\\244\\253yr&\\270\\250\\274\\011\\366^\\0108\\364:Ux\\350d\\016\\003\\326\\203q)\\031W\\325B\\250\\213%\\234E\\011\\211\\302pMx\\031\\002IZT\\027\\012t\\274g&\\314\\321\\314`\\315\\273Z\\245\\3102\\360A\\307\\241\\322\\253\\307C p\\036\\264\\033\\211H\\312\\276\\341q\\357\\254\\263\\362m\\216g\\331?6\\330\\\\{\\023,\\374\\233/"\\274Ns$\\361\\3104\\037\\014\\254\\210\\342r2\\216Hc\\373m\\336\\274\\305\\377\\000\\035\\336r4&+\\215\\020\\311\\316\\004\\206\\214A\\261J\\300r%\\305\\225}\\351t\\247;f\\330S\\245\\34396f\\216c\\006m\\332\\325.A\\227\\202\\016=\\016\\225^:\\031\\003\\200\\365\\240\\334JFU\\365y\\025\\342s\\231''\\216A\\240\\370edG\\023\\221\\224r\\351v\\247;h\\306\\201\\\\&&\\007q0p\\312\\031F\\021\\303xSNF\\201\\242\\031&\\000\\2211\\210\\312)G\\016CxSO\\244j\\242,T\\215oAr&\\270\\250\\274\\031\\366\\305\\033\\337Y\\233\\343\\030\\3204C$\\300\\022&1\\031E(\\341\\310o\\012i\\367\\025\\205BX\\251,\\260\\313\\2215\\305E\\252O\\374\\370\\242\\373\\3523|ct2\\374\\330\\335\\014\\377\\0006\\267C/\\315\\214\\2500\\250\\345\\260\\213\\023\\030\\331\\243q\\321e}7\\003/\\275\\236\\021\\2677#]77\\250\\313\\3271l\\277\\361\\256\\271\\177\\204\\333\\256o\\341&K\\330Tr\\330z\\006\\214l\\321\\270\\350\\263^\\233\\216g\\331?6\\330\\\\\\373\\024,\\374\\233}\\031r!\\256s\\354\\255\\303k>\\332\\236d\\270F\\362\\332E\\206\\213\\232\\325\\305E\\232\\365.\\271\\277\\204\\333\\256_\\3416\\353\\233\\370I\\225\\021\\345\\313q\\026&1\\250\\267\\025\\026W\\323\\020\\322\\344\\347:\\366\\321d\\331\\366\\324\\223b\\213\\357\\254\\316\\361\\214\\250\\210\\336d\\210\\2611sZ\\267kR\\276\\244\\206\\220\\327&7\\267\\357k\\306\\345\\222lQ}\\365\\231\\3361\\261D\\366(f\\370\\306Chk\\234\\373\\333x\\332\\316\\266\\244\\233\\241\\227\\346\\337\\233\\024o}fo\\214e\\344g\\211\\311\\224\\2369\\031\\003\\342ta\\0342FQ\\367\\252"\\234\\356cuES\\235\\315lQ\\275\\211\\231\\2761\\2602\\373\\331\\341>\\011uQ\\031\\2538\\364\\014\\223\\207\\030\\232\\360.\\004\\223UX.*\\351x\\261M\\271_\\227!\\233v\\265T\\237\\370 \\345\\342z\\035*\\274\\014\\015\\030\\216+A\\270\\224\\364\\323\\2269\\177d\\374\\333\\025\\353\\314\\364&\\000\\220\\320p4qF\\016Cx\\262\\256]QT\\347s[\\252*\\234\\356kuES\\235\\315n\\227i\\217\\266m\\322\\3552v\\321\\227\\221^\\030&Ux\\344\\032\\017\\206Q\\203\\220\\311\\031G$\\272\\250\\214\\325\\234z\\006I\\303\\214Mx\\027\\002I\\252\\254\\024\\214K\\245\\212m\\255\\345\\310f\\335\\255p''\\333\\024o}fo\\214n\\250\\252s\\271\\255\\325\\021Nw1\\215\\003DLs\\216\\342c\\021\\224R\\262#\\211p\\246\\237R\\352\\2423Vq\\350\\031''\\01615\\340\\\\\\011&\\252\\260U\\313\\375\\266\\254\\256\\\\\\377\\000\\216\\257I\\352\\363 \\303:4\\376\\237\\256\\206+\\327\\231\\350L\\001!\\240\\340h\\342\\214\\034\\206\\361e\\\\\\212\\343DLL\\016\\341\\203\\020lR\\214#\\206\\361e_z\\242)\\316\\3462]K\\245\\222\\316"\\203G\\031\\306\\031\\274\\014\\201$\\325V4\\203\\012\\360\\301\\314\\253\\300\\340\\321\\2042\\262\\034\\211\\317M\\271t\\273L\\235\\264n\\227i\\217\\266lh\\025\\241\\223\\234\\011\\023\\007\\014\\241u\\200\\344K\\2054\\344G%\\302\\3057V\\362\\3443n\\326\\270\\023\\354\\274\\027\\211\\350K*\\361\\3204\\0348\\242\\206\\341\\2622\\256X\\\\{\\353,\\374\\233\\036)t\\262RT\\\\\\306\\014\\334T^<\\203/"\\2740L\\252\\361\\3104\\037\\014\\243\\007!\\2222\\216]QT\\347s[\\012uBg)<\\321\\314a5\\305E\\245\\3102\\360^''\\241,\\253\\307@\\320p\\342\\212\\033\\206\\310\\312\\271\\025\\3500\\213&\\007P\\321\\2108\\017F\\021\\303x\\262\\257\\270\\253\\252\\02396e~\\\\\\011\\255\\312\\325R}\\272\\242\\251\\316\\346\\377\\000\\356\\177\\377\\304\\000>\\020\\000\\001\\002\\005\\001\\006\\003\\007\\003\\004\\000\\004\\007\\000\\000\\000\\002\\003\\023\\000\\001\\004\\021\\024\\025\\005\\022!"23\\020\\205\\324\\026 #4c\\224\\34415A$QabB`q\\202\\0060R\\201\\261\\263\\321\\377\\332\\000\\010\\001\\001\\000\\023?\\000\\377\\000\\2214\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\201\\262\\3754h\\033/\\323F\\201\\262\\3754h\\033/\\323F\\005-+/e\\271\\330H/v\\2024\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\201\\262\\3754h\\033/\\323F\\201\\262\\3757\\216\\223@\\273nP \\251\\363\\252\\201\\037\\0238a%\\333r\\275\\004\\217\\221Q \\235\\300\\316\\\\F0)iY{-\\316\\302A{\\264\\036\\356\\201\\262\\3754h\\033/\\323C\\011 \\343u\\365\\011\\007"B!+\\000\\004\\270\\0140\\222\\355\\271^\\202G\\310\\250\\220N\\340g.#\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\336\\367\\225\\322F:\\253\\266\\342\\240\\220r$$s\\271\\230K\\200\\316\\321\\240mOM\\032\\006\\324\\364\\321\\346\\224\\221\\367\\361\\253P \\343t\\010$|\\212\\256''+\\030F\\255@\\273nP.\\220r$\\271\\037\\0238\\300\\252\\252y\\226\\335\\354$v\\263\\241\\325\\031\\364\\26498\\364\\251R\\255\\360j\\225I`\\262\\310*\\034\\341\\030\\025T98\\365IU-\\361\\252\\222I\\020\\262(*|\\347\\031\\364\\265O3\\226\\357aS\\265\\235\\010\\322+\\327m\\304\\301P\\347I\\002\\011\\334\\014''\\300\\243>\\226\\273\\033"\\225ZT~\\015*\\252\\254wYt\\203\\220#\\002\\252\\225\\227\\261\\032\\357\\244\\027\\273G\\032\\275\\002\\0166\\251\\244|\\212\\256''+\\030\\034\\270\\214`UP\\344\\343\\325%T\\267\\306\\252I$B\\310\\240\\251\\363\\234k\\373/\\324\\306\\277\\262\\375Lg\\322\\327cdR\\253J\\217\\301\\245UU\\216\\353.\\220r\\004`UR\\262\\366#}\\364\\202\\367h\\343I\\257]\\267+\\327T9\\322@\\203\\240\\302<\\322\\222>\\3764\\212\\365\\333q0T9\\322@\\202w\\003\\011\\360(\\3206\\247\\246\\214\\012\\252V^q\\256\\372A{\\264}7\\217+\\244\\367\\274\\256\\222<\\316\\223\\307\\315)#\\357\\343_\\305y\\352T\\227\\355b\\235\\254\\355\\272\\2744\\234\\354\\214\\206>\\272[\\233\\254F&+\\317U*\\277k|\\355gwz\\247\\036YW\\341\\240e2\\315*Hwr\\202\\367j\\3751\\211\\224\\3135I/\\332\\337\\013\\335\\255\\336\\250\\322pq\\261\\330\\372\\312\\357\\357?\\036gW\\032\\006+\\317R\\252\\207w(\\355go\\323\\343\\211\\224\\3135I/\\332\\337\\013\\335\\255\\336\\250\\322pq\\261\\330\\372\\312\\357\\357?\\341\\346\\224\\221\\367\\361\\345\\224\\276\\037\\177\\036WI\\357y]$y\\245''\\217\\232RG\\337\\307\\225\\322F\\201\\262\\3754`R\\322\\262\\366[\\235\\204\\202\\367h#I\\240]\\267(\\020T\\371\\325@\\217\\211\\234y]_\\206\\223@\\273nP \\251\\363\\252\\201\\037\\0238\\322h\\020q\\272\\005\\325\\016t\\220\\023\\340a\\037a\\032E\\002\\355\\270\\251\\252|\\352\\240G;\\231\\234\\370\\2240\\222\\355\\271^\\202G\\310\\250\\220N\\340g.#\\032\\006\\313\\364\\321\\240l\\277M\\032M\\002\\0167@\\272\\241\\316\\222\\002|\\014#\\354<<\\322\\222>\\376<\\256\\223\\303\\357\\343\\312\\351=\\357+\\244\\215\\003jzh\\3206\\247\\246\\215\\003jzh\\322k\\320q\\272\\364\\025>uP\\020\\350\\003\\217\\277\\217+\\244\\214\\372Z\\354l\\212UiQ\\3704\\252\\252\\261\\335e\\322\\016@\\214\\012\\252V^q\\276\\372A{\\264}7\\215"\\275v\\334L\\025\\016t\\220 \\235\\300\\302|\\0125z\\005\\333qPH9\\022\\\\\\216w3\\011p\\030\\317\\245\\245e\\347\\033\\357\\252\\027\\273G\\323x\\300\\252\\256\\306\\310\\252V\\251\\037\\215J\\222\\250\\235\\321]#\\3448\\325\\350\\027m\\305A \\344Ir9\\334\\314%\\300bu\\364\\264\\254\\274\\343}\\365B\\367iN\\233\\303\\351.\\333\\211\\012\\241\\316\\221\\020N\\340a>\\005;G\\232RG\\337\\306\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\036iI\\023\\257\\245\\245e\\347\\033\\357\\252\\027\\273Jt\\336\\037Iv\\334HU\\016t\\210\\202w\\003\\011\\360)\\332<\\322\\2220*\\252\\236g-\\336\\302Gk:\\021\\240mOM\\032\\006\\324\\364\\321\\240mOM\\014*\\203\\215\\320 \\221\\362*"r\\261\\201\\313\\210\\373\\332\\006S,\\322\\244\\207w(/v\\257\\323\\036\\312~l{)\\371\\261\\354\\247\\346\\307\\262\\237\\233\\032N\\016>>G\\327W\\177y\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\363:X\\373\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\363:H\\325pq\\261\\362>\\202\\273\\373\\317\\306^S,\\322\\244\\207wp/v\\267\\272e\\032\\376S,\\325$\\277k\\024/v\\255\\325\\037\\177\\032\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\325$\\277k\\024/v\\255\\325\\032\\266\\0166>G\\320W\\177y\\370\\313\\312e\\232T\\220\\356\\356\\005\\356\\326\\367L\\243\\314\\351c\\357\\343@\\312e\\232T\\220\\356\\345\\005\\356\\325\\372c\\023)\\226j\\222_\\265\\276\\027\\273V\\352\\224{)\\371\\261\\354\\247\\346\\307\\262\\237\\233\\036\\312~l{)\\371\\277\\371\\030\\024\\265O3\\210\\337}#\\265\\2358a$\\034n\\276\\241 \\344HD%`\\000\\227\\001\\206\\022]\\267+\\320H\\371\\025\\022\\011\\334\\014\\345\\304c\\002\\226\\225\\227\\262\\334\\354$\\027\\273A\\341\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\037\\272fb1\\215\\363\\317\\267\\271\\224\\277n\\327\\337\\215\\003e\\372h\\310U\\007\\033T\\025\\016t\\210NV4\\302|\\012W\\215\\177jz\\230\\327\\366\\247\\251\\360\\300\\245\\252y\\227\\033\\357\\244v\\263\\247\\323\\014$\\203\\215\\327\\324$\\034\\211\\010\\204\\254\\000\\022\\340>\\031\\365T\\254\\275\\226\\347aP\\275\\332\\010}U\\333r\\201\\005O\\235R#\\235\\314\\316|J4\\212\\004\\034mPT9\\322@NV0\\011\\360(\\300\\245\\252y\\227\\033\\357\\244v\\263\\247\\323\\014$\\203\\215\\327\\324$\\034\\211\\010\\204\\254\\000\\022\\340>\\030\\024\\265O3\\210\\327}#\\265\\2358\\3206_\\246\\215&\\201\\007\\033\\240]P\\347I\\001>\\006\\021\\201KT\\3638\\215\\367\\322;Y\\323\\215\\003e\\372o{H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\360\\317\\245\\245e\\347\\033\\357\\252\\027\\273G\\323x}%\\333q!T9\\322"\\011\\334\\014''\\300\\247h\\3206\\247\\246\\214\\012\\252V^q\\276\\372A{\\264}7\\215"\\275v\\334L\\025\\016t\\220 \\235\\300\\302|\\012\\037I\\007\\033\\257AS\\347T\\204%`\\003\\237\\022\\214\\372Z\\247\\231\\313w\\260\\251\\332\\316\\204i\\025\\353\\266\\342`\\250s\\244\\201\\004\\356\\006\\023\\340^\\031\\364\\264\\254\\275\\210\\327}P\\275\\3328\\300\\252\\256\\306\\310\\252V\\251\\037\\215J\\222\\250\\235\\321]#\\3448aU\\333r\\202\\241 \\344HH\\347s0\\227\\001\\217\\332\\360\\362\\330\\306\\371\\346\\\\\\337\\304_\\242\\366\\334\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\215Z\\201v\\334\\240] \\344Ir>&q\\201UT\\363-\\271\\330H\\355gC\\252\\320\\302\\2508\\335\\002\\011\\037"\\242''+\\030\\034\\270\\214k\\373/\\324\\306}-S\\314\\345\\273\\330T\\355gB4\\212\\365\\333q0T9\\322@\\202w\\003\\011\\360(\\325\\350\\027m\\305A \\344Ir9\\334\\314%\\300c\\357\\343H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\360\\317\\245\\245e\\354F\\373\\352\\205\\356\\321\\303\\351.\\333\\211\\012\\241\\316\\221\\020N\\340a>\\005;{\\336YK\\030\\231L\\263J\\252\\375\\255\\360\\275\\332\\267T\\243\\366=;O\\373\\227\\\\\\317\\377\\000K5\\031yL\\263J\\222\\035\\335\\300\\275\\332\\336\\351\\224{)\\371\\261\\373\\036\\235\\247\\375\\313\\256g\\377\\000\\245\\232\\214\\274\\246Y\\245I\\016\\356\\340^\\355_\\246Q\\257\\3452\\315*\\253\\366\\261B\\367j\\335^\\032\\006S,\\322\\244\\207w(/v\\257\\323\\031x\\257=T\\222\\035\\335\\303\\265\\235\\336\\351\\234{W\\370Q\\245j\\230x\\237\\320\\374\\313\\310\\271\\277\\212\\347nV\\337\\264{)\\371\\261\\244\\340\\343\\343\\344}uw\\367\\237\\215\\003)\\226iRC\\273\\224\\027\\273W\\351\\214\\274W\\236\\252I\\016\\356\\341\\356\\331\\335\\356\\231\\306\\255\\235\\223\\220\\307\\321Ksu\\210\\3202\\231f\\251T;\\271A{\\265~\\230\\327\\362\\231f\\225U\\373X\\241{\\265n\\250\\325\\260q\\361\\330\\372\\012\\357\\357?\\032V\\251\\207\\211\\375\\007\\314\\276\\213\\233\\370\\256v\\345m\\373F&S,\\325$\\277k|/v\\255\\325\\032N\\0166>G\\327W\\177y\\370\\362\\312_\\037,\\244\\367\\274\\256\\222\\030Iv\\334H\\322>ED\\202w\\0039q\\031\\3320)iYy\\267;\\011\\005\\356\\322}W\\215Z\\275\\007\\033\\257] \\344Iq\\016\\200\\010\\3206_\\246\\214\\012ZV^m\\336\\302A{\\264\\035W\\360\\325\\353\\327m\\304\\315#\\344Ur\\011\\334\\014\\345\\304|4\\232\\005\\333r\\201\\005O\\235T\\010\\370\\231\\306\\005-\\016N=*\\265H\\374jT\\222X,\\262\\011\\037!\\306\\277\\265=Ld*\\273n*j\\237:\\244G;\\232\\205>%;F\\223@\\203\\215\\320.\\250s\\244\\200\\237\\003\\017\\015&\\201v\\334\\240AS\\347U\\002>&q\\346\\224\\221*\\372\\252V^\\313s\\260\\250^\\355\\004d*\\273n*j\\237:\\244G;\\232\\205>%;G\\225\\325\\307\\330F\\221@\\273n*j\\237:\\250\\021\\316\\346g>%\\014$\\273nW\\240\\221\\362*$\\023\\270\\031\\313\\210\\306\\005-+/e\\273\\330H/v\\2025z\\364\\034m0H9\\022\\\\BV\\000\\011p\\037\\037+\\244\\367\\274\\256\\222\\037I\\007\\033\\257AS\\347T\\204%`\\003\\237\\022\\214\\372Z\\247\\231\\313s\\260\\251\\332\\316\\207\\206:\\253\\266\\342\\240\\220r$$s\\271\\230K\\200\\316\\321\\240mOM\\032\\006\\324\\364\\336\\031\\364\\264\\254\\274\\343]\\365B\\367h\\372o\\030\\025U\\330\\331\\025J\\325#\\361\\251RU\\023\\272+\\244|\\207\\025{v\\201\\224?\\334\\332X\\316\\322\\377\\000\\0038J\\201\\204\\351\\216\\235\\376\\022\\261\\235\\356\\374Sl\\307\\023\\006i\\223C\\252v\\275\\332\\215\\034#G\\010\\250\\245\\232j(\\365J\\253\\316\\343)ZV\\232\\266\\202H\\345)K\\374\\316\\321\\237J\\203ob5g\\225\\013\\335\\243\\214\\012\\252\\354l\\212\\245j\\221\\370\\324\\251*\\211\\335\\025\\322>S\\206\\025]\\267(*\\022\\016D\\204\\216w3\\011p\\030\\375\\257\\017-\\214o\\235e\\315\\374U\\373w\\264`UWcdU+T\\217\\306\\245ITN\\350\\256\\221\\362\\034i5\\3508\\335z\\012\\237:\\250\\010t\\001\\370i5\\353\\266\\345z\\352\\207:H\\020t\\030F}-v6E*\\264\\250\\374\\032UUX\\356\\262\\351\\007 G\\355xylc|\\353.o\\342\\257\\333\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\275\\357,\\245\\214\\274W\\236\\252I\\016\\356\\341\\332\\316\\357t\\3165l\\354\\214\\214\\217\\240\\226\\346\\353\\036\\030\\231L\\263T\\222\\375\\255\\360\\275\\332\\267T\\243\\331O\\315\\217e?7\\303\\357\\343\\313)`\\177Q\\336\\234\\245y\\177\\231^%.\\022\\200\\225\\347\\270\\230L\\247i\\177\\322P\\023\\231H%)\\011\\247;\\317\\214\\356''i\\317\\205\\347+\\312V\\205''a\\001\\224\\2579\\316s\\376%(\\254I\\261\\252I`\\231\\246\\252r\\375d%)^[\\322\\224\\355i\\333\\303\\376\\020\\231^E\\273/\\342S\\230\\336\\337\\336s\\237\\363\\032\\006S,\\322\\244\\207w(/v\\257\\323\\341\\252\\340\\343c\\344}\\005w\\367\\237\\214\\274\\246Y\\245I\\016\\356\\340^\\355ot\\312=\\224\\374\\330\\322pq\\361\\330\\372\\352\\357\\357?\\032\\006S,\\325*\\207w(/v\\257\\323\\030\\231L\\263T\\222\\375\\255\\360\\275\\332\\335\\352\\225\\257\\037\\261\\351\\332\\177\\334\\272\\346w\\372Y\\250\\322\\265Le\\344\\\\\\337\\305s\\2666\\337\\267\\275\\253\\327\\240\\343i\\202A\\310\\222\\342\\022\\260\\000K\\200\\306\\005-\\016N=*\\265H\\374jT\\222X,\\262\\011\\037!\\307\\356\\231\\230\\214c|\\363\\315\\356e\\257\\333\\265\\367\\341\\204\\220q\\272\\372\\204\\203\\221!\\020\\225\\200\\002\\\\\\006\\030Iv\\334\\257A#\\344TH''p3\\227\\021\\214\\012ZV^\\313s\\260\\220^\\355\\004i4\\013\\266\\345\\002\\012\\237:\\250\\021\\3613\\207\\325A\\306\\350*\\025\\016t\\210NV0\\011\\360(\\317\\252\\252y\\227\\033\\357\\252v\\263\\247\\323h\\362\\272H\\377\\000\\276^\\024\\345)c&`I\\344.W\\226\\342r\\234\\347o\\344\\247+\\014\\247;\\333j=\\2763\\012t\\322\\267''\\361\\310S\\275\\347\\372\\313\\204\\255;\\354\\335\\262\\242\\257 %\\274iI\\023@JR=\\335\\311\\363[ve\\306/''RN\\232F J\\207\\352$sP\\347+\\376\\240\\337\\207\\375\\305\\032E\\002\\355\\271@\\202\\247\\316\\252\\004}g\\032\\376\\324\\3651\\257\\355OS\\032\\376\\324\\3651\\240l\\277M\\037\\265\\341\\345\\277\\223\\362,9\\277\\212\\207r\\366\\334\\214\\205Wm\\305MS\\347T\\210\\347sP\\247\\304\\247h\\3206_\\246\\217\\332\\360\\362\\337\\311\\371\\026\\034\\337\\305C\\271{nFB\\253\\266\\342\\246\\251\\363\\252Ds\\271\\250S\\342S\\267\\275\\244W\\256\\333\\211\\202\\241\\316\\222\\004\\023\\270\\030O\\201C\\012\\256\\333\\224\\025\\011\\007"BG;\\231\\204\\270\\014`UR\\262\\363\\215\\367\\322\\013\\335\\243\\351\\274y]$g\\322\\327cdR\\253J\\217\\301\\245UU\\216\\353.\\220r\\004h\\033S\\323F:\\2508\\332\\246\\221\\362*"r\\261\\246R\\3422\\215\\003jzh\\375\\257\\017-\\214o\\236a\\315\\374U\\373w\\266\\344>\\222\\355\\270\\220\\252\\034\\351\\021\\004\\356\\006\\023\\340S\\267\\202t"\\232(\\244g1Et\\252$\\251M@rh\\244R0\\011\\335K\\3326j\\226e\\032\\245j\\022\\246*\\215\\331\\335\\212di\\206d\\234\\247\\2733^\\345\\011^h\\323+J\\324\\222\\250M9\\334F\\357\\024\\212R\\224\\244V\\031\\316*~gh,\\252dF\\252\\0253\\233\\237\\017\\227\\216\\365\\256V\\265\\242\\224d2\\332\\2738Jr_x8_y!x/\\322V\\264\\345\\306\\364\\0336\\242\\260\\225BV\\271\\374 .\\034\\303\\015\\032{\\363\\025\\014K\\224\\345"\\3411\\234\\277H\\325\\350\\020q\\272\\004\\022>EW\\023\\340`~\\037\\177\\036WI\\032\\376\\313\\3651\\237KT\\3639nv\\025;Y\\320\\215Z\\201\\007\\033\\240A#\\344Uq9X\\303\\303\\002\\252\\251\\346r\\334\\354$v\\263\\241\\014*\\203\\215\\320 \\221\\362*"r\\261\\201\\313\\210\\373\\332\\006S,\\322\\244\\207w(/v\\257\\323\\341\\253`\\343c\\344}\\025w\\367\\237\\215+T\\303\\304\\376\\203\\346^E\\315\\374W;cm\\373F&S,\\325$\\277k|/v\\255\\325\\036\\312~lbb\\274\\365R\\253\\366\\267\\317v\\316\\333\\252q\\211\\224\\3134\\252\\257\\332\\337\\013\\335\\255\\336\\251F\\223\\203\\217\\217\\221\\365\\325\\337\\336~<\\262\\227\\300?\\212\\244\\012\\236\\261\\037\\376\\203\\212\\000\\011\\021$i\\2476I5\\004\\304\\303\\226S\\261Js\\224\\370\\312p\\270\\200,T\\223\\031\\246\\224\\303\\2314\\024\\275\\367\\344\\011\\014\\245!.k\\225\\356\\235bL\\2403"\\335H\\226\\020zam\\331\\314\\035\\267\\031\\217L\\002\\222\\232k#0\\2307!\\227\\031\\312r\\237\\3519K\\204RY:\\312\\345\\022:\\272i\\021\\324*[\\251!0\\244RG)\\011L\\255\\024\\225d\\222j''\\220m\\246\\361''9\\362\\201\\215\\313r=\\253\\374(\\3201^z\\251$;\\271Gk;~\\230\\373\\370\\3202\\231f\\225$;\\271A{\\265~\\230\\313\\305y\\352\\244\\220\\356\\356\\036\\355\\235\\336\\351\\234{W\\370Q\\355_\\341F\\201\\212\\363\\325I!\\335\\312;Y\\333\\364\\306\\223\\235\\221\\221\\221\\365\\322\\334\\335b11^z\\225%\\373[\\347k;n\\251\\373\\332M\\002\\355\\271@\\202\\247\\316\\252\\004|L\\343_\\332\\236\\2463\\352\\252\\236g\\021\\256\\372\\247k:q\\244P.\\333\\212\\232\\247\\316\\252\\004s\\271\\231\\317\\211C\\011.\\333\\225\\350$|\\212\\211\\004\\356\\006r\\3421\\201KJ\\313\\331nv\\022\\013\\335\\240\\215&\\201v\\334\\240AS\\347U\\002>&q\\253\\327\\256\\333\\211\\232G\\310\\252\\344\\023\\270\\031\\313\\210\\306\\005-S\\314\\3425\\337H\\355gN3\\352\\250rq\\352\\225\\245G\\340\\322\\252\\222!dPH9\\003\\301\\315\\323U5i\\327H\\3442\\377\\000\\212\\322=\\371\\313\\377\\000H^%\\372G\\367\\215\\217\\263W\\251\\247\\234\\204\\267HNI\\310\\3113\\003\\221\\204\\344_\\256\\346\\364(\\211\\2439\\332v\\237)\\214\\212\\\\e\\374\\312\\020\\342\\342\\013VMm\\371\\312R\\236\\350&\\013)r\\234\\345y\\251iC\\312"\\350o\\316v\\337L\\204\\245\\306_\\304\\345\\032\\376\\323\\3651\\346\\224\\221\\201KT\\363.5\\337H\\355gO\\246\\321\\240l\\277M\\036iI\\343\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\037\\272fb1\\215\\363\\3177\\271\\224\\277n\\327\\337\\214\\372\\252\\034\\234z\\245iQ\\3704\\252\\244\\210Y\\024\\022\\016@\\367\\274\\256\\223\\302T\\025UO2\\333\\235\\204\\216\\326t:\\255\\030\\352\\240\\343j\\232G\\310\\250\\211\\312\\306\\231K\\210\\312\\030Uv\\334\\240\\250H9\\022\\0229\\334\\314%\\300c\\366\\274<\\2661\\276y\\2277\\361\\027\\350\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\243V\\240]\\267(\\027H9\\022\\\\\\217\\211\\237\\216u5N\\372A+\\034\\356\\212\\207h\\336\\340\\231\\230\\356\\221J_\\246\\366\\355\\306S\\376$E\\004\\022\\237\\377\\000\\220I\\316S\\377\\000\\346\\021\\262\\364u'';\\\\\\316\\235In\\310\\371er\\011\\204\\347\\306\\363\\212a\\222`gn$!2\\234\\306S\\376\\327\\235\\277\\274N\\234AY\\246\\222i&\\0032\\227\\022\\224\\267Jr\\217\\355;\\316v\\237\\376\\323\\224\\343\\312\\351#V\\240]\\267(\\027H9\\022\\\\\\217\\211\\237\\206\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\032Ez\\0166\\231\\252|\\352\\240!+\\000\\034\\370\\224`UU<\\313nv\\022;Y\\320\\352\\215\\003jzh\\322k\\320q\\272\\364\\025>uP\\020\\350\\003\\360\\322k\\327m\\312\\365\\325\\016t\\220 \\3500\\367\\274\\262\\2265\\374\\246Y\\245U~\\326(^\\355[\\252>\\3025\\374W\\236\\252U~\\326)\\332\\316\\333\\25212\\231f\\225U\\373[\\341{\\265n\\250\\375\\217N\\323\\376\\345\\3273\\277\\322\\315F\\225\\252a\\342\\177A\\363/"\\346\\376+\\235\\271[~\\336\\032\\266\\0166;\\037A]\\375\\347\\343\\332\\277\\302\\212_\\374C*\\225\\033\\377\\000\\011\\225(H\\347\\3767\\345\\033F\\222\\2415R\\377\\000[L\\006\\032^*\\021Sq=\\343\\020\\033\\332\\177\\311\\020\\312\\031Z)\\320R`\\246\\341\\220\\025\\257?\\340\\204\\245\\011\\323\\034\\347)\\377\\000~3\\265\\377\\000\\353\\013J\\307P|9\\247\\302_\\332_\\304\\277IJR\\224\\245\\032\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\322\\252\\277k\\024/v\\255\\325\\341\\345\\224\\221\\240b\\274\\365*\\250wr\\216\\326v\\3751\\244\\347dd1\\365\\322\\334\\335b11^z\\225%\\373[\\347k;\\273\\3258\\366S\\363c\\331O\\315\\217e?7\\336\\325\\353\\320q\\264\\301 \\344Iq\\011X\\000%\\300c\\312\\352\\343>\\252\\225\\227\\233w\\260\\250^\\355\\007U\\343_\\332\\236\\2463\\352\\253\\261\\262*\\222\\245[\\340\\325*\\252''tWT9\\3020)iYy\\267;\\011\\005\\356\\320u^4\\212\\005\\333qST\\371\\325@\\216w39\\361/\\017\\260\\215Z\\275\\007\\033\\257] \\344Iq\\016\\200\\010\\325\\253\\327m\\312\\364\\022>EW \\3503\\360\\325\\353\\220q\\272\\365\\322\\016D\\226\\020\\225\\200#\\002\\232\\205\\374zU\\252\\221\\370\\324\\311\\246\\250Yd\\022.\\007\\023\\257\\251\\252y\\234F\\273\\312\\035\\254\\351\\307\\231\\325x`R\\325<\\316#]\\364\\216\\326t\\343@\\331~\\232<\\256\\2560)j\\236g\\021\\256\\372Gk:q\\237UC\\223\\217T\\255*?\\006\\225T\\221\\013"\\202A\\310\\021\\240l\\277M\\030\\024\\264\\254\\275\\226\\357a \\275\\332\\010\\325\\353\\320q\\264\\301 \\344Iq\\011X\\000%\\300a\\204\\227m\\312\\364\\022>ED\\202w\\0039q\\030\\300\\245\\245e\\354\\267;\\011\\005\\356\\320F\\223@\\273nP \\251\\363\\252\\201\\037\\023?{H\\257]\\267\\023\\005C\\235$\\010''p0\\237\\002\\2174\\244\\217\\277\\360\\307Uv\\334T\\022\\016D\\204\\216w3\\011p\\031\\332?k\\303\\313c\\033\\347\\231s\\177\\025~\\335\\355\\271\\030\\025U\\330\\331\\025J\\325#\\361\\251RU\\023\\272+\\244|\\207\\341\\237KJ\\313\\330\\215\\367\\325\\013\\335\\243\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\360\\373\\370\\362\\272H\\300\\252\\241\\311\\307\\252J\\251o\\215T\\222H\\205\\221AS\\3478\\375\\3233\\021\\374\\237\\221y\\275\\314\\244;\\226\\276\\374h\\033S\\323F}-v6E*\\264\\250\\374\\032UUX\\356\\262\\351\\007 G\\355xylc|\\353.o\\342\\257\\333\\275\\267!\\364\\227m\\304\\205P\\347H\\210''p0\\237\\002\\235\\243\\035U\\333qPH9\\022\\0229\\334\\314%\\300gh\\235\\005U+/8\\337} \\275\\332>\\233\\307\\225\\322F\\005U\\016N=RUK|j\\244\\222D,\\212\\012\\2379\\306\\275\\263=L`UWcdU+T\\217\\306\\245ITN\\350\\256\\221\\362\\037\\217\\225\\322{\\332\\006S,\\322\\244\\207w(/v\\257\\323\\032\\376S,\\325$\\277k\\024/v\\255\\325\\032\\266\\0166>G\\321W\\177y\\370\\366\\257\\360\\243U\\3250\\361?\\256\\371fQs\\177\\025\\276\\344\\255\\277x\\375\\217N\\323\\376\\345\\3273\\277\\322\\315F^S,\\322\\244\\207wp/v\\267\\272e\\343\\345\\224\\221\\240b\\274\\365RHwr\\216\\326v\\3751\\252\\340\\343c\\344}\\025w\\367\\237\\215+T\\303\\304\\376\\203\\346^E\\315\\374W;r\\266\\375\\243@\\305y\\352UP\\356\\345\\035\\254\\355\\372c\\354#@\\312e\\232\\245P\\356\\345\\005\\356\\325\\372c\\023)\\226j\\222_\\265\\276\\027\\273V\\352\\215''\\007\\037\\037#\\353\\253\\277\\274\\374ye,k\\371L\\263T\\222\\375\\254P\\275\\332\\267T}\\374y]$e\\342\\274\\365*\\250ww\\016\\326w{\\246q\\355_\\341F\\225\\252a\\342\\177A\\363/"\\346\\376+\\235\\271[~\\336>YK\\357i4\\013\\266\\345\\002\\012\\237:\\250\\021\\3613\\207\\325A\\306\\350*\\025\\016t\\210NV0\\011\\360(\\317\\252\\252y\\234F\\373\\352\\235\\254\\351\\306\\255^\\203\\215\\327\\256\\220r$\\270\\207@\\004g\\325WcdU%J\\267\\301\\252UTN\\350\\256\\250s\\204~\\327\\207\\226\\376O\\310\\262\\346\\376*\\035\\313\\3325\\375\\251\\352cI\\240A\\306\\350\\027T9\\322@O\\201\\204`R\\325<\\316#}\\364\\216\\326t\\341\\204\\220q\\264\\205 \\344HD%`L%\\300ex\\310U\\007\\033T\\025\\016t\\210NV4\\302|\\012W\\215\\177jz\\230\\310Uv\\334T\\325>uH\\216w5\\012|Jv\\360\\317\\252\\245e\\346\\335\\354*\\027\\273A\\325x\\300\\245\\256\\306\\310\\245J\\251o\\215T\\222\\253\\035\\326]S\\3478a%\\333r\\275\\004\\217\\221Q \\235\\300\\316\\\\F4\\015\\227\\351\\243>\\252\\207''\\036\\251ZT~\\015*\\251"\\026E\\004\\203\\220#_\\332\\236\\2463\\352\\252\\236e\\306\\273\\352\\235\\254\\351\\364\\307\\225\\322x\\351\\024\\013\\266\\342\\246\\251\\363\\252\\201\\034\\356fs\\342Q\\240l\\277M\\032\\006\\313\\364\\321\\237UC\\223\\217T\\255*?\\006\\225T\\221\\013"\\202A\\310\\036\\366\\221^\\273n&\\012\\207:H\\020N\\340a>\\005\\032\\006\\324\\364\\321\\240mOM\\032\\006\\324\\364\\321\\240mOM\\030\\025T\\254\\274\\343]\\364\\202\\367h\\372o\\032\\265\\002\\0167@\\202G\\310\\252\\342r\\261\\204`UP\\344\\343\\325%T\\267\\306\\252I$B\\310\\240\\251\\363\\234g\\322\\325<\\316[\\235\\205N\\326t#V\\240A\\306\\350\\020H\\371\\025\\\\NV0\\217+\\253\\217\\260\\2174\\253\\207\\322A\\306\\353\\320T\\371\\325!\\011X\\000\\347\\304\\243\\367L\\314G\\362~E\\366\\3672\\220\\356Z\\373\\361\\216\\252\\0166\\251\\244|\\212\\210\\234\\254i\\224\\270\\214\\243_\\331~\\2463\\351j\\236g-\\316\\302\\247k:\\021\\253P \\343t\\010$|\\212\\256''+\\030C\\351 \\343u\\350*|\\352\\220\\204\\254\\000s\\342Q\\257\\354\\277S\\017\\244\\273n$*\\207:DA;\\201\\204\\370\\024\\355\\030\\352\\256\\333\\212\\202A\\310\\220\\221\\316\\346a.\\003;D\\350*\\251Yy\\306\\373\\351\\005\\356\\321\\364\\336<\\256\\2221\\325]\\267\\025\\004\\203\\221!#\\235\\314\\302\\\\\\006v\\211\\320UR\\262\\366#}\\364\\202\\367h\\375\\377\\000,\\245\\217e?6=\\224\\374\\330\\366S\\363c@\\305y\\352\\244\\220\\356\\345\\035\\254\\355\\372c\\357\\3744\\255/3/\\372\\037\\231yf\\3672\\234\\355\\224{W\\370Q\\355_\\341F\\201\\212\\363\\324\\252\\241\\335\\312;Y\\333\\364\\307\\330G\\231\\325\\370i9\\331\\031\\014}t\\2677X\\214LW\\236\\252U~\\326\\371\\356\\331\\333uN=\\253\\374(\\366\\257\\360\\243\\332\\277\\302\\214\\274W\\236\\252I\\016\\356\\341\\332\\316\\357t\\3165\\\\\\354\\234\\214\\217\\240\\226\\346\\353\\021\\345\\224\\221\\211\\224\\3135I/\\332\\337\\015\\353\\265n\\251F\\225\\203\\215\\217\\221\\365\\325\\337\\336~<\\262\\222<\\316\\2264\\254\\354\\234\\214\\217\\254\\226\\346\\353\\021\\354\\247\\346\\373\\336WI\\014$\\273nW\\240\\221\\362*$\\023\\270\\031\\313\\210\\306\\201\\262\\3754h\\033/\\323G\\232RG\\337\\370`R\\320\\344\\343\\322\\253T\\217\\306\\245I%\\202\\313 \\221\\362\\034g\\325U<\\316#]\\365N\\326t\\3744\\232\\004\\034n\\201uC\\235$\\004\\370\\030G\\330F\\221@\\273n*j\\237:\\250\\021\\316\\346g>%\\032\\006\\313\\364\\321\\240l\\277M\\032\\006\\313\\364\\321\\257\\355OS\\032\\376\\324\\3650\\372\\253\\266\\345\\002\\012\\237:\\244G;\\231\\234\\370\\224`R\\320\\344\\343\\322\\253T\\217\\306\\245I%\\202\\313 \\221\\362\\034g\\325U<\\313\\215w\\325;Y\\323\\351\\264y]$h\\033/\\323F\\201\\262\\37540\\222\\0166\\220\\244\\034\\211\\010\\204\\254\\011\\204\\270\\014\\257\\030\\024\\26498\\364\\252\\325#\\361\\251RI`\\262\\310$|\\207\\037\\272fb1\\215\\363\\3177\\271\\226\\277n\\327\\337\\206\\022A\\306\\353\\352\\022\\016D\\204BV\\000\\011p\\037{\\312\\351#\\315)<|\\322\\222>\\3765j\\004\\034n\\201\\004\\217\\221U\\304\\345c\\010\\363JO\\015&\\275v\\334\\257]P\\347I\\002\\016\\203\\010aU\\333r\\202\\241 \\344HH\\347s0\\227\\001\\211\\320UR\\262\\353\\215\\367\\322\\013\\335\\243\\351\\274i\\025\\353\\266\\342`\\250s\\244\\201\\004\\356\\006\\023\\340Q\\253P.\\333\\224\\013\\244\\034\\211.G\\304\\316>\\303\\301\\205Wm\\312\\012\\204\\203\\221!#\\235\\314\\302\\\\\\006?k\\303\\313c\\033\\347\\231s\\177\\021~\\335\\355\\271\\017\\244\\273nW\\324*\\034\\351\\021\\004\\356\\006\\023\\340Q\\345uq*\\012\\252\\247\\231m\\316\\302Gk:\\237U\\243\\035T\\034mSH\\371\\025\\0219X\\323)q\\031F\\255@\\273nP.\\220r$\\271\\037\\0238\\317\\245\\245e\\354F\\373\\352\\205\\356\\321\\306\\005Uv6ER\\265H\\374jT\\225D\\356\\212\\351\\037!\\307\\232RD\\353\\351iYy\\306\\373\\352\\205\\356\\322\\2357\\207\\322]\\267\\022\\025C\\235" \\235\\300\\302|\\012v\\367\\274\\256\\22212\\231f\\251%\\373[\\341\\275v\\255\\325(\\366S\\363c\\331O\\315\\2173\\245\\217\\277\\360\\327\\362\\231f\\251%\\373X\\241{\\265n\\257\\015\\003)\\226j\\225C\\273\\224\\027\\273W\\351\\214L\\246Y\\245U~\\326\\370^\\355n\\365J4\\254\\034l|\\217\\256\\256\\376\\363\\361\\345\\224\\221\\355_\\341F\\253\\235\\223\\220\\307\\320Ksu\\217\\015\\003\\025\\347\\252\\222C\\273\\224v\\263\\267\\351\\217\\277\\360\\362\\272\\270\\373\\010\\327\\361^z\\251U\\373X\\247k;n\\257\\035\\003)\\226iRC\\273\\224\\027\\273W\\351\\215WT\\303\\304\\376\\277\\345\\231E\\315\\374V\\373\\222\\266\\375\\343I\\301\\307\\307\\310\\372\\312\\357\\357?\\032\\006S,\\322\\244\\207w(/v\\257\\323\\357y]$h\\033/\\323F\\201\\262\\3754h\\033/\\323F\\221@\\203\\215\\252\\012\\207:H\\011\\312\\306\\001>\\005\\037\\177\\356i\\024\\013\\266\\342\\246\\251\\363\\252\\201\\034\\356fs\\342P\\302K\\266\\342F\\221\\362*$\\023\\270\\031\\313\\210\\316\\321\\240l\\317M\\031\\365T98\\365J\\322\\243\\360iUI\\020\\262($\\034\\201\\017\\252\\203\\215\\320T*\\034\\351\\020\\234\\254`\\023\\340Q\\257\\355OS\\032\\376\\324\\3651\\220\\252\\0166\\250*\\034\\351\\020\\234\\254i\\204\\370\\024\\257\\023\\257\\252\\252y\\227\\033\\357\\252v\\263\\247\\323h\\322h\\027m\\312\\004\\025>uP#\\342g\\036WW\\031\\365T\\254\\274\\333\\235\\205B\\367h:\\257\\017\\252\\273nP \\251\\363\\252Ds\\271\\231\\317\\211F\\201\\262\\3754`R\\322\\262\\366[\\235\\204\\202\\367h#I\\240]\\267(\\020T\\371\\325@\\217\\211\\234j\\365\\353\\266\\342f\\221\\362*\\271\\004\\356\\006r\\3421\\201KT\\3638\\215w\\322;Y\\323\\215\\003e\\372o\\371\\237\\377\\304\\000*\\021\\000\\001\\003\\003\\002\\005\\004\\002\\003\\000\\000\\000\\000\\000\\000\\000\\001\\000\\002\\003\\004\\005\\021\\006!\\022\\0231@Q\\020\\024"A2\\200\\026$B\\377\\332\\000\\010\\001\\002\\001\\001?\\000\\375\\232\\007>\\203p\\206A\\357\\245\\220F2T3\\211z)$\\021\\214\\225\\014\\302^\\235\\356\\335\\025\\336\\262*jw\\361\\356U\\267V\\262\\337\\027*f\\365U\\372\\245\\265t\\216\\345FA+L\\201\\354\\203\\270\\262\\343\\351\\370\\367Gg\\247T\\226\\316B\\243\\202:\\332\\242\\3717\\307\\322\\275Z\\250\\337;\\036\\346c\\013\\330R\\032Q\\037\\000\\003\\012\\331V\\353U\\321\\360\\003\\226\\022\\271\\340\\014\\224\\307\\207\\216\\350\\214\\253\\354\\202\\000\\307\\370GSU\\321\\327\\020\\303\\262\\236\\360+\\242\\314\\262\\340\\2515|\\320\\216@9\\036T\\267h^\\033#\\177/+\\334>\\261\\214\\204\\177\\245L\\013X"?]\\326p\\026\\247g\\364\\336\\357\\012B\\343!*\\234\\021&$\\033*\\273#$9\\245\\361\\366\\244\\202JiC\\036\\254%\\262S\\302\\343\\364\\027F\\343\\272\\350r\\025\\306\\334\\333\\2238\\034vRh(\\016x^\\237\\240e\\316Y"\\376;[\\024|\\271\\007\\022\\250\\322W\\016o\\034L\\300VZSKB\\326;\\252\\306q\\335\\017\\216\\305`\\215\\302\\371,\\037+\\207\\354\\204x_\\262\\331\\277\\000\\272~\\335\\377\\000\\377\\304\\000%\\021\\000\\001\\004\\001\\004\\001\\004\\003\\000\\000\\000\\000\\000\\000\\000\\000\\001\\000\\002\\003\\004\\021\\005\\022!@2\\020"A\\200\\024Ba\\377\\332\\000\\010\\001\\003\\001\\001?\\000\\373v\\326\\2477\\011\\2419\\270\\356\\362\\252@\\371^$\\370Ri\\337\\220w\\205\\006\\236\\030\\375\\305\\312\\376\\335\\374\\017@{ML\\213r\\230IR=\\241T\\2651a\\010J\\367\\277 \\2535\\2375m\\305\\2500\\242;C\\311Q?\\252\\265\\030\\270\\334\\025\\0353_\\305U\\245\\030p|\\241_\\271M\\364\\004,\\034\\246\\342"\\364}\\335\\257\\225\\247sd5\\017\\342w\\011\\266\\234\\337k\\302k\\204\\215\\341Z\\341\\317C\\201\\332\\306T\\023\\030\\216Bn\\262\\360\\233\\255\\037\\220\\205\\370\\363\\225\\036\\251\\020n\\025\\271w\\277!\\036[\\332j\\306J\\300\\\\.\\020!y!\\366\\357\\377\\331', '1', '2022-03-26 21:30:19', '1', '2022-03-26 21:30:19', 0); COMMIT; -- ---------------------------- -- Table structure for infra_job -- ---------------------------- -DROP TABLE IF EXISTS "public"."infra_job"; -CREATE TABLE "public"."infra_job" ( +DROP TABLE IF EXISTS "infra_job"; +CREATE TABLE "infra_job" ( "id" int8 NOT NULL, "name" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, "status" int2 NOT NULL, @@ -17107,35 +1319,34 @@ CREATE TABLE "public"."infra_job" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."infra_job" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."infra_job"."id" IS '任务编号'; -COMMENT ON COLUMN "public"."infra_job"."name" IS '任务名称'; -COMMENT ON COLUMN "public"."infra_job"."status" IS '任务状态'; -COMMENT ON COLUMN "public"."infra_job"."handler_name" IS '处理器的名字'; -COMMENT ON COLUMN "public"."infra_job"."handler_param" IS '处理器的参数'; -COMMENT ON COLUMN "public"."infra_job"."cron_expression" IS 'CRON 表达式'; -COMMENT ON COLUMN "public"."infra_job"."retry_count" IS '重试次数'; -COMMENT ON COLUMN "public"."infra_job"."retry_interval" IS '重试间隔'; -COMMENT ON COLUMN "public"."infra_job"."monitor_timeout" IS '监控超时时间'; -COMMENT ON COLUMN "public"."infra_job"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."infra_job"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."infra_job"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."infra_job"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."infra_job"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."infra_job" IS '定时任务表'; +COMMENT ON COLUMN "infra_job"."id" IS '任务编号'; +COMMENT ON COLUMN "infra_job"."name" IS '任务名称'; +COMMENT ON COLUMN "infra_job"."status" IS '任务状态'; +COMMENT ON COLUMN "infra_job"."handler_name" IS '处理器的名字'; +COMMENT ON COLUMN "infra_job"."handler_param" IS '处理器的参数'; +COMMENT ON COLUMN "infra_job"."cron_expression" IS 'CRON 表达式'; +COMMENT ON COLUMN "infra_job"."retry_count" IS '重试次数'; +COMMENT ON COLUMN "infra_job"."retry_interval" IS '重试间隔'; +COMMENT ON COLUMN "infra_job"."monitor_timeout" IS '监控超时时间'; +COMMENT ON COLUMN "infra_job"."creator" IS '创建者'; +COMMENT ON COLUMN "infra_job"."create_time" IS '创建时间'; +COMMENT ON COLUMN "infra_job"."updater" IS '更新者'; +COMMENT ON COLUMN "infra_job"."update_time" IS '更新时间'; +COMMENT ON COLUMN "infra_job"."deleted" IS '是否删除'; +COMMENT ON TABLE "infra_job" IS '定时任务表'; -- ---------------------------- -- Records of infra_job -- ---------------------------- BEGIN; -INSERT INTO "public"."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 (2, '用户 Session 超时 Job', 1, 'userSessionTimeoutJob', NULL, '0 * * * * ? *', 3, 2000, 0, '1', '2022-04-30 21:51:00.454', '1', '2022-04-30 22:22:06.037', 0); +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 (2, '用户 Session 超时 Job', 1, 'userSessionTimeoutJob', NULL, '0 * * * * ? *', 3, 2000, 0, '1', '2022-04-30 21:51:00.454', '1', '2022-04-30 22:22:06.037', 0); COMMIT; -- ---------------------------- -- Table structure for infra_job_log -- ---------------------------- -DROP TABLE IF EXISTS "public"."infra_job_log"; -CREATE TABLE "public"."infra_job_log" ( +DROP TABLE IF EXISTS "infra_job_log"; +CREATE TABLE "infra_job_log" ( "id" int8 NOT NULL, "job_id" int8 NOT NULL, "handler_name" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, @@ -17153,37 +1364,34 @@ CREATE TABLE "public"."infra_job_log" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."infra_job_log" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."infra_job_log"."id" IS '日志编号'; -COMMENT ON COLUMN "public"."infra_job_log"."job_id" IS '任务编号'; -COMMENT ON COLUMN "public"."infra_job_log"."handler_name" IS '处理器的名字'; -COMMENT ON COLUMN "public"."infra_job_log"."handler_param" IS '处理器的参数'; -COMMENT ON COLUMN "public"."infra_job_log"."execute_index" IS '第几次执行'; -COMMENT ON COLUMN "public"."infra_job_log"."begin_time" IS '开始执行时间'; -COMMENT ON COLUMN "public"."infra_job_log"."end_time" IS '结束执行时间'; -COMMENT ON COLUMN "public"."infra_job_log"."duration" IS '执行时长'; -COMMENT ON COLUMN "public"."infra_job_log"."status" IS '任务状态'; -COMMENT ON COLUMN "public"."infra_job_log"."result" IS '结果数据'; -COMMENT ON COLUMN "public"."infra_job_log"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."infra_job_log"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."infra_job_log"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."infra_job_log"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."infra_job_log"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."infra_job_log" IS '定时任务日志表'; +COMMENT ON COLUMN "infra_job_log"."id" IS '日志编号'; +COMMENT ON COLUMN "infra_job_log"."job_id" IS '任务编号'; +COMMENT ON COLUMN "infra_job_log"."handler_name" IS '处理器的名字'; +COMMENT ON COLUMN "infra_job_log"."handler_param" IS '处理器的参数'; +COMMENT ON COLUMN "infra_job_log"."execute_index" IS '第几次执行'; +COMMENT ON COLUMN "infra_job_log"."begin_time" IS '开始执行时间'; +COMMENT ON COLUMN "infra_job_log"."end_time" IS '结束执行时间'; +COMMENT ON COLUMN "infra_job_log"."duration" IS '执行时长'; +COMMENT ON COLUMN "infra_job_log"."status" IS '任务状态'; +COMMENT ON COLUMN "infra_job_log"."result" IS '结果数据'; +COMMENT ON COLUMN "infra_job_log"."creator" IS '创建者'; +COMMENT ON COLUMN "infra_job_log"."create_time" IS '创建时间'; +COMMENT ON COLUMN "infra_job_log"."updater" IS '更新者'; +COMMENT ON COLUMN "infra_job_log"."update_time" IS '更新时间'; +COMMENT ON COLUMN "infra_job_log"."deleted" IS '是否删除'; +COMMENT ON TABLE "infra_job_log" IS '定时任务日志表'; -- ---------------------------- -- Records of infra_job_log -- ---------------------------- BEGIN; -INSERT INTO "public"."infra_job_log" ("id", "job_id", "handler_name", "handler_param", "execute_index", "begin_time", "end_time", "duration", "status", "result", "creator", "create_time", "updater", "update_time", "deleted") VALUES (0, 2, 'userSessionTimeoutJob', NULL, 1, '2022-04-30 22:23:10.195', '2022-04-30 22:23:10.547', 352, 1, '{"1":"移除在线会话数量为 13 个","121":"移除在线会话数量为 0 个","122":"移除在线会话数量为 0 个"}', NULL, '2022-04-30 22:23:10.222', NULL, '2022-04-30 22:23:10.552', 0); -INSERT INTO "public"."infra_job_log" ("id", "job_id", "handler_name", "handler_param", "execute_index", "begin_time", "end_time", "duration", "status", "result", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1, 2, 'userSessionTimeoutJob', NULL, 1, '2022-04-30 22:24:00.035', '2022-04-30 22:24:00.058', 23, 1, '{"1":"移除在线会话数量为 0 个","121":"移除在线会话数量为 0 个","122":"移除在线会话数量为 0 个"}', NULL, '2022-04-30 22:24:00.041', NULL, '2022-04-30 22:24:00.059', 0); COMMIT; -- ---------------------------- -- Table structure for infra_test_demo -- ---------------------------- -DROP TABLE IF EXISTS "public"."infra_test_demo"; -CREATE TABLE "public"."infra_test_demo" ( +DROP TABLE IF EXISTS "infra_test_demo"; +CREATE TABLE "infra_test_demo" ( "id" int8 NOT NULL, "name" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, "status" int2 NOT NULL, @@ -17197,33 +1405,30 @@ CREATE TABLE "public"."infra_test_demo" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."infra_test_demo" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."infra_test_demo"."id" IS '编号'; -COMMENT ON COLUMN "public"."infra_test_demo"."name" IS '名字'; -COMMENT ON COLUMN "public"."infra_test_demo"."status" IS '状态'; -COMMENT ON COLUMN "public"."infra_test_demo"."type" IS '类型'; -COMMENT ON COLUMN "public"."infra_test_demo"."category" IS '分类'; -COMMENT ON COLUMN "public"."infra_test_demo"."remark" IS '备注'; -COMMENT ON COLUMN "public"."infra_test_demo"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."infra_test_demo"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."infra_test_demo"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."infra_test_demo"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."infra_test_demo"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."infra_test_demo" IS '字典类型表'; +COMMENT ON COLUMN "infra_test_demo"."id" IS '编号'; +COMMENT ON COLUMN "infra_test_demo"."name" IS '名字'; +COMMENT ON COLUMN "infra_test_demo"."status" IS '状态'; +COMMENT ON COLUMN "infra_test_demo"."type" IS '类型'; +COMMENT ON COLUMN "infra_test_demo"."category" IS '分类'; +COMMENT ON COLUMN "infra_test_demo"."remark" IS '备注'; +COMMENT ON COLUMN "infra_test_demo"."creator" IS '创建者'; +COMMENT ON COLUMN "infra_test_demo"."create_time" IS '创建时间'; +COMMENT ON COLUMN "infra_test_demo"."updater" IS '更新者'; +COMMENT ON COLUMN "infra_test_demo"."update_time" IS '更新时间'; +COMMENT ON COLUMN "infra_test_demo"."deleted" IS '是否删除'; +COMMENT ON TABLE "infra_test_demo" IS '字典类型表'; -- ---------------------------- -- Records of infra_test_demo -- ---------------------------- BEGIN; -INSERT INTO "public"."infra_test_demo" ("id", "name", "status", "type", "category", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (106, '测试', 0, 1, 1, '牛逼哈2', '', '2021-02-06 13:25:00', '1', '2022-04-03 13:50:43', 0); -INSERT INTO "public"."infra_test_demo" ("id", "name", "status", "type", "category", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (107, '哈哈哈哈', 1, 0, 1, 'biubiubui', '', '2021-02-06 14:00:54', '1', '2022-02-17 12:42:14', 0); COMMIT; -- ---------------------------- -- Table structure for member_user -- ---------------------------- -DROP TABLE IF EXISTS "public"."member_user"; -CREATE TABLE "public"."member_user" ( +DROP TABLE IF EXISTS "member_user"; +CREATE TABLE "member_user" ( "id" int8 NOT NULL, "nickname" varchar(30) COLLATE "pg_catalog"."default" NOT NULL, "avatar" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, @@ -17241,37 +1446,34 @@ CREATE TABLE "public"."member_user" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."member_user" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."member_user"."id" IS '编号'; -COMMENT ON COLUMN "public"."member_user"."nickname" IS '用户昵称'; -COMMENT ON COLUMN "public"."member_user"."avatar" IS '头像'; -COMMENT ON COLUMN "public"."member_user"."status" IS '状态'; -COMMENT ON COLUMN "public"."member_user"."mobile" IS '手机号'; -COMMENT ON COLUMN "public"."member_user"."password" IS '密码'; -COMMENT ON COLUMN "public"."member_user"."register_ip" IS '注册 IP'; -COMMENT ON COLUMN "public"."member_user"."login_ip" IS '最后登录IP'; -COMMENT ON COLUMN "public"."member_user"."login_date" IS '最后登录时间'; -COMMENT ON COLUMN "public"."member_user"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."member_user"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."member_user"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."member_user"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."member_user"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."member_user"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."member_user" IS '用户'; +COMMENT ON COLUMN "member_user"."id" IS '编号'; +COMMENT ON COLUMN "member_user"."nickname" IS '用户昵称'; +COMMENT ON COLUMN "member_user"."avatar" IS '头像'; +COMMENT ON COLUMN "member_user"."status" IS '状态'; +COMMENT ON COLUMN "member_user"."mobile" IS '手机号'; +COMMENT ON COLUMN "member_user"."password" IS '密码'; +COMMENT ON COLUMN "member_user"."register_ip" IS '注册 IP'; +COMMENT ON COLUMN "member_user"."login_ip" IS '最后登录IP'; +COMMENT ON COLUMN "member_user"."login_date" IS '最后登录时间'; +COMMENT ON COLUMN "member_user"."creator" IS '创建者'; +COMMENT ON COLUMN "member_user"."create_time" IS '创建时间'; +COMMENT ON COLUMN "member_user"."updater" IS '更新者'; +COMMENT ON COLUMN "member_user"."update_time" IS '更新时间'; +COMMENT ON COLUMN "member_user"."deleted" IS '是否删除'; +COMMENT ON COLUMN "member_user"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "member_user" IS '用户'; -- ---------------------------- -- Records of member_user -- ---------------------------- BEGIN; -INSERT INTO "public"."member_user" ("id", "nickname", "avatar", "status", "mobile", "password", "register_ip", "login_ip", "login_date", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (245, 'yunai222', 'http://pic.616pic.com/ys_b_img/00/06/20/novPzrqvE3.jpg', 0, '15601691300', '$2a$10$0acJOIk2D25/oC87nyclE..0lzeu9DtQ/n3geP4fkun/zIVRhHJIO', '127.0.0.1', '127.0.0.1', '2022-02-04 17:50:21', '', '2021-10-10 08:51:38', NULL, '2022-02-04 17:50:21', 0, 1); -INSERT INTO "public"."member_user" ("id", "nickname", "avatar", "status", "mobile", "password", "register_ip", "login_ip", "login_date", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (246, '', '', 0, '15601691301', '$2a$10$KLvmwoU.bvjU2u/MeWa1iOX2GDRJ2P9YqaCad10bYQCiyOaPexGwW', '127.0.0.1', '127.0.0.1', '2021-10-10 22:36:27', NULL, '2021-10-10 22:36:27', NULL, '2022-02-27 04:14:35', 0, 1); COMMIT; -- ---------------------------- -- Table structure for pay_app -- ---------------------------- -DROP TABLE IF EXISTS "public"."pay_app"; -CREATE TABLE "public"."pay_app" ( +DROP TABLE IF EXISTS "pay_app"; +CREATE TABLE "pay_app" ( "id" int8 NOT NULL, "name" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, "status" int2 NOT NULL, @@ -17287,34 +1489,32 @@ CREATE TABLE "public"."pay_app" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."pay_app" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."pay_app"."id" IS '应用编号'; -COMMENT ON COLUMN "public"."pay_app"."name" IS '应用名'; -COMMENT ON COLUMN "public"."pay_app"."status" IS '开启状态'; -COMMENT ON COLUMN "public"."pay_app"."remark" IS '备注'; -COMMENT ON COLUMN "public"."pay_app"."pay_notify_url" IS '支付结果的回调地址'; -COMMENT ON COLUMN "public"."pay_app"."refund_notify_url" IS '退款结果的回调地址'; -COMMENT ON COLUMN "public"."pay_app"."merchant_id" IS '商户编号'; -COMMENT ON COLUMN "public"."pay_app"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."pay_app"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."pay_app"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."pay_app"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."pay_app"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."pay_app"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."pay_app" IS '支付应用信息'; +COMMENT ON COLUMN "pay_app"."id" IS '应用编号'; +COMMENT ON COLUMN "pay_app"."name" IS '应用名'; +COMMENT ON COLUMN "pay_app"."status" IS '开启状态'; +COMMENT ON COLUMN "pay_app"."remark" IS '备注'; +COMMENT ON COLUMN "pay_app"."pay_notify_url" IS '支付结果的回调地址'; +COMMENT ON COLUMN "pay_app"."refund_notify_url" IS '退款结果的回调地址'; +COMMENT ON COLUMN "pay_app"."merchant_id" IS '商户编号'; +COMMENT ON COLUMN "pay_app"."creator" IS '创建者'; +COMMENT ON COLUMN "pay_app"."create_time" IS '创建时间'; +COMMENT ON COLUMN "pay_app"."updater" IS '更新者'; +COMMENT ON COLUMN "pay_app"."update_time" IS '更新时间'; +COMMENT ON COLUMN "pay_app"."deleted" IS '是否删除'; +COMMENT ON COLUMN "pay_app"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "pay_app" IS '支付应用信息'; -- ---------------------------- -- Records of pay_app -- ---------------------------- BEGIN; -INSERT INTO "public"."pay_app" ("id", "name", "status", "remark", "pay_notify_url", "refund_notify_url", "merchant_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (6, '芋道', 0, '我是一个公众号', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 'http://127.0.0.1', 1, '', '2021-10-23 08:49:25', '', '2022-02-27 04:14:53', 0, 1); COMMIT; -- ---------------------------- -- Table structure for pay_channel -- ---------------------------- -DROP TABLE IF EXISTS "public"."pay_channel"; -CREATE TABLE "public"."pay_channel" ( +DROP TABLE IF EXISTS "pay_channel"; +CREATE TABLE "pay_channel" ( "id" int8 NOT NULL, "code" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, "status" int2 NOT NULL, @@ -17331,44 +1531,34 @@ CREATE TABLE "public"."pay_channel" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."pay_channel" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."pay_channel"."id" IS '商户编号'; -COMMENT ON COLUMN "public"."pay_channel"."code" IS '渠道编码'; -COMMENT ON COLUMN "public"."pay_channel"."status" IS '开启状态'; -COMMENT ON COLUMN "public"."pay_channel"."remark" IS '备注'; -COMMENT ON COLUMN "public"."pay_channel"."fee_rate" IS '渠道费率,单位:百分比'; -COMMENT ON COLUMN "public"."pay_channel"."merchant_id" IS '商户编号'; -COMMENT ON COLUMN "public"."pay_channel"."app_id" IS '应用编号'; -COMMENT ON COLUMN "public"."pay_channel"."config" IS '支付渠道配置'; -COMMENT ON COLUMN "public"."pay_channel"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."pay_channel"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."pay_channel"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."pay_channel"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."pay_channel"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."pay_channel"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."pay_channel" IS '支付渠道 +COMMENT ON COLUMN "pay_channel"."id" IS '商户编号'; +COMMENT ON COLUMN "pay_channel"."code" IS '渠道编码'; +COMMENT ON COLUMN "pay_channel"."status" IS '开启状态'; +COMMENT ON COLUMN "pay_channel"."remark" IS '备注'; +COMMENT ON COLUMN "pay_channel"."fee_rate" IS '渠道费率,单位:百分比'; +COMMENT ON COLUMN "pay_channel"."merchant_id" IS '商户编号'; +COMMENT ON COLUMN "pay_channel"."app_id" IS '应用编号'; +COMMENT ON COLUMN "pay_channel"."config" IS '支付渠道配置'; +COMMENT ON COLUMN "pay_channel"."creator" IS '创建者'; +COMMENT ON COLUMN "pay_channel"."create_time" IS '创建时间'; +COMMENT ON COLUMN "pay_channel"."updater" IS '更新者'; +COMMENT ON COLUMN "pay_channel"."update_time" IS '更新时间'; +COMMENT ON COLUMN "pay_channel"."deleted" IS '是否删除'; +COMMENT ON COLUMN "pay_channel"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "pay_channel" IS '支付渠道 '; -- ---------------------------- -- Records of pay_channel -- ---------------------------- BEGIN; -INSERT INTO "public"."pay_channel" ("id", "code", "status", "remark", "fee_rate", "merchant_id", "app_id", "config", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (9, 'wx_pub', 0, NULL, 1, 1, 6, '{"@class":"cn.iocoder.yudao.framework.pay.core.client.impl.wx.WXPayClientConfig","appId":"wx041349c6f39b268b","mchId":"1545083881","apiVersion":"v2","mchKey":"0alL64UDQdlCwiKZ73ib7ypaIjMns06p","privateKeyContent":"-----BEGIN PRIVATE KEY-----\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC5q2hYE3loOQoH\nl/2kh/epuj17W8VpV5vBl7ysJWAbBXux6mlq4gKTHD0QUQdiKtDEUm/bKC9Bi6VU\nuklM5Y8oCaCbhjklHRbET8jsgd9phSNGviHclYRLsQRO8oXnN89kN0y7DYKm0hYd\nmaiS12Z3v8VaImSTr4HVeHlC/z3S6mdwSr263stKt931YTcbTj/QFH7znsv9Na0u\nX6LaMBEEAsJctWdm8Ndrd1tGh9Fzf0DA5VRXsJR3kkWspy+IwiDTPV/FDKOU9NJC\nSxMmDePerTfkoZ2s1rltqBK0ykDJrXtxR+hTzEsKZ/KpNi8tyYpfNZsviHIlUsLP\nFJ5UvUhpAgMBAAECggEAd90NltazqTIxpGdeCwrwOzWNnYbIclJprlhMKIJUgf1P\nNrPTbHoOGXTAgzkcYCat8iAaMEzH/TOu/3zn92m3uqxEcEL9v1UBLqknWHAbkB6w\ngGocqDAqYUcdNe5hvbyM+fCta5C0SQgV2PQrHOlMMICwYpkTfzhtxCdreXIYMoGg\nJEIRkZWgrm/N7LTtNgizznuUjy6OURWjXaWKPcs3b3j6G1gLj9Vp++z4y0u51nqM\n4R6fcvl8M6BjlcC8zo6DbOvCW8cXtuXsnru+2TPrUnsGeybJok4fEQsfW1BvpvPo\nief38rYJn4OWxIrHcpWrhNtXtgRPeiMGFfIsEQDmVQKBgQDzXK6Nn3Nr3TFfGVTy\n8QYrzOuY2NqzH8nnsLL6qn3HoKxTv+PcFKOTPsi6f4hIYCzBP0esRrPv0ffMu9oQ\nJvFtCJvMmcKGtp0Q5hcj0y/XkbC3AWuahJtBv8lhKXVnQXSL0j3+ombljw4/8yN0\nAzgBz+j/skQQgZ3sN5h+DHGtgwKBgQDDT784/2pd4m86c/uBmrwYfqu6MJo0eHJh\n1XPtE+u8pOHyNTFk77rKobKDqN5VlrF0uEmBc/08LKhyxJ3vh/zAbcmqT1Mq778y\nAKKUtVmvcaVDrvSQHsnhj0zt4SHGmmU34U2b9hV+nocq5VszX6/jp//HJi9bs3We\ndAzfFCmaowKBgC1MmDVGc+6lCraf+X8LPFHU4Bnga70h8qxM6NPd/nG1R76DHn/t\n25DiA+0rJgwK0unZxJadxoqic9TJNssA5Lmd+5o3GM2Imm311mLVwbcHqHQ4MHZf\nrqKrd2m9lNv2hCIurVmDk1Gxsj5XHMdQfhFgSQengCHubp30r07vNA3PAoGAUEAE\nIjdQTSMs8KeXP7mEb8wcY3R05/pVhT1fVJpK0kgtTofss7yM05V88/v+3sv8Pik6\niqZN9tuimwWOn00Q3UA/DGtrkMjRlooMQ24AW8YmUZkhg9YivTtUMKnAZwopbLx2\nVw7V5iDdCRMUVheK/c+ZmQpnixZBzcmBQGfYcGECgYBjEq3Mem+Aw6pXOu6+0FwH\n9y6Xi4HhBkq0OOZZuXFtWVry7YrD3pBgzWVAZJqJCkyPKKZzCzwdbFd3u0lYBs35\nzYgx7ug4hR+wfI980a3vxjcWGOqnOUUnUJ7ucIa+KDgnYV/bBy4jqpVreXmWAJXl\nfyjG3eLWBrtrsI9YX6zeAA==\n-----END PRIVATE KEY-----\n","privateCertContent":"-----BEGIN CERTIFICATE-----\nMIID6TCCAtGgAwIBAgIUNkEHq6aQcF80NSYqWS58ybsJzI4wDQYJKoZIhvcNAQEL\nBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT\nFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg\nQ0EwHhcNMjExMDIxMDU0NTQxWhcNMjYxMDIwMDU0NTQxWjB7MRMwEQYDVQQDDAox\nNTQ1MDgzODgxMRswGQYDVQQKDBLlvq7kv6HllYbmiLfns7vnu58xJzAlBgNVBAsM\nHuWOhuWfjuWMuuWkp+adjuWwp+aXpeeUqOWTgeW6lzELMAkGA1UEBgwCQ04xETAP\nBgNVBAcMCFNoZW5aaGVuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\nuatoWBN5aDkKB5f9pIf3qbo9e1vFaVebwZe8rCVgGwV7seppauICkxw9EFEHYirQ\nxFJv2ygvQYulVLpJTOWPKAmgm4Y5JR0WxE/I7IHfaYUjRr4h3JWES7EETvKF5zfP\nZDdMuw2CptIWHZmoktdmd7/FWiJkk6+B1Xh5Qv890upncEq9ut7LSrfd9WE3G04/\n0BR+857L/TWtLl+i2jARBALCXLVnZvDXa3dbRofRc39AwOVUV7CUd5JFrKcviMIg\n0z1fxQyjlPTSQksTJg3j3q035KGdrNa5bagStMpAya17cUfoU8xLCmfyqTYvLcmK\nXzWbL4hyJVLCzxSeVL1IaQIDAQABo4GBMH8wCQYDVR0TBAIwADALBgNVHQ8EBAMC\nBPAwZQYDVR0fBF4wXDBaoFigVoZUaHR0cDovL2V2Y2EuaXRydXMuY29tLmNuL3B1\nYmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUwREJDMDRCMDZBRDM5NzU0OTg0NkMw\nMUMzRThFQkQyMA0GCSqGSIb3DQEBCwUAA4IBAQBe7XgncAY/1PLbCsnMsYt11k3V\n2cdNZ+yuCxhlOEKk3nHE6WCTL6zL0qWlTKKpnw1rE/+4OS76Tg72wWXcHfHDAOgt\n9icp62cKx1WO3QweeZpSvLDmtdLgKKrqeIWh+rL8+ZhuAOxSkaRwcsMTWDaLeDOi\n0pGeqvfG8WNhPxkkaSI8xbiTK641Yg9WT/Q4yfHS7Q6wg1dj9YQdo0dvVB0S2Nir\nX9IK6PUaHDnQeFKDmKgLkDGLaKaiijEvC91wMEE6qB8b0eNhciaxq2YhGHcFmSRP\nWUyc5CmBadt7wIOH5Z3bfuwWGxqxKjNw/baM/d+nk7hlDr01YL9c0g16B9MW\n-----END CERTIFICATE-----\n","apiV3Key":"joerVi8y5DJ3o4ttA0o1uH47Xz1u2Ase"}', NULL, '2021-10-23 17:12:10', NULL, '2022-02-27 04:15:13', 0, 1); -INSERT INTO "public"."pay_channel" ("id", "code", "status", "remark", "fee_rate", "merchant_id", "app_id", "config", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (10, 'wx_pub', 0, NULL, 1, 1, 6, '{"@class":"cn.iocoder.yudao.framework.pay.core.client.impl.wx.WXPayClientConfig","appId":"wx041349c6f39b268b","mchId":"1545083881","apiVersion":"v2","mchKey":"0alL64UDQdlCwiKZ73ib7ypaIjMns06p","privateKeyContent":"-----BEGIN PRIVATE KEY-----\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC5q2hYE3loOQoH\nl/2kh/epuj17W8VpV5vBl7ysJWAbBXux6mlq4gKTHD0QUQdiKtDEUm/bKC9Bi6VU\nuklM5Y8oCaCbhjklHRbET8jsgd9phSNGviHclYRLsQRO8oXnN89kN0y7DYKm0hYd\nmaiS12Z3v8VaImSTr4HVeHlC/z3S6mdwSr263stKt931YTcbTj/QFH7znsv9Na0u\nX6LaMBEEAsJctWdm8Ndrd1tGh9Fzf0DA5VRXsJR3kkWspy+IwiDTPV/FDKOU9NJC\nSxMmDePerTfkoZ2s1rltqBK0ykDJrXtxR+hTzEsKZ/KpNi8tyYpfNZsviHIlUsLP\nFJ5UvUhpAgMBAAECggEAd90NltazqTIxpGdeCwrwOzWNnYbIclJprlhMKIJUgf1P\nNrPTbHoOGXTAgzkcYCat8iAaMEzH/TOu/3zn92m3uqxEcEL9v1UBLqknWHAbkB6w\ngGocqDAqYUcdNe5hvbyM+fCta5C0SQgV2PQrHOlMMICwYpkTfzhtxCdreXIYMoGg\nJEIRkZWgrm/N7LTtNgizznuUjy6OURWjXaWKPcs3b3j6G1gLj9Vp++z4y0u51nqM\n4R6fcvl8M6BjlcC8zo6DbOvCW8cXtuXsnru+2TPrUnsGeybJok4fEQsfW1BvpvPo\nief38rYJn4OWxIrHcpWrhNtXtgRPeiMGFfIsEQDmVQKBgQDzXK6Nn3Nr3TFfGVTy\n8QYrzOuY2NqzH8nnsLL6qn3HoKxTv+PcFKOTPsi6f4hIYCzBP0esRrPv0ffMu9oQ\nJvFtCJvMmcKGtp0Q5hcj0y/XkbC3AWuahJtBv8lhKXVnQXSL0j3+ombljw4/8yN0\nAzgBz+j/skQQgZ3sN5h+DHGtgwKBgQDDT784/2pd4m86c/uBmrwYfqu6MJo0eHJh\n1XPtE+u8pOHyNTFk77rKobKDqN5VlrF0uEmBc/08LKhyxJ3vh/zAbcmqT1Mq778y\nAKKUtVmvcaVDrvSQHsnhj0zt4SHGmmU34U2b9hV+nocq5VszX6/jp//HJi9bs3We\ndAzfFCmaowKBgC1MmDVGc+6lCraf+X8LPFHU4Bnga70h8qxM6NPd/nG1R76DHn/t\n25DiA+0rJgwK0unZxJadxoqic9TJNssA5Lmd+5o3GM2Imm311mLVwbcHqHQ4MHZf\nrqKrd2m9lNv2hCIurVmDk1Gxsj5XHMdQfhFgSQengCHubp30r07vNA3PAoGAUEAE\nIjdQTSMs8KeXP7mEb8wcY3R05/pVhT1fVJpK0kgtTofss7yM05V88/v+3sv8Pik6\niqZN9tuimwWOn00Q3UA/DGtrkMjRlooMQ24AW8YmUZkhg9YivTtUMKnAZwopbLx2\nVw7V5iDdCRMUVheK/c+ZmQpnixZBzcmBQGfYcGECgYBjEq3Mem+Aw6pXOu6+0FwH\n9y6Xi4HhBkq0OOZZuXFtWVry7YrD3pBgzWVAZJqJCkyPKKZzCzwdbFd3u0lYBs35\nzYgx7ug4hR+wfI980a3vxjcWGOqnOUUnUJ7ucIa+KDgnYV/bBy4jqpVreXmWAJXl\nfyjG3eLWBrtrsI9YX6zeAA==\n-----END PRIVATE KEY-----\n","privateCertContent":"-----BEGIN CERTIFICATE-----\nMIID6TCCAtGgAwIBAgIUNkEHq6aQcF80NSYqWS58ybsJzI4wDQYJKoZIhvcNAQEL\nBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT\nFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg\nQ0EwHhcNMjExMDIxMDU0NTQxWhcNMjYxMDIwMDU0NTQxWjB7MRMwEQYDVQQDDAox\nNTQ1MDgzODgxMRswGQYDVQQKDBLlvq7kv6HllYbmiLfns7vnu58xJzAlBgNVBAsM\nHuWOhuWfjuWMuuWkp+adjuWwp+aXpeeUqOWTgeW6lzELMAkGA1UEBgwCQ04xETAP\nBgNVBAcMCFNoZW5aaGVuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\nuatoWBN5aDkKB5f9pIf3qbo9e1vFaVebwZe8rCVgGwV7seppauICkxw9EFEHYirQ\nxFJv2ygvQYulVLpJTOWPKAmgm4Y5JR0WxE/I7IHfaYUjRr4h3JWES7EETvKF5zfP\nZDdMuw2CptIWHZmoktdmd7/FWiJkk6+B1Xh5Qv890upncEq9ut7LSrfd9WE3G04/\n0BR+857L/TWtLl+i2jARBALCXLVnZvDXa3dbRofRc39AwOVUV7CUd5JFrKcviMIg\n0z1fxQyjlPTSQksTJg3j3q035KGdrNa5bagStMpAya17cUfoU8xLCmfyqTYvLcmK\nXzWbL4hyJVLCzxSeVL1IaQIDAQABo4GBMH8wCQYDVR0TBAIwADALBgNVHQ8EBAMC\nBPAwZQYDVR0fBF4wXDBaoFigVoZUaHR0cDovL2V2Y2EuaXRydXMuY29tLmNuL3B1\nYmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUwREJDMDRCMDZBRDM5NzU0OTg0NkMw\nMUMzRThFQkQyMA0GCSqGSIb3DQEBCwUAA4IBAQBe7XgncAY/1PLbCsnMsYt11k3V\n2cdNZ+yuCxhlOEKk3nHE6WCTL6zL0qWlTKKpnw1rE/+4OS76Tg72wWXcHfHDAOgt\n9icp62cKx1WO3QweeZpSvLDmtdLgKKrqeIWh+rL8+ZhuAOxSkaRwcsMTWDaLeDOi\n0pGeqvfG8WNhPxkkaSI8xbiTK641Yg9WT/Q4yfHS7Q6wg1dj9YQdo0dvVB0S2Nir\nX9IK6PUaHDnQeFKDmKgLkDGLaKaiijEvC91wMEE6qB8b0eNhciaxq2YhGHcFmSRP\nWUyc5CmBadt7wIOH5Z3bfuwWGxqxKjNw/baM/d+nk7hlDr01YL9c0g16B9MW\n-----END CERTIFICATE-----\n","apiV3Key":"joerVi8y5DJ3o4ttA0o1uH47Xz1u2Ase"}', NULL, '2021-12-14 22:01:24', NULL, '2022-02-27 04:15:12', 0, 1); -INSERT INTO "public"."pay_channel" ("id", "code", "status", "remark", "fee_rate", "merchant_id", "app_id", "config", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (11, 'wx_pub', 0, NULL, 1, 1, 6, '{"@class":"cn.iocoder.yudao.framework.pay.core.client.impl.wx.WXPayClientConfig","appId":"wx041349c6f39b268b","mchId":"1545083881","apiVersion":"v2","mchKey":"0alL64UDQdlCwiKZ73ib7ypaIjMns06p","privateKeyContent":"-----BEGIN PRIVATE KEY-----\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC5q2hYE3loOQoH\nl/2kh/epuj17W8VpV5vBl7ysJWAbBXux6mlq4gKTHD0QUQdiKtDEUm/bKC9Bi6VU\nuklM5Y8oCaCbhjklHRbET8jsgd9phSNGviHclYRLsQRO8oXnN89kN0y7DYKm0hYd\nmaiS12Z3v8VaImSTr4HVeHlC/z3S6mdwSr263stKt931YTcbTj/QFH7znsv9Na0u\nX6LaMBEEAsJctWdm8Ndrd1tGh9Fzf0DA5VRXsJR3kkWspy+IwiDTPV/FDKOU9NJC\nSxMmDePerTfkoZ2s1rltqBK0ykDJrXtxR+hTzEsKZ/KpNi8tyYpfNZsviHIlUsLP\nFJ5UvUhpAgMBAAECggEAd90NltazqTIxpGdeCwrwOzWNnYbIclJprlhMKIJUgf1P\nNrPTbHoOGXTAgzkcYCat8iAaMEzH/TOu/3zn92m3uqxEcEL9v1UBLqknWHAbkB6w\ngGocqDAqYUcdNe5hvbyM+fCta5C0SQgV2PQrHOlMMICwYpkTfzhtxCdreXIYMoGg\nJEIRkZWgrm/N7LTtNgizznuUjy6OURWjXaWKPcs3b3j6G1gLj9Vp++z4y0u51nqM\n4R6fcvl8M6BjlcC8zo6DbOvCW8cXtuXsnru+2TPrUnsGeybJok4fEQsfW1BvpvPo\nief38rYJn4OWxIrHcpWrhNtXtgRPeiMGFfIsEQDmVQKBgQDzXK6Nn3Nr3TFfGVTy\n8QYrzOuY2NqzH8nnsLL6qn3HoKxTv+PcFKOTPsi6f4hIYCzBP0esRrPv0ffMu9oQ\nJvFtCJvMmcKGtp0Q5hcj0y/XkbC3AWuahJtBv8lhKXVnQXSL0j3+ombljw4/8yN0\nAzgBz+j/skQQgZ3sN5h+DHGtgwKBgQDDT784/2pd4m86c/uBmrwYfqu6MJo0eHJh\n1XPtE+u8pOHyNTFk77rKobKDqN5VlrF0uEmBc/08LKhyxJ3vh/zAbcmqT1Mq778y\nAKKUtVmvcaVDrvSQHsnhj0zt4SHGmmU34U2b9hV+nocq5VszX6/jp//HJi9bs3We\ndAzfFCmaowKBgC1MmDVGc+6lCraf+X8LPFHU4Bnga70h8qxM6NPd/nG1R76DHn/t\n25DiA+0rJgwK0unZxJadxoqic9TJNssA5Lmd+5o3GM2Imm311mLVwbcHqHQ4MHZf\nrqKrd2m9lNv2hCIurVmDk1Gxsj5XHMdQfhFgSQengCHubp30r07vNA3PAoGAUEAE\nIjdQTSMs8KeXP7mEb8wcY3R05/pVhT1fVJpK0kgtTofss7yM05V88/v+3sv8Pik6\niqZN9tuimwWOn00Q3UA/DGtrkMjRlooMQ24AW8YmUZkhg9YivTtUMKnAZwopbLx2\nVw7V5iDdCRMUVheK/c+ZmQpnixZBzcmBQGfYcGECgYBjEq3Mem+Aw6pXOu6+0FwH\n9y6Xi4HhBkq0OOZZuXFtWVry7YrD3pBgzWVAZJqJCkyPKKZzCzwdbFd3u0lYBs35\nzYgx7ug4hR+wfI980a3vxjcWGOqnOUUnUJ7ucIa+KDgnYV/bBy4jqpVreXmWAJXl\nfyjG3eLWBrtrsI9YX6zeAA==\n-----END PRIVATE KEY-----\n","privateCertContent":"-----BEGIN CERTIFICATE-----\nMIID6TCCAtGgAwIBAgIUNkEHq6aQcF80NSYqWS58ybsJzI4wDQYJKoZIhvcNAQEL\nBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT\nFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg\nQ0EwHhcNMjExMDIxMDU0NTQxWhcNMjYxMDIwMDU0NTQxWjB7MRMwEQYDVQQDDAox\nNTQ1MDgzODgxMRswGQYDVQQKDBLlvq7kv6HllYbmiLfns7vnu58xJzAlBgNVBAsM\nHuWOhuWfjuWMuuWkp+adjuWwp+aXpeeUqOWTgeW6lzELMAkGA1UEBgwCQ04xETAP\nBgNVBAcMCFNoZW5aaGVuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\nuatoWBN5aDkKB5f9pIf3qbo9e1vFaVebwZe8rCVgGwV7seppauICkxw9EFEHYirQ\nxFJv2ygvQYulVLpJTOWPKAmgm4Y5JR0WxE/I7IHfaYUjRr4h3JWES7EETvKF5zfP\nZDdMuw2CptIWHZmoktdmd7/FWiJkk6+B1Xh5Qv890upncEq9ut7LSrfd9WE3G04/\n0BR+857L/TWtLl+i2jARBALCXLVnZvDXa3dbRofRc39AwOVUV7CUd5JFrKcviMIg\n0z1fxQyjlPTSQksTJg3j3q035KGdrNa5bagStMpAya17cUfoU8xLCmfyqTYvLcmK\nXzWbL4hyJVLCzxSeVL1IaQIDAQABo4GBMH8wCQYDVR0TBAIwADALBgNVHQ8EBAMC\nBPAwZQYDVR0fBF4wXDBaoFigVoZUaHR0cDovL2V2Y2EuaXRydXMuY29tLmNuL3B1\nYmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUwREJDMDRCMDZBRDM5NzU0OTg0NkMw\nMUMzRThFQkQyMA0GCSqGSIb3DQEBCwUAA4IBAQBe7XgncAY/1PLbCsnMsYt11k3V\n2cdNZ+yuCxhlOEKk3nHE6WCTL6zL0qWlTKKpnw1rE/+4OS76Tg72wWXcHfHDAOgt\n9icp62cKx1WO3QweeZpSvLDmtdLgKKrqeIWh+rL8+ZhuAOxSkaRwcsMTWDaLeDOi\n0pGeqvfG8WNhPxkkaSI8xbiTK641Yg9WT/Q4yfHS7Q6wg1dj9YQdo0dvVB0S2Nir\nX9IK6PUaHDnQeFKDmKgLkDGLaKaiijEvC91wMEE6qB8b0eNhciaxq2YhGHcFmSRP\nWUyc5CmBadt7wIOH5Z3bfuwWGxqxKjNw/baM/d+nk7hlDr01YL9c0g16B9MW\n-----END CERTIFICATE-----\n","apiV3Key":"joerVi8y5DJ3o4ttA0o1uH47Xz1u2Ase"}', NULL, '2021-12-14 22:02:57', NULL, '2022-02-27 04:15:11', 0, 1); -INSERT INTO "public"."pay_channel" ("id", "code", "status", "remark", "fee_rate", "merchant_id", "app_id", "config", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (12, 'wx_pub', 0, NULL, 1, 1, 6, '{"@class":"cn.iocoder.yudao.framework.pay.core.client.impl.wx.WXPayClientConfig","appId":"wx041349c6f39b268b","mchId":"1545083881","apiVersion":"v2","mchKey":"0alL64UDQdlCwiKZ73ib7ypaIjMns06p","privateKeyContent":"-----BEGIN PRIVATE KEY-----\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC5q2hYE3loOQoH\nl/2kh/epuj17W8VpV5vBl7ysJWAbBXux6mlq4gKTHD0QUQdiKtDEUm/bKC9Bi6VU\nuklM5Y8oCaCbhjklHRbET8jsgd9phSNGviHclYRLsQRO8oXnN89kN0y7DYKm0hYd\nmaiS12Z3v8VaImSTr4HVeHlC/z3S6mdwSr263stKt931YTcbTj/QFH7znsv9Na0u\nX6LaMBEEAsJctWdm8Ndrd1tGh9Fzf0DA5VRXsJR3kkWspy+IwiDTPV/FDKOU9NJC\nSxMmDePerTfkoZ2s1rltqBK0ykDJrXtxR+hTzEsKZ/KpNi8tyYpfNZsviHIlUsLP\nFJ5UvUhpAgMBAAECggEAd90NltazqTIxpGdeCwrwOzWNnYbIclJprlhMKIJUgf1P\nNrPTbHoOGXTAgzkcYCat8iAaMEzH/TOu/3zn92m3uqxEcEL9v1UBLqknWHAbkB6w\ngGocqDAqYUcdNe5hvbyM+fCta5C0SQgV2PQrHOlMMICwYpkTfzhtxCdreXIYMoGg\nJEIRkZWgrm/N7LTtNgizznuUjy6OURWjXaWKPcs3b3j6G1gLj9Vp++z4y0u51nqM\n4R6fcvl8M6BjlcC8zo6DbOvCW8cXtuXsnru+2TPrUnsGeybJok4fEQsfW1BvpvPo\nief38rYJn4OWxIrHcpWrhNtXtgRPeiMGFfIsEQDmVQKBgQDzXK6Nn3Nr3TFfGVTy\n8QYrzOuY2NqzH8nnsLL6qn3HoKxTv+PcFKOTPsi6f4hIYCzBP0esRrPv0ffMu9oQ\nJvFtCJvMmcKGtp0Q5hcj0y/XkbC3AWuahJtBv8lhKXVnQXSL0j3+ombljw4/8yN0\nAzgBz+j/skQQgZ3sN5h+DHGtgwKBgQDDT784/2pd4m86c/uBmrwYfqu6MJo0eHJh\n1XPtE+u8pOHyNTFk77rKobKDqN5VlrF0uEmBc/08LKhyxJ3vh/zAbcmqT1Mq778y\nAKKUtVmvcaVDrvSQHsnhj0zt4SHGmmU34U2b9hV+nocq5VszX6/jp//HJi9bs3We\ndAzfFCmaowKBgC1MmDVGc+6lCraf+X8LPFHU4Bnga70h8qxM6NPd/nG1R76DHn/t\n25DiA+0rJgwK0unZxJadxoqic9TJNssA5Lmd+5o3GM2Imm311mLVwbcHqHQ4MHZf\nrqKrd2m9lNv2hCIurVmDk1Gxsj5XHMdQfhFgSQengCHubp30r07vNA3PAoGAUEAE\nIjdQTSMs8KeXP7mEb8wcY3R05/pVhT1fVJpK0kgtTofss7yM05V88/v+3sv8Pik6\niqZN9tuimwWOn00Q3UA/DGtrkMjRlooMQ24AW8YmUZkhg9YivTtUMKnAZwopbLx2\nVw7V5iDdCRMUVheK/c+ZmQpnixZBzcmBQGfYcGECgYBjEq3Mem+Aw6pXOu6+0FwH\n9y6Xi4HhBkq0OOZZuXFtWVry7YrD3pBgzWVAZJqJCkyPKKZzCzwdbFd3u0lYBs35\nzYgx7ug4hR+wfI980a3vxjcWGOqnOUUnUJ7ucIa+KDgnYV/bBy4jqpVreXmWAJXl\nfyjG3eLWBrtrsI9YX6zeAA==\n-----END PRIVATE KEY-----\n","privateCertContent":"-----BEGIN CERTIFICATE-----\nMIID6TCCAtGgAwIBAgIUNkEHq6aQcF80NSYqWS58ybsJzI4wDQYJKoZIhvcNAQEL\nBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT\nFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg\nQ0EwHhcNMjExMDIxMDU0NTQxWhcNMjYxMDIwMDU0NTQxWjB7MRMwEQYDVQQDDAox\nNTQ1MDgzODgxMRswGQYDVQQKDBLlvq7kv6HllYbmiLfns7vnu58xJzAlBgNVBAsM\nHuWOhuWfjuWMuuWkp+adjuWwp+aXpeeUqOWTgeW6lzELMAkGA1UEBgwCQ04xETAP\nBgNVBAcMCFNoZW5aaGVuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\nuatoWBN5aDkKB5f9pIf3qbo9e1vFaVebwZe8rCVgGwV7seppauICkxw9EFEHYirQ\nxFJv2ygvQYulVLpJTOWPKAmgm4Y5JR0WxE/I7IHfaYUjRr4h3JWES7EETvKF5zfP\nZDdMuw2CptIWHZmoktdmd7/FWiJkk6+B1Xh5Qv890upncEq9ut7LSrfd9WE3G04/\n0BR+857L/TWtLl+i2jARBALCXLVnZvDXa3dbRofRc39AwOVUV7CUd5JFrKcviMIg\n0z1fxQyjlPTSQksTJg3j3q035KGdrNa5bagStMpAya17cUfoU8xLCmfyqTYvLcmK\nXzWbL4hyJVLCzxSeVL1IaQIDAQABo4GBMH8wCQYDVR0TBAIwADALBgNVHQ8EBAMC\nBPAwZQYDVR0fBF4wXDBaoFigVoZUaHR0cDovL2V2Y2EuaXRydXMuY29tLmNuL3B1\nYmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUwREJDMDRCMDZBRDM5NzU0OTg0NkMw\nMUMzRThFQkQyMA0GCSqGSIb3DQEBCwUAA4IBAQBe7XgncAY/1PLbCsnMsYt11k3V\n2cdNZ+yuCxhlOEKk3nHE6WCTL6zL0qWlTKKpnw1rE/+4OS76Tg72wWXcHfHDAOgt\n9icp62cKx1WO3QweeZpSvLDmtdLgKKrqeIWh+rL8+ZhuAOxSkaRwcsMTWDaLeDOi\n0pGeqvfG8WNhPxkkaSI8xbiTK641Yg9WT/Q4yfHS7Q6wg1dj9YQdo0dvVB0S2Nir\nX9IK6PUaHDnQeFKDmKgLkDGLaKaiijEvC91wMEE6qB8b0eNhciaxq2YhGHcFmSRP\nWUyc5CmBadt7wIOH5Z3bfuwWGxqxKjNw/baM/d+nk7hlDr01YL9c0g16B9MW\n-----END CERTIFICATE-----\n","apiV3Key":"joerVi8y5DJ3o4ttA0o1uH47Xz1u2Ase"}', NULL, '2021-12-14 22:06:10', NULL, '2022-02-27 04:15:09', 0, 1); -INSERT INTO "public"."pay_channel" ("id", "code", "status", "remark", "fee_rate", "merchant_id", "app_id", "config", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (13, 'wx_pub', 0, NULL, 1, 1, 6, '{"@class":"cn.iocoder.yudao.framework.pay.core.client.impl.wx.WXPayClientConfig","appId":"wx041349c6f39b268b","mchId":"1545083881","apiVersion":"v2","mchKey":"0alL64UDQdlCwiKZ73ib7ypaIjMns06p","privateKeyContent":"-----BEGIN PRIVATE KEY-----\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC5q2hYE3loOQoH\nl/2kh/epuj17W8VpV5vBl7ysJWAbBXux6mlq4gKTHD0QUQdiKtDEUm/bKC9Bi6VU\nuklM5Y8oCaCbhjklHRbET8jsgd9phSNGviHclYRLsQRO8oXnN89kN0y7DYKm0hYd\nmaiS12Z3v8VaImSTr4HVeHlC/z3S6mdwSr263stKt931YTcbTj/QFH7znsv9Na0u\nX6LaMBEEAsJctWdm8Ndrd1tGh9Fzf0DA5VRXsJR3kkWspy+IwiDTPV/FDKOU9NJC\nSxMmDePerTfkoZ2s1rltqBK0ykDJrXtxR+hTzEsKZ/KpNi8tyYpfNZsviHIlUsLP\nFJ5UvUhpAgMBAAECggEAd90NltazqTIxpGdeCwrwOzWNnYbIclJprlhMKIJUgf1P\nNrPTbHoOGXTAgzkcYCat8iAaMEzH/TOu/3zn92m3uqxEcEL9v1UBLqknWHAbkB6w\ngGocqDAqYUcdNe5hvbyM+fCta5C0SQgV2PQrHOlMMICwYpkTfzhtxCdreXIYMoGg\nJEIRkZWgrm/N7LTtNgizznuUjy6OURWjXaWKPcs3b3j6G1gLj9Vp++z4y0u51nqM\n4R6fcvl8M6BjlcC8zo6DbOvCW8cXtuXsnru+2TPrUnsGeybJok4fEQsfW1BvpvPo\nief38rYJn4OWxIrHcpWrhNtXtgRPeiMGFfIsEQDmVQKBgQDzXK6Nn3Nr3TFfGVTy\n8QYrzOuY2NqzH8nnsLL6qn3HoKxTv+PcFKOTPsi6f4hIYCzBP0esRrPv0ffMu9oQ\nJvFtCJvMmcKGtp0Q5hcj0y/XkbC3AWuahJtBv8lhKXVnQXSL0j3+ombljw4/8yN0\nAzgBz+j/skQQgZ3sN5h+DHGtgwKBgQDDT784/2pd4m86c/uBmrwYfqu6MJo0eHJh\n1XPtE+u8pOHyNTFk77rKobKDqN5VlrF0uEmBc/08LKhyxJ3vh/zAbcmqT1Mq778y\nAKKUtVmvcaVDrvSQHsnhj0zt4SHGmmU34U2b9hV+nocq5VszX6/jp//HJi9bs3We\ndAzfFCmaowKBgC1MmDVGc+6lCraf+X8LPFHU4Bnga70h8qxM6NPd/nG1R76DHn/t\n25DiA+0rJgwK0unZxJadxoqic9TJNssA5Lmd+5o3GM2Imm311mLVwbcHqHQ4MHZf\nrqKrd2m9lNv2hCIurVmDk1Gxsj5XHMdQfhFgSQengCHubp30r07vNA3PAoGAUEAE\nIjdQTSMs8KeXP7mEb8wcY3R05/pVhT1fVJpK0kgtTofss7yM05V88/v+3sv8Pik6\niqZN9tuimwWOn00Q3UA/DGtrkMjRlooMQ24AW8YmUZkhg9YivTtUMKnAZwopbLx2\nVw7V5iDdCRMUVheK/c+ZmQpnixZBzcmBQGfYcGECgYBjEq3Mem+Aw6pXOu6+0FwH\n9y6Xi4HhBkq0OOZZuXFtWVry7YrD3pBgzWVAZJqJCkyPKKZzCzwdbFd3u0lYBs35\nzYgx7ug4hR+wfI980a3vxjcWGOqnOUUnUJ7ucIa+KDgnYV/bBy4jqpVreXmWAJXl\nfyjG3eLWBrtrsI9YX6zeAA==\n-----END PRIVATE KEY-----\n","privateCertContent":"-----BEGIN CERTIFICATE-----\nMIID6TCCAtGgAwIBAgIUNkEHq6aQcF80NSYqWS58ybsJzI4wDQYJKoZIhvcNAQEL\nBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT\nFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg\nQ0EwHhcNMjExMDIxMDU0NTQxWhcNMjYxMDIwMDU0NTQxWjB7MRMwEQYDVQQDDAox\nNTQ1MDgzODgxMRswGQYDVQQKDBLlvq7kv6HllYbmiLfns7vnu58xJzAlBgNVBAsM\nHuWOhuWfjuWMuuWkp+adjuWwp+aXpeeUqOWTgeW6lzELMAkGA1UEBgwCQ04xETAP\nBgNVBAcMCFNoZW5aaGVuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\nuatoWBN5aDkKB5f9pIf3qbo9e1vFaVebwZe8rCVgGwV7seppauICkxw9EFEHYirQ\nxFJv2ygvQYulVLpJTOWPKAmgm4Y5JR0WxE/I7IHfaYUjRr4h3JWES7EETvKF5zfP\nZDdMuw2CptIWHZmoktdmd7/FWiJkk6+B1Xh5Qv890upncEq9ut7LSrfd9WE3G04/\n0BR+857L/TWtLl+i2jARBALCXLVnZvDXa3dbRofRc39AwOVUV7CUd5JFrKcviMIg\n0z1fxQyjlPTSQksTJg3j3q035KGdrNa5bagStMpAya17cUfoU8xLCmfyqTYvLcmK\nXzWbL4hyJVLCzxSeVL1IaQIDAQABo4GBMH8wCQYDVR0TBAIwADALBgNVHQ8EBAMC\nBPAwZQYDVR0fBF4wXDBaoFigVoZUaHR0cDovL2V2Y2EuaXRydXMuY29tLmNuL3B1\nYmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUwREJDMDRCMDZBRDM5NzU0OTg0NkMw\nMUMzRThFQkQyMA0GCSqGSIb3DQEBCwUAA4IBAQBe7XgncAY/1PLbCsnMsYt11k3V\n2cdNZ+yuCxhlOEKk3nHE6WCTL6zL0qWlTKKpnw1rE/+4OS76Tg72wWXcHfHDAOgt\n9icp62cKx1WO3QweeZpSvLDmtdLgKKrqeIWh+rL8+ZhuAOxSkaRwcsMTWDaLeDOi\n0pGeqvfG8WNhPxkkaSI8xbiTK641Yg9WT/Q4yfHS7Q6wg1dj9YQdo0dvVB0S2Nir\nX9IK6PUaHDnQeFKDmKgLkDGLaKaiijEvC91wMEE6qB8b0eNhciaxq2YhGHcFmSRP\nWUyc5CmBadt7wIOH5Z3bfuwWGxqxKjNw/baM/d+nk7hlDr01YL9c0g16B9MW\n-----END CERTIFICATE-----\n","apiV3Key":"joerVi8y5DJ3o4ttA0o1uH47Xz1u2Ase"}', NULL, '2021-12-14 22:09:39', NULL, '2022-02-27 04:15:08', 0, 1); -INSERT INTO "public"."pay_channel" ("id", "code", "status", "remark", "fee_rate", "merchant_id", "app_id", "config", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (14, 'wx_pub', 0, NULL, 1, 1, 6, '{"@class":"cn.iocoder.yudao.framework.pay.core.client.impl.wx.WXPayClientConfig","appId":"wx041349c6f39b268b","mchId":"1545083881","apiVersion":"v2","mchKey":"0alL64UDQdlCwiKZ73ib7ypaIjMns06p","privateKeyContent":"-----BEGIN PRIVATE KEY-----\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC5q2hYE3loOQoH\nl/2kh/epuj17W8VpV5vBl7ysJWAbBXux6mlq4gKTHD0QUQdiKtDEUm/bKC9Bi6VU\nuklM5Y8oCaCbhjklHRbET8jsgd9phSNGviHclYRLsQRO8oXnN89kN0y7DYKm0hYd\nmaiS12Z3v8VaImSTr4HVeHlC/z3S6mdwSr263stKt931YTcbTj/QFH7znsv9Na0u\nX6LaMBEEAsJctWdm8Ndrd1tGh9Fzf0DA5VRXsJR3kkWspy+IwiDTPV/FDKOU9NJC\nSxMmDePerTfkoZ2s1rltqBK0ykDJrXtxR+hTzEsKZ/KpNi8tyYpfNZsviHIlUsLP\nFJ5UvUhpAgMBAAECggEAd90NltazqTIxpGdeCwrwOzWNnYbIclJprlhMKIJUgf1P\nNrPTbHoOGXTAgzkcYCat8iAaMEzH/TOu/3zn92m3uqxEcEL9v1UBLqknWHAbkB6w\ngGocqDAqYUcdNe5hvbyM+fCta5C0SQgV2PQrHOlMMICwYpkTfzhtxCdreXIYMoGg\nJEIRkZWgrm/N7LTtNgizznuUjy6OURWjXaWKPcs3b3j6G1gLj9Vp++z4y0u51nqM\n4R6fcvl8M6BjlcC8zo6DbOvCW8cXtuXsnru+2TPrUnsGeybJok4fEQsfW1BvpvPo\nief38rYJn4OWxIrHcpWrhNtXtgRPeiMGFfIsEQDmVQKBgQDzXK6Nn3Nr3TFfGVTy\n8QYrzOuY2NqzH8nnsLL6qn3HoKxTv+PcFKOTPsi6f4hIYCzBP0esRrPv0ffMu9oQ\nJvFtCJvMmcKGtp0Q5hcj0y/XkbC3AWuahJtBv8lhKXVnQXSL0j3+ombljw4/8yN0\nAzgBz+j/skQQgZ3sN5h+DHGtgwKBgQDDT784/2pd4m86c/uBmrwYfqu6MJo0eHJh\n1XPtE+u8pOHyNTFk77rKobKDqN5VlrF0uEmBc/08LKhyxJ3vh/zAbcmqT1Mq778y\nAKKUtVmvcaVDrvSQHsnhj0zt4SHGmmU34U2b9hV+nocq5VszX6/jp//HJi9bs3We\ndAzfFCmaowKBgC1MmDVGc+6lCraf+X8LPFHU4Bnga70h8qxM6NPd/nG1R76DHn/t\n25DiA+0rJgwK0unZxJadxoqic9TJNssA5Lmd+5o3GM2Imm311mLVwbcHqHQ4MHZf\nrqKrd2m9lNv2hCIurVmDk1Gxsj5XHMdQfhFgSQengCHubp30r07vNA3PAoGAUEAE\nIjdQTSMs8KeXP7mEb8wcY3R05/pVhT1fVJpK0kgtTofss7yM05V88/v+3sv8Pik6\niqZN9tuimwWOn00Q3UA/DGtrkMjRlooMQ24AW8YmUZkhg9YivTtUMKnAZwopbLx2\nVw7V5iDdCRMUVheK/c+ZmQpnixZBzcmBQGfYcGECgYBjEq3Mem+Aw6pXOu6+0FwH\n9y6Xi4HhBkq0OOZZuXFtWVry7YrD3pBgzWVAZJqJCkyPKKZzCzwdbFd3u0lYBs35\nzYgx7ug4hR+wfI980a3vxjcWGOqnOUUnUJ7ucIa+KDgnYV/bBy4jqpVreXmWAJXl\nfyjG3eLWBrtrsI9YX6zeAA==\n-----END PRIVATE KEY-----\n","privateCertContent":"-----BEGIN CERTIFICATE-----\nMIID6TCCAtGgAwIBAgIUNkEHq6aQcF80NSYqWS58ybsJzI4wDQYJKoZIhvcNAQEL\nBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT\nFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg\nQ0EwHhcNMjExMDIxMDU0NTQxWhcNMjYxMDIwMDU0NTQxWjB7MRMwEQYDVQQDDAox\nNTQ1MDgzODgxMRswGQYDVQQKDBLlvq7kv6HllYbmiLfns7vnu58xJzAlBgNVBAsM\nHuWOhuWfjuWMuuWkp+adjuWwp+aXpeeUqOWTgeW6lzELMAkGA1UEBgwCQ04xETAP\nBgNVBAcMCFNoZW5aaGVuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\nuatoWBN5aDkKB5f9pIf3qbo9e1vFaVebwZe8rCVgGwV7seppauICkxw9EFEHYirQ\nxFJv2ygvQYulVLpJTOWPKAmgm4Y5JR0WxE/I7IHfaYUjRr4h3JWES7EETvKF5zfP\nZDdMuw2CptIWHZmoktdmd7/FWiJkk6+B1Xh5Qv890upncEq9ut7LSrfd9WE3G04/\n0BR+857L/TWtLl+i2jARBALCXLVnZvDXa3dbRofRc39AwOVUV7CUd5JFrKcviMIg\n0z1fxQyjlPTSQksTJg3j3q035KGdrNa5bagStMpAya17cUfoU8xLCmfyqTYvLcmK\nXzWbL4hyJVLCzxSeVL1IaQIDAQABo4GBMH8wCQYDVR0TBAIwADALBgNVHQ8EBAMC\nBPAwZQYDVR0fBF4wXDBaoFigVoZUaHR0cDovL2V2Y2EuaXRydXMuY29tLmNuL3B1\nYmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUwREJDMDRCMDZBRDM5NzU0OTg0NkMw\nMUMzRThFQkQyMA0GCSqGSIb3DQEBCwUAA4IBAQBe7XgncAY/1PLbCsnMsYt11k3V\n2cdNZ+yuCxhlOEKk3nHE6WCTL6zL0qWlTKKpnw1rE/+4OS76Tg72wWXcHfHDAOgt\n9icp62cKx1WO3QweeZpSvLDmtdLgKKrqeIWh+rL8+ZhuAOxSkaRwcsMTWDaLeDOi\n0pGeqvfG8WNhPxkkaSI8xbiTK641Yg9WT/Q4yfHS7Q6wg1dj9YQdo0dvVB0S2Nir\nX9IK6PUaHDnQeFKDmKgLkDGLaKaiijEvC91wMEE6qB8b0eNhciaxq2YhGHcFmSRP\nWUyc5CmBadt7wIOH5Z3bfuwWGxqxKjNw/baM/d+nk7hlDr01YL9c0g16B9MW\n-----END CERTIFICATE-----\n","apiV3Key":"joerVi8y5DJ3o4ttA0o1uH47Xz1u2Ase"}', NULL, '2021-12-14 22:38:49', NULL, '2022-02-27 04:15:05', 0, 1); -INSERT INTO "public"."pay_channel" ("id", "code", "status", "remark", "fee_rate", "merchant_id", "app_id", "config", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (15, 'wx_pub', 0, NULL, 1, 1, 6, '{"@class":"cn.iocoder.yudao.framework.pay.core.client.impl.wx.WXPayClientConfig","appId":"wx041349c6f39b268b","mchId":"1545083881","apiVersion":"v2","mchKey":"0alL64UDQdlCwiKZ73ib7ypaIjMns06p","privateKeyContent":"-----BEGIN PRIVATE KEY-----\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC5q2hYE3loOQoH\nl/2kh/epuj17W8VpV5vBl7ysJWAbBXux6mlq4gKTHD0QUQdiKtDEUm/bKC9Bi6VU\nuklM5Y8oCaCbhjklHRbET8jsgd9phSNGviHclYRLsQRO8oXnN89kN0y7DYKm0hYd\nmaiS12Z3v8VaImSTr4HVeHlC/z3S6mdwSr263stKt931YTcbTj/QFH7znsv9Na0u\nX6LaMBEEAsJctWdm8Ndrd1tGh9Fzf0DA5VRXsJR3kkWspy+IwiDTPV/FDKOU9NJC\nSxMmDePerTfkoZ2s1rltqBK0ykDJrXtxR+hTzEsKZ/KpNi8tyYpfNZsviHIlUsLP\nFJ5UvUhpAgMBAAECggEAd90NltazqTIxpGdeCwrwOzWNnYbIclJprlhMKIJUgf1P\nNrPTbHoOGXTAgzkcYCat8iAaMEzH/TOu/3zn92m3uqxEcEL9v1UBLqknWHAbkB6w\ngGocqDAqYUcdNe5hvbyM+fCta5C0SQgV2PQrHOlMMICwYpkTfzhtxCdreXIYMoGg\nJEIRkZWgrm/N7LTtNgizznuUjy6OURWjXaWKPcs3b3j6G1gLj9Vp++z4y0u51nqM\n4R6fcvl8M6BjlcC8zo6DbOvCW8cXtuXsnru+2TPrUnsGeybJok4fEQsfW1BvpvPo\nief38rYJn4OWxIrHcpWrhNtXtgRPeiMGFfIsEQDmVQKBgQDzXK6Nn3Nr3TFfGVTy\n8QYrzOuY2NqzH8nnsLL6qn3HoKxTv+PcFKOTPsi6f4hIYCzBP0esRrPv0ffMu9oQ\nJvFtCJvMmcKGtp0Q5hcj0y/XkbC3AWuahJtBv8lhKXVnQXSL0j3+ombljw4/8yN0\nAzgBz+j/skQQgZ3sN5h+DHGtgwKBgQDDT784/2pd4m86c/uBmrwYfqu6MJo0eHJh\n1XPtE+u8pOHyNTFk77rKobKDqN5VlrF0uEmBc/08LKhyxJ3vh/zAbcmqT1Mq778y\nAKKUtVmvcaVDrvSQHsnhj0zt4SHGmmU34U2b9hV+nocq5VszX6/jp//HJi9bs3We\ndAzfFCmaowKBgC1MmDVGc+6lCraf+X8LPFHU4Bnga70h8qxM6NPd/nG1R76DHn/t\n25DiA+0rJgwK0unZxJadxoqic9TJNssA5Lmd+5o3GM2Imm311mLVwbcHqHQ4MHZf\nrqKrd2m9lNv2hCIurVmDk1Gxsj5XHMdQfhFgSQengCHubp30r07vNA3PAoGAUEAE\nIjdQTSMs8KeXP7mEb8wcY3R05/pVhT1fVJpK0kgtTofss7yM05V88/v+3sv8Pik6\niqZN9tuimwWOn00Q3UA/DGtrkMjRlooMQ24AW8YmUZkhg9YivTtUMKnAZwopbLx2\nVw7V5iDdCRMUVheK/c+ZmQpnixZBzcmBQGfYcGECgYBjEq3Mem+Aw6pXOu6+0FwH\n9y6Xi4HhBkq0OOZZuXFtWVry7YrD3pBgzWVAZJqJCkyPKKZzCzwdbFd3u0lYBs35\nzYgx7ug4hR+wfI980a3vxjcWGOqnOUUnUJ7ucIa+KDgnYV/bBy4jqpVreXmWAJXl\nfyjG3eLWBrtrsI9YX6zeAA==\n-----END PRIVATE KEY-----\n","privateCertContent":"-----BEGIN CERTIFICATE-----\nMIID6TCCAtGgAwIBAgIUNkEHq6aQcF80NSYqWS58ybsJzI4wDQYJKoZIhvcNAQEL\nBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT\nFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg\nQ0EwHhcNMjExMDIxMDU0NTQxWhcNMjYxMDIwMDU0NTQxWjB7MRMwEQYDVQQDDAox\nNTQ1MDgzODgxMRswGQYDVQQKDBLlvq7kv6HllYbmiLfns7vnu58xJzAlBgNVBAsM\nHuWOhuWfjuWMuuWkp+adjuWwp+aXpeeUqOWTgeW6lzELMAkGA1UEBgwCQ04xETAP\nBgNVBAcMCFNoZW5aaGVuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\nuatoWBN5aDkKB5f9pIf3qbo9e1vFaVebwZe8rCVgGwV7seppauICkxw9EFEHYirQ\nxFJv2ygvQYulVLpJTOWPKAmgm4Y5JR0WxE/I7IHfaYUjRr4h3JWES7EETvKF5zfP\nZDdMuw2CptIWHZmoktdmd7/FWiJkk6+B1Xh5Qv890upncEq9ut7LSrfd9WE3G04/\n0BR+857L/TWtLl+i2jARBALCXLVnZvDXa3dbRofRc39AwOVUV7CUd5JFrKcviMIg\n0z1fxQyjlPTSQksTJg3j3q035KGdrNa5bagStMpAya17cUfoU8xLCmfyqTYvLcmK\nXzWbL4hyJVLCzxSeVL1IaQIDAQABo4GBMH8wCQYDVR0TBAIwADALBgNVHQ8EBAMC\nBPAwZQYDVR0fBF4wXDBaoFigVoZUaHR0cDovL2V2Y2EuaXRydXMuY29tLmNuL3B1\nYmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUwREJDMDRCMDZBRDM5NzU0OTg0NkMw\nMUMzRThFQkQyMA0GCSqGSIb3DQEBCwUAA4IBAQBe7XgncAY/1PLbCsnMsYt11k3V\n2cdNZ+yuCxhlOEKk3nHE6WCTL6zL0qWlTKKpnw1rE/+4OS76Tg72wWXcHfHDAOgt\n9icp62cKx1WO3QweeZpSvLDmtdLgKKrqeIWh+rL8+ZhuAOxSkaRwcsMTWDaLeDOi\n0pGeqvfG8WNhPxkkaSI8xbiTK641Yg9WT/Q4yfHS7Q6wg1dj9YQdo0dvVB0S2Nir\nX9IK6PUaHDnQeFKDmKgLkDGLaKaiijEvC91wMEE6qB8b0eNhciaxq2YhGHcFmSRP\nWUyc5CmBadt7wIOH5Z3bfuwWGxqxKjNw/baM/d+nk7hlDr01YL9c0g16B9MW\n-----END CERTIFICATE-----\n","apiV3Key":"joerVi8y5DJ3o4ttA0o1uH47Xz1u2Ase"}', NULL, '2021-12-15 09:32:26', NULL, '2022-02-27 04:15:04', 0, 1); -INSERT INTO "public"."pay_channel" ("id", "code", "status", "remark", "fee_rate", "merchant_id", "app_id", "config", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (16, 'wx_pub', 0, NULL, 1, 1, 6, '{"@class":"cn.iocoder.yudao.framework.pay.core.client.impl.wx.WXPayClientConfig","appId":"wx041349c6f39b268b","mchId":"1545083881","apiVersion":"v2","mchKey":"0alL64UDQdlCwiKZ73ib7ypaIjMns06p","privateKeyContent":"-----BEGIN PRIVATE KEY-----\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC5q2hYE3loOQoH\nl/2kh/epuj17W8VpV5vBl7ysJWAbBXux6mlq4gKTHD0QUQdiKtDEUm/bKC9Bi6VU\nuklM5Y8oCaCbhjklHRbET8jsgd9phSNGviHclYRLsQRO8oXnN89kN0y7DYKm0hYd\nmaiS12Z3v8VaImSTr4HVeHlC/z3S6mdwSr263stKt931YTcbTj/QFH7znsv9Na0u\nX6LaMBEEAsJctWdm8Ndrd1tGh9Fzf0DA5VRXsJR3kkWspy+IwiDTPV/FDKOU9NJC\nSxMmDePerTfkoZ2s1rltqBK0ykDJrXtxR+hTzEsKZ/KpNi8tyYpfNZsviHIlUsLP\nFJ5UvUhpAgMBAAECggEAd90NltazqTIxpGdeCwrwOzWNnYbIclJprlhMKIJUgf1P\nNrPTbHoOGXTAgzkcYCat8iAaMEzH/TOu/3zn92m3uqxEcEL9v1UBLqknWHAbkB6w\ngGocqDAqYUcdNe5hvbyM+fCta5C0SQgV2PQrHOlMMICwYpkTfzhtxCdreXIYMoGg\nJEIRkZWgrm/N7LTtNgizznuUjy6OURWjXaWKPcs3b3j6G1gLj9Vp++z4y0u51nqM\n4R6fcvl8M6BjlcC8zo6DbOvCW8cXtuXsnru+2TPrUnsGeybJok4fEQsfW1BvpvPo\nief38rYJn4OWxIrHcpWrhNtXtgRPeiMGFfIsEQDmVQKBgQDzXK6Nn3Nr3TFfGVTy\n8QYrzOuY2NqzH8nnsLL6qn3HoKxTv+PcFKOTPsi6f4hIYCzBP0esRrPv0ffMu9oQ\nJvFtCJvMmcKGtp0Q5hcj0y/XkbC3AWuahJtBv8lhKXVnQXSL0j3+ombljw4/8yN0\nAzgBz+j/skQQgZ3sN5h+DHGtgwKBgQDDT784/2pd4m86c/uBmrwYfqu6MJo0eHJh\n1XPtE+u8pOHyNTFk77rKobKDqN5VlrF0uEmBc/08LKhyxJ3vh/zAbcmqT1Mq778y\nAKKUtVmvcaVDrvSQHsnhj0zt4SHGmmU34U2b9hV+nocq5VszX6/jp//HJi9bs3We\ndAzfFCmaowKBgC1MmDVGc+6lCraf+X8LPFHU4Bnga70h8qxM6NPd/nG1R76DHn/t\n25DiA+0rJgwK0unZxJadxoqic9TJNssA5Lmd+5o3GM2Imm311mLVwbcHqHQ4MHZf\nrqKrd2m9lNv2hCIurVmDk1Gxsj5XHMdQfhFgSQengCHubp30r07vNA3PAoGAUEAE\nIjdQTSMs8KeXP7mEb8wcY3R05/pVhT1fVJpK0kgtTofss7yM05V88/v+3sv8Pik6\niqZN9tuimwWOn00Q3UA/DGtrkMjRlooMQ24AW8YmUZkhg9YivTtUMKnAZwopbLx2\nVw7V5iDdCRMUVheK/c+ZmQpnixZBzcmBQGfYcGECgYBjEq3Mem+Aw6pXOu6+0FwH\n9y6Xi4HhBkq0OOZZuXFtWVry7YrD3pBgzWVAZJqJCkyPKKZzCzwdbFd3u0lYBs35\nzYgx7ug4hR+wfI980a3vxjcWGOqnOUUnUJ7ucIa+KDgnYV/bBy4jqpVreXmWAJXl\nfyjG3eLWBrtrsI9YX6zeAA==\n-----END PRIVATE KEY-----\n","privateCertContent":"-----BEGIN CERTIFICATE-----\nMIID6TCCAtGgAwIBAgIUNkEHq6aQcF80NSYqWS58ybsJzI4wDQYJKoZIhvcNAQEL\nBQAwXjELMAkGA1UEBhMCQ04xEzARBgNVBAoTClRlbnBheS5jb20xHTAbBgNVBAsT\nFFRlbnBheS5jb20gQ0EgQ2VudGVyMRswGQYDVQQDExJUZW5wYXkuY29tIFJvb3Qg\nQ0EwHhcNMjExMDIxMDU0NTQxWhcNMjYxMDIwMDU0NTQxWjB7MRMwEQYDVQQDDAox\nNTQ1MDgzODgxMRswGQYDVQQKDBLlvq7kv6HllYbmiLfns7vnu58xJzAlBgNVBAsM\nHuWOhuWfjuWMuuWkp+adjuWwp+aXpeeUqOWTgeW6lzELMAkGA1UEBgwCQ04xETAP\nBgNVBAcMCFNoZW5aaGVuMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\nuatoWBN5aDkKB5f9pIf3qbo9e1vFaVebwZe8rCVgGwV7seppauICkxw9EFEHYirQ\nxFJv2ygvQYulVLpJTOWPKAmgm4Y5JR0WxE/I7IHfaYUjRr4h3JWES7EETvKF5zfP\nZDdMuw2CptIWHZmoktdmd7/FWiJkk6+B1Xh5Qv890upncEq9ut7LSrfd9WE3G04/\n0BR+857L/TWtLl+i2jARBALCXLVnZvDXa3dbRofRc39AwOVUV7CUd5JFrKcviMIg\n0z1fxQyjlPTSQksTJg3j3q035KGdrNa5bagStMpAya17cUfoU8xLCmfyqTYvLcmK\nXzWbL4hyJVLCzxSeVL1IaQIDAQABo4GBMH8wCQYDVR0TBAIwADALBgNVHQ8EBAMC\nBPAwZQYDVR0fBF4wXDBaoFigVoZUaHR0cDovL2V2Y2EuaXRydXMuY29tLmNuL3B1\nYmxpYy9pdHJ1c2NybD9DQT0xQkQ0MjIwRTUwREJDMDRCMDZBRDM5NzU0OTg0NkMw\nMUMzRThFQkQyMA0GCSqGSIb3DQEBCwUAA4IBAQBe7XgncAY/1PLbCsnMsYt11k3V\n2cdNZ+yuCxhlOEKk3nHE6WCTL6zL0qWlTKKpnw1rE/+4OS76Tg72wWXcHfHDAOgt\n9icp62cKx1WO3QweeZpSvLDmtdLgKKrqeIWh+rL8+ZhuAOxSkaRwcsMTWDaLeDOi\n0pGeqvfG8WNhPxkkaSI8xbiTK641Yg9WT/Q4yfHS7Q6wg1dj9YQdo0dvVB0S2Nir\nX9IK6PUaHDnQeFKDmKgLkDGLaKaiijEvC91wMEE6qB8b0eNhciaxq2YhGHcFmSRP\nWUyc5CmBadt7wIOH5Z3bfuwWGxqxKjNw/baM/d+nk7hlDr01YL9c0g16B9MW\n-----END CERTIFICATE-----\n","apiV3Key":"joerVi8y5DJ3o4ttA0o1uH47Xz1u2Ase"}', NULL, '2022-01-31 22:13:25', NULL, '2022-02-27 04:15:03', 0, 1); -INSERT INTO "public"."pay_channel" ("id", "code", "status", "remark", "fee_rate", "merchant_id", "app_id", "config", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (17, 'alipay_qr', 0, NULL, 1, 1, 6, '{"@class":"cn.iocoder.yudao.framework.pay.core.client.impl.alipay.AlipayPayClientConfig","serverUrl":"https://openapi.alipaydev.com/gateway.do","appId":"2021000118634035","signType":"RSA2","mode":null,"privateKey":"MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCHsEV1cDupwJv890x84qbppUtRIfhaKSwSVN0thCcsDCaAsGR5MZslDkO8NCT9V4r2SVXjyY7eJUZlZd1M0C8T01Tg4UOx5LUbic0O3A1uJMy6V1n9IyYwbAW3AEZhBd5bSbPgrqvmv3NeWSTQT6Anxnllf+2iDH6zyA2fPl7cYyQtbZoDJQFGqr4F+cGh2R6akzRKNoBkAeMYwoY6es2lX8sJxCVPWUmxNUoL3tScwlSpd7Bxw0q9c/X01jMwuQ0+Va358zgFiGERTE6yD01eu40OBDXOYO3z++y+TAYHlQQ2toMO63trepo88X3xV3R44/1DH+k2pAm2IF5ixiLrAgMBAAECggEAPx3SoXcseaD7rmcGcE0p4SMfbsUDdkUSmBBbtfF0GzwnqNLkWa+mgE0rWt9SmXngTQH97vByAYmLPl1s3G82ht1V7Sk7yQMe74lhFllr8eEyTjeVx3dTK1EEM4TwN+936DTXdFsr4TELJEcJJdD0KaxcCcfBLRDs2wnitEFZ9N+GoZybVmY8w0e0MI7PLObUZ2l0X4RurQnfG9ZxjXjC7PkeMVv7cGGylpNFi3BbvkRhdhLPDC2E6wqnr9e7zk+hiENivAezXrtxtwKovzCtnWJ1r0IO14Rh47H509Ic0wFnj+o5YyUL4LdmpL7yaaH6fM7zcSLFjNZPHvZCKPwYcQKBgQDQFho98QvnL8ex4v6cry4VitGpjSXm1qP3vmMQk4rTsn8iPWtcxPjqGEqOQJjdi4Mi0VZKQOLFwlH0kl95wNrD/isJ4O1yeYfX7YAXApzHqYNINzM79HemO3Yx1qLMW3okRFJ9pPRzbQ9qkTpsaegsmyX316zOBhzGRYjKbutTYwKBgQCm7phr9XdFW5Vh+XR90mVs483nrLmMiDKg7YKxSLJ8amiDjzPejCn7i95Hah08P+2MIZLIPbh2VLacczR6ltRRzN5bg5etFuqSgfkuHyxpoDmpjbe08+Q2h8JBYqcC5Nhv1AKU4iOUhVLHo/FBAQliMcGc/J3eiYTFC7EsNx382QKBgClb20doe7cttgFTXswBvaUmfFm45kmla924B7SpvrQpDD/f+VDtDZRp05fGmxuduSjYdtA3aVtpLiTwWu22OUUvZZqHDGruYOO4Hvdz23mL5b4ayqImCwoNU4bAZIc9v18p/UNf3/55NNE3oGcf/bev9rH2OjCQ4nM+Ktwhg8CFAoGACSgvbkShzUkv0ZcIf9ppu+ZnJh1AdGgINvGwaJ8vQ0nm/8h8NOoFZ4oNoGc+wU5Ubops7dUM6FjPR5e+OjdJ4E7Xp7d5O4J1TaIZlCEbo5OpdhaTDDcQvrkFu+Z4eN0qzj+YAKjDAOOrXc4tbr5q0FsgXscwtcNfaBuzFVTUrUkCgYEAwzPnMNhWG3zOWLUs2QFA2GP4Y+J8cpUYfj6pbKKzeLwyG9qBwF1NJpN8m+q9q7V9P2LY+9Lp9e1mGsGeqt5HMEA3P6vIpcqLJLqE/4PBLLRzfccTcmqb1m71+erxTRhHBRkGS+I7dZEb3olQfnS1Y1tpMBxiwYwR3LW4oXuJwj8=","alipayPublicKey":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnq90KnF4dTnlzzmxpujbI05OYqi5WxAS6cL0gnZFv2gK51HExF8v/BaP7P979PhFMgWTqmOOI+Dtno5s+yD09XTY1WkshbLk6i4g2Xlr8fyW9ODnkU88RI2w9UdPhQU4cPPwBNlrsYhKkVK2OxwM3kFqjoBBY0CZoZCsSQ3LDH5WeZqPArlsS6xa2zqJBuuoKjMrdpELl3eXSjP8K54eDJCbeetCZNKWLL3DPahTPB7LZikfYmslb0QUvCgGapD0xkS7eVq70NaL1G57MWABs4tbfWgxike4Daj3EfUrzIVspQxj7w8HEj9WozJPgL88kSJSits0pqD3n5r8HSuseQIDAQAB","appCertContent":null,"alipayPublicCertContent":null,"rootCertContent":null}', NULL, '2022-01-31 22:13:25', NULL, '2022-02-27 04:15:02', 0, 1); COMMIT; -- ---------------------------- -- Table structure for pay_merchant -- ---------------------------- -DROP TABLE IF EXISTS "public"."pay_merchant"; -CREATE TABLE "public"."pay_merchant" ( +DROP TABLE IF EXISTS "pay_merchant"; +CREATE TABLE "pay_merchant" ( "id" int8 NOT NULL, "no" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, "name" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, @@ -17383,33 +1573,31 @@ CREATE TABLE "public"."pay_merchant" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."pay_merchant" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."pay_merchant"."id" IS '商户编号'; -COMMENT ON COLUMN "public"."pay_merchant"."no" IS '商户号'; -COMMENT ON COLUMN "public"."pay_merchant"."name" IS '商户全称'; -COMMENT ON COLUMN "public"."pay_merchant"."short_name" IS '商户简称'; -COMMENT ON COLUMN "public"."pay_merchant"."status" IS '开启状态'; -COMMENT ON COLUMN "public"."pay_merchant"."remark" IS '备注'; -COMMENT ON COLUMN "public"."pay_merchant"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."pay_merchant"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."pay_merchant"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."pay_merchant"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."pay_merchant"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."pay_merchant"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."pay_merchant" IS '支付商户信息'; +COMMENT ON COLUMN "pay_merchant"."id" IS '商户编号'; +COMMENT ON COLUMN "pay_merchant"."no" IS '商户号'; +COMMENT ON COLUMN "pay_merchant"."name" IS '商户全称'; +COMMENT ON COLUMN "pay_merchant"."short_name" IS '商户简称'; +COMMENT ON COLUMN "pay_merchant"."status" IS '开启状态'; +COMMENT ON COLUMN "pay_merchant"."remark" IS '备注'; +COMMENT ON COLUMN "pay_merchant"."creator" IS '创建者'; +COMMENT ON COLUMN "pay_merchant"."create_time" IS '创建时间'; +COMMENT ON COLUMN "pay_merchant"."updater" IS '更新者'; +COMMENT ON COLUMN "pay_merchant"."update_time" IS '更新时间'; +COMMENT ON COLUMN "pay_merchant"."deleted" IS '是否删除'; +COMMENT ON COLUMN "pay_merchant"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "pay_merchant" IS '支付商户信息'; -- ---------------------------- -- Records of pay_merchant -- ---------------------------- BEGIN; -INSERT INTO "public"."pay_merchant" ("id", "no", "name", "short_name", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1, 'M233666999', '芋道源码', '芋艿', 0, '我是备注', '', '2021-10-23 08:31:14', '', '2022-02-27 04:15:20', 0, 1); COMMIT; -- ---------------------------- -- Table structure for pay_notify_log -- ---------------------------- -DROP TABLE IF EXISTS "public"."pay_notify_log"; -CREATE TABLE "public"."pay_notify_log" ( +DROP TABLE IF EXISTS "pay_notify_log"; +CREATE TABLE "pay_notify_log" ( "id" int8 NOT NULL, "task_id" int8 NOT NULL, "notify_times" int2 NOT NULL, @@ -17423,19 +1611,18 @@ CREATE TABLE "public"."pay_notify_log" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."pay_notify_log" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."pay_notify_log"."id" IS '日志编号'; -COMMENT ON COLUMN "public"."pay_notify_log"."task_id" IS '通知任务编号'; -COMMENT ON COLUMN "public"."pay_notify_log"."notify_times" IS '第几次被通知'; -COMMENT ON COLUMN "public"."pay_notify_log"."response" IS '请求参数'; -COMMENT ON COLUMN "public"."pay_notify_log"."status" IS '通知状态'; -COMMENT ON COLUMN "public"."pay_notify_log"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."pay_notify_log"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."pay_notify_log"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."pay_notify_log"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."pay_notify_log"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."pay_notify_log"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."pay_notify_log" IS '支付通知 App 的日志'; +COMMENT ON COLUMN "pay_notify_log"."id" IS '日志编号'; +COMMENT ON COLUMN "pay_notify_log"."task_id" IS '通知任务编号'; +COMMENT ON COLUMN "pay_notify_log"."notify_times" IS '第几次被通知'; +COMMENT ON COLUMN "pay_notify_log"."response" IS '请求参数'; +COMMENT ON COLUMN "pay_notify_log"."status" IS '通知状态'; +COMMENT ON COLUMN "pay_notify_log"."creator" IS '创建者'; +COMMENT ON COLUMN "pay_notify_log"."create_time" IS '创建时间'; +COMMENT ON COLUMN "pay_notify_log"."updater" IS '更新者'; +COMMENT ON COLUMN "pay_notify_log"."update_time" IS '更新时间'; +COMMENT ON COLUMN "pay_notify_log"."deleted" IS '是否删除'; +COMMENT ON COLUMN "pay_notify_log"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "pay_notify_log" IS '支付通知 App 的日志'; -- ---------------------------- -- Records of pay_notify_log @@ -17446,8 +1633,8 @@ COMMIT; -- ---------------------------- -- Table structure for pay_notify_task -- ---------------------------- -DROP TABLE IF EXISTS "public"."pay_notify_task"; -CREATE TABLE "public"."pay_notify_task" ( +DROP TABLE IF EXISTS "pay_notify_task"; +CREATE TABLE "pay_notify_task" ( "id" int8 NOT NULL, "merchant_id" int8 NOT NULL, "app_id" int8 NOT NULL, @@ -17468,55 +1655,38 @@ CREATE TABLE "public"."pay_notify_task" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."pay_notify_task" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."pay_notify_task"."id" IS '任务编号'; -COMMENT ON COLUMN "public"."pay_notify_task"."merchant_id" IS '商户编号'; -COMMENT ON COLUMN "public"."pay_notify_task"."app_id" IS '应用编号'; -COMMENT ON COLUMN "public"."pay_notify_task"."type" IS '通知类型'; -COMMENT ON COLUMN "public"."pay_notify_task"."data_id" IS '数据编号'; -COMMENT ON COLUMN "public"."pay_notify_task"."status" IS '通知状态'; -COMMENT ON COLUMN "public"."pay_notify_task"."merchant_order_id" IS '商户订单编号'; -COMMENT ON COLUMN "public"."pay_notify_task"."next_notify_time" IS '下一次通知时间'; -COMMENT ON COLUMN "public"."pay_notify_task"."last_execute_time" IS '最后一次执行时间'; -COMMENT ON COLUMN "public"."pay_notify_task"."notify_times" IS '当前通知次数'; -COMMENT ON COLUMN "public"."pay_notify_task"."max_notify_times" IS '最大可通知次数'; -COMMENT ON COLUMN "public"."pay_notify_task"."notify_url" IS '异步通知地址'; -COMMENT ON COLUMN "public"."pay_notify_task"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."pay_notify_task"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."pay_notify_task"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."pay_notify_task"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."pay_notify_task"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."pay_notify_task"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."pay_notify_task" IS '商户支付、退款等的通知 +COMMENT ON COLUMN "pay_notify_task"."id" IS '任务编号'; +COMMENT ON COLUMN "pay_notify_task"."merchant_id" IS '商户编号'; +COMMENT ON COLUMN "pay_notify_task"."app_id" IS '应用编号'; +COMMENT ON COLUMN "pay_notify_task"."type" IS '通知类型'; +COMMENT ON COLUMN "pay_notify_task"."data_id" IS '数据编号'; +COMMENT ON COLUMN "pay_notify_task"."status" IS '通知状态'; +COMMENT ON COLUMN "pay_notify_task"."merchant_order_id" IS '商户订单编号'; +COMMENT ON COLUMN "pay_notify_task"."next_notify_time" IS '下一次通知时间'; +COMMENT ON COLUMN "pay_notify_task"."last_execute_time" IS '最后一次执行时间'; +COMMENT ON COLUMN "pay_notify_task"."notify_times" IS '当前通知次数'; +COMMENT ON COLUMN "pay_notify_task"."max_notify_times" IS '最大可通知次数'; +COMMENT ON COLUMN "pay_notify_task"."notify_url" IS '异步通知地址'; +COMMENT ON COLUMN "pay_notify_task"."creator" IS '创建者'; +COMMENT ON COLUMN "pay_notify_task"."create_time" IS '创建时间'; +COMMENT ON COLUMN "pay_notify_task"."updater" IS '更新者'; +COMMENT ON COLUMN "pay_notify_task"."update_time" IS '更新时间'; +COMMENT ON COLUMN "pay_notify_task"."deleted" IS '是否删除'; +COMMENT ON COLUMN "pay_notify_task"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "pay_notify_task" IS '商户支付、退款等的通知 '; -- ---------------------------- -- Records of pay_notify_task -- ---------------------------- BEGIN; -INSERT INTO "public"."pay_notify_task" ("id", "merchant_id", "app_id", "type", "data_id", "status", "merchant_order_id", "next_notify_time", "last_execute_time", "notify_times", "max_notify_times", "notify_url", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (96, 1, 6, 1, 105, 1, '1635295878514', '2021-10-27 08:51:33', '2021-10-27 00:51:32', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 08:51:33', NULL, '2022-02-27 04:15:48', 0, 1); -INSERT INTO "public"."pay_notify_task" ("id", "merchant_id", "app_id", "type", "data_id", "status", "merchant_order_id", "next_notify_time", "last_execute_time", "notify_times", "max_notify_times", "notify_url", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (97, 1, 6, 1, 106, 1, '1635296883074', '2021-10-27 09:08:12', '2021-10-27 01:08:12', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:08:12', NULL, '2022-02-27 04:15:46', 0, 1); -INSERT INTO "public"."pay_notify_task" ("id", "merchant_id", "app_id", "type", "data_id", "status", "merchant_order_id", "next_notify_time", "last_execute_time", "notify_times", "max_notify_times", "notify_url", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (98, 1, 6, 1, 107, 1, '1635297635297', '2021-10-27 09:20:59', '2021-10-27 01:20:58', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:20:59', NULL, '2022-02-27 04:15:45', 0, 1); -INSERT INTO "public"."pay_notify_task" ("id", "merchant_id", "app_id", "type", "data_id", "status", "merchant_order_id", "next_notify_time", "last_execute_time", "notify_times", "max_notify_times", "notify_url", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (99, 1, 6, 1, 108, 1, '1635297700295', '2021-10-27 09:21:55', '2021-10-27 01:21:55', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:21:55', NULL, '2022-02-27 04:15:44', 0, 1); -INSERT INTO "public"."pay_notify_task" ("id", "merchant_id", "app_id", "type", "data_id", "status", "merchant_order_id", "next_notify_time", "last_execute_time", "notify_times", "max_notify_times", "notify_url", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (100, 1, 6, 1, 109, 1, '1635298128448', '2021-10-27 09:28:57', '2021-10-27 01:28:56', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:28:57', NULL, '2022-02-27 04:15:43', 0, 1); -INSERT INTO "public"."pay_notify_task" ("id", "merchant_id", "app_id", "type", "data_id", "status", "merchant_order_id", "next_notify_time", "last_execute_time", "notify_times", "max_notify_times", "notify_url", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (101, 1, 6, 1, 110, 1, '1635298196716', '2021-10-27 09:30:05', '2021-10-27 01:30:05', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:30:05', NULL, '2022-02-27 04:15:41', 0, 1); -INSERT INTO "public"."pay_notify_task" ("id", "merchant_id", "app_id", "type", "data_id", "status", "merchant_order_id", "next_notify_time", "last_execute_time", "notify_times", "max_notify_times", "notify_url", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (102, 1, 6, 1, 111, 1, '1635298542165', '2021-10-27 09:35:49', '2021-10-27 01:35:49', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:35:49', NULL, '2022-02-27 04:15:40', 0, 1); -INSERT INTO "public"."pay_notify_task" ("id", "merchant_id", "app_id", "type", "data_id", "status", "merchant_order_id", "next_notify_time", "last_execute_time", "notify_times", "max_notify_times", "notify_url", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (103, 1, 6, 1, 112, 1, '1635298736280', '2021-10-27 09:39:08', '2021-10-27 01:39:07', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:39:08', NULL, '2022-02-27 04:15:39', 0, 1); -INSERT INTO "public"."pay_notify_task" ("id", "merchant_id", "app_id", "type", "data_id", "status", "merchant_order_id", "next_notify_time", "last_execute_time", "notify_times", "max_notify_times", "notify_url", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (104, 1, 6, 1, 113, 1, '1635298796688', '2021-10-27 09:40:21', '2021-10-27 01:40:20', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:40:21', NULL, '2022-02-27 04:15:38', 0, 1); -INSERT INTO "public"."pay_notify_task" ("id", "merchant_id", "app_id", "type", "data_id", "status", "merchant_order_id", "next_notify_time", "last_execute_time", "notify_times", "max_notify_times", "notify_url", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (105, 1, 6, 1, 114, 1, '1635299148566', '2021-10-27 09:45:57', '2021-10-27 01:45:57', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 09:45:57', NULL, '2022-02-27 04:15:37', 0, 1); -INSERT INTO "public"."pay_notify_task" ("id", "merchant_id", "app_id", "type", "data_id", "status", "merchant_order_id", "next_notify_time", "last_execute_time", "notify_times", "max_notify_times", "notify_url", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (106, 1, 6, 1, 115, 1, '1635300261266', '2021-10-27 10:04:29', '2021-10-27 02:04:28', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 10:04:29', NULL, '2022-02-27 04:15:36', 0, 1); -INSERT INTO "public"."pay_notify_task" ("id", "merchant_id", "app_id", "type", "data_id", "status", "merchant_order_id", "next_notify_time", "last_execute_time", "notify_times", "max_notify_times", "notify_url", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (107, 1, 6, 1, 117, 1, '1635311468233', '2021-10-27 13:11:16', '2021-10-27 05:11:16', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 13:11:16', NULL, '2022-02-27 04:15:32', 0, 1); -INSERT INTO "public"."pay_notify_task" ("id", "merchant_id", "app_id", "type", "data_id", "status", "merchant_order_id", "next_notify_time", "last_execute_time", "notify_times", "max_notify_times", "notify_url", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (108, 1, 6, 1, 118, 1, '1635311823086', '2021-10-27 13:17:09', '2021-10-27 05:17:08', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 13:17:09', NULL, '2022-02-27 04:15:31', 0, 1); -INSERT INTO "public"."pay_notify_task" ("id", "merchant_id", "app_id", "type", "data_id", "status", "merchant_order_id", "next_notify_time", "last_execute_time", "notify_times", "max_notify_times", "notify_url", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (109, 1, 6, 1, 119, 1, '1635311881440', '2021-10-27 13:18:11', '2021-10-27 05:18:10', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 13:18:11', NULL, '2022-02-27 04:15:30', 0, 1); -INSERT INTO "public"."pay_notify_task" ("id", "merchant_id", "app_id", "type", "data_id", "status", "merchant_order_id", "next_notify_time", "last_execute_time", "notify_times", "max_notify_times", "notify_url", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (110, 1, 6, 1, 120, 1, '1635311949168', '2021-10-27 13:19:15', '2021-10-27 05:19:15', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 13:19:15', NULL, '2022-02-27 04:15:29', 0, 1); -INSERT INTO "public"."pay_notify_task" ("id", "merchant_id", "app_id", "type", "data_id", "status", "merchant_order_id", "next_notify_time", "last_execute_time", "notify_times", "max_notify_times", "notify_url", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (111, 1, 6, 1, 121, 1, '1635312124657', '2021-10-27 13:22:16', '2021-10-27 05:22:16', 0, 9, 'http://127.0.0.1:28080/api/shop/order/pay-notify', NULL, '2021-10-27 13:22:16', NULL, '2022-02-27 04:15:28', 0, 1); COMMIT; -- ---------------------------- -- Table structure for pay_order -- ---------------------------- -DROP TABLE IF EXISTS "public"."pay_order"; -CREATE TABLE "public"."pay_order" ( +DROP TABLE IF EXISTS "pay_order"; +CREATE TABLE "pay_order" ( "id" int8 NOT NULL, "merchant_id" int8 NOT NULL, "app_id" int8 NOT NULL, @@ -17549,166 +1719,50 @@ CREATE TABLE "public"."pay_order" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."pay_order" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."pay_order"."id" IS '支付订单编号'; -COMMENT ON COLUMN "public"."pay_order"."merchant_id" IS '商户编号'; -COMMENT ON COLUMN "public"."pay_order"."app_id" IS '应用编号'; -COMMENT ON COLUMN "public"."pay_order"."channel_id" IS '渠道编号'; -COMMENT ON COLUMN "public"."pay_order"."channel_code" IS '渠道编码'; -COMMENT ON COLUMN "public"."pay_order"."merchant_order_id" IS '商户订单编号'; -COMMENT ON COLUMN "public"."pay_order"."subject" IS '商品标题'; -COMMENT ON COLUMN "public"."pay_order"."body" IS '商品描述'; -COMMENT ON COLUMN "public"."pay_order"."notify_url" IS '异步通知地址'; -COMMENT ON COLUMN "public"."pay_order"."notify_status" IS '通知商户支付结果的回调状态'; -COMMENT ON COLUMN "public"."pay_order"."amount" IS '支付金额,单位:分'; -COMMENT ON COLUMN "public"."pay_order"."channel_fee_rate" IS '渠道手续费,单位:百分比'; -COMMENT ON COLUMN "public"."pay_order"."channel_fee_amount" IS '渠道手续金额,单位:分'; -COMMENT ON COLUMN "public"."pay_order"."status" IS '支付状态'; -COMMENT ON COLUMN "public"."pay_order"."user_ip" IS '用户 IP'; -COMMENT ON COLUMN "public"."pay_order"."expire_time" IS '订单失效时间'; -COMMENT ON COLUMN "public"."pay_order"."success_time" IS '订单支付成功时间'; -COMMENT ON COLUMN "public"."pay_order"."notify_time" IS '订单支付通知时间'; -COMMENT ON COLUMN "public"."pay_order"."success_extension_id" IS '支付成功的订单拓展单编号'; -COMMENT ON COLUMN "public"."pay_order"."refund_status" IS '退款状态'; -COMMENT ON COLUMN "public"."pay_order"."refund_times" IS '退款次数'; -COMMENT ON COLUMN "public"."pay_order"."refund_amount" IS '退款总金额,单位:分'; -COMMENT ON COLUMN "public"."pay_order"."channel_user_id" IS '渠道用户编号'; -COMMENT ON COLUMN "public"."pay_order"."channel_order_no" IS '渠道订单号'; -COMMENT ON COLUMN "public"."pay_order"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."pay_order"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."pay_order"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."pay_order"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."pay_order"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."pay_order"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."pay_order" IS '支付订单 +COMMENT ON COLUMN "pay_order"."id" IS '支付订单编号'; +COMMENT ON COLUMN "pay_order"."merchant_id" IS '商户编号'; +COMMENT ON COLUMN "pay_order"."app_id" IS '应用编号'; +COMMENT ON COLUMN "pay_order"."channel_id" IS '渠道编号'; +COMMENT ON COLUMN "pay_order"."channel_code" IS '渠道编码'; +COMMENT ON COLUMN "pay_order"."merchant_order_id" IS '商户订单编号'; +COMMENT ON COLUMN "pay_order"."subject" IS '商品标题'; +COMMENT ON COLUMN "pay_order"."body" IS '商品描述'; +COMMENT ON COLUMN "pay_order"."notify_url" IS '异步通知地址'; +COMMENT ON COLUMN "pay_order"."notify_status" IS '通知商户支付结果的回调状态'; +COMMENT ON COLUMN "pay_order"."amount" IS '支付金额,单位:分'; +COMMENT ON COLUMN "pay_order"."channel_fee_rate" IS '渠道手续费,单位:百分比'; +COMMENT ON COLUMN "pay_order"."channel_fee_amount" IS '渠道手续金额,单位:分'; +COMMENT ON COLUMN "pay_order"."status" IS '支付状态'; +COMMENT ON COLUMN "pay_order"."user_ip" IS '用户 IP'; +COMMENT ON COLUMN "pay_order"."expire_time" IS '订单失效时间'; +COMMENT ON COLUMN "pay_order"."success_time" IS '订单支付成功时间'; +COMMENT ON COLUMN "pay_order"."notify_time" IS '订单支付通知时间'; +COMMENT ON COLUMN "pay_order"."success_extension_id" IS '支付成功的订单拓展单编号'; +COMMENT ON COLUMN "pay_order"."refund_status" IS '退款状态'; +COMMENT ON COLUMN "pay_order"."refund_times" IS '退款次数'; +COMMENT ON COLUMN "pay_order"."refund_amount" IS '退款总金额,单位:分'; +COMMENT ON COLUMN "pay_order"."channel_user_id" IS '渠道用户编号'; +COMMENT ON COLUMN "pay_order"."channel_order_no" IS '渠道订单号'; +COMMENT ON COLUMN "pay_order"."creator" IS '创建者'; +COMMENT ON COLUMN "pay_order"."create_time" IS '创建时间'; +COMMENT ON COLUMN "pay_order"."updater" IS '更新者'; +COMMENT ON COLUMN "pay_order"."update_time" IS '更新时间'; +COMMENT ON COLUMN "pay_order"."deleted" IS '是否删除'; +COMMENT ON COLUMN "pay_order"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "pay_order" IS '支付订单 '; -- ---------------------------- -- Records of pay_order -- ---------------------------- BEGIN; -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (10, 1, 6, NULL, NULL, '1634988463462', '标题', '内容', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-24 19:27:43', '2021-10-23 11:27:43', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-23 19:27:44', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (11, 1, 6, NULL, NULL, '1635088798052', '标题:1635088798052', '内容:1635088798052', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:19:58', '2021-10-24 15:19:58', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:19:58', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (12, 1, 6, NULL, NULL, '1635088829013', '标题:1635088829013', '内容:1635088829013', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:20:29', '2021-10-24 15:20:29', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:20:29', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (13, 1, 6, NULL, NULL, '1635088934120', '标题:1635088934120', '内容:1635088934120', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:22:14', '2021-10-24 15:22:14', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:22:14', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (14, 1, 6, NULL, NULL, '1635088936920', '标题:1635088936920', '内容:1635088936920', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:22:17', '2021-10-24 15:22:16', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:22:17', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (15, 1, 6, NULL, NULL, '1635088943990', '标题:1635088943990', '内容:1635088943990', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:22:24', '2021-10-24 15:22:24', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:22:24', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (16, 1, 6, NULL, NULL, '1635088976396', '标题:1635088976396', '内容:1635088976396', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:22:56', '2021-10-24 15:22:56', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:22:56', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (17, 1, 6, NULL, NULL, '1635088979514', '标题:1635088979514', '内容:1635088979514', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:23:00', '2021-10-24 15:22:59', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:23:00', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (18, 1, 6, NULL, NULL, '1635089022772', '标题:1635089022772', '内容:1635089022772', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:23:43', '2021-10-24 15:23:42', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:23:43', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (19, 1, 6, NULL, NULL, '1635089029019', '标题:1635089029019', '内容:1635089029019', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:23:49', '2021-10-24 15:23:49', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:23:49', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (20, 1, 6, NULL, NULL, '1635089125167', '标题:1635089125167', '内容:1635089125167', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:25:25', '2021-10-24 15:25:25', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:25:25', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (21, 1, 6, NULL, NULL, '1635089133667', '标题:1635089133667', '内容:1635089133667', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:25:34', '2021-10-24 15:25:33', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:25:34', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (22, 1, 6, NULL, NULL, '1635089160201', '标题:1635089160201', '内容:1635089160201', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:26:00', '2021-10-24 15:26:00', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:26:00', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (23, 1, 6, NULL, NULL, '1635089171152', '标题:1635089171152', '内容:1635089171152', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:26:11', '2021-10-24 15:26:11', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:26:11', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (24, 1, 6, NULL, NULL, '1635089171281', '标题:1635089171281', '内容:1635089171281', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:26:11', '2021-10-24 15:26:11', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:26:11', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25, 1, 6, NULL, NULL, '1635089177510', '标题:1635089177510', '内容:1635089177510', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:26:18', '2021-10-24 15:26:17', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:26:18', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26, 1, 6, NULL, NULL, '1635089179921', '标题:1635089179921', '内容:1635089179921', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:26:20', '2021-10-24 15:26:19', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:26:20', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (27, 1, 6, NULL, NULL, '1635089209386', '标题:1635089209386', '内容:1635089209386', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:26:49', '2021-10-24 15:26:49', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:26:49', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (28, 1, 6, NULL, NULL, '1635089217890', '标题:1635089217890', '内容:1635089217890', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:26:58', '2021-10-24 15:26:57', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:26:58', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (29, 1, 6, NULL, NULL, '1635089222164', '标题:1635089222163', '内容:1635089222163', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:27:02', '2021-10-24 15:27:02', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:27:02', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (30, 1, 6, NULL, NULL, '1635089267113', '标题:1635089267113', '内容:1635089267113', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:27:47', '2021-10-24 15:27:47', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:27:47', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (31, 1, 6, NULL, NULL, '1635089268654', '标题:1635089268654', '内容:1635089268654', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:27:49', '2021-10-24 15:27:48', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:27:49', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (32, 1, 6, NULL, NULL, '1635089310024', '标题:1635089310024', '内容:1635089310024', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:28:30', '2021-10-24 15:28:30', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:28:30', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (33, 1, 6, NULL, NULL, '1635089314276', '标题:1635089314276', '内容:1635089314276', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:28:34', '2021-10-24 15:28:34', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:28:34', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (34, 1, 6, NULL, NULL, '1635089325747', '标题:1635089325747', '内容:1635089325747', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:28:46', '2021-10-24 15:28:45', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:28:46', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (35, 1, 6, NULL, NULL, '1635089412828', '标题:1635089412828', '内容:1635089412828', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:30:13', '2021-10-24 15:30:12', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:30:13', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (36, 1, 6, NULL, NULL, '1635089423488', '标题:1635089423488', '内容:1635089423488', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:30:23', '2021-10-24 15:30:23', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:30:24', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (37, 1, 6, NULL, NULL, '1635089444235', '标题:1635089444235', '内容:1635089444235', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:30:44', '2021-10-24 15:30:44', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:30:44', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (38, 1, 6, NULL, NULL, '1635089448403', '标题:1635089448403', '内容:1635089448403', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:30:48', '2021-10-24 15:30:48', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:30:48', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (39, 1, 6, NULL, NULL, '1635089556720', '标题:1635089556720', '内容:1635089556720', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:32:37', '2021-10-24 15:32:36', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:32:37', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (40, 1, 6, NULL, NULL, '1635089561277', '标题:1635089561277', '内容:1635089561277', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:32:41', '2021-10-24 15:32:41', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:32:41', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (41, 1, 6, NULL, NULL, '1635089563908', '标题:1635089563908', '内容:1635089563908', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:32:44', '2021-10-24 15:32:43', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:32:44', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (42, 1, 6, NULL, NULL, '1635089576165', '标题:1635089576165', '内容:1635089576165', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:32:56', '2021-10-24 15:32:56', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:32:56', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (43, 1, 6, NULL, NULL, '1635089833753', '标题:1635089833753', '内容:1635089833753', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:37:14', '2021-10-24 15:37:13', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:37:14', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (44, 1, 6, NULL, NULL, '1635089864519', '标题:1635089864519', '内容:1635089864519', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:37:45', '2021-10-24 15:37:44', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:37:45', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (45, 1, 6, NULL, NULL, '1635089946932', '标题:1635089946932', '内容:1635089946932', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:39:07', '2021-10-24 15:39:06', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:39:07', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (46, 1, 6, NULL, NULL, '1635089950125', '标题:1635089950125', '内容:1635089950125', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:39:10', '2021-10-24 15:39:10', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:39:10', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (47, 1, 6, NULL, NULL, '1635089977784', '标题:1635089977784', '内容:1635089977784', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:39:38', '2021-10-24 15:39:37', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:39:38', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (48, 1, 6, NULL, NULL, '1635089978099', '标题:1635089978099', '内容:1635089978099', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:39:38', '2021-10-24 15:39:38', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:39:38', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (49, 1, 6, NULL, NULL, '1635089982848', '标题:1635089982848', '内容:1635089982848', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:39:43', '2021-10-24 15:39:42', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:39:43', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (50, 1, 6, NULL, NULL, '1635090084470', '标题:1635090084470', '内容:1635090084470', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:41:24', '2021-10-24 15:41:24', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:41:24', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (51, 1, 6, NULL, NULL, '1635090139009', '标题:1635090139009', '内容:1635090139009', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:42:19', '2021-10-24 15:42:19', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:42:19', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (52, 1, 6, NULL, NULL, '1635090153216', '标题:1635090153216', '内容:1635090153216', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:42:33', '2021-10-24 15:42:33', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:42:33', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (53, 1, 6, NULL, NULL, '1635090158589', '标题:1635090158589', '内容:1635090158589', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:42:39', '2021-10-24 15:42:38', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:42:39', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (54, 1, 6, NULL, NULL, '1635090265951', '标题:1635090265951', '内容:1635090265951', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:44:26', '2021-10-24 15:44:25', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:44:26', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (55, 1, 6, NULL, NULL, '1635090284982', '标题:1635090284982', '内容:1635090284982', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:44:45', '2021-10-24 15:44:45', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:44:45', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (56, 1, 6, NULL, NULL, '1635090286709', '标题:1635090286709', '内容:1635090286709', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:44:47', '2021-10-24 15:44:46', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:44:47', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (57, 1, 6, NULL, NULL, '1635090358714', '标题:1635090358714', '内容:1635090358714', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:45:59', '2021-10-24 15:45:58', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:45:59', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (58, 1, 6, NULL, NULL, '1635090365901', '标题:1635090365901', '内容:1635090365901', 'http://127.0.0.1', 0, 100, 0, 0, 0, '127.0.0.1', '2021-10-25 23:46:06', '2021-10-24 15:46:05', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-24 23:46:06', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (59, 1, 6, NULL, NULL, '1635122297240', '标题:1635122297240', '内容:1635122297240', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:38:17', '2021-10-25 00:38:17', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:38:17', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (60, 1, 6, NULL, NULL, '1635122329998', '标题:1635122329998', '内容:1635122329998', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:38:50', '2021-10-25 00:38:50', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:38:50', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (61, 1, 6, NULL, NULL, '1635122358555', '标题:1635122358555', '内容:1635122358555', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:39:19', '2021-10-25 00:39:18', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:39:19', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (62, 1, 6, NULL, NULL, '1635122446577', '标题:1635122446577', '内容:1635122446577', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:40:47', '2021-10-25 00:40:46', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:40:47', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (63, 1, 6, NULL, NULL, '1635122486835', '标题:1635122486835', '内容:1635122486835', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:41:27', '2021-10-25 00:41:26', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:41:27', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (64, 1, 6, NULL, NULL, '1635122490656', '标题:1635122490656', '内容:1635122490656', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:41:31', '2021-10-25 00:41:30', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:41:31', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (65, 1, 6, NULL, NULL, '1635122508318', '标题:1635122508318', '内容:1635122508318', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:41:48', '2021-10-25 00:41:48', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:41:48', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (66, 1, 6, NULL, NULL, '1635122538233', '标题:1635122538233', '内容:1635122538233', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:42:18', '2021-10-25 00:42:18', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:42:18', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (67, 1, 6, NULL, NULL, '1635122700108', '标题:1635122700108', '内容:1635122700108', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:45:00', '2021-10-25 00:45:00', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:45:00', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (68, 1, 6, NULL, NULL, '1635122739305', '标题:1635122739305', '内容:1635122739305', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:45:39', '2021-10-25 00:45:39', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:45:39', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (69, 1, 6, NULL, NULL, '1635122743771', '标题:1635122743771', '内容:1635122743771', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:45:44', '2021-10-25 00:45:43', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:45:44', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (70, 1, 6, NULL, NULL, '1635122827585', '标题:1635122827585', '内容:1635122827585', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:47:08', '2021-10-25 00:47:07', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:47:08', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (71, 1, 6, NULL, NULL, '1635122867264', '标题:1635122867264', '内容:1635122867264', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:47:47', '2021-10-25 00:47:47', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:47:47', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (72, 1, 6, NULL, NULL, '1635122869903', '标题:1635122869903', '内容:1635122869903', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:47:50', '2021-10-25 00:47:49', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:47:50', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (73, 1, 6, NULL, NULL, '1635122883742', '标题:1635122883742', '内容:1635122883742', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:48:04', '2021-10-25 00:48:03', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:48:04', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (74, 1, 6, NULL, NULL, '1635122885267', '标题:1635122885267', '内容:1635122885267', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:48:05', '2021-10-25 00:48:05', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:48:05', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (75, 1, 6, NULL, NULL, '1635122885582', '标题:1635122885582', '内容:1635122885582', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:48:06', '2021-10-25 00:48:05', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:48:06', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (76, 1, 6, NULL, NULL, '1635122918126', '标题:1635122918126', '内容:1635122918126', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:48:38', '2021-10-25 00:48:38', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:48:38', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (77, 1, 6, NULL, NULL, '1635123030294', '标题:1635123030294', '内容:1635123030294', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:50:30', '2021-10-25 00:50:30', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:50:30', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (78, 1, 6, NULL, NULL, '1635123068343', '标题:1635123068343', '内容:1635123068343', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:51:08', '2021-10-25 00:51:08', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:51:08', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (79, 1, 6, NULL, NULL, '1635123073596', '标题:1635123073596', '内容:1635123073596', 'http://127.0.0.1', 0, 100, 0, 0, 0, '101.82.138.223', '2021-10-26 08:51:14', '2021-10-25 00:51:13', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:51:14', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (80, 1, 6, NULL, NULL, '1635123195063', '标题:1635123195063', '内容:1635123195063', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 08:53:15', '2021-10-25 00:53:15', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 08:53:15', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (81, 1, 6, NULL, NULL, '1635123692042', '标题:1635123692042', '内容:1635123692042', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:01:32', '2021-10-25 01:01:32', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:01:32', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (82, 1, 6, NULL, NULL, '1635123806943', '标题:1635123806943', '内容:1635123806943', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:03:27', '2021-10-25 01:03:26', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:03:27', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (83, 1, 6, NULL, NULL, '1635123948382', '标题:1635123948382', '内容:1635123948382', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:05:48', '2021-10-25 01:05:48', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:05:48', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (84, 1, 6, NULL, NULL, '1635123961537', '标题:1635123961537', '内容:1635123961537', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:06:02', '2021-10-25 01:06:01', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:06:02', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (85, 1, 6, NULL, NULL, '1635124136136', '标题:1635124136136', '内容:1635124136136', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:08:56', '2021-10-25 01:08:56', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:08:56', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (86, 1, 6, NULL, NULL, '1635124373620', '标题:1635124373620', '内容:1635124373620', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:12:54', '2021-10-25 01:12:53', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:12:54', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (87, 1, 6, NULL, NULL, '1635124391618', '标题:1635124391618', '内容:1635124391618', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:13:12', '2021-10-25 01:13:11', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:13:12', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (88, 1, 6, NULL, NULL, '1635125520387', '标题:1635125520387', '内容:1635125520387', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:32:00', '2021-10-25 01:32:00', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:32:00', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (89, 1, 6, NULL, NULL, '1635126846741', '标题:1635126846741', '内容:1635126846741', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:54:07', '2021-10-25 01:54:06', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:54:07', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (90, 1, 6, NULL, NULL, '1635126932826', '标题:1635126932826', '内容:1635126932826', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 09:55:33', '2021-10-25 01:55:32', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 09:55:33', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (91, 1, 6, NULL, NULL, '1635127428562', '标题:1635127428562', '内容:1635127428562', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.138.223', '2021-10-26 10:03:49', '2021-10-25 02:03:48', '2021-10-25 15:16:53', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-25 10:03:49', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (92, 1, 6, NULL, NULL, '1635211245454', '标题:1635211245454', '内容:1635211245454', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.98.72', '2021-10-27 09:20:45', '2021-10-26 01:20:45', '2021-10-26 01:20:45', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:20:46', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (93, 1, 6, NULL, NULL, '1635211270009', '标题:1635211270009', '内容:1635211270009', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.98.72', '2021-10-27 09:21:10', '2021-10-26 01:21:10', '2021-10-26 01:21:10', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:21:10', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (94, 1, 6, NULL, NULL, '1635211368329', '标题:1635211368329', '内容:1635211368329', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.98.72', '2021-10-27 09:22:48', '2021-10-26 01:22:48', '2021-10-26 01:22:48', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:22:48', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (95, 1, 6, NULL, NULL, '1635211489276', '标题:1635211489276', '内容:1635211489276', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.98.72', '2021-10-27 09:24:49', '2021-10-26 01:24:49', '2021-10-26 01:24:49', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:24:49', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (96, 1, 6, NULL, NULL, '1635211845846', '标题:1635211845846', '内容:1635211845846', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.98.72', '2021-10-27 09:30:46', '2021-10-26 01:30:45', '2021-10-26 01:30:45', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:30:46', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (97, 1, 6, NULL, NULL, '1635212063323', '标题:1635212063323', '内容:1635212063323', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.98.72', '2021-10-27 09:34:23', '2021-10-26 01:34:23', '2021-10-26 01:34:23', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:34:23', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (98, 1, 6, NULL, NULL, '1635212315488', '标题:1635212315487', '内容:1635212315487', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.98.72', '2021-10-27 09:38:35', '2021-10-26 01:38:35', '2021-10-26 01:38:35', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:38:36', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (99, 1, 6, NULL, NULL, '1635212375595', '标题:1635212375595', '内容:1635212375595', 'http://127.0.0.1', 0, 1, 0, 0, 0, '101.82.98.72', '2021-10-27 09:39:36', '2021-10-26 01:39:35', '2021-10-26 01:39:35', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:39:36', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (100, 1, 6, 9, 'wx_pub', '1635212461835', '标题:1635212461835', '内容:1635212461835', 'http://127.0.0.1', 0, 1, 0, 0, 10, '101.82.98.72', '2021-10-27 09:41:02', '2021-10-26 09:41:15', '2021-10-26 09:41:54', 78, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:41:02', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (101, 1, 6, 9, 'wx_pub', '1635212524100', '标题:1635212524100', '内容:1635212524100', 'http://127.0.0.1', 0, 1, 0, 0, 10, '101.82.98.72', '2021-10-27 09:42:04', '2021-10-26 09:42:15', '2021-10-26 09:42:27', 79, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:42:04', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (102, 1, 6, 9, 'wx_pub', '1635212576678', '标题:1635212576678', '内容:1635212576678', 'http://127.0.0.1', 0, 1, 0, 0, 10, '101.82.98.72', '2021-10-27 09:42:57', '2021-10-26 09:43:16', '2021-10-26 09:43:17', 81, 0, 0, 0, NULL, NULL, NULL, '2021-10-26 09:42:57', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (103, 1, 6, 9, 'wx_pub', '1635212929429', '标题:1635212929428', '内容:1635212929428', 'http://127.0.0.1', 0, 1, 0, 0, 10, '101.82.98.72', '2021-10-27 09:48:49', '2021-10-26 09:48:55', '2021-10-26 09:48:56', 82, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001151202110263761187715', NULL, '2021-10-26 09:48:49', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (104, 1, 6, NULL, NULL, '1635295769583', '标题:1635295769583', '内容:1635295769583', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 0, '101.82.181.148', '2021-10-28 08:49:30', '2021-10-27 00:49:29', '2021-10-27 00:49:29', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-27 08:49:30', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (105, 1, 6, 9, 'wx_pub', '1635295878514', '标题:1635295878514', '内容:1635295878514', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 08:51:19', '2021-10-27 08:51:32', '2021-10-27 08:51:33', 83, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001175202110273387197932', NULL, '2021-10-27 08:51:19', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (106, 1, 6, 9, 'wx_pub', '1635296883074', '标题:1635296883074', '内容:1635296883074', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:08:03', '2021-10-27 09:08:11', '2021-10-27 09:08:12', 84, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001183202110271706103601', NULL, '2021-10-27 09:08:03', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (107, 1, 6, 9, 'wx_pub', '1635297635297', '标题:1635297635297', '内容:1635297635297', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:20:35', '2021-10-27 09:20:58', '2021-10-27 09:20:59', 85, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001173202110274487848024', NULL, '2021-10-27 09:20:35', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (108, 1, 6, 9, 'wx_pub', '1635297700295', '标题:1635297700295', '内容:1635297700295', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:21:40', '2021-10-27 09:21:54', '2021-10-27 09:21:55', 86, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001194202110270081665611', NULL, '2021-10-27 09:21:40', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (109, 1, 6, 9, 'wx_pub', '1635298128448', '标题:1635298128448', '内容:1635298128448', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:28:48', '2021-10-27 09:28:56', '2021-10-27 09:28:57', 87, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001163202110279271204066', NULL, '2021-10-27 09:28:49', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (110, 1, 6, 9, 'wx_pub', '1635298196716', '标题:1635298196716', '内容:1635298196716', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:29:57', '2021-10-27 09:30:04', '2021-10-27 09:30:05', 88, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001178202110270321083776', NULL, '2021-10-27 09:29:57', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (111, 1, 6, 9, 'wx_pub', '1635298542165', '标题:1635298542165', '内容:1635298542165', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:35:42', '2021-10-27 09:35:48', '2021-10-27 09:35:49', 89, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001165202110279375621615', NULL, '2021-10-27 09:35:42', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (112, 1, 6, 9, 'wx_pub', '1635298736280', '标题:1635298736280', '内容:1635298736280', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:38:56', '2021-10-27 09:39:07', '2021-10-27 09:39:08', 91, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001169202110279628461999', NULL, '2021-10-27 09:38:56', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (113, 1, 6, 9, 'wx_pub', '1635298796688', '标题:1635298796688', '内容:1635298796688', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:39:57', '2021-10-27 09:40:20', '2021-10-27 09:40:21', 93, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001180202110276135740320', NULL, '2021-10-27 09:39:57', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (114, 1, 6, 9, 'wx_pub', '1635299148566', '标题:1635299148566', '内容:1635299148566', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 09:45:49', '2021-10-27 09:45:56', '2021-10-27 09:45:57', 94, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001305202110277322382253', NULL, '2021-10-27 09:45:49', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (115, 1, 6, 9, 'wx_pub', '1635300261266', '标题:1635300261266', '内容:1635300261266', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.181.148', '2021-10-28 10:04:21', '2021-10-27 10:04:28', '2021-10-27 10:04:29', 95, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001201202110271614745531', NULL, '2021-10-27 10:04:21', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (116, 1, 6, NULL, NULL, '1635311351736', '标题:1635311351736', '内容:1635311351736', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 0, '101.82.233.75', '2021-10-28 13:09:12', '2021-10-27 05:09:11', '2021-10-27 05:09:11', NULL, 0, 0, 0, NULL, NULL, NULL, '2021-10-27 13:09:12', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (117, 1, 6, 9, 'wx_pub', '1635311468233', '标题:1635311468233', '内容:1635311468233', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.233.75', '2021-10-28 13:11:08', '2021-10-27 13:11:15', '2021-10-27 13:11:16', 96, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001194202110276752100612', NULL, '2021-10-27 13:11:08', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (118, 1, 6, 9, 'wx_pub', '1635311823086', '标题:1635311823086', '内容:1635311823086', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.233.75', '2021-10-28 13:17:03', '2021-10-27 13:17:08', '2021-10-27 13:17:09', 97, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001167202110271022491439', NULL, '2021-10-27 13:17:03', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (119, 1, 6, 9, 'wx_pub', '1635311881440', '标题:1635311881439', '内容:1635311881439', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.233.75', '2021-10-28 13:18:01', '2021-10-27 13:18:10', '2021-10-27 13:18:11', 98, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001173202110272847982104', NULL, '2021-10-27 13:18:02', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (120, 1, 6, 9, 'wx_pub', '1635311949168', '标题:1635311949168', '内容:1635311949168', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.233.75', '2021-10-28 13:19:09', '2021-10-27 13:19:15', '2021-10-27 13:19:15', 99, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001181202110277723215336', NULL, '2021-10-27 13:19:09', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (121, 1, 6, 9, 'wx_pub', '1635312124657', '标题:1635312124656', '内容:1635312124656', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 1, 0, 0, 10, '101.82.233.75', '2021-10-28 13:22:05', '2021-10-27 13:22:15', '2021-10-27 13:22:16', 100, 0, 0, 0, 'ockUAwIZ-0OeMZl9ogcZ4ILrGba0', '4200001174202110278060590766', NULL, '2021-10-27 13:22:05', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (122, 1, 6, NULL, NULL, 'MO202202040132467240000', '标题:1643909566722', '内容:1643909566722', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 200, 0, 0, 0, '127.0.0.1', '2022-02-05 01:32:47', '2022-02-03 17:32:46', '2022-02-03 17:32:46', NULL, 0, 0, 0, NULL, NULL, NULL, '2022-02-04 01:32:47', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (123, 1, 6, NULL, NULL, 'MO202202040133442390001', '标题:1643909624239', '内容:1643909624239', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 200, 0, 0, 0, '127.0.0.1', '2022-02-05 01:33:44', '2022-02-03 17:33:44', '2022-02-03 17:33:44', NULL, 0, 0, 0, NULL, NULL, NULL, '2022-02-04 01:33:44', NULL, '2022-02-27 04:16:16', 0, 1); -INSERT INTO "public"."pay_order" ("id", "merchant_id", "app_id", "channel_id", "channel_code", "merchant_order_id", "subject", "body", "notify_url", "notify_status", "amount", "channel_fee_rate", "channel_fee_amount", "status", "user_ip", "expire_time", "success_time", "notify_time", "success_extension_id", "refund_status", "refund_times", "refund_amount", "channel_user_id", "channel_order_no", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (124, 1, 6, NULL, NULL, 'MO202202040134042400002', '标题:1643909644240', '内容:1643909644240', 'http://127.0.0.1:28080/api/shop/order/pay-notify', 0, 200, 0, 0, 0, '127.0.0.1', '2022-02-05 01:34:04', '2022-02-03 17:34:04', '2022-02-03 17:34:04', NULL, 0, 0, 0, NULL, NULL, NULL, '2022-02-04 01:34:04', NULL, '2022-02-27 04:16:16', 0, 1); COMMIT; -- ---------------------------- -- Table structure for pay_order_extension -- ---------------------------- -DROP TABLE IF EXISTS "public"."pay_order_extension"; -CREATE TABLE "public"."pay_order_extension" ( +DROP TABLE IF EXISTS "pay_order_extension"; +CREATE TABLE "pay_order_extension" ( "id" int8 NOT NULL, "no" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, "order_id" int8 NOT NULL, @@ -17726,449 +1780,35 @@ CREATE TABLE "public"."pay_order_extension" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."pay_order_extension" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."pay_order_extension"."id" IS '支付订单编号'; -COMMENT ON COLUMN "public"."pay_order_extension"."no" IS '支付订单号'; -COMMENT ON COLUMN "public"."pay_order_extension"."order_id" IS '支付订单编号'; -COMMENT ON COLUMN "public"."pay_order_extension"."channel_id" IS '渠道编号'; -COMMENT ON COLUMN "public"."pay_order_extension"."channel_code" IS '渠道编码'; -COMMENT ON COLUMN "public"."pay_order_extension"."user_ip" IS '用户 IP'; -COMMENT ON COLUMN "public"."pay_order_extension"."status" IS '支付状态'; -COMMENT ON COLUMN "public"."pay_order_extension"."channel_extras" IS '支付渠道的额外参数'; -COMMENT ON COLUMN "public"."pay_order_extension"."channel_notify_data" IS '支付渠道异步通知的内容'; -COMMENT ON COLUMN "public"."pay_order_extension"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."pay_order_extension"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."pay_order_extension"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."pay_order_extension"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."pay_order_extension"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."pay_order_extension"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."pay_order_extension" IS '支付订单 +COMMENT ON COLUMN "pay_order_extension"."id" IS '支付订单编号'; +COMMENT ON COLUMN "pay_order_extension"."no" IS '支付订单号'; +COMMENT ON COLUMN "pay_order_extension"."order_id" IS '支付订单编号'; +COMMENT ON COLUMN "pay_order_extension"."channel_id" IS '渠道编号'; +COMMENT ON COLUMN "pay_order_extension"."channel_code" IS '渠道编码'; +COMMENT ON COLUMN "pay_order_extension"."user_ip" IS '用户 IP'; +COMMENT ON COLUMN "pay_order_extension"."status" IS '支付状态'; +COMMENT ON COLUMN "pay_order_extension"."channel_extras" IS '支付渠道的额外参数'; +COMMENT ON COLUMN "pay_order_extension"."channel_notify_data" IS '支付渠道异步通知的内容'; +COMMENT ON COLUMN "pay_order_extension"."creator" IS '创建者'; +COMMENT ON COLUMN "pay_order_extension"."create_time" IS '创建时间'; +COMMENT ON COLUMN "pay_order_extension"."updater" IS '更新者'; +COMMENT ON COLUMN "pay_order_extension"."update_time" IS '更新时间'; +COMMENT ON COLUMN "pay_order_extension"."deleted" IS '是否删除'; +COMMENT ON COLUMN "pay_order_extension"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "pay_order_extension" IS '支付订单 '; -- ---------------------------- -- Records of pay_order_extension -- ---------------------------- BEGIN; -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (9, '', 1, 0, '', '', 0, '', '2021-10-23 09:27:37', NULL, '2021-10-23 17:12:10', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (10, '20211023193842142492', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 19:38:42', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (11, '20211023193939910727', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 19:39:40', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (12, '20211023193959120765', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 19:40:00', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (13, '20211023194227878115', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 19:42:27', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (14, '20211023194954819846', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 19:49:55', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (15, '20211023195101845551', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 19:51:02', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (16, '20211023195217837007', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 19:52:18', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (17, '20211023195729876366', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 19:57:29', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (18, '20211023200000426986', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 20:00:00', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (19, '20211023200023656577', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 20:00:23', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (20, '20211023200035442235', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 20:00:35', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (21, '20211023200108884896', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 20:01:08', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (22, '20211023200148935150', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 20:01:49', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (23, '20211023200246679654', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 20:02:46', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (24, '20211023200952513780', 10, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-23 20:09:52', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (25, '20211024233244795306', 41, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:32:45', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (26, '20211024233303886430', 42, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:33:03', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (27, '20211024233332176343', 42, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:33:33', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (28, '20211024233747270447', 44, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:37:47', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (29, '20211024233813637832', 44, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:38:13', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (30, '20211024233912251285', 46, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:39:13', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (31, '20211024233944497880', 49, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:39:45', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (32, '20211024234241316516', 53, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:42:41', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (33, '20211024234427711411', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:28', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (34, '20211024234428149145', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:28', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (35, '20211024234429753909', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:29', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (36, '20211024234429396293', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:30', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (37, '20211024234429401965', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:30', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (38, '20211024234430210068', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:30', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (39, '20211024234430964487', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:30', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (40, '20211024234430380287', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:30', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (41, '20211024234430758697', 54, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:31', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (42, '20211024234448627934', 56, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:49', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (43, '20211024234453140708', 56, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:44:54', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (44, '20211024234607812259', 58, 9, 'wx_pub', '127.0.0.1', 0, NULL, NULL, NULL, '2021-10-24 23:46:07', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (45, '20211025084152506777', 65, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:41:52', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (46, '20211025084218756961', 66, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:42:19', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (47, '20211025084223637696', 66, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:42:24', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (48, '20211025084545919504', 69, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:45:46', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (49, '20211025084547682989', 69, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:45:47', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (50, '20211025085031437385', 77, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:50:31', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (51, '20211025085114816101', 79, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:51:14', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (52, '20211025085307768616', 79, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:53:07', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (53, '20211025085315553301', 80, 9, 'wx_pub', '101.82.138.223', 0, NULL, NULL, NULL, '2021-10-25 08:53:15', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (54, '20211025091312320198', 87, 9, 'wx_pub', '101.82.138.223', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-25 09:13:13', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (55, '20211025091322710425', 87, 9, 'wx_pub', '101.82.138.223', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-25 09:13:22', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (56, '20211025091405316694', 87, 9, 'wx_pub', '101.82.138.223', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-25 09:14:06', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (57, '20211025091429783090', 87, 9, 'wx_pub', '101.82.138.223', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-25 09:14:29', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (58, '20211025091457423311', 87, 9, 'wx_pub', '101.82.138.223', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-25 09:14:57', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (59, '20211025091651245779', 87, 9, 'wx_pub', '101.82.138.223', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-25 09:16:52', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (60, '20211025093153397917', 87, 9, 'wx_pub', '101.82.138.223', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-25 09:31:53', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (61, '20211025093201208115', 88, 9, 'wx_pub', '101.82.138.223', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-25 09:32:01', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (62, '20211025095407668368', 89, 9, 'wx_pub', '101.82.138.223', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-25 09:54:08', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (63, '20211025095445170008', 89, 9, 'wx_pub', '101.82.138.223', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-25 09:54:45', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (64, '20211025095508568823', 89, 9, 'wx_pub', '101.82.138.223', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-25 09:55:08', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (65, '20211025095523349753', 89, 9, 'wx_pub', '101.82.138.223', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-25 09:55:24', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (66, '20211025095530432861', 89, 9, 'wx_pub', '101.82.138.223', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-25 09:55:30', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (67, '20211025095534847863', 90, 9, 'wx_pub', '101.82.138.223', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-25 09:55:35', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (68, '20211025100349356411', 91, 9, 'wx_pub', '101.82.138.223', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-25 10:03:49', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (69, '20211026092058874496', 92, 9, 'wx_pub', '101.82.98.72', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-26 09:20:58', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (70, '20211026092257213499', 94, 9, 'wx_pub', '101.82.98.72', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-26 09:22:57', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (71, '20211026092451868262', 95, 9, 'wx_pub', '101.82.98.72', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-26 09:24:51', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (72, '20211026093046878736', 96, 9, 'wx_pub', '101.82.98.72', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-26 09:30:47', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (73, '20211026093409899041', 96, 9, 'wx_pub', '101.82.98.72', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-26 09:34:09', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (74, '20211026093425988092', 97, 9, 'wx_pub', '101.82.98.72', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-26 09:34:25', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (75, '20211026093911898026', 98, 9, 'wx_pub', '101.82.98.72', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-26 09:39:12', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (76, '20211026093936195779', 99, 9, 'wx_pub', '101.82.98.72', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-26 09:39:36', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (77, '20211026094104450323', 100, 9, 'wx_pub', '101.82.98.72', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-26 09:41:05', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (78, '20211026094109746189', 100, 9, 'wx_pub', '101.82.98.72', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-26 09:41:09', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (79, '20211026094205207212', 101, 9, 'wx_pub', '101.82.98.72', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-26 09:42:05', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (80, '20211026094257435456', 102, 9, 'wx_pub', '101.82.98.72', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-26 09:42:57', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (81, '20211026094302217748', 102, 9, 'wx_pub', '101.82.98.72', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-26 09:43:03', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (82, '20211026094850532322', 103, 9, 'wx_pub', '101.82.98.72', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-26 09:48:50', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (83, '20211027085119113077', 105, 9, 'wx_pub', '101.82.181.148', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-27 08:51:20', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (84, '20211027090803894341', 106, 9, 'wx_pub', '101.82.181.148', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-27 09:08:04', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (85, '20211027092036195615', 107, 9, 'wx_pub', '101.82.181.148', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-27 09:20:36', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (86, '20211027092146762628', 108, 9, 'wx_pub', '101.82.181.148', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-27 09:21:46', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (87, '20211027092849374159', 109, 9, 'wx_pub', '101.82.181.148', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-27 09:28:49', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (88, '20211027092957858804', 110, 9, 'wx_pub', '101.82.181.148', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-27 09:29:57', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (89, '20211027093542980205', 111, 9, 'wx_pub', '101.82.181.148', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-27 09:35:43', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (90, '20211027093856598882', 112, 9, 'wx_pub', '101.82.181.148', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-27 09:38:57', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (91, '20211027093901662188', 112, 9, 'wx_pub', '101.82.181.148', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-27 09:39:02', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (92, '20211027094003448769', 113, 9, 'wx_pub', '101.82.181.148', 0, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', NULL, NULL, '2021-10-27 09:40:03', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (93, '20211027094010419256', 113, 9, 'wx_pub', '101.82.181.148', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-27 09:40:11', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (94, '20211027094549230727', 114, 9, 'wx_pub', '101.82.181.148', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-27 09:45:50', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (95, '20211027100421694902', 115, 9, 'wx_pub', '101.82.181.148', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-27 10:04:22', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (96, '20211027131109347140', 117, 9, 'wx_pub', '101.82.233.75', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-27 13:11:10', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (97, '20211027131703494434', 118, 9, 'wx_pub', '101.82.233.75', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-27 13:17:04', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (98, '20211027131802329182', 119, 9, 'wx_pub', '101.82.233.75', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-27 13:18:02', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (99, '20211027131909520645', 120, 9, 'wx_pub', '101.82.233.75', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-27 13:19:10', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (100, '20211027132205235959', 121, 9, 'wx_pub', '101.82.233.75', 10, '{"openid":"ockUAwIZ-0OeMZl9ogcZ4ILrGba0"}', ' - - - - - - - - - - - - -1 - - -', NULL, '2021-10-27 13:22:06', NULL, '2022-02-27 04:16:43', 0, 1); -INSERT INTO "public"."pay_order_extension" ("id", "no", "order_id", "channel_id", "channel_code", "user_ip", "status", "channel_extras", "channel_notify_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (123, '20220204013348653171', 123, 17, 'alipay_qr', '127.0.0.1', 0, NULL, NULL, NULL, '2022-02-04 01:33:49', NULL, '2022-02-27 04:16:43', 0, 1); COMMIT; -- ---------------------------- -- Table structure for pay_refund -- ---------------------------- -DROP TABLE IF EXISTS "public"."pay_refund"; -CREATE TABLE "public"."pay_refund" ( +DROP TABLE IF EXISTS "pay_refund"; +CREATE TABLE "pay_refund" ( "id" int8 NOT NULL, "merchant_id" int8 NOT NULL, "app_id" int8 NOT NULL, @@ -18202,39 +1842,38 @@ CREATE TABLE "public"."pay_refund" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."pay_refund" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."pay_refund"."id" IS '支付退款编号'; -COMMENT ON COLUMN "public"."pay_refund"."merchant_id" IS '商户编号'; -COMMENT ON COLUMN "public"."pay_refund"."app_id" IS '应用编号'; -COMMENT ON COLUMN "public"."pay_refund"."channel_id" IS '渠道编号'; -COMMENT ON COLUMN "public"."pay_refund"."channel_code" IS '渠道编码'; -COMMENT ON COLUMN "public"."pay_refund"."order_id" IS '支付订单编号 pay_order 表id'; -COMMENT ON COLUMN "public"."pay_refund"."trade_no" IS '交易订单号 pay_extension 表no 字段'; -COMMENT ON COLUMN "public"."pay_refund"."merchant_order_id" IS '商户订单编号(商户系统生成)'; -COMMENT ON COLUMN "public"."pay_refund"."merchant_refund_no" IS '商户退款订单号(商户系统生成)'; -COMMENT ON COLUMN "public"."pay_refund"."notify_url" IS '异步通知商户地址'; -COMMENT ON COLUMN "public"."pay_refund"."notify_status" IS '通知商户退款结果的回调状态'; -COMMENT ON COLUMN "public"."pay_refund"."status" IS '退款状态'; -COMMENT ON COLUMN "public"."pay_refund"."type" IS '退款类型(部分退款,全部退款)'; -COMMENT ON COLUMN "public"."pay_refund"."pay_amount" IS '支付金额,单位分'; -COMMENT ON COLUMN "public"."pay_refund"."refund_amount" IS '退款金额,单位分'; -COMMENT ON COLUMN "public"."pay_refund"."reason" IS '退款原因'; -COMMENT ON COLUMN "public"."pay_refund"."user_ip" IS '用户 IP'; -COMMENT ON COLUMN "public"."pay_refund"."channel_order_no" IS '渠道订单号,pay_order 中的channel_order_no 对应'; -COMMENT ON COLUMN "public"."pay_refund"."channel_refund_no" IS '渠道退款单号,渠道返回'; -COMMENT ON COLUMN "public"."pay_refund"."channel_error_code" IS '渠道调用报错时,错误码'; -COMMENT ON COLUMN "public"."pay_refund"."channel_error_msg" IS '渠道调用报错时,错误信息'; -COMMENT ON COLUMN "public"."pay_refund"."channel_extras" IS '支付渠道的额外参数'; -COMMENT ON COLUMN "public"."pay_refund"."expire_time" IS '退款失效时间'; -COMMENT ON COLUMN "public"."pay_refund"."success_time" IS '退款成功时间'; -COMMENT ON COLUMN "public"."pay_refund"."notify_time" IS '退款通知时间'; -COMMENT ON COLUMN "public"."pay_refund"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."pay_refund"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."pay_refund"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."pay_refund"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."pay_refund"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."pay_refund"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."pay_refund" IS '退款订单'; +COMMENT ON COLUMN "pay_refund"."id" IS '支付退款编号'; +COMMENT ON COLUMN "pay_refund"."merchant_id" IS '商户编号'; +COMMENT ON COLUMN "pay_refund"."app_id" IS '应用编号'; +COMMENT ON COLUMN "pay_refund"."channel_id" IS '渠道编号'; +COMMENT ON COLUMN "pay_refund"."channel_code" IS '渠道编码'; +COMMENT ON COLUMN "pay_refund"."order_id" IS '支付订单编号 pay_order 表id'; +COMMENT ON COLUMN "pay_refund"."trade_no" IS '交易订单号 pay_extension 表no 字段'; +COMMENT ON COLUMN "pay_refund"."merchant_order_id" IS '商户订单编号(商户系统生成)'; +COMMENT ON COLUMN "pay_refund"."merchant_refund_no" IS '商户退款订单号(商户系统生成)'; +COMMENT ON COLUMN "pay_refund"."notify_url" IS '异步通知商户地址'; +COMMENT ON COLUMN "pay_refund"."notify_status" IS '通知商户退款结果的回调状态'; +COMMENT ON COLUMN "pay_refund"."status" IS '退款状态'; +COMMENT ON COLUMN "pay_refund"."type" IS '退款类型(部分退款,全部退款)'; +COMMENT ON COLUMN "pay_refund"."pay_amount" IS '支付金额,单位分'; +COMMENT ON COLUMN "pay_refund"."refund_amount" IS '退款金额,单位分'; +COMMENT ON COLUMN "pay_refund"."reason" IS '退款原因'; +COMMENT ON COLUMN "pay_refund"."user_ip" IS '用户 IP'; +COMMENT ON COLUMN "pay_refund"."channel_order_no" IS '渠道订单号,pay_order 中的channel_order_no 对应'; +COMMENT ON COLUMN "pay_refund"."channel_refund_no" IS '渠道退款单号,渠道返回'; +COMMENT ON COLUMN "pay_refund"."channel_error_code" IS '渠道调用报错时,错误码'; +COMMENT ON COLUMN "pay_refund"."channel_error_msg" IS '渠道调用报错时,错误信息'; +COMMENT ON COLUMN "pay_refund"."channel_extras" IS '支付渠道的额外参数'; +COMMENT ON COLUMN "pay_refund"."expire_time" IS '退款失效时间'; +COMMENT ON COLUMN "pay_refund"."success_time" IS '退款成功时间'; +COMMENT ON COLUMN "pay_refund"."notify_time" IS '退款通知时间'; +COMMENT ON COLUMN "pay_refund"."creator" IS '创建者'; +COMMENT ON COLUMN "pay_refund"."create_time" IS '创建时间'; +COMMENT ON COLUMN "pay_refund"."updater" IS '更新者'; +COMMENT ON COLUMN "pay_refund"."update_time" IS '更新时间'; +COMMENT ON COLUMN "pay_refund"."deleted" IS '是否删除'; +COMMENT ON COLUMN "pay_refund"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "pay_refund" IS '退款订单'; -- ---------------------------- -- Records of pay_refund @@ -18242,11 +1881,250 @@ COMMENT ON TABLE "public"."pay_refund" IS '退款订单'; BEGIN; COMMIT; +-- ---------------------------- +-- Table structure for qrtz_blob_triggers +-- ---------------------------- +DROP TABLE IF EXISTS "qrtz_blob_triggers"; +CREATE TABLE "qrtz_blob_triggers" ( + "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, + "trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "blob_data" bytea +) +; + +-- ---------------------------- +-- Records of qrtz_blob_triggers +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for qrtz_calendars +-- ---------------------------- +DROP TABLE IF EXISTS "qrtz_calendars"; +CREATE TABLE "qrtz_calendars" ( + "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, + "calendar_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "calendar" bytea NOT NULL +) +; + +-- ---------------------------- +-- Records of qrtz_calendars +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for qrtz_cron_triggers +-- ---------------------------- +DROP TABLE IF EXISTS "qrtz_cron_triggers"; +CREATE TABLE "qrtz_cron_triggers" ( + "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, + "trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "cron_expression" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, + "time_zone_id" varchar(80) COLLATE "pg_catalog"."default" +) +; + +-- ---------------------------- +-- Records of qrtz_cron_triggers +-- ---------------------------- +BEGIN; +INSERT INTO "qrtz_cron_triggers" ("sched_name", "trigger_name", "trigger_group", "cron_expression", "time_zone_id") VALUES ('schedulerName', 'userSessionTimeoutJob', 'DEFAULT', '0 * * * * ? *', 'Asia/Shanghai'); +COMMIT; + +-- ---------------------------- +-- Table structure for qrtz_fired_triggers +-- ---------------------------- +DROP TABLE IF EXISTS "qrtz_fired_triggers"; +CREATE TABLE "qrtz_fired_triggers" ( + "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, + "entry_id" varchar(95) COLLATE "pg_catalog"."default" NOT NULL, + "trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "instance_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "fired_time" int8 NOT NULL, + "sched_time" int8 NOT NULL, + "priority" int4 NOT NULL, + "state" varchar(16) COLLATE "pg_catalog"."default" NOT NULL, + "job_name" varchar(200) COLLATE "pg_catalog"."default", + "job_group" varchar(200) COLLATE "pg_catalog"."default", + "is_nonconcurrent" bool, + "requests_recovery" bool +) +; + +-- ---------------------------- +-- Records of qrtz_fired_triggers +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for qrtz_job_details +-- ---------------------------- +DROP TABLE IF EXISTS "qrtz_job_details"; +CREATE TABLE "qrtz_job_details" ( + "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, + "job_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "job_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "description" varchar(250) COLLATE "pg_catalog"."default", + "job_class_name" varchar(250) COLLATE "pg_catalog"."default" NOT NULL, + "is_durable" bool NOT NULL, + "is_nonconcurrent" bool NOT NULL, + "is_update_data" bool NOT NULL, + "requests_recovery" bool NOT NULL, + "job_data" bytea +) +; + +-- ---------------------------- +-- Records of qrtz_job_details +-- ---------------------------- +BEGIN; +INSERT INTO "qrtz_job_details" ("sched_name", "job_name", "job_group", "description", "job_class_name", "is_durable", "is_nonconcurrent", "is_update_data", "requests_recovery", "job_data") VALUES ('schedulerName', 'userSessionTimeoutJob', 'DEFAULT', NULL, 'cn.iocoder.yudao.framework.quartz.core.handler.JobHandlerInvoker', 'f', 't', 't', 'f', E'\\254\\355\\000\\005sr\\000\\025org.quartz.JobDataMap\\237\\260\\203\\350\\277\\251\\260\\313\\002\\000\\000xr\\000&org.quartz.utils.StringKeyDirtyFlagMap\\202\\010\\350\\303\\373\\305](\\002\\000\\001Z\\000\\023allowsTransientDataxr\\000\\035org.quartz.utils.DirtyFlagMap\\023\\346.\\255(v\\012\\316\\002\\000\\002Z\\000\\005dirtyL\\000\\003mapt\\000\\017Ljava/util/Map;xp\\001sr\\000\\021java.util.HashMap\\005\\007\\332\\301\\303\\026`\\321\\003\\000\\002F\\000\\012loadFactorI\\000\\011thresholdxp?@\\000\\000\\000\\000\\000\\014w\\010\\000\\000\\000\\020\\000\\000\\000\\002t\\000\\006JOB_IDsr\\000\\016java.lang.Long;\\213\\344\\220\\314\\217#\\337\\002\\000\\001J\\000\\005valuexr\\000\\020java.lang.Number\\206\\254\\225\\035\\013\\224\\340\\213\\002\\000\\000xp\\000\\000\\000\\000\\000\\000\\000\\002t\\000\\020JOB_HANDLER_NAMEt\\000\\025userSessionTimeoutJobx\\000'); +COMMIT; + +-- ---------------------------- +-- Table structure for qrtz_locks +-- ---------------------------- +DROP TABLE IF EXISTS "qrtz_locks"; +CREATE TABLE "qrtz_locks" ( + "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, + "lock_name" varchar(40) COLLATE "pg_catalog"."default" NOT NULL +) +; + +-- ---------------------------- +-- Records of qrtz_locks +-- ---------------------------- +BEGIN; +INSERT INTO "qrtz_locks" ("sched_name", "lock_name") VALUES ('schedulerName', 'TRIGGER_ACCESS'); +INSERT INTO "qrtz_locks" ("sched_name", "lock_name") VALUES ('schedulerName', 'STATE_ACCESS'); +COMMIT; + +-- ---------------------------- +-- Table structure for qrtz_paused_trigger_grps +-- ---------------------------- +DROP TABLE IF EXISTS "qrtz_paused_trigger_grps"; +CREATE TABLE "qrtz_paused_trigger_grps" ( + "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, + "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL +) +; + +-- ---------------------------- +-- Records of qrtz_paused_trigger_grps +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for qrtz_scheduler_state +-- ---------------------------- +DROP TABLE IF EXISTS "qrtz_scheduler_state"; +CREATE TABLE "qrtz_scheduler_state" ( + "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, + "instance_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "last_checkin_time" int8 NOT NULL, + "checkin_interval" int8 NOT NULL +) +; + +-- ---------------------------- +-- Records of qrtz_scheduler_state +-- ---------------------------- +BEGIN; +INSERT INTO "qrtz_scheduler_state" ("sched_name", "instance_name", "last_checkin_time", "checkin_interval") VALUES ('schedulerName', 'Yunai.local1651328569660', 1651328650075, 15000); +COMMIT; + +-- ---------------------------- +-- Table structure for qrtz_simple_triggers +-- ---------------------------- +DROP TABLE IF EXISTS "qrtz_simple_triggers"; +CREATE TABLE "qrtz_simple_triggers" ( + "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, + "trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "repeat_count" int8 NOT NULL, + "repeat_interval" int8 NOT NULL, + "times_triggered" int8 NOT NULL +) +; + +-- ---------------------------- +-- Records of qrtz_simple_triggers +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for qrtz_simprop_triggers +-- ---------------------------- +DROP TABLE IF EXISTS "qrtz_simprop_triggers"; +CREATE TABLE "qrtz_simprop_triggers" ( + "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, + "trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "str_prop_1" varchar(512) COLLATE "pg_catalog"."default", + "str_prop_2" varchar(512) COLLATE "pg_catalog"."default", + "str_prop_3" varchar(512) COLLATE "pg_catalog"."default", + "int_prop_1" int4, + "int_prop_2" int4, + "long_prop_1" int8, + "long_prop_2" int8, + "dec_prop_1" numeric(13,4), + "dec_prop_2" numeric(13,4), + "bool_prop_1" bool, + "bool_prop_2" bool +) +; + +-- ---------------------------- +-- Records of qrtz_simprop_triggers +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for qrtz_triggers +-- ---------------------------- +DROP TABLE IF EXISTS "qrtz_triggers"; +CREATE TABLE "qrtz_triggers" ( + "sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL, + "trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "job_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "job_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "description" varchar(250) COLLATE "pg_catalog"."default", + "next_fire_time" int8, + "prev_fire_time" int8, + "priority" int4, + "trigger_state" varchar(16) COLLATE "pg_catalog"."default" NOT NULL, + "trigger_type" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, + "start_time" int8 NOT NULL, + "end_time" int8, + "calendar_name" varchar(200) COLLATE "pg_catalog"."default", + "misfire_instr" int2, + "job_data" bytea +) +; + +-- ---------------------------- +-- Records of qrtz_triggers +-- ---------------------------- +BEGIN; +INSERT INTO "qrtz_triggers" ("sched_name", "trigger_name", "trigger_group", "job_name", "job_group", "description", "next_fire_time", "prev_fire_time", "priority", "trigger_state", "trigger_type", "start_time", "end_time", "calendar_name", "misfire_instr", "job_data") VALUES ('schedulerName', 'userSessionTimeoutJob', 'DEFAULT', 'userSessionTimeoutJob', 'DEFAULT', NULL, 1651328700000, 1651328640000, 5, 'WAITING', 'CRON', 1651328526000, 0, NULL, 0, E'\\254\\355\\000\\005sr\\000\\025org.quartz.JobDataMap\\237\\260\\203\\350\\277\\251\\260\\313\\002\\000\\000xr\\000&org.quartz.utils.StringKeyDirtyFlagMap\\202\\010\\350\\303\\373\\305](\\002\\000\\001Z\\000\\023allowsTransientDataxr\\000\\035org.quartz.utils.DirtyFlagMap\\023\\346.\\255(v\\012\\316\\002\\000\\002Z\\000\\005dirtyL\\000\\003mapt\\000\\017Ljava/util/Map;xp\\001sr\\000\\021java.util.HashMap\\005\\007\\332\\301\\303\\026`\\321\\003\\000\\002F\\000\\012loadFactorI\\000\\011thresholdxp?@\\000\\000\\000\\000\\000\\014w\\010\\000\\000\\000\\020\\000\\000\\000\\003t\\000\\021JOB_HANDLER_PARAMpt\\000\\022JOB_RETRY_INTERVALsr\\000\\021java.lang.Integer\\022\\342\\240\\244\\367\\201\\2078\\002\\000\\001I\\000\\005valuexr\\000\\020java.lang.Number\\206\\254\\225\\035\\013\\224\\340\\213\\002\\000\\000xp\\000\\000\\007\\320t\\000\\017JOB_RETRY_COUNTsq\\000~\\000\\011\\000\\000\\000\\003x\\000'); +COMMIT; + -- ---------------------------- -- Table structure for system_dept -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_dept"; -CREATE TABLE "public"."system_dept" ( +DROP TABLE IF EXISTS "system_dept"; +CREATE TABLE "system_dept" ( "id" int8 NOT NULL, "name" varchar(30) COLLATE "pg_catalog"."default" NOT NULL, "parent_id" int8 NOT NULL, @@ -18263,46 +2141,45 @@ CREATE TABLE "public"."system_dept" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_dept" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_dept"."id" IS '部门id'; -COMMENT ON COLUMN "public"."system_dept"."name" IS '部门名称'; -COMMENT ON COLUMN "public"."system_dept"."parent_id" IS '父部门id'; -COMMENT ON COLUMN "public"."system_dept"."sort" IS '显示顺序'; -COMMENT ON COLUMN "public"."system_dept"."leader_user_id" IS '负责人'; -COMMENT ON COLUMN "public"."system_dept"."phone" IS '联系电话'; -COMMENT ON COLUMN "public"."system_dept"."email" IS '邮箱'; -COMMENT ON COLUMN "public"."system_dept"."status" IS '部门状态(0正常 1停用)'; -COMMENT ON COLUMN "public"."system_dept"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_dept"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_dept"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_dept"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_dept"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."system_dept"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."system_dept" IS '部门表'; +COMMENT ON COLUMN "system_dept"."id" IS '部门id'; +COMMENT ON COLUMN "system_dept"."name" IS '部门名称'; +COMMENT ON COLUMN "system_dept"."parent_id" IS '父部门id'; +COMMENT ON COLUMN "system_dept"."sort" IS '显示顺序'; +COMMENT ON COLUMN "system_dept"."leader_user_id" IS '负责人'; +COMMENT ON COLUMN "system_dept"."phone" IS '联系电话'; +COMMENT ON COLUMN "system_dept"."email" IS '邮箱'; +COMMENT ON COLUMN "system_dept"."status" IS '部门状态(0正常 1停用)'; +COMMENT ON COLUMN "system_dept"."creator" IS '创建者'; +COMMENT ON COLUMN "system_dept"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_dept"."updater" IS '更新者'; +COMMENT ON COLUMN "system_dept"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_dept"."deleted" IS '是否删除'; +COMMENT ON COLUMN "system_dept"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "system_dept" IS '部门表'; -- ---------------------------- -- Records of system_dept -- ---------------------------- BEGIN; -INSERT INTO "public"."system_dept" ("id", "name", "parent_id", "sort", "leader_user_id", "phone", "email", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (100, '芋道源码', 0, 0, 1, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '103', '2022-01-14 01:04:05', 0, 1); -INSERT INTO "public"."system_dept" ("id", "name", "parent_id", "sort", "leader_user_id", "phone", "email", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (101, '深圳总公司', 100, 1, 104, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '1', '2022-02-22 19:47:48', 0, 1); -INSERT INTO "public"."system_dept" ("id", "name", "parent_id", "sort", "leader_user_id", "phone", "email", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (102, '长沙分公司', 100, 2, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '', '2021-12-15 05:01:40', 0, 1); -INSERT INTO "public"."system_dept" ("id", "name", "parent_id", "sort", "leader_user_id", "phone", "email", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (103, '研发部门', 101, 1, 104, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '103', '2022-01-14 01:04:14', 0, 1); -INSERT INTO "public"."system_dept" ("id", "name", "parent_id", "sort", "leader_user_id", "phone", "email", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (104, '市场部门', 101, 2, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '', '2021-12-15 05:01:38', 0, 1); -INSERT INTO "public"."system_dept" ("id", "name", "parent_id", "sort", "leader_user_id", "phone", "email", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (105, '测试部门', 101, 3, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '', '2021-12-15 05:01:37', 0, 1); -INSERT INTO "public"."system_dept" ("id", "name", "parent_id", "sort", "leader_user_id", "phone", "email", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (106, '财务部门', 101, 4, 103, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '103', '2022-01-15 21:32:22', 0, 1); -INSERT INTO "public"."system_dept" ("id", "name", "parent_id", "sort", "leader_user_id", "phone", "email", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (107, '运维部门', 101, 5, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '', '2021-12-15 05:01:33', 0, 1); -INSERT INTO "public"."system_dept" ("id", "name", "parent_id", "sort", "leader_user_id", "phone", "email", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (108, '市场部门', 102, 1, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '1', '2022-02-16 08:35:45', 0, 1); -INSERT INTO "public"."system_dept" ("id", "name", "parent_id", "sort", "leader_user_id", "phone", "email", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (109, '财务部门', 102, 2, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '', '2021-12-15 05:01:29', 0, 1); -INSERT INTO "public"."system_dept" ("id", "name", "parent_id", "sort", "leader_user_id", "phone", "email", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (110, '新部门', 0, 1, NULL, NULL, NULL, 0, '110', '2022-02-23 20:46:30', '110', '2022-02-23 20:46:30', 0, 121); -INSERT INTO "public"."system_dept" ("id", "name", "parent_id", "sort", "leader_user_id", "phone", "email", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (111, '顶级部门', 0, 1, NULL, NULL, NULL, 0, '113', '2022-03-07 21:44:50', '113', '2022-03-07 21:44:50', 0, 122); +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, '芋道源码', 0, 0, 1, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '103', '2022-01-14 01:04:05', 0, 1); +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, '深圳总公司', 100, 1, 104, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '1', '2022-02-22 19:47:48', 0, 1); +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, '长沙分公司', 100, 2, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '', '2021-12-15 05:01:40', 0, 1); +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, '研发部门', 101, 1, 104, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '103', '2022-01-14 01:04:14', 0, 1); +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, '市场部门', 101, 2, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '', '2021-12-15 05:01:38', 0, 1); +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, '测试部门', 101, 3, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '', '2021-12-15 05:01:37', 0, 1); +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, '财务部门', 101, 4, 103, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '103', '2022-01-15 21:32:22', 0, 1); +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, '运维部门', 101, 5, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '', '2021-12-15 05:01:33', 0, 1); +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, '市场部门', 102, 1, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '1', '2022-02-16 08:35:45', 0, 1); +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, '财务部门', 102, 2, NULL, '15888888888', 'ry@qq.com', 0, 'admin', '2021-01-05 17:03:47', '', '2021-12-15 05:01:29', 0, 1); +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, '新部门', 0, 1, NULL, NULL, NULL, 0, '110', '2022-02-23 20:46:30', '110', '2022-02-23 20:46:30', 0, 121); +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, '顶级部门', 0, 1, NULL, NULL, NULL, 0, '113', '2022-03-07 21:44:50', '113', '2022-03-07 21:44:50', 0, 122); COMMIT; -- ---------------------------- -- Table structure for system_dict_data -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_dict_data"; -CREATE TABLE "public"."system_dict_data" ( +DROP TABLE IF EXISTS "system_dict_data"; +CREATE TABLE "system_dict_data" ( "id" int8 NOT NULL, "sort" int4 NOT NULL, "label" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, @@ -18319,169 +2196,163 @@ CREATE TABLE "public"."system_dict_data" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_dict_data" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_dict_data"."id" IS '字典编码'; -COMMENT ON COLUMN "public"."system_dict_data"."sort" IS '字典排序'; -COMMENT ON COLUMN "public"."system_dict_data"."label" IS '字典标签'; -COMMENT ON COLUMN "public"."system_dict_data"."value" IS '字典键值'; -COMMENT ON COLUMN "public"."system_dict_data"."dict_type" IS '字典类型'; -COMMENT ON COLUMN "public"."system_dict_data"."status" IS '状态(0正常 1停用)'; -COMMENT ON COLUMN "public"."system_dict_data"."color_type" IS '颜色类型'; -COMMENT ON COLUMN "public"."system_dict_data"."css_class" IS 'css 样式'; -COMMENT ON COLUMN "public"."system_dict_data"."remark" IS '备注'; -COMMENT ON COLUMN "public"."system_dict_data"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_dict_data"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_dict_data"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_dict_data"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_dict_data"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."system_dict_data" IS '字典数据表'; +COMMENT ON COLUMN "system_dict_data"."id" IS '字典编码'; +COMMENT ON COLUMN "system_dict_data"."sort" IS '字典排序'; +COMMENT ON COLUMN "system_dict_data"."label" IS '字典标签'; +COMMENT ON COLUMN "system_dict_data"."value" IS '字典键值'; +COMMENT ON COLUMN "system_dict_data"."dict_type" IS '字典类型'; +COMMENT ON COLUMN "system_dict_data"."status" IS '状态(0正常 1停用)'; +COMMENT ON COLUMN "system_dict_data"."color_type" IS '颜色类型'; +COMMENT ON COLUMN "system_dict_data"."css_class" IS 'css 样式'; +COMMENT ON COLUMN "system_dict_data"."remark" IS '备注'; +COMMENT ON COLUMN "system_dict_data"."creator" IS '创建者'; +COMMENT ON COLUMN "system_dict_data"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_dict_data"."updater" IS '更新者'; +COMMENT ON COLUMN "system_dict_data"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_dict_data"."deleted" IS '是否删除'; +COMMENT ON TABLE "system_dict_data" IS '字典数据表'; -- ---------------------------- -- Records of system_dict_data -- ---------------------------- BEGIN; -INSERT INTO "public"."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, '男', '1', 'system_user_sex', 0, 'default', 'A', '性别男', 'admin', '2021-01-05 17:03:48', '1', '2022-03-29 00:14:39', 0); -INSERT INTO "public"."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, '女', '2', 'system_user_sex', 1, 'success', '', '性别女', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 01:30:51', 0); -INSERT INTO "public"."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, '正常', '1', 'infra_job_status', 0, 'success', '', '正常状态', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 19:33:38', 0); -INSERT INTO "public"."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, '暂停', '2', 'infra_job_status', 0, 'danger', '', '停用状态', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 19:33:45', 0); -INSERT INTO "public"."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, '系统内置', '1', 'infra_config_type', 0, 'danger', '', '参数类型 - 系统内置', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 19:06:02', 0); -INSERT INTO "public"."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, '自定义', '2', 'infra_config_type', 0, 'primary', '', '参数类型 - 自定义', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 19:06:07', 0); -INSERT INTO "public"."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, '通知', '1', 'system_notice_type', 0, 'success', '', '通知', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 13:05:57', 0); -INSERT INTO "public"."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, '公告', '2', 'system_notice_type', 0, 'info', '', '公告', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 13:06:01', 0); -INSERT INTO "public"."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, '其它', '0', 'system_type', 0, 'default', '', '其它操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:32:46', 0); -INSERT INTO "public"."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, '查询', '1', 'system_type', 0, 'info', '', '查询操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:16', 0); -INSERT INTO "public"."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, '新增', '2', 'system_type', 0, 'primary', '', '新增操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:13', 0); -INSERT INTO "public"."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, '修改', '3', 'system_type', 0, 'warning', '', '修改操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:22', 0); -INSERT INTO "public"."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, '删除', '4', 'system_type', 0, 'danger', '', '删除操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:27', 0); -INSERT INTO "public"."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, '导出', '5', 'system_type', 0, 'default', '', '导出操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:32', 0); -INSERT INTO "public"."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, '导入', '6', 'system_type', 0, 'default', '', '导入操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:35', 0); -INSERT INTO "public"."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, '开启', '0', 'common_status', 0, 'primary', '', '开启状态', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 08:00:39', 0); -INSERT INTO "public"."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, '关闭', '1', 'common_status', 0, 'info', '', '关闭状态', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 08:00:44', 0); -INSERT INTO "public"."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, '目录', '1', 'system_menu_type', 0, '', '', '目录', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:43:45', 0); -INSERT INTO "public"."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, '菜单', '2', 'system_menu_type', 0, '', '', '菜单', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:43:41', 0); -INSERT INTO "public"."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, '按钮', '3', 'system_menu_type', 0, '', '', '按钮', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:43:39', 0); -INSERT INTO "public"."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, '内置', '1', 'system_role_type', 0, 'danger', '', '内置角色', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 13:02:08', 0); -INSERT INTO "public"."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, '自定义', '2', 'system_role_type', 0, 'primary', '', '自定义角色', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 13:02:12', 0); -INSERT INTO "public"."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, '全部数据权限', '1', 'system_data_scope', 0, '', '', '全部数据权限', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:47:17', 0); -INSERT INTO "public"."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, '指定部门数据权限', '2', 'system_data_scope', 0, '', '', '指定部门数据权限', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:47:18', 0); -INSERT INTO "public"."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, '本部门数据权限', '3', 'system_data_scope', 0, '', '', '本部门数据权限', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:47:16', 0); -INSERT INTO "public"."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, '本部门及以下数据权限', '4', 'system_data_scope', 0, '', '', '本部门及以下数据权限', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:47:21', 0); -INSERT INTO "public"."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, '仅本人数据权限', '5', 'system_data_scope', 0, '', '', '仅本人数据权限', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:47:23', 0); -INSERT INTO "public"."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, '成功', '0', 'system_login_result', 0, 'success', '', '登陆结果 - 成功', '', '2021-01-18 06:17:36', '1', '2022-02-16 13:23:49', 0); -INSERT INTO "public"."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, '账号或密码不正确', '10', 'system_login_result', 0, 'primary', '', '登陆结果 - 账号或密码不正确', '', '2021-01-18 06:17:54', '1', '2022-02-16 13:24:27', 0); -INSERT INTO "public"."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, '用户被禁用', '20', 'system_login_result', 0, 'warning', '', '登陆结果 - 用户被禁用', '', '2021-01-18 06:17:54', '1', '2022-02-16 13:23:57', 0); -INSERT INTO "public"."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, '验证码不存在', '30', 'system_login_result', 0, 'info', '', '登陆结果 - 验证码不存在', '', '2021-01-18 06:17:54', '1', '2022-02-16 13:24:07', 0); -INSERT INTO "public"."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, '验证码不正确', '31', 'system_login_result', 0, 'info', '', '登陆结果 - 验证码不正确', '', '2021-01-18 06:17:54', '1', '2022-02-16 13:24:11', 0); -INSERT INTO "public"."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, '未知异常', '100', 'system_login_result', 0, 'danger', '', '登陆结果 - 未知异常', '', '2021-01-18 06:17:54', '1', '2022-02-16 13:24:23', 0); -INSERT INTO "public"."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, '是', 'true', 'infra_boolean_string', 0, 'danger', '', 'Boolean 是否类型 - 是', '', '2021-01-19 03:20:55', '1', '2022-03-15 23:01:45', 0); -INSERT INTO "public"."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, '否', 'false', 'infra_boolean_string', 0, 'info', '', 'Boolean 是否类型 - 否', '', '2021-01-19 03:20:55', '1', '2022-03-15 23:09:45', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (47, 1, '永不超时', '1', 'infra_redis_timeout_type', 0, 'primary', '', 'Redis 未设置超时的情况', '', '2021-01-26 00:53:17', '1', '2022-02-16 19:03:35', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (48, 1, '动态超时', '2', 'infra_redis_timeout_type', 0, 'info', '', '程序里动态传入超时时间,无法固定', '', '2021-01-26 00:55:00', '1', '2022-02-16 19:03:41', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (49, 3, '固定超时', '3', 'infra_redis_timeout_type', 0, 'success', '', 'Redis 设置了过期时间', '', '2021-01-26 00:55:26', '1', '2022-02-16 19:03:45', 0); -INSERT INTO "public"."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, '单表(增删改查)', '1', 'infra_codegen_template_type', 0, '', '', NULL, '', '2021-02-05 07:09:06', '', '2022-03-10 16:33:15', 0); -INSERT INTO "public"."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, '树表(增删改查)', '2', 'infra_codegen_template_type', 0, '', '', NULL, '', '2021-02-05 07:14:46', '', '2022-03-10 16:33:19', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (52, 3, '主子表(增删改查)', '3', 'infra_codegen_template_type', 0, '', '', NULL, '', '2021-02-05 07:21:45', '', '2022-03-10 16:33:09', 1); -INSERT INTO "public"."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, '初始化中', '0', 'infra_job_status', 0, 'primary', '', NULL, '', '2021-02-07 07:46:49', '1', '2022-02-16 19:33:29', 0); -INSERT INTO "public"."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, '运行中', '0', 'infra_job_log_status', 0, 'primary', '', 'RUNNING', '', '2021-02-08 10:04:24', '1', '2022-02-16 19:07:48', 0); -INSERT INTO "public"."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, '成功', '1', 'infra_job_log_status', 0, 'success', '', NULL, '', '2021-02-08 10:06:57', '1', '2022-02-16 19:07:52', 0); -INSERT INTO "public"."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, '失败', '2', 'infra_job_log_status', 0, 'warning', '', '失败', '', '2021-02-08 10:07:38', '1', '2022-02-16 19:07:56', 0); -INSERT INTO "public"."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, '会员', '1', 'user_type', 0, 'primary', '', NULL, '', '2021-02-26 00:16:27', '1', '2022-02-16 10:22:19', 0); -INSERT INTO "public"."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, '管理员', '2', 'user_type', 0, 'success', '', NULL, '', '2021-02-26 00:16:34', '1', '2022-02-16 10:22:22', 0); -INSERT INTO "public"."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, '未处理', '0', 'infra_api_error_log_process_status', 0, 'primary', '', NULL, '', '2021-02-26 07:07:19', '1', '2022-02-16 20:14:17', 0); -INSERT INTO "public"."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, '已处理', '1', 'infra_api_error_log_process_status', 0, 'success', '', NULL, '', '2021-02-26 07:07:26', '1', '2022-02-16 20:14:08', 0); -INSERT INTO "public"."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, '已忽略', '2', 'infra_api_error_log_process_status', 0, 'danger', '', NULL, '', '2021-02-26 07:07:34', '1', '2022-02-16 20:14:14', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (65, 1, '云片', 'YUN_PIAN', 'system_sms_channel_code', 0, 'success', '', NULL, '1', '2021-04-05 01:05:14', '1', '2022-02-16 10:09:55', 0); -INSERT INTO "public"."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, '阿里云', 'ALIYUN', 'system_sms_channel_code', 0, 'primary', '', NULL, '1', '2021-04-05 01:05:26', '1', '2022-02-16 10:09:52', 0); -INSERT INTO "public"."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, '验证码', '1', 'system_sms_template_type', 0, 'warning', '', NULL, '1', '2021-04-05 21:50:57', '1', '2022-02-16 12:48:30', 0); -INSERT INTO "public"."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, '通知', '2', 'system_sms_template_type', 0, 'primary', '', NULL, '1', '2021-04-05 21:51:08', '1', '2022-02-16 12:48:27', 0); -INSERT INTO "public"."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, '营销', '3', 'system_sms_template_type', 0, 'danger', '', NULL, '1', '2021-04-05 21:51:15', '1', '2022-02-16 12:48:22', 0); -INSERT INTO "public"."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, '初始化', '0', 'system_sms_send_status', 0, 'primary', '', NULL, '1', '2021-04-11 20:18:33', '1', '2022-02-16 10:26:07', 0); -INSERT INTO "public"."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, '发送成功', '10', 'system_sms_send_status', 0, 'success', '', NULL, '1', '2021-04-11 20:18:43', '1', '2022-02-16 10:25:56', 0); -INSERT INTO "public"."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, '发送失败', '20', 'system_sms_send_status', 0, 'danger', '', NULL, '1', '2021-04-11 20:18:49', '1', '2022-02-16 10:26:03', 0); -INSERT INTO "public"."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, '不发送', '30', 'system_sms_send_status', 0, 'info', '', NULL, '1', '2021-04-11 20:19:44', '1', '2022-02-16 10:26:10', 0); -INSERT INTO "public"."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, '等待结果', '0', 'system_sms_receive_status', 0, 'primary', '', NULL, '1', '2021-04-11 20:27:43', '1', '2022-02-16 10:28:24', 0); -INSERT INTO "public"."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, '接收成功', '10', 'system_sms_receive_status', 0, 'success', '', NULL, '1', '2021-04-11 20:29:25', '1', '2022-02-16 10:28:28', 0); -INSERT INTO "public"."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, '接收失败', '20', 'system_sms_receive_status', 0, 'danger', '', NULL, '1', '2021-04-11 20:29:31', '1', '2022-02-16 10:28:32', 0); -INSERT INTO "public"."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, '调试(钉钉)', 'DEBUG_DING_TALK', 'system_sms_channel_code', 0, 'info', '', NULL, '1', '2021-04-13 00:20:37', '1', '2022-02-16 10:10:00', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (78, 1, '自动生成', '1', 'system_error_code_type', 0, 'warning', '', NULL, '1', '2021-04-21 00:06:48', '1', '2022-02-16 13:57:20', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (79, 2, '手动编辑', '2', 'system_error_code_type', 0, 'primary', '', NULL, '1', '2021-04-21 00:07:14', '1', '2022-02-16 13:57:24', 0); -INSERT INTO "public"."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, '账号登录', '100', 'system_login_type', 0, 'primary', '', '账号登录', '1', '2021-10-06 00:52:02', '1', '2022-02-16 13:11:34', 0); -INSERT INTO "public"."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, '社交登录', '101', 'system_login_type', 0, 'info', '', '社交登录', '1', '2021-10-06 00:52:17', '1', '2022-02-16 13:11:40', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (82, 102, 'Mock 登录', '102', 'system_login_type', 0, 'danger', '', 'Mock 登录', '1', '2021-10-06 00:52:32', '1', '2022-02-16 13:11:44', 0); -INSERT INTO "public"."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, '主动登出', '200', 'system_login_type', 0, 'primary', '', '主动登出', '1', '2021-10-06 00:52:58', '1', '2022-02-16 13:11:49', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (84, 201, '超时登出', '201', 'system_login_type', 0, 'info', '', '超时登出', '1', '2021-10-06 00:53:17', '1', '2022-02-16 13:11:53', 0); -INSERT INTO "public"."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, '强制登出', '202', 'system_login_type', 0, 'danger', '', '强制退出', '1', '2021-10-06 00:53:41', '1', '2022-02-16 13:11:57', 0); -INSERT INTO "public"."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, '病假', '1', 'bpm_oa_leave_type', 0, 'primary', '', NULL, '1', '2021-09-21 22:35:28', '1', '2022-02-16 10:00:41', 0); -INSERT INTO "public"."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, '事假', '2', 'bpm_oa_leave_type', 0, 'info', '', NULL, '1', '2021-09-21 22:36:11', '1', '2022-02-16 10:00:49', 0); -INSERT INTO "public"."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, '婚假', '3', 'bpm_oa_leave_type', 0, 'warning', '', NULL, '1', '2021-09-21 22:36:38', '1', '2022-02-16 10:00:53', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (98, 1, 'v2', 'v2', 'pay_channel_wechat_version', 0, '', '', 'v2版本', '1', '2021-11-08 17:00:58', '1', '2021-11-08 17:00:58', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (99, 2, 'v3', 'v3', 'pay_channel_wechat_version', 0, '', '', 'v3版本', '1', '2021-11-08 17:01:07', '1', '2021-11-08 17:01:07', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (108, 1, 'RSA2', 'RSA2', 'pay_channel_alipay_sign_type', 0, '', '', 'RSA2', '1', '2021-11-18 15:39:29', '1', '2021-11-18 15:39:29', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (109, 1, '公钥模式', '1', 'pay_channel_alipay_mode', 0, '', '', '公钥模式:privateKey + alipayPublicKey', '1', '2021-11-18 15:45:23', '1', '2021-11-18 15:45:23', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (110, 2, '证书模式', '2', 'pay_channel_alipay_mode', 0, '', '', '证书模式:appCertContent + alipayPublicCertContent + rootCertContent', '1', '2021-11-18 15:45:40', '1', '2021-11-18 15:45:40', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (111, 1, '线上', 'https://openapi.alipay.com/gateway.do', 'pay_channel_alipay_server_type', 0, '', '', '网关地址 - 线上', '1', '2021-11-18 16:59:32', '1', '2021-11-21 17:37:29', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (112, 2, '沙箱', 'https://openapi.alipaydev.com/gateway.do', 'pay_channel_alipay_server_type', 0, '', '', '网关地址 - 沙箱', '1', '2021-11-18 16:59:48', '1', '2021-11-21 17:37:39', 0); -INSERT INTO "public"."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, '微信 JSAPI 支付', 'wx_pub', 'pay_channel_code_type', 0, '', '', '微信 JSAPI(公众号) 支付', '1', '2021-12-03 10:40:24', '1', '2021-12-04 16:41:00', 0); -INSERT INTO "public"."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, '微信小程序支付', 'wx_lite', 'pay_channel_code_type', 0, '', '', '微信小程序支付', '1', '2021-12-03 10:41:06', '1', '2021-12-03 10:41:06', 0); -INSERT INTO "public"."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, '微信 App 支付', 'wx_app', 'pay_channel_code_type', 0, '', '', '微信 App 支付', '1', '2021-12-03 10:41:20', '1', '2021-12-03 10:41:20', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (116, 4, '支付宝 PC 网站支付', 'alipay_pc', 'pay_channel_code_type', 0, '', '', '支付宝 PC 网站支付', '1', '2021-12-03 10:42:09', '1', '2021-12-03 10:42:09', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (117, 5, '支付宝 Wap 网站支付', 'alipay_wap', 'pay_channel_code_type', 0, '', '', '支付宝 Wap 网站支付', '1', '2021-12-03 10:42:26', '1', '2021-12-03 10:42:26', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (118, 6, '支付宝App 支付', 'alipay_app', 'pay_channel_code_type', 0, '', '', '支付宝App 支付', '1', '2021-12-03 10:42:55', '1', '2021-12-03 10:42:55', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (119, 7, '支付宝扫码支付', 'alipay_qr', 'pay_channel_code_type', 0, '', '', '支付宝扫码支付', '1', '2021-12-03 10:43:10', '1', '2021-12-03 10:43:10', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (120, 1, '通知成功', '10', 'pay_order_notify_status', 0, 'success', '', '通知成功', '1', '2021-12-03 11:02:41', '1', '2022-02-16 13:59:13', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (121, 2, '通知失败', '20', 'pay_order_notify_status', 0, 'danger', '', '通知失败', '1', '2021-12-03 11:02:59', '1', '2022-02-16 13:59:17', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (122, 3, '未通知', '0', 'pay_order_notify_status', 0, 'info', '', '未通知', '1', '2021-12-03 11:03:10', '1', '2022-02-16 13:59:23', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (123, 1, '支付成功', '10', 'pay_order_status', 0, 'success', '', '支付成功', '1', '2021-12-03 11:18:29', '1', '2022-02-16 15:24:25', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (124, 2, '支付关闭', '20', 'pay_order_status', 0, 'danger', '', '支付关闭', '1', '2021-12-03 11:18:42', '1', '2022-02-16 15:24:31', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (125, 3, '未支付', '0', 'pay_order_status', 0, 'info', '', '未支付', '1', '2021-12-03 11:18:18', '1', '2022-02-16 15:24:35', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (126, 1, '未退款', '0', 'pay_order_refund_status', 0, '', '', '未退款', '1', '2021-12-03 11:30:35', '1', '2021-12-03 11:34:05', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (127, 2, '部分退款', '10', 'pay_order_refund_status', 0, '', '', '部分退款', '1', '2021-12-03 11:30:44', '1', '2021-12-03 11:34:10', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (128, 3, '全部退款', '20', 'pay_order_refund_status', 0, '', '', '全部退款', '1', '2021-12-03 11:30:52', '1', '2021-12-03 11:34:14', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1117, 1, '退款订单生成', '0', 'pay_refund_order_status', 0, 'primary', '', '退款订单生成', '1', '2021-12-10 16:44:44', '1', '2022-02-16 14:05:24', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1118, 2, '退款成功', '1', 'pay_refund_order_status', 0, 'success', '', '退款成功', '1', '2021-12-10 16:44:59', '1', '2022-02-16 14:05:28', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1119, 3, '退款失败', '2', 'pay_refund_order_status', 0, 'danger', '', '退款失败', '1', '2021-12-10 16:45:10', '1', '2022-02-16 14:05:34', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1120, 4, '退款中, 渠道通知结果', '3', 'pay_refund_order_status', 0, '', '', '退款中, 渠道通知结果', '1', '2021-12-10 16:45:32', '1', '2022-02-16 06:05:16', 1); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1121, 5, '退款中, 系统查询结果', '4', 'pay_refund_order_status', 0, '', '', '退款中, 系统查询结果', '1', '2021-12-10 16:45:48', '1', '2022-02-16 06:05:12', 1); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1122, 6, '状态未知,需要重试', '5', 'pay_refund_order_status', 0, '', '', '状态未知,需要重试', '1', '2021-12-10 16:46:03', '1', '2022-02-16 06:05:09', 1); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1123, 7, '状态未知,系统查询结果', '6', 'pay_refund_order_status', 0, '', '', '状态未知,系统查询结果', '1', '2021-12-10 16:46:13', '1', '2022-02-16 06:05:08', 1); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1124, 8, '退款关闭', '99', 'pay_refund_order_status', 0, 'info', '', '退款关闭', '1', '2021-12-10 16:46:26', '1', '2022-02-16 14:05:40', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1125, 0, '默认', '1', 'bpm_model_category', 0, 'primary', '', '流程分类 - 默认', '1', '2022-01-02 08:41:11', '1', '2022-02-16 20:01:42', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1126, 0, 'OA', '2', 'bpm_model_category', 0, 'success', '', '流程分类 - OA', '1', '2022-01-02 08:41:22', '1', '2022-02-16 20:01:50', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1127, 0, '进行中', '1', 'bpm_process_instance_status', 0, 'primary', '', '流程实例的状态 - 进行中', '1', '2022-01-07 23:47:22', '1', '2022-02-16 20:07:49', 0); -INSERT INTO "public"."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, '已完成', '2', 'bpm_process_instance_status', 0, 'success', '', '流程实例的状态 - 已完成', '1', '2022-01-07 23:47:49', '1', '2022-02-16 20:07:54', 0); -INSERT INTO "public"."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, '处理中', '1', 'bpm_process_instance_result', 0, 'primary', '', '流程实例的结果 - 处理中', '1', '2022-01-07 23:48:32', '1', '2022-02-16 09:53:26', 0); -INSERT INTO "public"."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, '通过', '2', 'bpm_process_instance_result', 0, 'success', '', '流程实例的结果 - 通过', '1', '2022-01-07 23:48:45', '1', '2022-02-16 09:53:31', 0); -INSERT INTO "public"."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, '不通过', '3', 'bpm_process_instance_result', 0, 'danger', '', '流程实例的结果 - 不通过', '1', '2022-01-07 23:48:55', '1', '2022-02-16 09:53:38', 0); -INSERT INTO "public"."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, '已取消', '4', 'bpm_process_instance_result', 0, 'info', '', '流程实例的结果 - 撤销', '1', '2022-01-07 23:49:06', '1', '2022-02-16 09:53:42', 0); -INSERT INTO "public"."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, '流程表单', '10', 'bpm_model_form_type', 0, '', '', '流程的表单类型 - 流程表单', '103', '2022-01-11 23:51:30', '103', '2022-01-11 23:51:30', 0); -INSERT INTO "public"."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, '业务表单', '20', 'bpm_model_form_type', 0, '', '', '流程的表单类型 - 业务表单', '103', '2022-01-11 23:51:47', '103', '2022-01-11 23:51:47', 0); -INSERT INTO "public"."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, '角色', '10', 'bpm_task_assign_rule_type', 0, 'info', '', '任务分配规则的类型 - 角色', '103', '2022-01-12 23:21:22', '1', '2022-02-16 20:06:14', 0); -INSERT INTO "public"."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, '部门的成员', '20', 'bpm_task_assign_rule_type', 0, 'primary', '', '任务分配规则的类型 - 部门的成员', '103', '2022-01-12 23:21:47', '1', '2022-02-16 20:05:28', 0); -INSERT INTO "public"."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, '部门的负责人', '21', 'bpm_task_assign_rule_type', 0, 'primary', '', '任务分配规则的类型 - 部门的负责人', '103', '2022-01-12 23:33:36', '1', '2022-02-16 20:05:31', 0); -INSERT INTO "public"."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, '用户', '30', 'bpm_task_assign_rule_type', 0, 'info', '', '任务分配规则的类型 - 用户', '103', '2022-01-12 23:34:02', '1', '2022-02-16 20:05:50', 0); -INSERT INTO "public"."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, '用户组', '40', 'bpm_task_assign_rule_type', 0, 'warning', '', '任务分配规则的类型 - 用户组', '103', '2022-01-12 23:34:21', '1', '2022-02-16 20:05:57', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1140, 50, '自定义脚本', '50', 'bpm_task_assign_rule_type', 0, 'danger', '', '任务分配规则的类型 - 自定义脚本', '103', '2022-01-12 23:34:43', '1', '2022-02-16 20:06:01', 0); -INSERT INTO "public"."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, '岗位', '22', 'bpm_task_assign_rule_type', 0, 'success', '', '任务分配规则的类型 - 岗位', '103', '2022-01-14 18:41:55', '1', '2022-02-16 20:05:39', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1142, 10, '流程发起人', '10', 'bpm_task_assign_script', 0, '', '', '任务分配自定义脚本 - 流程发起人', '103', '2022-01-15 00:10:57', '103', '2022-01-15 21:24:10', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1143, 20, '流程发起人的一级领导', '20', 'bpm_task_assign_script', 0, '', '', '任务分配自定义脚本 - 流程发起人的一级领导', '103', '2022-01-15 21:24:31', '103', '2022-01-15 21:24:31', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1144, 21, '流程发起人的二级领导', '21', 'bpm_task_assign_script', 0, '', '', '任务分配自定义脚本 - 流程发起人的二级领导', '103', '2022-01-15 21:24:46', '103', '2022-01-15 21:24:57', 0); -INSERT INTO "public"."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, '管理后台', '1', 'infra_codegen_scene', 0, '', '', '代码生成的场景枚举 - 管理后台', '1', '2022-02-02 13:15:06', '1', '2022-03-10 16:32:59', 0); -INSERT INTO "public"."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, '用户 APP', '2', 'infra_codegen_scene', 0, '', '', '代码生成的场景枚举 - 用户 APP', '1', '2022-02-02 13:15:19', '1', '2022-03-10 16:33:03', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1147, 0, '未退款', '0', 'pay_refund_order_type', 0, 'info', '', '退款类型 - 未退款', '1', '2022-02-16 14:09:01', '1', '2022-02-16 14:09:01', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1148, 10, '部分退款', '10', 'pay_refund_order_type', 0, 'success', '', '退款类型 - 部分退款', '1', '2022-02-16 14:09:25', '1', '2022-02-16 14:11:38', 0); -INSERT INTO "public"."system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1149, 20, '全部退款', '20', 'pay_refund_order_type', 0, 'warning', '', '退款类型 - 全部退款', '1', '2022-02-16 14:11:33', '1', '2022-02-16 14:11:33', 0); -INSERT INTO "public"."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, '数据库', '1', 'infra_file_storage', 0, 'default', '', NULL, '1', '2022-03-15 00:25:28', '1', '2022-03-15 00:25:28', 0); -INSERT INTO "public"."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, '本地磁盘', '10', 'infra_file_storage', 0, 'default', '', NULL, '1', '2022-03-15 00:25:41', '1', '2022-03-15 00:25:56', 0); -INSERT INTO "public"."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, 'FTP 服务器', '11', 'infra_file_storage', 0, 'default', '', NULL, '1', '2022-03-15 00:26:06', '1', '2022-03-15 00:26:10', 0); -INSERT INTO "public"."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, 'SFTP 服务器', '12', 'infra_file_storage', 0, 'default', '', NULL, '1', '2022-03-15 00:26:22', '1', '2022-03-15 00:26:22', 0); -INSERT INTO "public"."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, 'S3 对象存储', '20', 'infra_file_storage', 0, 'default', '', NULL, '1', '2022-03-15 00:26:31', '1', '2022-03-15 00:26:45', 0); +INSERT 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, '男', '1', 'system_user_sex', 0, 'default', 'A', '性别男', 'admin', '2021-01-05 17:03:48', '1', '2022-03-29 00:14:39', 0); +INSERT 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, '女', '2', 'system_user_sex', 1, 'success', '', '性别女', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 01:30:51', 0); +INSERT 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, '正常', '1', 'infra_job_status', 0, 'success', '', '正常状态', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 19:33:38', 0); +INSERT 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, '暂停', '2', 'infra_job_status', 0, 'danger', '', '停用状态', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 19:33:45', 0); +INSERT 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, '系统内置', '1', 'infra_config_type', 0, 'danger', '', '参数类型 - 系统内置', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 19:06:02', 0); +INSERT 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, '自定义', '2', 'infra_config_type', 0, 'primary', '', '参数类型 - 自定义', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 19:06:07', 0); +INSERT 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, '通知', '1', 'system_notice_type', 0, 'success', '', '通知', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 13:05:57', 0); +INSERT 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, '公告', '2', 'system_notice_type', 0, 'info', '', '公告', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 13:06:01', 0); +INSERT 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, '其它', '0', 'system_operate_type', 0, 'default', '', '其它操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:32:46', 0); +INSERT 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, '查询', '1', 'system_operate_type', 0, 'info', '', '查询操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:16', 0); +INSERT 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, '新增', '2', 'system_operate_type', 0, 'primary', '', '新增操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:13', 0); +INSERT 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, '修改', '3', 'system_operate_type', 0, 'warning', '', '修改操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:22', 0); +INSERT 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, '删除', '4', 'system_operate_type', 0, 'danger', '', '删除操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:27', 0); +INSERT 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, '导出', '5', 'system_operate_type', 0, 'default', '', '导出操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:32', 0); +INSERT 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, '导入', '6', 'system_operate_type', 0, 'default', '', '导入操作', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:33:35', 0); +INSERT 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, '开启', '0', 'common_status', 0, 'primary', '', '开启状态', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 08:00:39', 0); +INSERT 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, '关闭', '1', 'common_status', 0, 'info', '', '关闭状态', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 08:00:44', 0); +INSERT 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, '目录', '1', 'system_menu_type', 0, '', '', '目录', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:43:45', 0); +INSERT 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, '菜单', '2', 'system_menu_type', 0, '', '', '菜单', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:43:41', 0); +INSERT 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, '按钮', '3', 'system_menu_type', 0, '', '', '按钮', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:43:39', 0); +INSERT 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, '内置', '1', 'system_role_type', 0, 'danger', '', '内置角色', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 13:02:08', 0); +INSERT 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, '自定义', '2', 'system_role_type', 0, 'primary', '', '自定义角色', 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 13:02:12', 0); +INSERT 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, '全部数据权限', '1', 'system_data_scope', 0, '', '', '全部数据权限', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:47:17', 0); +INSERT 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, '指定部门数据权限', '2', 'system_data_scope', 0, '', '', '指定部门数据权限', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:47:18', 0); +INSERT 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, '本部门数据权限', '3', 'system_data_scope', 0, '', '', '本部门数据权限', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:47:16', 0); +INSERT 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, '本部门及以下数据权限', '4', 'system_data_scope', 0, '', '', '本部门及以下数据权限', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:47:21', 0); +INSERT 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, '仅本人数据权限', '5', 'system_data_scope', 0, '', '', '仅本人数据权限', 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:47:23', 0); +INSERT 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, '成功', '0', 'system_login_result', 0, 'success', '', '登陆结果 - 成功', '', '2021-01-18 06:17:36', '1', '2022-02-16 13:23:49', 0); +INSERT 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, '账号或密码不正确', '10', 'system_login_result', 0, 'primary', '', '登陆结果 - 账号或密码不正确', '', '2021-01-18 06:17:54', '1', '2022-02-16 13:24:27', 0); +INSERT 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, '用户被禁用', '20', 'system_login_result', 0, 'warning', '', '登陆结果 - 用户被禁用', '', '2021-01-18 06:17:54', '1', '2022-02-16 13:23:57', 0); +INSERT 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, '验证码不存在', '30', 'system_login_result', 0, 'info', '', '登陆结果 - 验证码不存在', '', '2021-01-18 06:17:54', '1', '2022-02-16 13:24:07', 0); +INSERT 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, '验证码不正确', '31', 'system_login_result', 0, 'info', '', '登陆结果 - 验证码不正确', '', '2021-01-18 06:17:54', '1', '2022-02-16 13:24:11', 0); +INSERT 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, '未知异常', '100', 'system_login_result', 0, 'danger', '', '登陆结果 - 未知异常', '', '2021-01-18 06:17:54', '1', '2022-02-16 13:24:23', 0); +INSERT 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, '是', 'true', 'infra_boolean_string', 0, 'danger', '', 'Boolean 是否类型 - 是', '', '2021-01-19 03:20:55', '1', '2022-03-15 23:01:45', 0); +INSERT 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, '否', 'false', 'infra_boolean_string', 0, 'info', '', 'Boolean 是否类型 - 否', '', '2021-01-19 03:20:55', '1', '2022-03-15 23:09:45', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (47, 1, '永不超时', '1', 'infra_redis_timeout_type', 0, 'primary', '', 'Redis 未设置超时的情况', '', '2021-01-26 00:53:17', '1', '2022-02-16 19:03:35', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (48, 1, '动态超时', '2', 'infra_redis_timeout_type', 0, 'info', '', '程序里动态传入超时时间,无法固定', '', '2021-01-26 00:55:00', '1', '2022-02-16 19:03:41', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (49, 3, '固定超时', '3', 'infra_redis_timeout_type', 0, 'success', '', 'Redis 设置了过期时间', '', '2021-01-26 00:55:26', '1', '2022-02-16 19:03:45', 0); +INSERT 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, '单表(增删改查)', '1', 'infra_codegen_template_type', 0, '', '', NULL, '', '2021-02-05 07:09:06', '', '2022-03-10 16:33:15', 0); +INSERT 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, '树表(增删改查)', '2', 'infra_codegen_template_type', 0, '', '', NULL, '', '2021-02-05 07:14:46', '', '2022-03-10 16:33:19', 0); +INSERT 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, '初始化中', '0', 'infra_job_status', 0, 'primary', '', NULL, '', '2021-02-07 07:46:49', '1', '2022-02-16 19:33:29', 0); +INSERT 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, '运行中', '0', 'infra_job_log_status', 0, 'primary', '', 'RUNNING', '', '2021-02-08 10:04:24', '1', '2022-02-16 19:07:48', 0); +INSERT 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, '成功', '1', 'infra_job_log_status', 0, 'success', '', NULL, '', '2021-02-08 10:06:57', '1', '2022-02-16 19:07:52', 0); +INSERT 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, '失败', '2', 'infra_job_log_status', 0, 'warning', '', '失败', '', '2021-02-08 10:07:38', '1', '2022-02-16 19:07:56', 0); +INSERT 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, '会员', '1', 'user_type', 0, 'primary', '', NULL, '', '2021-02-26 00:16:27', '1', '2022-02-16 10:22:19', 0); +INSERT 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, '管理员', '2', 'user_type', 0, 'success', '', NULL, '', '2021-02-26 00:16:34', '1', '2022-02-16 10:22:22', 0); +INSERT 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, '未处理', '0', 'infra_api_error_log_process_status', 0, 'primary', '', NULL, '', '2021-02-26 07:07:19', '1', '2022-02-16 20:14:17', 0); +INSERT 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, '已处理', '1', 'infra_api_error_log_process_status', 0, 'success', '', NULL, '', '2021-02-26 07:07:26', '1', '2022-02-16 20:14:08', 0); +INSERT 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, '已忽略', '2', 'infra_api_error_log_process_status', 0, 'danger', '', NULL, '', '2021-02-26 07:07:34', '1', '2022-02-16 20:14:14', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (65, 1, '云片', 'YUN_PIAN', 'system_sms_channel_code', 0, 'success', '', NULL, '1', '2021-04-05 01:05:14', '1', '2022-02-16 10:09:55', 0); +INSERT 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, '阿里云', 'ALIYUN', 'system_sms_channel_code', 0, 'primary', '', NULL, '1', '2021-04-05 01:05:26', '1', '2022-02-16 10:09:52', 0); +INSERT 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, '验证码', '1', 'system_sms_template_type', 0, 'warning', '', NULL, '1', '2021-04-05 21:50:57', '1', '2022-02-16 12:48:30', 0); +INSERT 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, '通知', '2', 'system_sms_template_type', 0, 'primary', '', NULL, '1', '2021-04-05 21:51:08', '1', '2022-02-16 12:48:27', 0); +INSERT 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, '营销', '3', 'system_sms_template_type', 0, 'danger', '', NULL, '1', '2021-04-05 21:51:15', '1', '2022-02-16 12:48:22', 0); +INSERT 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, '初始化', '0', 'system_sms_send_status', 0, 'primary', '', NULL, '1', '2021-04-11 20:18:33', '1', '2022-02-16 10:26:07', 0); +INSERT 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, '发送成功', '10', 'system_sms_send_status', 0, 'success', '', NULL, '1', '2021-04-11 20:18:43', '1', '2022-02-16 10:25:56', 0); +INSERT 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, '发送失败', '20', 'system_sms_send_status', 0, 'danger', '', NULL, '1', '2021-04-11 20:18:49', '1', '2022-02-16 10:26:03', 0); +INSERT 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, '不发送', '30', 'system_sms_send_status', 0, 'info', '', NULL, '1', '2021-04-11 20:19:44', '1', '2022-02-16 10:26:10', 0); +INSERT 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, '等待结果', '0', 'system_sms_receive_status', 0, 'primary', '', NULL, '1', '2021-04-11 20:27:43', '1', '2022-02-16 10:28:24', 0); +INSERT 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, '接收成功', '10', 'system_sms_receive_status', 0, 'success', '', NULL, '1', '2021-04-11 20:29:25', '1', '2022-02-16 10:28:28', 0); +INSERT 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, '接收失败', '20', 'system_sms_receive_status', 0, 'danger', '', NULL, '1', '2021-04-11 20:29:31', '1', '2022-02-16 10:28:32', 0); +INSERT 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, '调试(钉钉)', 'DEBUG_DING_TALK', 'system_sms_channel_code', 0, 'info', '', NULL, '1', '2021-04-13 00:20:37', '1', '2022-02-16 10:10:00', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (78, 1, '自动生成', '1', 'system_error_code_type', 0, 'warning', '', NULL, '1', '2021-04-21 00:06:48', '1', '2022-02-16 13:57:20', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (79, 2, '手动编辑', '2', 'system_error_code_type', 0, 'primary', '', NULL, '1', '2021-04-21 00:07:14', '1', '2022-02-16 13:57:24', 0); +INSERT 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, '账号登录', '100', 'system_login_type', 0, 'primary', '', '账号登录', '1', '2021-10-06 00:52:02', '1', '2022-02-16 13:11:34', 0); +INSERT 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, '社交登录', '101', 'system_login_type', 0, 'info', '', '社交登录', '1', '2021-10-06 00:52:17', '1', '2022-02-16 13:11:40', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (82, 102, 'Mock 登录', '102', 'system_login_type', 0, 'danger', '', 'Mock 登录', '1', '2021-10-06 00:52:32', '1', '2022-02-16 13:11:44', 0); +INSERT 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, '主动登出', '200', 'system_login_type', 0, 'primary', '', '主动登出', '1', '2021-10-06 00:52:58', '1', '2022-02-16 13:11:49', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (84, 201, '超时登出', '201', 'system_login_type', 0, 'info', '', '超时登出', '1', '2021-10-06 00:53:17', '1', '2022-02-16 13:11:53', 0); +INSERT 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, '强制登出', '202', 'system_login_type', 0, 'danger', '', '强制退出', '1', '2021-10-06 00:53:41', '1', '2022-02-16 13:11:57', 0); +INSERT 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, '病假', '1', 'bpm_oa_leave_type', 0, 'primary', '', NULL, '1', '2021-09-21 22:35:28', '1', '2022-02-16 10:00:41', 0); +INSERT 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, '事假', '2', 'bpm_oa_leave_type', 0, 'info', '', NULL, '1', '2021-09-21 22:36:11', '1', '2022-02-16 10:00:49', 0); +INSERT 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, '婚假', '3', 'bpm_oa_leave_type', 0, 'warning', '', NULL, '1', '2021-09-21 22:36:38', '1', '2022-02-16 10:00:53', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (98, 1, 'v2', 'v2', 'pay_channel_wechat_version', 0, '', '', 'v2版本', '1', '2021-11-08 17:00:58', '1', '2021-11-08 17:00:58', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (99, 2, 'v3', 'v3', 'pay_channel_wechat_version', 0, '', '', 'v3版本', '1', '2021-11-08 17:01:07', '1', '2021-11-08 17:01:07', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (108, 1, 'RSA2', 'RSA2', 'pay_channel_alipay_sign_type', 0, '', '', 'RSA2', '1', '2021-11-18 15:39:29', '1', '2021-11-18 15:39:29', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (109, 1, '公钥模式', '1', 'pay_channel_alipay_mode', 0, '', '', '公钥模式:privateKey + alipayPublicKey', '1', '2021-11-18 15:45:23', '1', '2021-11-18 15:45:23', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (110, 2, '证书模式', '2', 'pay_channel_alipay_mode', 0, '', '', '证书模式:appCertContent + alipayPublicCertContent + rootCertContent', '1', '2021-11-18 15:45:40', '1', '2021-11-18 15:45:40', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (111, 1, '线上', 'https://openapi.alipay.com/gateway.do', 'pay_channel_alipay_server_type', 0, '', '', '网关地址 - 线上', '1', '2021-11-18 16:59:32', '1', '2021-11-21 17:37:29', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (112, 2, '沙箱', 'https://openapi.alipaydev.com/gateway.do', 'pay_channel_alipay_server_type', 0, '', '', '网关地址 - 沙箱', '1', '2021-11-18 16:59:48', '1', '2021-11-21 17:37:39', 0); +INSERT 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, '微信 JSAPI 支付', 'wx_pub', 'pay_channel_code_type', 0, '', '', '微信 JSAPI(公众号) 支付', '1', '2021-12-03 10:40:24', '1', '2021-12-04 16:41:00', 0); +INSERT 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, '微信小程序支付', 'wx_lite', 'pay_channel_code_type', 0, '', '', '微信小程序支付', '1', '2021-12-03 10:41:06', '1', '2021-12-03 10:41:06', 0); +INSERT 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, '微信 App 支付', 'wx_app', 'pay_channel_code_type', 0, '', '', '微信 App 支付', '1', '2021-12-03 10:41:20', '1', '2021-12-03 10:41:20', 0); +INSERT 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, 4, '支付宝 PC 网站支付', 'alipay_pc', 'pay_channel_code_type', 0, '', '', '支付宝 PC 网站支付', '1', '2021-12-03 10:42:09', '1', '2021-12-03 10:42:09', 0); +INSERT 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, 5, '支付宝 Wap 网站支付', 'alipay_wap', 'pay_channel_code_type', 0, '', '', '支付宝 Wap 网站支付', '1', '2021-12-03 10:42:26', '1', '2021-12-03 10:42:26', 0); +INSERT 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, 6, '支付宝App 支付', 'alipay_app', 'pay_channel_code_type', 0, '', '', '支付宝App 支付', '1', '2021-12-03 10:42:55', '1', '2021-12-03 10:42:55', 0); +INSERT 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, 7, '支付宝扫码支付', 'alipay_qr', 'pay_channel_code_type', 0, '', '', '支付宝扫码支付', '1', '2021-12-03 10:43:10', '1', '2021-12-03 10:43:10', 0); +INSERT 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, 1, '通知成功', '10', 'pay_order_notify_status', 0, 'success', '', '通知成功', '1', '2021-12-03 11:02:41', '1', '2022-02-16 13:59:13', 0); +INSERT 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, 2, '通知失败', '20', 'pay_order_notify_status', 0, 'danger', '', '通知失败', '1', '2021-12-03 11:02:59', '1', '2022-02-16 13:59:17', 0); +INSERT 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, 3, '未通知', '0', 'pay_order_notify_status', 0, 'info', '', '未通知', '1', '2021-12-03 11:03:10', '1', '2022-02-16 13:59:23', 0); +INSERT 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, 1, '支付成功', '10', 'pay_order_status', 0, 'success', '', '支付成功', '1', '2021-12-03 11:18:29', '1', '2022-02-16 15:24:25', 0); +INSERT 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, 2, '支付关闭', '20', 'pay_order_status', 0, 'danger', '', '支付关闭', '1', '2021-12-03 11:18:42', '1', '2022-02-16 15:24:31', 0); +INSERT 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, 3, '未支付', '0', 'pay_order_status', 0, 'info', '', '未支付', '1', '2021-12-03 11:18:18', '1', '2022-02-16 15:24:35', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (126, 1, '未退款', '0', 'pay_order_refund_status', 0, '', '', '未退款', '1', '2021-12-03 11:30:35', '1', '2021-12-03 11:34:05', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (127, 2, '部分退款', '10', 'pay_order_refund_status', 0, '', '', '部分退款', '1', '2021-12-03 11:30:44', '1', '2021-12-03 11:34:10', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (128, 3, '全部退款', '20', 'pay_order_refund_status', 0, '', '', '全部退款', '1', '2021-12-03 11:30:52', '1', '2021-12-03 11:34:14', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1117, 1, '退款订单生成', '0', 'pay_refund_order_status', 0, 'primary', '', '退款订单生成', '1', '2021-12-10 16:44:44', '1', '2022-02-16 14:05:24', 0); +INSERT 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, 2, '退款成功', '1', 'pay_refund_order_status', 0, 'success', '', '退款成功', '1', '2021-12-10 16:44:59', '1', '2022-02-16 14:05:28', 0); +INSERT 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, 3, '退款失败', '2', 'pay_refund_order_status', 0, 'danger', '', '退款失败', '1', '2021-12-10 16:45:10', '1', '2022-02-16 14:05:34', 0); +INSERT 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, 8, '退款关闭', '99', 'pay_refund_order_status', 0, 'info', '', '退款关闭', '1', '2021-12-10 16:46:26', '1', '2022-02-16 14:05:40', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1125, 0, '默认', '1', 'bpm_model_category', 0, 'primary', '', '流程分类 - 默认', '1', '2022-01-02 08:41:11', '1', '2022-02-16 20:01:42', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1126, 0, 'OA', '2', 'bpm_model_category', 0, 'success', '', '流程分类 - OA', '1', '2022-01-02 08:41:22', '1', '2022-02-16 20:01:50', 0); +INSERT 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, 0, '进行中', '1', 'bpm_process_instance_status', 0, 'primary', '', '流程实例的状态 - 进行中', '1', '2022-01-07 23:47:22', '1', '2022-02-16 20:07:49', 0); +INSERT 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, '已完成', '2', 'bpm_process_instance_status', 0, 'success', '', '流程实例的状态 - 已完成', '1', '2022-01-07 23:47:49', '1', '2022-02-16 20:07:54', 0); +INSERT 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, '处理中', '1', 'bpm_process_instance_result', 0, 'primary', '', '流程实例的结果 - 处理中', '1', '2022-01-07 23:48:32', '1', '2022-02-16 09:53:26', 0); +INSERT 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, '通过', '2', 'bpm_process_instance_result', 0, 'success', '', '流程实例的结果 - 通过', '1', '2022-01-07 23:48:45', '1', '2022-02-16 09:53:31', 0); +INSERT 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, '不通过', '3', 'bpm_process_instance_result', 0, 'danger', '', '流程实例的结果 - 不通过', '1', '2022-01-07 23:48:55', '1', '2022-02-16 09:53:38', 0); +INSERT 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, '已取消', '4', 'bpm_process_instance_result', 0, 'info', '', '流程实例的结果 - 撤销', '1', '2022-01-07 23:49:06', '1', '2022-02-16 09:53:42', 0); +INSERT 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, '流程表单', '10', 'bpm_model_form_type', 0, '', '', '流程的表单类型 - 流程表单', '103', '2022-01-11 23:51:30', '103', '2022-01-11 23:51:30', 0); +INSERT 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, '业务表单', '20', 'bpm_model_form_type', 0, '', '', '流程的表单类型 - 业务表单', '103', '2022-01-11 23:51:47', '103', '2022-01-11 23:51:47', 0); +INSERT 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, '角色', '10', 'bpm_task_assign_rule_type', 0, 'info', '', '任务分配规则的类型 - 角色', '103', '2022-01-12 23:21:22', '1', '2022-02-16 20:06:14', 0); +INSERT 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, '部门的成员', '20', 'bpm_task_assign_rule_type', 0, 'primary', '', '任务分配规则的类型 - 部门的成员', '103', '2022-01-12 23:21:47', '1', '2022-02-16 20:05:28', 0); +INSERT 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, '部门的负责人', '21', 'bpm_task_assign_rule_type', 0, 'primary', '', '任务分配规则的类型 - 部门的负责人', '103', '2022-01-12 23:33:36', '1', '2022-02-16 20:05:31', 0); +INSERT 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, '用户', '30', 'bpm_task_assign_rule_type', 0, 'info', '', '任务分配规则的类型 - 用户', '103', '2022-01-12 23:34:02', '1', '2022-02-16 20:05:50', 0); +INSERT 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, '用户组', '40', 'bpm_task_assign_rule_type', 0, 'warning', '', '任务分配规则的类型 - 用户组', '103', '2022-01-12 23:34:21', '1', '2022-02-16 20:05:57', 0); +INSERT 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, 50, '自定义脚本', '50', 'bpm_task_assign_rule_type', 0, 'danger', '', '任务分配规则的类型 - 自定义脚本', '103', '2022-01-12 23:34:43', '1', '2022-02-16 20:06:01', 0); +INSERT 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, '岗位', '22', 'bpm_task_assign_rule_type', 0, 'success', '', '任务分配规则的类型 - 岗位', '103', '2022-01-14 18:41:55', '1', '2022-02-16 20:05:39', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1142, 10, '流程发起人', '10', 'bpm_task_assign_script', 0, '', '', '任务分配自定义脚本 - 流程发起人', '103', '2022-01-15 00:10:57', '103', '2022-01-15 21:24:10', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1143, 20, '流程发起人的一级领导', '20', 'bpm_task_assign_script', 0, '', '', '任务分配自定义脚本 - 流程发起人的一级领导', '103', '2022-01-15 21:24:31', '103', '2022-01-15 21:24:31', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1144, 21, '流程发起人的二级领导', '21', 'bpm_task_assign_script', 0, '', '', '任务分配自定义脚本 - 流程发起人的二级领导', '103', '2022-01-15 21:24:46', '103', '2022-01-15 21:24:57', 0); +INSERT 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, '管理后台', '1', 'infra_codegen_scene', 0, '', '', '代码生成的场景枚举 - 管理后台', '1', '2022-02-02 13:15:06', '1', '2022-03-10 16:32:59', 0); +INSERT 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, '用户 APP', '2', 'infra_codegen_scene', 0, '', '', '代码生成的场景枚举 - 用户 APP', '1', '2022-02-02 13:15:19', '1', '2022-03-10 16:33:03', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1147, 0, '未退款', '0', 'pay_refund_order_type', 0, 'info', '', '退款类型 - 未退款', '1', '2022-02-16 14:09:01', '1', '2022-02-16 14:09:01', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1148, 10, '部分退款', '10', 'pay_refund_order_type', 0, 'success', '', '退款类型 - 部分退款', '1', '2022-02-16 14:09:25', '1', '2022-02-16 14:11:38', 0); +INSERT INTO "system_dict_data" ("id", "sort", "label", "value", "dict_type", "status", "color_type", "css_class", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1149, 20, '全部退款', '20', 'pay_refund_order_type', 0, 'warning', '', '退款类型 - 全部退款', '1', '2022-02-16 14:11:33', '1', '2022-02-16 14:11:33', 0); +INSERT 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, '数据库', '1', 'infra_file_storage', 0, 'default', '', NULL, '1', '2022-03-15 00:25:28', '1', '2022-03-15 00:25:28', 0); +INSERT 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, '本地磁盘', '10', 'infra_file_storage', 0, 'default', '', NULL, '1', '2022-03-15 00:25:41', '1', '2022-03-15 00:25:56', 0); +INSERT 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, 'FTP 服务器', '11', 'infra_file_storage', 0, 'default', '', NULL, '1', '2022-03-15 00:26:06', '1', '2022-03-15 00:26:10', 0); +INSERT 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, 'SFTP 服务器', '12', 'infra_file_storage', 0, 'default', '', NULL, '1', '2022-03-15 00:26:22', '1', '2022-03-15 00:26:22', 0); +INSERT 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, 'S3 对象存储', '20', 'infra_file_storage', 0, 'default', '', NULL, '1', '2022-03-15 00:26:31', '1', '2022-03-15 00:26:45', 0); COMMIT; -- ---------------------------- -- Table structure for system_dict_type -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_dict_type"; -CREATE TABLE "public"."system_dict_type" ( +DROP TABLE IF EXISTS "system_dict_type"; +CREATE TABLE "system_dict_type" ( "id" int8 NOT NULL, "name" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, "type" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, @@ -18494,69 +2365,68 @@ CREATE TABLE "public"."system_dict_type" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_dict_type" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_dict_type"."id" IS '字典主键'; -COMMENT ON COLUMN "public"."system_dict_type"."name" IS '字典名称'; -COMMENT ON COLUMN "public"."system_dict_type"."type" IS '字典类型'; -COMMENT ON COLUMN "public"."system_dict_type"."status" IS '状态(0正常 1停用)'; -COMMENT ON COLUMN "public"."system_dict_type"."remark" IS '备注'; -COMMENT ON COLUMN "public"."system_dict_type"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_dict_type"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_dict_type"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_dict_type"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_dict_type"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."system_dict_type" IS '字典类型表'; +COMMENT ON COLUMN "system_dict_type"."id" IS '字典主键'; +COMMENT ON COLUMN "system_dict_type"."name" IS '字典名称'; +COMMENT ON COLUMN "system_dict_type"."type" IS '字典类型'; +COMMENT ON COLUMN "system_dict_type"."status" IS '状态(0正常 1停用)'; +COMMENT ON COLUMN "system_dict_type"."remark" IS '备注'; +COMMENT ON COLUMN "system_dict_type"."creator" IS '创建者'; +COMMENT ON COLUMN "system_dict_type"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_dict_type"."updater" IS '更新者'; +COMMENT ON COLUMN "system_dict_type"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_dict_type"."deleted" IS '是否删除'; +COMMENT ON TABLE "system_dict_type" IS '字典类型表'; -- ---------------------------- -- Records of system_dict_type -- ---------------------------- BEGIN; -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1, '用户性别', 'system_user_sex', 0, NULL, 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:30:31', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (6, '参数类型', 'infra_config_type', 0, NULL, 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:36:54', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (7, '通知类型', 'system_notice_type', 0, NULL, 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:35:26', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (9, '操作类型', 'system_type', 0, NULL, 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:32:21', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (10, '系统状态', 'common_status', 0, NULL, 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:21:28', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (11, 'Boolean 是否类型', 'infra_boolean_string', 0, 'boolean 转是否', '', '2021-01-19 03:20:08', '', '2022-02-01 16:37:10', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (104, '登陆结果', 'system_login_result', 0, '登陆结果', '', '2021-01-18 06:17:11', '', '2022-02-01 16:36:00', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (105, 'Redis 超时类型', 'infra_redis_timeout_type', 0, 'RedisKeyDefine.TimeoutTypeEnum', '', '2021-01-26 00:52:50', '', '2022-02-01 16:50:29', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (106, '代码生成模板类型', 'infra_codegen_template_type', 0, NULL, '', '2021-02-05 07:08:06', '', '2022-03-10 16:33:42', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (107, '定时任务状态', 'infra_job_status', 0, NULL, '', '2021-02-07 07:44:16', '', '2022-02-01 16:51:11', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (108, '定时任务日志状态', 'infra_job_log_status', 0, NULL, '', '2021-02-08 10:03:51', '', '2022-02-01 16:50:43', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (109, '用户类型', 'user_type', 0, NULL, '', '2021-02-26 00:15:51', '', '2021-02-26 00:15:51', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (110, 'API 异常数据的处理状态', 'infra_api_error_log_process_status', 0, NULL, '', '2021-02-26 07:07:01', '', '2022-02-01 16:50:53', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (111, '短信渠道编码', 'system_sms_channel_code', 0, NULL, '1', '2021-04-05 01:04:50', '1', '2022-02-16 02:09:08', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (112, '短信模板的类型', 'system_sms_template_type', 0, NULL, '1', '2021-04-05 21:50:43', '1', '2022-02-01 16:35:06', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (113, '短信发送状态', 'system_sms_send_status', 0, NULL, '1', '2021-04-11 20:18:03', '1', '2022-02-01 16:35:09', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (114, '短信接收状态', 'system_sms_receive_status', 0, NULL, '1', '2021-04-11 20:27:14', '1', '2022-02-01 16:35:14', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (115, '错误码的类型', 'system_error_code_type', 0, NULL, '1', '2021-04-21 00:06:30', '1', '2022-02-01 16:36:49', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (116, '登陆日志的类型', 'system_login_type', 0, '登陆日志的类型', '1', '2021-10-06 00:50:46', '1', '2022-02-01 16:35:56', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (117, 'OA 请假类型', 'bpm_oa_leave_type', 0, NULL, '1', '2021-09-21 22:34:33', '1', '2022-01-22 10:41:37', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (122, '支付渠道微信版本', 'pay_channel_wechat_version', 0, '支付渠道微信版本', '1', '2021-11-08 17:00:26', '1', '2021-11-08 17:00:26', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (127, '支付渠道支付宝算法类型', 'pay_channel_alipay_sign_type', 0, '支付渠道支付宝算法类型', '1', '2021-11-18 15:39:09', '1', '2021-11-18 15:39:09', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (128, '支付渠道支付宝公钥类型', 'pay_channel_alipay_mode', 0, '支付渠道支付宝公钥类型', '1', '2021-11-18 15:44:28', '1', '2021-11-18 15:44:28', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (129, '支付宝网关地址', 'pay_channel_alipay_server_type', 0, '支付宝网关地址', '1', '2021-11-18 16:58:55', '1', '2021-11-18 17:01:34', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (130, '支付渠道编码类型', 'pay_channel_code_type', 0, '支付渠道的编码', '1', '2021-12-03 10:35:08', '1', '2021-12-03 10:35:08', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (131, '支付订单回调状态', 'pay_order_notify_status', 0, '支付订单回调状态', '1', '2021-12-03 10:53:29', '1', '2021-12-03 10:53:29', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (132, '支付订单状态', 'pay_order_status', 0, '支付订单状态', '1', '2021-12-03 11:17:50', '1', '2021-12-03 11:17:50', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (133, '支付订单退款状态', 'pay_order_refund_status', 0, '支付订单退款状态', '1', '2021-12-03 11:27:31', '1', '2021-12-03 11:27:31', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (134, '退款订单状态', 'pay_refund_order_status', 0, '退款订单状态', '1', '2021-12-10 16:42:50', '1', '2021-12-10 16:42:50', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (135, '退款订单类别', 'pay_refund_order_type', 0, '退款订单类别', '1', '2021-12-10 17:14:53', '1', '2021-12-10 17:14:53', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (138, '流程分类', 'bpm_model_category', 0, '流程分类', '1', '2022-01-02 08:40:45', '1', '2022-01-02 08:40:45', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (139, '流程实例的状态', 'bpm_process_instance_status', 0, '流程实例的状态', '1', '2022-01-07 23:46:42', '1', '2022-01-07 23:46:42', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (140, '流程实例的结果', 'bpm_process_instance_result', 0, '流程实例的结果', '1', '2022-01-07 23:48:10', '1', '2022-01-07 23:48:10', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (141, '流程的表单类型', 'bpm_model_form_type', 0, '流程的表单类型', '103', '2022-01-11 23:50:45', '103', '2022-01-11 23:50:45', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (142, '任务分配规则的类型', 'bpm_task_assign_rule_type', 0, '任务分配规则的类型', '103', '2022-01-12 23:21:04', '103', '2022-01-12 15:46:10', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (143, '任务分配自定义脚本', 'bpm_task_assign_script', 0, '任务分配自定义脚本', '103', '2022-01-15 00:10:35', '103', '2022-01-15 00:10:35', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (144, '代码生成的场景枚举', 'infra_codegen_scene', 0, '代码生成的场景枚举', '1', '2022-02-02 13:14:45', '1', '2022-03-10 16:33:46', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (145, '角色类型', 'system_role_type', 0, '角色类型', '1', '2022-02-16 13:01:46', '1', '2022-02-16 13:01:46', 0); -INSERT INTO "public"."system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (146, '文件存储器', 'infra_file_storage', 0, '文件存储器', '1', '2022-03-15 00:24:38', '1', '2022-03-15 00:24:38', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1, '用户性别', 'system_user_sex', 0, NULL, 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:30:31', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (6, '参数类型', 'infra_config_type', 0, NULL, 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:36:54', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (7, '通知类型', 'system_notice_type', 0, NULL, 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:35:26', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (9, '操作类型', 'system_operate_type', 0, NULL, 'admin', '2021-01-05 17:03:48', '1', '2022-02-16 09:32:21', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (10, '系统状态', 'common_status', 0, NULL, 'admin', '2021-01-05 17:03:48', '', '2022-02-01 16:21:28', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (11, 'Boolean 是否类型', 'infra_boolean_string', 0, 'boolean 转是否', '', '2021-01-19 03:20:08', '', '2022-02-01 16:37:10', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (104, '登陆结果', 'system_login_result', 0, '登陆结果', '', '2021-01-18 06:17:11', '', '2022-02-01 16:36:00', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (105, 'Redis 超时类型', 'infra_redis_timeout_type', 0, 'RedisKeyDefine.TimeoutTypeEnum', '', '2021-01-26 00:52:50', '', '2022-02-01 16:50:29', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (106, '代码生成模板类型', 'infra_codegen_template_type', 0, NULL, '', '2021-02-05 07:08:06', '', '2022-03-10 16:33:42', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (107, '定时任务状态', 'infra_job_status', 0, NULL, '', '2021-02-07 07:44:16', '', '2022-02-01 16:51:11', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (108, '定时任务日志状态', 'infra_job_log_status', 0, NULL, '', '2021-02-08 10:03:51', '', '2022-02-01 16:50:43', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (109, '用户类型', 'user_type', 0, NULL, '', '2021-02-26 00:15:51', '', '2021-02-26 00:15:51', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (110, 'API 异常数据的处理状态', 'infra_api_error_log_process_status', 0, NULL, '', '2021-02-26 07:07:01', '', '2022-02-01 16:50:53', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (111, '短信渠道编码', 'system_sms_channel_code', 0, NULL, '1', '2021-04-05 01:04:50', '1', '2022-02-16 02:09:08', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (112, '短信模板的类型', 'system_sms_template_type', 0, NULL, '1', '2021-04-05 21:50:43', '1', '2022-02-01 16:35:06', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (113, '短信发送状态', 'system_sms_send_status', 0, NULL, '1', '2021-04-11 20:18:03', '1', '2022-02-01 16:35:09', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (114, '短信接收状态', 'system_sms_receive_status', 0, NULL, '1', '2021-04-11 20:27:14', '1', '2022-02-01 16:35:14', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (115, '错误码的类型', 'system_error_code_type', 0, NULL, '1', '2021-04-21 00:06:30', '1', '2022-02-01 16:36:49', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (116, '登陆日志的类型', 'system_login_type', 0, '登陆日志的类型', '1', '2021-10-06 00:50:46', '1', '2022-02-01 16:35:56', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (117, 'OA 请假类型', 'bpm_oa_leave_type', 0, NULL, '1', '2021-09-21 22:34:33', '1', '2022-01-22 10:41:37', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (122, '支付渠道微信版本', 'pay_channel_wechat_version', 0, '支付渠道微信版本', '1', '2021-11-08 17:00:26', '1', '2021-11-08 17:00:26', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (127, '支付渠道支付宝算法类型', 'pay_channel_alipay_sign_type', 0, '支付渠道支付宝算法类型', '1', '2021-11-18 15:39:09', '1', '2021-11-18 15:39:09', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (128, '支付渠道支付宝公钥类型', 'pay_channel_alipay_mode', 0, '支付渠道支付宝公钥类型', '1', '2021-11-18 15:44:28', '1', '2021-11-18 15:44:28', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (129, '支付宝网关地址', 'pay_channel_alipay_server_type', 0, '支付宝网关地址', '1', '2021-11-18 16:58:55', '1', '2021-11-18 17:01:34', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (130, '支付渠道编码类型', 'pay_channel_code_type', 0, '支付渠道的编码', '1', '2021-12-03 10:35:08', '1', '2021-12-03 10:35:08', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (131, '支付订单回调状态', 'pay_order_notify_status', 0, '支付订单回调状态', '1', '2021-12-03 10:53:29', '1', '2021-12-03 10:53:29', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (132, '支付订单状态', 'pay_order_status', 0, '支付订单状态', '1', '2021-12-03 11:17:50', '1', '2021-12-03 11:17:50', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (133, '支付订单退款状态', 'pay_order_refund_status', 0, '支付订单退款状态', '1', '2021-12-03 11:27:31', '1', '2021-12-03 11:27:31', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (134, '退款订单状态', 'pay_refund_order_status', 0, '退款订单状态', '1', '2021-12-10 16:42:50', '1', '2021-12-10 16:42:50', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (135, '退款订单类别', 'pay_refund_order_type', 0, '退款订单类别', '1', '2021-12-10 17:14:53', '1', '2021-12-10 17:14:53', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (138, '流程分类', 'bpm_model_category', 0, '流程分类', '1', '2022-01-02 08:40:45', '1', '2022-01-02 08:40:45', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (139, '流程实例的状态', 'bpm_process_instance_status', 0, '流程实例的状态', '1', '2022-01-07 23:46:42', '1', '2022-01-07 23:46:42', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (140, '流程实例的结果', 'bpm_process_instance_result', 0, '流程实例的结果', '1', '2022-01-07 23:48:10', '1', '2022-01-07 23:48:10', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (141, '流程的表单类型', 'bpm_model_form_type', 0, '流程的表单类型', '103', '2022-01-11 23:50:45', '103', '2022-01-11 23:50:45', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (142, '任务分配规则的类型', 'bpm_task_assign_rule_type', 0, '任务分配规则的类型', '103', '2022-01-12 23:21:04', '103', '2022-01-12 15:46:10', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (143, '任务分配自定义脚本', 'bpm_task_assign_script', 0, '任务分配自定义脚本', '103', '2022-01-15 00:10:35', '103', '2022-01-15 00:10:35', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (144, '代码生成的场景枚举', 'infra_codegen_scene', 0, '代码生成的场景枚举', '1', '2022-02-02 13:14:45', '1', '2022-03-10 16:33:46', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (145, '角色类型', 'system_role_type', 0, '角色类型', '1', '2022-02-16 13:01:46', '1', '2022-02-16 13:01:46', 0); +INSERT INTO "system_dict_type" ("id", "name", "type", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted") VALUES (146, '文件存储器', 'infra_file_storage', 0, '文件存储器', '1', '2022-03-15 00:24:38', '1', '2022-03-15 00:24:38', 0); COMMIT; -- ---------------------------- -- Table structure for system_error_code -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_error_code"; -CREATE TABLE "public"."system_error_code" ( +DROP TABLE IF EXISTS "system_error_code"; +CREATE TABLE "system_error_code" ( "id" int8 NOT NULL, "type" int2 NOT NULL, "application_name" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, @@ -18570,206 +2440,30 @@ CREATE TABLE "public"."system_error_code" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_error_code" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_error_code"."id" IS '错误码编号'; -COMMENT ON COLUMN "public"."system_error_code"."type" IS '错误码类型'; -COMMENT ON COLUMN "public"."system_error_code"."application_name" IS '应用名'; -COMMENT ON COLUMN "public"."system_error_code"."code" IS '错误码编码'; -COMMENT ON COLUMN "public"."system_error_code"."message" IS '错误码错误提示'; -COMMENT ON COLUMN "public"."system_error_code"."memo" IS '备注'; -COMMENT ON COLUMN "public"."system_error_code"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_error_code"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_error_code"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_error_code"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_error_code"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."system_error_code" IS '错误码表'; +COMMENT ON COLUMN "system_error_code"."id" IS '错误码编号'; +COMMENT ON COLUMN "system_error_code"."type" IS '错误码类型'; +COMMENT ON COLUMN "system_error_code"."application_name" IS '应用名'; +COMMENT ON COLUMN "system_error_code"."code" IS '错误码编码'; +COMMENT ON COLUMN "system_error_code"."message" IS '错误码错误提示'; +COMMENT ON COLUMN "system_error_code"."memo" IS '备注'; +COMMENT ON COLUMN "system_error_code"."creator" IS '创建者'; +COMMENT ON COLUMN "system_error_code"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_error_code"."updater" IS '更新者'; +COMMENT ON COLUMN "system_error_code"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_error_code"."deleted" IS '是否删除'; +COMMENT ON TABLE "system_error_code" IS '错误码表'; -- ---------------------------- -- Records of system_error_code -- ---------------------------- BEGIN; -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5278, 1, 'yudao-admin-server', 1009000002, '获取高亮流程图异常', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5279, 1, 'yudao-admin-server', 1009001001, '请假申请不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5280, 1, 'yudao-admin-server', 1009001002, '项目经理岗位未设置', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5281, 1, 'yudao-admin-server', 1009001009, '部门的项目经理不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5282, 1, 'yudao-admin-server', 1009001004, '部门经理岗位未设置', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5283, 1, 'yudao-admin-server', 1009001005, '部门的部门经理不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5284, 1, 'yudao-admin-server', 1009001006, 'HR岗位未设置', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5285, 1, 'yudao-admin-server', 1009001007, '请假天数必须>=1', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5286, 1, 'yudao-admin-server', 1009002000, '已经存在流程标识为【{}】的流程', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5287, 1, 'yudao-admin-server', 1009002001, '流程模型不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5288, 1, 'yudao-admin-server', 1009002002, '流程标识格式不正确,需要以字母或下划线开头,后接任意字母、数字、中划线、下划线、句点!', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5289, 1, 'yudao-admin-server', 1009002003, '部署流程失败,原因:流程表单未配置,请点击【修改流程】按钮进行配置', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5290, 1, 'yudao-admin-server', 1009002004, '部署流程失败,原因:用户任务({})未配置分配规则,请点击【修改流程】按钮进行配置', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5291, 1, 'yudao-admin-server', 1009003005, '流程定义部署失败,原因:信息未发生变化', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5292, 1, 'yudao-admin-server', 1009003000, '流程定义的标识期望是({}),当前是({}),请修改 BPMN 流程图', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5293, 1, 'yudao-admin-server', 1009003001, '流程定义的名字期望是({}),当前是({}),请修改 BPMN 流程图', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5294, 1, 'yudao-admin-server', 1009003002, '流程定义不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5295, 1, 'yudao-admin-server', 1009003003, '流程定义处于挂起状态', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5296, 1, 'yudao-admin-server', 1009003004, '流程定义的模型不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5297, 1, 'yudao-admin-server', 1009004000, '流程实例不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5298, 1, 'yudao-admin-server', 1009004001, '流程取消失败,流程不处于运行中', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5299, 1, 'yudao-admin-server', 1009004002, '流程取消失败,该流程不是你发起的', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5300, 1, 'yudao-admin-server', 1009005000, '审批任务失败,原因:该任务不处于未审批', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5301, 1, 'yudao-admin-server', 1009005001, '审批任务失败,原因:该任务的审批人不是你', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5302, 1, 'yudao-admin-server', 1009006000, '流程({}) 的任务({}) 已经存在分配规则', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5303, 1, 'yudao-admin-server', 1009006001, '流程任务分配规则不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5304, 1, 'yudao-admin-server', 1009006002, '只有流程模型的任务分配规则,才允许被修改', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5305, 1, 'yudao-admin-server', 1009006003, '操作失败,原因:找不到任务的审批人!', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5306, 1, 'yudao-admin-server', 1009006004, '操作失败,原因:任务分配脚本({}) 不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5307, 1, 'yudao-admin-server', 1009010000, '动态表单不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5308, 1, 'yudao-admin-server', 1009010001, '表单项({}) 和 ({}) 使用了相同的字段名({})', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5309, 1, 'yudao-admin-server', 1009011000, '用户组不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5310, 1, 'yudao-admin-server', 1009011001, '名字为【{}】的用户组已被禁用', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5311, 1, 'yudao-admin-server', 1001000001, '参数配置不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5312, 1, 'yudao-admin-server', 1001000002, '参数配置 key 重复', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5313, 1, 'yudao-admin-server', 1001000003, '不能删除类型为系统内置的参数配置', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5314, 1, 'yudao-admin-server', 1001000004, '不允许获取敏感配置到前端', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5315, 1, 'yudao-admin-server', 1001001000, '定时任务不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5316, 1, 'yudao-admin-server', 1001001001, '定时任务的处理器已经存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5317, 1, 'yudao-admin-server', 1001001002, '只允许修改为开启或者关闭状态', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5318, 1, 'yudao-admin-server', 1001001003, '定时任务已经处于该状态,无需修改', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5319, 1, 'yudao-admin-server', 1001001004, '只有开启状态的任务,才可以修改', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5320, 1, 'yudao-admin-server', 1001001005, 'CRON 表达式不正确', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5321, 1, 'yudao-admin-server', 1001002000, 'API 错误日志不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5322, 1, 'yudao-admin-server', 1001002001, 'API 错误日志已处理', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5323, 1, 'yudao-admin-server', 1001003000, '文件路径已存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5324, 1, 'yudao-admin-server', 1001003001, '文件不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5325, 1, 'yudao-admin-server', 1001003002, '文件为空', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5326, 1, 'yudao-admin-server', 1003001000, '表定义已经存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5327, 1, 'yudao-admin-server', 1003001001, '导入的表不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5328, 1, 'yudao-admin-server', 1003001002, '导入的字段不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5329, 1, 'yudao-admin-server', 1003001003, '解析 SQL 失败,请检查', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5330, 1, 'yudao-admin-server', 1003001004, '表定义不存在', '', NULL, '2022-03-10 23:59:13', NULL, '2022-03-10 23:59:13', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5331, 1, 'yudao-admin-server', 1003001005, '字段义不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5332, 1, 'yudao-admin-server', 1003001006, '同步的字段不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5333, 1, 'yudao-admin-server', 1003001007, '同步失败,不存在改变', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-12 01:23:51', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5334, 1, 'yudao-admin-server', 1003000000, '测试示例不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5335, 1, 'yudao-admin-server', 1004001000, '用户不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5336, 1, 'yudao-admin-server', 1004001001, '密码校验失败', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5337, 1, 'yudao-admin-server', 1004003000, '登录失败,账号密码不正确', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5338, 1, 'yudao-admin-server', 1004003001, '登录失败,账号被禁用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5339, 1, 'yudao-admin-server', 1004003002, '登录失败', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5340, 1, 'yudao-admin-server', 1004003004, 'Token 已经过期', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5341, 1, 'yudao-admin-server', 1004003005, '未绑定账号,需要进行绑定', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5342, 1, 'yudao-admin-server', 1007000000, 'App 不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5343, 1, 'yudao-admin-server', 1007000002, 'App 已经被禁用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5344, 1, 'yudao-admin-server', 1007000003, '支付应用存在交易中的订单,无法删除', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5345, 1, 'yudao-admin-server', 1007001000, '支付渠道的配置不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5346, 1, 'yudao-admin-server', 1007001001, '支付渠道已经禁用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5347, 1, 'yudao-admin-server', 1007001002, '支付渠道的客户端不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5348, 1, 'yudao-admin-server', 1007001003, '支付渠道不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5349, 1, 'yudao-admin-server', 1007001005, '已存在相同的渠道', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5350, 1, 'yudao-admin-server', 1007001006, '微信渠道v2版本中商户密钥不可为空', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5351, 1, 'yudao-admin-server', 1007001007, '微信渠道v3版本apiclient_key.pem不可为空', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5352, 1, 'yudao-admin-server', 1007001008, '微信渠道v3版本中apiclient_cert.pem不可为空', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5353, 1, 'yudao-admin-server', 1007001009, '渠道通知校验失败', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5354, 1, 'yudao-admin-server', 1007002000, '支付订单不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5355, 1, 'yudao-admin-server', 1007002001, '支付订单不处于待支付', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5356, 1, 'yudao-admin-server', 1007002002, '支付订单不处于已支付', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5357, 1, 'yudao-admin-server', 1007002003, '支付订单用户不正确', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5358, 1, 'yudao-admin-server', 1007003000, '支付交易拓展单不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5359, 1, 'yudao-admin-server', 1007003001, '支付交易拓展单不处于待支付', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5360, 1, 'yudao-admin-server', 1007003002, '支付订单不处于已支付', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5361, 1, 'yudao-admin-server', 1007006000, '退款金额超过订单可退款金额', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5362, 1, 'yudao-admin-server', 1007006001, '订单已经全额退款', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5363, 1, 'yudao-admin-server', 1007006002, '该订单的渠道订单为空', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5364, 1, 'yudao-admin-server', 1007006003, '已经退款成功', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5365, 1, 'yudao-admin-server', 1007006004, '支付退款单不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5366, 1, 'yudao-admin-server', 1007004000, '支付商户信息不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5367, 1, 'yudao-admin-server', 1007004001, '支付商户存在支付应用,无法删除', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5368, 1, 'yudao-admin-server', 1002000000, '登录失败,账号密码不正确', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5369, 1, 'yudao-admin-server', 1002000001, '登录失败,账号被禁用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5370, 1, 'yudao-admin-server', 1002000002, '登录失败', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5371, 1, 'yudao-admin-server', 1002000003, '验证码不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5372, 1, 'yudao-admin-server', 1002000004, '验证码不正确', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5373, 1, 'yudao-admin-server', 1002000005, '未绑定账号,需要进行绑定', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5374, 1, 'yudao-admin-server', 1002000006, 'Token 已经过期', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5375, 1, 'yudao-admin-server', 1002001000, '已经存在该名字的菜单', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5376, 1, 'yudao-admin-server', 1002001001, '父菜单不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5377, 1, 'yudao-admin-server', 1002001002, '不能设置自己为父菜单', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5378, 1, 'yudao-admin-server', 1002001003, '菜单不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5379, 1, 'yudao-admin-server', 1002001004, '存在子菜单,无法删除', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5380, 1, 'yudao-admin-server', 1002001005, '父菜单的类型必须是目录或者菜单', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5381, 1, 'yudao-admin-server', 1002002000, '角色不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5382, 1, 'yudao-admin-server', 1002002001, '已经存在名为【{}】的角色', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5383, 1, 'yudao-admin-server', 1002002002, '已经存在编码为【{}】的角色', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5384, 1, 'yudao-admin-server', 1002002003, '不能操作类型为系统内置的角色', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5385, 1, 'yudao-admin-server', 1002002004, '名字为【{}】的角色已被禁用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5386, 1, 'yudao-admin-server', 1002002005, '编码【{}】不能使用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5387, 1, 'yudao-admin-server', 1002003000, '用户账号已经存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5388, 1, 'yudao-admin-server', 1002003001, '手机号已经存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5389, 1, 'yudao-admin-server', 1002003002, '邮箱已经存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5390, 1, 'yudao-admin-server', 1002003003, '用户不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5391, 1, 'yudao-admin-server', 1002003004, '导入用户数据不能为空!', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5392, 1, 'yudao-admin-server', 1002003005, '用户密码校验失败', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5393, 1, 'yudao-admin-server', 1002003006, '名字为【{}】的用户已被禁用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5394, 1, 'yudao-admin-server', 1002003008, '创建用户失败,原因:超过租户最大租户配额({})!', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5395, 1, 'yudao-admin-server', 1002004000, '已经存在该名字的部门', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5396, 1, 'yudao-admin-server', 1002004001, '父级部门不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5397, 1, 'yudao-admin-server', 1002004002, '当前部门不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5398, 1, 'yudao-admin-server', 1002004003, '存在子部门,无法删除', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5399, 1, 'yudao-admin-server', 1002004004, '不能设置自己为父部门', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5400, 1, 'yudao-admin-server', 1002004005, '部门中存在员工,无法删除', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5401, 1, 'yudao-admin-server', 1002004006, '部门不处于开启状态,不允许选择', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5402, 1, 'yudao-admin-server', 1002004007, '不能设置自己的子部门为父部门', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5403, 1, 'yudao-admin-server', 1002005000, '当前岗位不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5404, 1, 'yudao-admin-server', 1002005001, '岗位({}) 不处于开启状态,不允许选择', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5405, 1, 'yudao-admin-server', 1002005002, '已经存在该名字的岗位', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5406, 1, 'yudao-admin-server', 1002005003, '已经存在该标识的岗位', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5407, 1, 'yudao-admin-server', 1002006001, '当前字典类型不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5408, 1, 'yudao-admin-server', 1002006002, '字典类型不处于开启状态,不允许选择', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5409, 1, 'yudao-admin-server', 1002006003, '已经存在该名字的字典类型', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5410, 1, 'yudao-admin-server', 1002006004, '已经存在该类型的字典类型', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5411, 1, 'yudao-admin-server', 1002006005, '无法删除,该字典类型还有字典数据', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5412, 1, 'yudao-admin-server', 1002007001, '当前字典数据不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5413, 1, 'yudao-admin-server', 1002007002, '字典数据({})不处于开启状态,不允许选择', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5414, 1, 'yudao-admin-server', 1002007003, '已经存在该值的字典数据', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5415, 1, 'yudao-admin-server', 1002008001, '当前通知公告不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5416, 1, 'yudao-admin-server', 1002011000, '短信渠道不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5417, 1, 'yudao-admin-server', 1002011001, '短信渠道不处于开启状态,不允许选择', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5418, 1, 'yudao-admin-server', 1002011002, '无法删除,该短信渠道还有短信模板', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5419, 1, 'yudao-admin-server', 1002012000, '短信模板不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5420, 1, 'yudao-admin-server', 1002012001, '已经存在编码为【{}】的短信模板', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5421, 1, 'yudao-admin-server', 1002013000, '手机号不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5422, 1, 'yudao-admin-server', 1002013001, '模板参数({})缺失', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5423, 1, 'yudao-admin-server', 1002013002, '短信模板不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5424, 1, 'yudao-admin-server', 1002014000, '验证码不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5425, 1, 'yudao-admin-server', 1002014001, '验证码已过期', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5426, 1, 'yudao-admin-server', 1002014002, '验证码已使用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5427, 1, 'yudao-admin-server', 1002014003, '验证码不正确', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5428, 1, 'yudao-admin-server', 1002014004, '超过每日短信发送数量', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5429, 1, 'yudao-admin-server', 1002014005, '短信发送过于频率', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5430, 1, 'yudao-admin-server', 1002014006, '手机号已被使用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5431, 1, 'yudao-admin-server', 1002014007, '验证码未被使用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5432, 1, 'yudao-admin-server', 1002015000, '租户不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5433, 1, 'yudao-admin-server', 1002015001, '名字为【{}】的租户已被禁用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5434, 1, 'yudao-admin-server', 1002015002, '名字为【{}】的租户已过期', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5435, 1, 'yudao-admin-server', 1002015003, '系统租户不能进行修改、删除等操作!', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5436, 1, 'yudao-admin-server', 1002016000, '租户套餐不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5437, 1, 'yudao-admin-server', 1002016001, '租户正在使用该套餐,请给租户重新设置套餐后再尝试删除', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5438, 1, 'yudao-admin-server', 1002016002, '名字为【{}】的租户套餐已被禁用', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5439, 1, 'yudao-admin-server', 1002017000, '错误码不存在', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5440, 1, 'yudao-admin-server', 1002017001, '已经存在编码为【{}】的错误码', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5441, 1, 'yudao-admin-server', 1002018000, '社交授权失败,原因是:{}', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5442, 1, 'yudao-admin-server', 1002018001, '社交解绑失败,非当前用户绑定', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5443, 1, 'yudao-admin-server', 1002018002, '社交授权失败,找不到对应的用户', '', NULL, '2022-03-10 23:59:14', NULL, '2022-03-10 23:59:14', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5444, 1, 'yudao-admin-server', 1002019000, '系统敏感词在所有标签中都不存在', '', NULL, '2022-03-12 16:03:50', NULL, '2022-04-08 00:51:30', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5445, 1, 'yudao-admin-server', 1001005000, '测试示例不存在', '', NULL, '2022-03-15 19:25:23', NULL, '2022-03-15 19:25:23', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5446, 1, 'yudao-admin-server', 1001006000, '文件配置不存在', '', NULL, '2022-03-15 19:25:23', NULL, '2022-03-15 19:25:23', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5447, 1, 'yudao-admin-server', 1001006001, '该文件配置不允许删除,原因:它是主配置,删除会导致无法上传文件', '', NULL, '2022-03-15 23:43:35', NULL, '2022-03-15 23:43:35', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5448, 1, 'yudao-admin-server', 1002019001, '系统敏感词已在标签中存在', '', NULL, '2022-04-08 00:51:30', NULL, '2022-04-08 00:51:30', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5449, 1, 'yudao-server', 1004004000, '用户收件地址不存在', '', NULL, '2022-04-22 22:00:17', NULL, '2022-04-22 22:00:17', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5450, 1, 'yudao-server', 1004004001, '没有该操作权限', '', NULL, '2022-04-22 22:00:17', NULL, '2022-04-22 22:00:17', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5451, 1, 'yudao-server', 1001007000, '数据源配置不存在', '', NULL, '2022-04-27 22:36:28', NULL, '2022-04-27 22:36:28', 0); -INSERT INTO "public"."system_error_code" ("id", "type", "application_name", "code", "message", "memo", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5452, 1, 'yudao-server', 1001007001, '数据源配置不正确,无法进行连接', '', NULL, '2022-04-27 23:03:55', NULL, '2022-04-27 23:03:55', 0); COMMIT; -- ---------------------------- -- Table structure for system_login_log -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_login_log"; -CREATE TABLE "public"."system_login_log" ( +DROP TABLE IF EXISTS "system_login_log"; +CREATE TABLE "system_login_log" ( "id" int8 NOT NULL, "log_type" int8 NOT NULL, "trace_id" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, @@ -18787,52 +2481,34 @@ CREATE TABLE "public"."system_login_log" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_login_log" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_login_log"."id" IS '访问ID'; -COMMENT ON COLUMN "public"."system_login_log"."log_type" IS '日志类型'; -COMMENT ON COLUMN "public"."system_login_log"."trace_id" IS '链路追踪编号'; -COMMENT ON COLUMN "public"."system_login_log"."user_id" IS '用户编号'; -COMMENT ON COLUMN "public"."system_login_log"."user_type" IS '用户类型'; -COMMENT ON COLUMN "public"."system_login_log"."username" IS '用户账号'; -COMMENT ON COLUMN "public"."system_login_log"."result" IS '登陆结果'; -COMMENT ON COLUMN "public"."system_login_log"."user_ip" IS '用户 IP'; -COMMENT ON COLUMN "public"."system_login_log"."user_agent" IS '浏览器 UA'; -COMMENT ON COLUMN "public"."system_login_log"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_login_log"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_login_log"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_login_log"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_login_log"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."system_login_log"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."system_login_log" IS '系统访问记录'; +COMMENT ON COLUMN "system_login_log"."id" IS '访问ID'; +COMMENT ON COLUMN "system_login_log"."log_type" IS '日志类型'; +COMMENT ON COLUMN "system_login_log"."trace_id" IS '链路追踪编号'; +COMMENT ON COLUMN "system_login_log"."user_id" IS '用户编号'; +COMMENT ON COLUMN "system_login_log"."user_type" IS '用户类型'; +COMMENT ON COLUMN "system_login_log"."username" IS '用户账号'; +COMMENT ON COLUMN "system_login_log"."result" IS '登陆结果'; +COMMENT ON COLUMN "system_login_log"."user_ip" IS '用户 IP'; +COMMENT ON COLUMN "system_login_log"."user_agent" IS '浏览器 UA'; +COMMENT ON COLUMN "system_login_log"."creator" IS '创建者'; +COMMENT ON COLUMN "system_login_log"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_login_log"."updater" IS '更新者'; +COMMENT ON COLUMN "system_login_log"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_login_log"."deleted" IS '是否删除'; +COMMENT ON COLUMN "system_login_log"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "system_login_log" IS '系统访问记录'; -- ---------------------------- -- Records of system_login_log -- ---------------------------- BEGIN; -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1243, 200, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-28 10:47:55', NULL, '2022-04-28 10:47:55', 0, 1); -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1244, 100, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-28 10:48:15', NULL, '2022-04-28 10:48:15', 0, 1); -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1245, 200, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-30 00:02:20', NULL, '2022-04-30 00:02:20', 0, 1); -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1246, 100, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-30 00:06:21', NULL, '2022-04-30 00:06:21', 0, 1); -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (0, 201, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-30 22:23:10.377', NULL, '2022-04-30 22:23:10.377', 0, 1); -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1, 201, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-30 22:23:10.391', NULL, '2022-04-30 22:23:10.391', 0, 1); -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (2, 201, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-30 22:23:10.402', NULL, '2022-04-30 22:23:10.402', 0, 1); -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (3, 201, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-30 22:23:10.415', NULL, '2022-04-30 22:23:10.415', 0, 1); -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (4, 201, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-30 22:23:10.428', NULL, '2022-04-30 22:23:10.428', 0, 1); -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (5, 201, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-30 22:23:10.445', NULL, '2022-04-30 22:23:10.445', 0, 1); -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (6, 201, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-30 22:23:10.463', NULL, '2022-04-30 22:23:10.463', 0, 1); -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (7, 201, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-30 22:23:10.478', NULL, '2022-04-30 22:23:10.478', 0, 1); -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (8, 201, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-30 22:23:10.49', NULL, '2022-04-30 22:23:10.49', 0, 1); -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (9, 201, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-30 22:23:10.502', NULL, '2022-04-30 22:23:10.502', 0, 1); -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (10, 201, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-30 22:23:10.515', NULL, '2022-04-30 22:23:10.515', 0, 1); -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (11, 201, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-30 22:23:10.526', NULL, '2022-04-30 22:23:10.526', 0, 1); -INSERT INTO "public"."system_login_log" ("id", "log_type", "trace_id", "user_id", "user_type", "username", "result", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (12, 201, '', 1, 2, 'admin', 0, '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-30 22:23:10.537', NULL, '2022-04-30 22:23:10.537', 0, 1); COMMIT; -- ---------------------------- -- Table structure for system_menu -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_menu"; -CREATE TABLE "public"."system_menu" ( +DROP TABLE IF EXISTS "system_menu"; +CREATE TABLE "system_menu" ( "id" int8 NOT NULL, "name" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, "permission" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, @@ -18852,293 +2528,260 @@ CREATE TABLE "public"."system_menu" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_menu" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_menu"."id" IS '菜单ID'; -COMMENT ON COLUMN "public"."system_menu"."name" IS '菜单名称'; -COMMENT ON COLUMN "public"."system_menu"."permission" IS '权限标识'; -COMMENT ON COLUMN "public"."system_menu"."type" IS '菜单类型'; -COMMENT ON COLUMN "public"."system_menu"."sort" IS '显示顺序'; -COMMENT ON COLUMN "public"."system_menu"."parent_id" IS '父菜单ID'; -COMMENT ON COLUMN "public"."system_menu"."path" IS '路由地址'; -COMMENT ON COLUMN "public"."system_menu"."icon" IS '菜单图标'; -COMMENT ON COLUMN "public"."system_menu"."component" IS '组件路径'; -COMMENT ON COLUMN "public"."system_menu"."status" IS '菜单状态'; -COMMENT ON COLUMN "public"."system_menu"."visible" IS '是否可见'; -COMMENT ON COLUMN "public"."system_menu"."keep_alive" IS '是否缓存'; -COMMENT ON COLUMN "public"."system_menu"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_menu"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_menu"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_menu"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_menu"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."system_menu" IS '菜单权限表'; +COMMENT ON COLUMN "system_menu"."id" IS '菜单ID'; +COMMENT ON COLUMN "system_menu"."name" IS '菜单名称'; +COMMENT ON COLUMN "system_menu"."permission" IS '权限标识'; +COMMENT ON COLUMN "system_menu"."type" IS '菜单类型'; +COMMENT ON COLUMN "system_menu"."sort" IS '显示顺序'; +COMMENT ON COLUMN "system_menu"."parent_id" IS '父菜单ID'; +COMMENT ON COLUMN "system_menu"."path" IS '路由地址'; +COMMENT ON COLUMN "system_menu"."icon" IS '菜单图标'; +COMMENT ON COLUMN "system_menu"."component" IS '组件路径'; +COMMENT ON COLUMN "system_menu"."status" IS '菜单状态'; +COMMENT ON COLUMN "system_menu"."visible" IS '是否可见'; +COMMENT ON COLUMN "system_menu"."keep_alive" IS '是否缓存'; +COMMENT ON COLUMN "system_menu"."creator" IS '创建者'; +COMMENT ON COLUMN "system_menu"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_menu"."updater" IS '更新者'; +COMMENT ON COLUMN "system_menu"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_menu"."deleted" IS '是否删除'; +COMMENT ON TABLE "system_menu" IS '菜单权限表'; -- ---------------------------- -- Records of system_menu -- ---------------------------- BEGIN; -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1, '系统管理', '', 1, 10, 0, '/system', 'system', NULL, 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (2, '基础设施', '', 1, 20, 0, '/infra', 'monitor', NULL, 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (3, '研发工具', '', 1, 30, 0, '/tool', 'tool', NULL, 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (4, '若依官网', '', 1, 4, 0, 'http://ruoyi.vip', 'guide', NULL, 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5, 'OA 示例', '', 1, 40, 1185, 'oa', 'people', NULL, 0, '1', '1', 'admin', '2021-09-20 16:26:19', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (100, '用户管理', 'system:user:list', 2, 1, 1, 'user', 'user', 'system/user/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (101, '角色管理', '', 2, 2, 1, 'role', 'peoples', 'system/role/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (102, '菜单管理', '', 2, 3, 1, 'menu', 'tree-table', 'system/menu/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (103, '部门管理', '', 2, 4, 1, 'dept', 'tree', 'system/dept/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (104, '岗位管理', '', 2, 5, 1, 'post', 'post', 'system/post/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (105, '字典管理', '', 2, 6, 1, 'dict', 'dict', 'system/dict/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (106, '配置管理', '', 2, 6, 2, 'config', 'edit', 'infra/config/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (107, '通知公告', '', 2, 8, 1, 'notice', 'message', 'system/notice/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (108, '审计日志', '', 1, 9, 1, 'log', 'log', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (109, '在线用户', 'system:user-session:list', 2, 10, 1, 'user-session', 'online', 'system/session/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (110, '定时任务', '', 2, 12, 2, 'job', 'job', 'infra/job/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (111, 'MySQL 监控', '', 2, 9, 2, 'druid', 'druid', 'infra/druid/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (112, 'Java 监控', '', 2, 11, 2, 'admin-server', 'server', 'infra/server/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (113, 'Redis 监控', '', 2, 10, 2, 'redis', 'redis', 'infra/redis/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (114, '表单构建', 'infra:build:list', 2, 2, 2, 'build', 'build', 'infra/build/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (115, '代码生成', 'infra:codegen:query', 2, 1, 2, 'codegen', 'code', 'infra/codegen/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (116, '系统接口', 'infra:swagger:list', 2, 3, 2, 'swagger', 'swagger', 'infra/swagger/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (500, '操作日志', '', 2, 1, 108, 'operate-log', 'form', 'system/operatelog/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (501, '登录日志', '', 2, 2, 108, 'login-log', 'logininfor', 'system/loginlog/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1001, '用户查询', 'system:user:query', 3, 1, 100, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1002, '用户新增', 'system:user:create', 3, 2, 100, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1003, '用户修改', 'system:user:update', 3, 3, 100, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1004, '用户删除', 'system:user:delete', 3, 4, 100, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1005, '用户导出', 'system:user:export', 3, 5, 100, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1006, '用户导入', 'system:user:import', 3, 6, 100, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1007, '重置密码', 'system:user:update-password', 3, 7, 100, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1008, '角色查询', 'system:role:query', 3, 1, 101, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1009, '角色新增', 'system:role:create', 3, 2, 101, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1010, '角色修改', 'system:role:update', 3, 3, 101, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1011, '角色删除', 'system:role:delete', 3, 4, 101, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1012, '角色导出', 'system:role:export', 3, 5, 101, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1013, '菜单查询', 'system:menu:query', 3, 1, 102, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1014, '菜单新增', 'system:menu:create', 3, 2, 102, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1015, '菜单修改', 'system:menu:update', 3, 3, 102, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1016, '菜单删除', 'system:menu:delete', 3, 4, 102, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1017, '部门查询', 'system:dept:query', 3, 1, 103, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1018, '部门新增', 'system:dept:create', 3, 2, 103, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1019, '部门修改', 'system:dept:update', 3, 3, 103, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1020, '部门删除', 'system:dept:delete', 3, 4, 103, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1021, '岗位查询', 'system:post:query', 3, 1, 104, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1022, '岗位新增', 'system:post:create', 3, 2, 104, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1023, '岗位修改', 'system:post:update', 3, 3, 104, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1024, '岗位删除', 'system:post:delete', 3, 4, 104, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1025, '岗位导出', 'system:post:export', 3, 5, 104, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1026, '字典查询', 'system:dict:query', 3, 1, 105, '#', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1027, '字典新增', 'system:dict:create', 3, 2, 105, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1028, '字典修改', 'system:dict:update', 3, 3, 105, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1029, '字典删除', 'system:dict:delete', 3, 4, 105, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1030, '字典导出', 'system:dict:export', 3, 5, 105, '#', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1031, '配置查询', 'infra:config:query', 3, 1, 106, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1032, '配置新增', 'infra:config:create', 3, 2, 106, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1033, '配置修改', 'infra:config:update', 3, 3, 106, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1034, '配置删除', 'infra:config:delete', 3, 4, 106, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1035, '配置导出', 'infra:config:export', 3, 5, 106, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1036, '公告查询', 'system:notice:query', 3, 1, 107, '#', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1037, '公告新增', 'system:notice:create', 3, 2, 107, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1038, '公告修改', 'system:notice:update', 3, 3, 107, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1039, '公告删除', 'system:notice:delete', 3, 4, 107, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1040, '操作查询', 'system:operate-log:query', 3, 1, 500, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1042, '日志导出', 'system:operate-log:export', 3, 2, 500, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1043, '登录查询', 'system:login-log:query', 3, 1, 501, '#', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1045, '日志导出', 'system:login-log:export', 3, 3, 501, '#', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1046, '在线查询', 'system:user-session:list', 3, 1, 109, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1047, '批量强退', 'monitor:online:batchLogout', 3, 2, 109, '#', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1048, '单条强退', 'system:user-session:delete', 3, 3, 109, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1049, '任务查询', 'monitor:job:query', 3, 1, 110, '#', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1050, '任务新增', 'infra:job:create', 3, 2, 110, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1051, '任务修改', 'infra:job:update', 3, 3, 110, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1052, '任务删除', 'infra:job:delete', 3, 4, 110, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1053, '状态修改', 'infra:job:update', 3, 5, 110, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1054, '任务导出', 'infra:job:export', 3, 7, 110, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1055, '生成查询', 'infra:gen:query', 3, 1, 115, '#', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1056, '生成修改', 'infra:codegen:update', 3, 2, 115, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1057, '生成删除', 'infra:codegen:delete', 3, 3, 115, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1058, '导入代码', 'infra:codegen:create', 3, 2, 115, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1059, '预览代码', 'infra:codegen:preview', 3, 4, 115, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1060, '生成代码', 'infra:codegen:download', 3, 5, 115, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1063, '设置角色菜单权限', 'system:permission:assign-role-menu', 3, 6, 101, '', '', '', 0, '1', '1', '', '2021-01-06 17:53:44', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1064, '设置角色数据权限', 'system:permission:assign-role-data-scope', 3, 7, 101, '', '', '', 0, '1', '1', '', '2021-01-06 17:56:31', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1065, '设置用户角色', 'system:permission:assign-user-role', 3, 8, 101, '', '', '', 0, '1', '1', '', '2021-01-07 10:23:28', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1066, '获得 Redis 监控信息', 'infra:redis:get-monitor-info', 3, 1, 113, '', '', '', 0, '1', '1', '', '2021-01-26 01:02:31', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1067, '获得 Redis Key 列表', 'infra:redis:get-key-list', 3, 2, 113, '', '', '', 0, '1', '1', '', '2021-01-26 01:02:52', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1070, '代码生成示例', 'infra:test-demo:query', 2, 1, 2, 'test-demo', 'validCode', 'infra/testDemo/index', 0, '1', '1', '', '2021-02-06 12:42:49', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1071, '测试示例表创建', 'infra:test-demo:create', 3, 1, 1070, '', '', '', 0, '1', '1', '', '2021-02-06 12:42:49', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1072, '测试示例表更新', 'infra:test-demo:update', 3, 2, 1070, '', '', '', 0, '1', '1', '', '2021-02-06 12:42:49', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1073, '测试示例表删除', 'infra:test-demo:delete', 3, 3, 1070, '', '', '', 0, '1', '1', '', '2021-02-06 12:42:49', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1074, '测试示例表导出', 'infra:test-demo:export', 3, 4, 1070, '', '', '', 0, '1', '1', '', '2021-02-06 12:42:49', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1075, '任务触发', 'infra:job:trigger', 3, 8, 110, '', '', '', 0, '1', '1', '', '2021-02-07 13:03:10', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1076, '数据库文档', '', 2, 4, 2, 'db-doc', 'table', 'infra/dbDoc/index', 0, '1', '1', '', '2021-02-08 01:41:47', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1077, '监控平台', '', 2, 13, 2, 'skywalking', 'eye-open', 'infra/skywalking/index', 0, '1', '1', '', '2021-02-08 20:41:31', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1078, '访问日志', '', 2, 1, 1083, 'api-access-log', 'log', 'infra/apiAccessLog/index', 0, '1', '1', '', '2021-02-26 01:32:59', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1079, 'API 访问日志表创建', 'system:api-access-log:create', 3, 1, 1078, '', '', '', 1, '1', '1', '', '2021-02-26 01:32:59', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1080, 'API 访问日志表更新', 'system:api-access-log:update', 3, 2, 1078, '', '', '', 1, '1', '1', '', '2021-02-26 01:32:59', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1081, 'API 访问日志表删除', 'system:api-access-log:delete', 3, 3, 1078, '', '', '', 1, '1', '1', '', '2021-02-26 01:32:59', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1082, '日志导出', 'infra:api-access-log:export', 3, 2, 1078, '', '', '', 0, '1', '1', '', '2021-02-26 01:32:59', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1083, 'API 日志', '', 2, 8, 2, 'log', 'log', NULL, 0, '1', '1', '', '2021-02-26 02:18:24', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1084, '错误日志', 'infra:api-error-log:query', 2, 2, 1083, 'api-error-log', 'log', 'infra/apiErrorLog/index', 0, '1', '1', '', '2021-02-26 07:53:20', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1085, '日志处理', 'infra:api-error-log:update-status', 3, 2, 1084, '', '', '', 0, '1', '1', '', '2021-02-26 07:53:20', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1086, '日志导出', 'infra:api-error-log:export', 3, 3, 1084, '', '', '', 0, '1', '1', '', '2021-02-26 07:53:20', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1087, '任务查询', 'infra:job:query', 3, 1, 110, '', '', '', 0, '1', '1', '1', '2021-03-10 01:26:19', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1088, '日志查询', 'infra:api-access-log:query', 3, 1, 1078, '', '', '', 0, '1', '1', '1', '2021-03-10 01:28:04', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1089, '日志查询', 'infra:api-error-log:query', 3, 1, 1084, '', '', '', 0, '1', '1', '1', '2021-03-10 01:29:09', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1090, '文件列表', '', 2, 5, 1243, 'file', 'upload', 'infra/file/index', 0, '1', '1', '', '2021-03-12 20:16:20', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1091, '文件查询', 'infra:file:query', 3, 1, 1090, '', '', '', 0, '1', '1', '', '2021-03-12 20:16:20', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1092, '文件删除', 'infra:file:delete', 3, 4, 1090, '', '', '', 0, '1', '1', '', '2021-03-12 20:16:20', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1093, '短信管理', '', 1, 11, 1, 'sms', 'validCode', NULL, 0, '1', '1', '1', '2021-04-05 01:10:16', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1094, '短信渠道', '', 2, 0, 1093, 'sms-channel', 'phone', 'system/sms/smsChannel', 0, '1', '1', '', '2021-04-01 11:07:15', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1095, '短信渠道查询', 'system:sms-channel:query', 3, 1, 1094, '', '', '', 0, '1', '1', '', '2021-04-01 11:07:15', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1096, '短信渠道创建', 'system:sms-channel:create', 3, 2, 1094, '', '', '', 0, '1', '1', '', '2021-04-01 11:07:15', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1097, '短信渠道更新', 'system:sms-channel:update', 3, 3, 1094, '', '', '', 0, '1', '1', '', '2021-04-01 11:07:15', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1098, '短信渠道删除', 'system:sms-channel:delete', 3, 4, 1094, '', '', '', 0, '1', '1', '', '2021-04-01 11:07:15', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1100, '短信模板', '', 2, 1, 1093, 'sms-template', 'phone', 'system/sms/smsTemplate', 0, '1', '1', '', '2021-04-01 17:35:17', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1101, '短信模板查询', 'system:sms-template:query', 3, 1, 1100, '', '', '', 0, '1', '1', '', '2021-04-01 17:35:17', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1102, '短信模板创建', 'system:sms-template:create', 3, 2, 1100, '', '', '', 0, '1', '1', '', '2021-04-01 17:35:17', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1103, '短信模板更新', 'system:sms-template:update', 3, 3, 1100, '', '', '', 0, '1', '1', '', '2021-04-01 17:35:17', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1104, '短信模板删除', 'system:sms-template:delete', 3, 4, 1100, '', '', '', 0, '1', '1', '', '2021-04-01 17:35:17', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1105, '短信模板导出', 'system:sms-template:export', 3, 5, 1100, '', '', '', 0, '1', '1', '', '2021-04-01 17:35:17', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1106, '发送测试短信', 'system:sms-template:send-sms', 3, 6, 1100, '', '', '', 0, '1', '1', '1', '2021-04-11 00:26:40', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1107, '短信日志', '', 2, 2, 1093, 'sms-log', 'phone', 'system/sms/smsLog', 0, '1', '1', '', '2021-04-11 08:37:05', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1108, '短信日志查询', 'system:sms-log:query', 3, 1, 1107, '', '', '', 0, '1', '1', '', '2021-04-11 08:37:05', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1109, '短信日志导出', 'system:sms-log:export', 3, 5, 1107, '', '', '', 0, '1', '1', '', '2021-04-11 08:37:05', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1110, '错误码管理', '', 2, 12, 1, 'error-code', 'code', 'system/errorCode/index', 0, '1', '1', '', '2021-04-13 21:46:42', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1111, '错误码查询', 'system:error-code:query', 3, 1, 1110, '', '', '', 0, '1', '1', '', '2021-04-13 21:46:42', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1112, '错误码创建', 'system:error-code:create', 3, 2, 1110, '', '', '', 0, '1', '1', '', '2021-04-13 21:46:42', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1113, '错误码更新', 'system:error-code:update', 3, 3, 1110, '', '', '', 0, '1', '1', '', '2021-04-13 21:46:42', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1114, '错误码删除', 'system:error-code:delete', 3, 4, 1110, '', '', '', 0, '1', '1', '', '2021-04-13 21:46:42', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1115, '错误码导出', 'system:error-code:export', 3, 5, 1110, '', '', '', 0, '1', '1', '', '2021-04-13 21:46:42', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1116, '日志中心', '', 2, 14, 2, 'log-center', 'log', 'infra/skywalking/log', 0, '1', '1', '1', '2021-04-26 22:35:45', '1', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1117, '支付管理', '', 1, 11, 0, '/pay', 'money', NULL, 0, '1', '1', '1', '2021-12-25 16:43:41', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1118, '请假查询', '', 2, 0, 5, 'leave', 'user', 'bpm/oa/leave/index', 0, '1', '1', '', '2021-09-20 08:51:03', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1119, '请假申请查询', 'bpm:oa-leave:query', 3, 1, 1118, '', '', '', 0, '1', '1', '', '2021-09-20 08:51:03', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1120, '请假申请创建', 'bpm:oa-leave:create', 3, 2, 1118, '', '', '', 0, '1', '1', '', '2021-09-20 08:51:03', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1121, '请假申请更新', 'oa:leave:update', 3, 3, 1118, '', '', '', 0, '1', '1', '', '2021-09-20 08:51:03', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1122, '请假申请删除', 'oa:leave:delete', 3, 4, 1118, '', '', '', 0, '1', '1', '', '2021-09-20 08:51:03', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1123, '请假申请导出', 'oa:leave:export', 3, 5, 1118, '', '', '', 0, '1', '1', '', '2021-09-20 08:51:03', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1124, '待办任务', '', 2, 2, 5, 'todo', 'edit', 'oa/todo/index', 0, '1', '1', '1', '2021-09-20 22:10:09', '1', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1125, '流程申请', '', 2, 3, 5, 'flow', 'form', 'oa/flow/index', 0, '1', '1', '1', '2021-10-23 22:10:09', '1', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1126, '应用信息', '', 2, 1, 1117, 'app', 'table', 'pay/app/index', 0, '1', '1', '', '2021-11-10 01:13:30', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1127, '支付应用信息查询', 'pay:app:query', 3, 1, 1126, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:31', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1128, '支付应用信息创建', 'pay:app:create', 3, 2, 1126, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:31', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1129, '支付应用信息更新', 'pay:app:update', 3, 3, 1126, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:31', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1130, '支付应用信息删除', 'pay:app:delete', 3, 4, 1126, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:31', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1131, '支付应用信息导出', 'pay:app:export', 3, 5, 1126, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:31', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1132, '秘钥解析', 'pay:channel:parsing', 3, 6, 1129, '', '', '', 0, '1', '1', '1', '2021-11-08 15:15:47', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1133, '支付商户信息查询', 'pay:merchant:query', 3, 1, 1132, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:41', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1134, '支付商户信息创建', 'pay:merchant:create', 3, 2, 1132, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:41', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1135, '支付商户信息更新', 'pay:merchant:update', 3, 3, 1132, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:41', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1136, '支付商户信息删除', 'pay:merchant:delete', 3, 4, 1132, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:41', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1137, '支付商户信息导出', 'pay:merchant:export', 3, 5, 1132, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:41', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1138, '租户列表', '', 2, 0, 1224, 'list', 'peoples', 'system/tenant/index', 0, '1', '1', '', '2021-12-14 12:31:43', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1139, '租户查询', 'system:tenant:query', 3, 1, 1138, '', '', '', 0, '1', '1', '', '2021-12-14 12:31:44', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1140, '租户创建', 'system:tenant:create', 3, 2, 1138, '', '', '', 0, '1', '1', '', '2021-12-14 12:31:44', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1141, '租户更新', 'system:tenant:update', 3, 3, 1138, '', '', '', 0, '1', '1', '', '2021-12-14 12:31:44', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1142, '租户删除', 'system:tenant:delete', 3, 4, 1138, '', '', '', 0, '1', '1', '', '2021-12-14 12:31:44', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1143, '租户导出', 'system:tenant:export', 3, 5, 1138, '', '', '', 0, '1', '1', '', '2021-12-14 12:31:44', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1144, '支付应用信息管理', '', 2, 0, 1117, 'app', '', 'pay/app/index', 0, '1', '1', '', '2021-12-25 08:26:31', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1145, '支付应用信息查询', 'pay:app:query', 3, 1, 1144, '', '', '', 0, '1', '1', '', '2021-12-25 08:26:31', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1146, '支付应用信息创建', 'pay:app:create', 3, 2, 1144, '', '', '', 0, '1', '1', '', '2021-12-25 08:26:31', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1147, '支付应用信息更新', 'pay:app:update', 3, 3, 1144, '', '', '', 0, '1', '1', '', '2021-12-25 08:26:31', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1148, '支付应用信息删除', 'pay:app:delete', 3, 4, 1144, '', '', '', 0, '1', '1', '', '2021-12-25 08:26:31', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1149, '支付应用信息导出', 'pay:app:export', 3, 5, 1144, '', '', '', 0, '1', '1', '', '2021-12-25 08:26:31', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1150, '秘钥解析', '', 3, 6, 1129, '', '', '', 0, '1', '1', '1', '2021-11-08 15:15:47', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1156, '支付订单查询', 'pay:order:query', 3, 1, 1155, '', '', '', 0, '1', '1', '', '2021-12-25 08:29:01', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1157, '支付订单创建', 'pay:order:create', 3, 2, 1155, '', '', '', 0, '1', '1', '', '2021-12-25 08:29:01', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1158, '支付订单更新', 'pay:order:update', 3, 3, 1155, '', '', '', 0, '1', '1', '', '2021-12-25 08:29:01', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1159, '支付订单删除', 'pay:order:delete', 3, 4, 1155, '', '', '', 0, '1', '1', '', '2021-12-25 08:29:01', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1160, '支付订单导出', 'pay:order:export', 3, 5, 1155, '', '', '', 0, '1', '1', '', '2021-12-25 08:29:01', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1161, '退款订单', '', 2, 3, 1117, 'refund', 'order', 'pay/refund/index', 0, '1', '1', '', '2021-12-25 08:29:07', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1162, '退款订单查询', 'pay:refund:query', 3, 1, 1161, '', '', '', 0, '1', '1', '', '2021-12-25 08:29:07', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1163, '退款订单创建', 'pay:refund:create', 3, 2, 1161, '', '', '', 0, '1', '1', '', '2021-12-25 08:29:07', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1164, '退款订单更新', 'pay:refund:update', 3, 3, 1161, '', '', '', 0, '1', '1', '', '2021-12-25 08:29:07', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1165, '退款订单删除', 'pay:refund:delete', 3, 4, 1161, '', '', '', 0, '1', '1', '', '2021-12-25 08:29:07', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1166, '退款订单导出', 'pay:refund:export', 3, 5, 1161, '', '', '', 0, '1', '1', '', '2021-12-25 08:29:07', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1173, '支付订单', '', 2, 2, 1117, 'order', 'pay', 'pay/order/index', 0, '1', '1', '', '2021-12-25 08:49:43', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1174, '支付订单查询', 'pay:order:query', 3, 1, 1173, '', '', '', 0, '1', '1', '', '2021-12-25 08:49:43', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1175, '支付订单创建', 'pay:order:create', 3, 2, 1173, '', '', '', 0, '1', '1', '', '2021-12-25 08:49:43', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1176, '支付订单更新', 'pay:order:update', 3, 3, 1173, '', '', '', 0, '1', '1', '', '2021-12-25 08:49:43', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1177, '支付订单删除', 'pay:order:delete', 3, 4, 1173, '', '', '', 0, '1', '1', '', '2021-12-25 08:49:43', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1178, '支付订单导出', 'pay:order:export', 3, 5, 1173, '', '', '', 0, '1', '1', '', '2021-12-25 08:49:43', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1179, '商户信息', '', 2, 0, 1117, 'merchant', 'merchant', 'pay/merchant/index', 0, '1', '1', '', '2021-12-25 09:01:44', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1180, '支付商户信息查询', 'pay:merchant:query', 3, 1, 1179, '', '', '', 0, '1', '1', '', '2021-12-25 09:01:44', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1181, '支付商户信息创建', 'pay:merchant:create', 3, 2, 1179, '', '', '', 0, '1', '1', '', '2021-12-25 09:01:44', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1182, '支付商户信息更新', 'pay:merchant:update', 3, 3, 1179, '', '', '', 0, '1', '1', '', '2021-12-25 09:01:44', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1183, '支付商户信息删除', '', 3, 4, 1179, '', '', '', 0, '1', '1', '', '2021-12-25 09:01:44', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1184, '支付商户信息导出', 'pay:merchant:export', 3, 5, 1179, '', '', '', 0, '1', '1', '', '2021-12-25 09:01:44', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1185, '工作流程', '', 1, 50, 0, '/bpm', 'tool', NULL, 0, '1', '1', '1', '2021-12-30 20:26:36', '103', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1186, '流程管理', '', 1, 10, 1185, 'manager', 'nested', NULL, 0, '1', '1', '1', '2021-12-30 20:28:30', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1187, '流程表单', '', 2, 0, 1186, 'form', 'form', 'bpm/form/index', 0, '1', '1', '', '2021-12-30 12:38:22', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1188, '表单查询', 'bpm:form:query', 3, 1, 1187, '', '', '', 0, '1', '1', '', '2021-12-30 12:38:22', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1189, '表单创建', 'bpm:form:create', 3, 2, 1187, '', '', '', 0, '1', '1', '', '2021-12-30 12:38:22', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1190, '表单更新', 'bpm:form:update', 3, 3, 1187, '', '', '', 0, '1', '1', '', '2021-12-30 12:38:22', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1191, '表单删除', 'bpm:form:delete', 3, 4, 1187, '', '', '', 0, '1', '1', '', '2021-12-30 12:38:22', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1192, '表单导出', 'bpm:form:export', 3, 5, 1187, '', '', '', 0, '1', '1', '', '2021-12-30 12:38:22', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1193, '流程模型', '', 2, 5, 1186, 'model', 'guide', 'bpm/model/index', 0, '1', '1', '1', '2021-12-31 23:24:58', '103', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1194, '模型查询', 'bpm:model:query', 3, 1, 1193, '', '', '', 0, '1', '1', '1', '2022-01-03 19:01:10', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1195, '模型创建', 'bpm:model:create', 3, 2, 1193, '', '', '', 0, '1', '1', '1', '2022-01-03 19:01:24', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1196, '模型导入', 'bpm:model:import', 3, 3, 1193, '', '', '', 0, '1', '1', '1', '2022-01-03 19:01:35', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1197, '模型更新', 'bpm:model:update', 3, 4, 1193, '', '', '', 0, '1', '1', '1', '2022-01-03 19:02:28', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1198, '模型删除', 'bpm:model:delete', 3, 5, 1193, '', '', '', 0, '1', '1', '1', '2022-01-03 19:02:43', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1199, '模型发布', 'bpm:model:deploy', 3, 6, 1193, '', '', '', 0, '1', '1', '1', '2022-01-03 19:03:24', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1200, '任务管理', '', 1, 20, 1185, 'task', 'cascader', NULL, 0, '1', '1', '1', '2022-01-07 23:51:48', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1201, '我的流程', '', 2, 0, 1200, 'my', 'people', 'bpm/processInstance/index', 0, '1', '1', '', '2022-01-07 15:53:44', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1202, '流程实例的查询', 'bpm:process-instance:query', 3, 1, 1201, '', '', '', 0, '1', '1', '', '2022-01-07 15:53:44', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1207, '待办任务', '', 2, 10, 1200, 'todo', 'eye-open', 'bpm/task/todo', 0, '1', '1', '1', '2022-01-08 10:33:37', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1208, '已办任务', '', 2, 20, 1200, 'done', 'eye', 'bpm/task/done', 0, '1', '1', '1', '2022-01-08 10:34:13', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1209, '用户分组', '', 2, 2, 1186, 'user-group', 'people', 'bpm/group/index', 0, '1', '1', '', '2022-01-14 02:14:20', '103', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1210, '用户组查询', 'bpm:user-group:query', 3, 1, 1209, '', '', '', 0, '1', '1', '', '2022-01-14 02:14:20', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1211, '用户组创建', 'bpm:user-group:create', 3, 2, 1209, '', '', '', 0, '1', '1', '', '2022-01-14 02:14:20', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1212, '用户组更新', 'bpm:user-group:update', 3, 3, 1209, '', '', '', 0, '1', '1', '', '2022-01-14 02:14:20', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1213, '用户组删除', 'bpm:user-group:delete', 3, 4, 1209, '', '', '', 0, '1', '1', '', '2022-01-14 02:14:20', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1214, '用户组导出', 'bpm:user-group:export', 3, 5, 1209, '', '', '', 0, '1', '1', '', '2022-01-14 02:14:20', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1215, '流程定义查询', 'bpm:process-definition:query', 3, 10, 1193, '', '', '', 0, '1', '1', '1', '2022-01-23 00:21:43', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1216, '流程任务分配规则查询', 'bpm:task-assign-rule:query', 3, 20, 1193, '', '', '', 0, '1', '1', '1', '2022-01-23 00:26:53', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1217, '流程任务分配规则创建', 'bpm:task-assign-rule:create', 3, 21, 1193, '', '', '', 0, '1', '1', '1', '2022-01-23 00:28:15', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1218, '流程任务分配规则更新', 'bpm:task-assign-rule:update', 3, 22, 1193, '', '', '', 0, '1', '1', '1', '2022-01-23 00:28:41', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1219, '流程实例的创建', 'bpm:process-instance:create', 3, 2, 1201, '', '', '', 0, '1', '1', '1', '2022-01-23 00:36:15', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1220, '流程实例的取消', 'bpm:process-instance:cancel', 3, 3, 1201, '', '', '', 0, '1', '1', '1', '2022-01-23 00:36:33', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1221, '流程任务的查询', 'bpm:task:query', 3, 1, 1207, '', '', '', 0, '1', '1', '1', '2022-01-23 00:38:52', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1222, '流程任务的更新', 'bpm:task:update', 3, 2, 1207, '', '', '', 0, '1', '1', '1', '2022-01-23 00:39:24', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1223, '1', '', 2, 3, 500, '2', 'button', NULL, 0, '1', '1', '1', '2022-02-15 19:40:10', '1', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1224, '租户管理', '', 2, 0, 1, 'tenant', 'peoples', NULL, 0, '1', '1', '1', '2022-02-20 01:41:13', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1225, '租户套餐', '', 2, 0, 1224, 'package', 'eye', 'system/tenantPackage/index', 0, '1', '1', '', '2022-02-19 17:44:06', '1', '2022-04-21 01:21:25', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1226, '租户套餐查询', 'system:tenant-package:query', 3, 1, 1225, '', '', '', 0, '1', '1', '', '2022-02-19 17:44:06', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1227, '租户套餐创建', 'system:tenant-package:create', 3, 2, 1225, '', '', '', 0, '1', '1', '', '2022-02-19 17:44:06', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1228, '租户套餐更新', 'system:tenant-package:update', 3, 3, 1225, '', '', '', 0, '1', '1', '', '2022-02-19 17:44:06', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1229, '租户套餐删除', 'system:tenant-package:delete', 3, 4, 1225, '', '', '', 0, '1', '1', '', '2022-02-19 17:44:06', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1230, '租户套餐导出', 'system:tenant-package:export', 3, 5, 1225, '', '', '', 0, '1', '1', '', '2022-02-19 17:44:06', '', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1237, '文件配置', '', 2, 0, 1243, 'file-config', 'config', 'infra/fileConfig/index', 0, '1', '1', '', '2022-03-15 14:35:28', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1238, '文件配置查询', 'infra:file-config:query', 3, 1, 1237, '', '', '', 0, '1', '1', '', '2022-03-15 14:35:28', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1239, '文件配置创建', 'infra:file-config:create', 3, 2, 1237, '', '', '', 0, '1', '1', '', '2022-03-15 14:35:28', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1240, '文件配置更新', 'infra:file-config:update', 3, 3, 1237, '', '', '', 0, '1', '1', '', '2022-03-15 14:35:28', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1241, '文件配置删除', 'infra:file-config:delete', 3, 4, 1237, '', '', '', 0, '1', '1', '', '2022-03-15 14:35:28', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1242, '文件配置导出', 'infra:file-config:export', 3, 5, 1237, '', '', '', 0, '1', '1', '', '2022-03-15 14:35:28', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1243, '文件管理', '', 2, 5, 2, 'file', 'download', NULL, 0, '1', '1', '1', '2022-03-16 23:47:40', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1244, '1', '', 2, 2, 0, '/3', 'checkbox', NULL, 0, '1', '1', '1', '2022-03-24 22:25:24', '1', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1245, '2', '3', 2, 3, 1244, '2', 'button', '111', 0, '1', '1', '1', '2022-03-24 22:29:38', '1', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1246, '3', '5', 3, 4, 1245, '', '', '', 0, '1', '1', '1', '2022-03-24 22:30:48', '1', '2022-04-20 17:03:10', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1247, '敏感词管理', '', 2, 13, 1, 'sensitive-word', 'education', 'system/sensitiveWord/index', 0, '1', '1', '', '2022-04-07 16:55:03', '1', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1248, '敏感词查询', 'system:sensitive-word:query', 3, 1, 1247, '', '', '', 0, '1', '1', '', '2022-04-07 16:55:03', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1249, '敏感词创建', 'system:sensitive-word:create', 3, 2, 1247, '', '', '', 0, '1', '1', '', '2022-04-07 16:55:03', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1250, '敏感词更新', 'system:sensitive-word:update', 3, 3, 1247, '', '', '', 0, '1', '1', '', '2022-04-07 16:55:03', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1251, '敏感词删除', 'system:sensitive-word:delete', 3, 4, 1247, '', '', '', 0, '1', '1', '', '2022-04-07 16:55:03', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1252, '敏感词导出', 'system:sensitive-word:export', 3, 5, 1247, '', '', '', 0, '1', '1', '', '2022-04-07 16:55:03', '', '2022-04-20 17:03:10', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1253, '测试', '', 2, 2, 0, '/12', '404', NULL, 0, '0', '0', '1', '2022-04-21 01:03:56', '1', '2022-04-20 17:04:19', 1); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1254, '作者动态', '', 1, 0, 0, 'https://www.iocoder.cn', 'people', NULL, 0, '1', '1', '1', '2022-04-23 01:03:15', '1', '2022-04-23 01:03:15', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1255, '数据源配置', '', 2, 1, 2, 'data-source-config', 'rate', 'infra/dataSourceConfig/index', 0, '1', '1', '', '2022-04-27 14:37:32', '1', '2022-04-27 22:42:06', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1256, '数据源配置查询', 'infra:data-source-config:query', 3, 1, 1255, '', '', '', 0, '1', '1', '', '2022-04-27 14:37:32', '', '2022-04-27 14:37:32', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1257, '数据源配置创建', 'infra:data-source-config:create', 3, 2, 1255, '', '', '', 0, '1', '1', '', '2022-04-27 14:37:32', '', '2022-04-27 14:37:32', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1258, '数据源配置更新', 'infra:data-source-config:update', 3, 3, 1255, '', '', '', 0, '1', '1', '', '2022-04-27 14:37:32', '', '2022-04-27 14:37:32', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1259, '数据源配置删除', 'infra:data-source-config:delete', 3, 4, 1255, '', '', '', 0, '1', '1', '', '2022-04-27 14:37:32', '', '2022-04-27 14:37:32', 0); -INSERT INTO "public"."system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1260, '数据源配置导出', 'infra:data-source-config:export', 3, 5, 1255, '', '', '', 0, '1', '1', '', '2022-04-27 14:37:32', '', '2022-04-27 14:37:32', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1, '系统管理', '', 1, 10, 0, '/system', 'system', NULL, 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (2, '基础设施', '', 1, 20, 0, '/infra', 'monitor', NULL, 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5, 'OA 示例', '', 1, 40, 1185, 'oa', 'people', NULL, 0, '1', '1', 'admin', '2021-09-20 16:26:19', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (100, '用户管理', 'system:user:list', 2, 1, 1, 'user', 'user', 'system/user/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (101, '角色管理', '', 2, 2, 1, 'role', 'peoples', 'system/role/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (102, '菜单管理', '', 2, 3, 1, 'menu', 'tree-table', 'system/menu/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (103, '部门管理', '', 2, 4, 1, 'dept', 'tree', 'system/dept/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (104, '岗位管理', '', 2, 5, 1, 'post', 'post', 'system/post/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (105, '字典管理', '', 2, 6, 1, 'dict', 'dict', 'system/dict/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (106, '配置管理', '', 2, 6, 2, 'config', 'edit', 'infra/config/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (107, '通知公告', '', 2, 8, 1, 'notice', 'message', 'system/notice/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (108, '审计日志', '', 1, 9, 1, 'log', 'log', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (109, '在线用户', 'system:user-session:list', 2, 10, 1, 'user-session', 'online', 'system/session/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (110, '定时任务', '', 2, 12, 2, 'job', 'job', 'infra/job/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (111, 'MySQL 监控', '', 2, 9, 2, 'druid', 'druid', 'infra/druid/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (112, 'Java 监控', '', 2, 11, 2, 'admin-server', 'server', 'infra/server/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (113, 'Redis 监控', '', 2, 10, 2, 'redis', 'redis', 'infra/redis/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (114, '表单构建', 'infra:build:list', 2, 2, 2, 'build', 'build', 'infra/build/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (115, '代码生成', 'infra:codegen:query', 2, 1, 2, 'codegen', 'code', 'infra/codegen/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (116, '系统接口', 'infra:swagger:list', 2, 3, 2, 'swagger', 'swagger', 'infra/swagger/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (500, '操作日志', '', 2, 1, 108, 'operate-log', 'form', 'system/operatelog/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (501, '登录日志', '', 2, 2, 108, 'login-log', 'logininfor', 'system/loginlog/index', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1001, '用户查询', 'system:user:query', 3, 1, 100, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1002, '用户新增', 'system:user:create', 3, 2, 100, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1003, '用户修改', 'system:user:update', 3, 3, 100, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1004, '用户删除', 'system:user:delete', 3, 4, 100, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1005, '用户导出', 'system:user:export', 3, 5, 100, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1006, '用户导入', 'system:user:import', 3, 6, 100, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1007, '重置密码', 'system:user:update-password', 3, 7, 100, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1008, '角色查询', 'system:role:query', 3, 1, 101, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1009, '角色新增', 'system:role:create', 3, 2, 101, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1010, '角色修改', 'system:role:update', 3, 3, 101, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1011, '角色删除', 'system:role:delete', 3, 4, 101, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1012, '角色导出', 'system:role:export', 3, 5, 101, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1013, '菜单查询', 'system:menu:query', 3, 1, 102, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1014, '菜单新增', 'system:menu:create', 3, 2, 102, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1015, '菜单修改', 'system:menu:update', 3, 3, 102, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1016, '菜单删除', 'system:menu:delete', 3, 4, 102, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1017, '部门查询', 'system:dept:query', 3, 1, 103, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1018, '部门新增', 'system:dept:create', 3, 2, 103, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1019, '部门修改', 'system:dept:update', 3, 3, 103, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1020, '部门删除', 'system:dept:delete', 3, 4, 103, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1021, '岗位查询', 'system:post:query', 3, 1, 104, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1022, '岗位新增', 'system:post:create', 3, 2, 104, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1023, '岗位修改', 'system:post:update', 3, 3, 104, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1024, '岗位删除', 'system:post:delete', 3, 4, 104, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1025, '岗位导出', 'system:post:export', 3, 5, 104, '', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1026, '字典查询', 'system:dict:query', 3, 1, 105, '#', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1027, '字典新增', 'system:dict:create', 3, 2, 105, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1028, '字典修改', 'system:dict:update', 3, 3, 105, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1029, '字典删除', 'system:dict:delete', 3, 4, 105, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1030, '字典导出', 'system:dict:export', 3, 5, 105, '#', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1031, '配置查询', 'infra:config:query', 3, 1, 106, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1032, '配置新增', 'infra:config:create', 3, 2, 106, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1033, '配置修改', 'infra:config:update', 3, 3, 106, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1034, '配置删除', 'infra:config:delete', 3, 4, 106, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1035, '配置导出', 'infra:config:export', 3, 5, 106, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1036, '公告查询', 'system:notice:query', 3, 1, 107, '#', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1037, '公告新增', 'system:notice:create', 3, 2, 107, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1038, '公告修改', 'system:notice:update', 3, 3, 107, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1039, '公告删除', 'system:notice:delete', 3, 4, 107, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1040, '操作查询', 'system:operate-log:query', 3, 1, 500, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1042, '日志导出', 'system:operate-log:export', 3, 2, 500, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1043, '登录查询', 'system:login-log:query', 3, 1, 501, '#', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1045, '日志导出', 'system:login-log:export', 3, 3, 501, '#', '#', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1046, '在线查询', 'system:user-session:list', 3, 1, 109, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1048, '单条强退', 'system:user-session:delete', 3, 3, 109, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1050, '任务新增', 'infra:job:create', 3, 2, 110, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1051, '任务修改', 'infra:job:update', 3, 3, 110, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1052, '任务删除', 'infra:job:delete', 3, 4, 110, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1053, '状态修改', 'infra:job:update', 3, 5, 110, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1054, '任务导出', 'infra:job:export', 3, 7, 110, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1056, '生成修改', 'infra:codegen:update', 3, 2, 115, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1057, '生成删除', 'infra:codegen:delete', 3, 3, 115, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1058, '导入代码', 'infra:codegen:create', 3, 2, 115, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1059, '预览代码', 'infra:codegen:preview', 3, 4, 115, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1060, '生成代码', 'infra:codegen:download', 3, 5, 115, '', '', '', 0, '1', '1', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1063, '设置角色菜单权限', 'system:permission:assign-role-menu', 3, 6, 101, '', '', '', 0, '1', '1', '', '2021-01-06 17:53:44', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1064, '设置角色数据权限', 'system:permission:assign-role-data-scope', 3, 7, 101, '', '', '', 0, '1', '1', '', '2021-01-06 17:56:31', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1065, '设置用户角色', 'system:permission:assign-user-role', 3, 8, 101, '', '', '', 0, '1', '1', '', '2021-01-07 10:23:28', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1066, '获得 Redis 监控信息', 'infra:redis:get-monitor-info', 3, 1, 113, '', '', '', 0, '1', '1', '', '2021-01-26 01:02:31', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1067, '获得 Redis Key 列表', 'infra:redis:get-key-list', 3, 2, 113, '', '', '', 0, '1', '1', '', '2021-01-26 01:02:52', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1070, '代码生成示例', 'infra:test-demo:query', 2, 1, 2, 'test-demo', 'validCode', 'infra/testDemo/index', 0, '1', '1', '', '2021-02-06 12:42:49', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1071, '测试示例表创建', 'infra:test-demo:create', 3, 1, 1070, '', '', '', 0, '1', '1', '', '2021-02-06 12:42:49', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1072, '测试示例表更新', 'infra:test-demo:update', 3, 2, 1070, '', '', '', 0, '1', '1', '', '2021-02-06 12:42:49', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1073, '测试示例表删除', 'infra:test-demo:delete', 3, 3, 1070, '', '', '', 0, '1', '1', '', '2021-02-06 12:42:49', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1074, '测试示例表导出', 'infra:test-demo:export', 3, 4, 1070, '', '', '', 0, '1', '1', '', '2021-02-06 12:42:49', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1075, '任务触发', 'infra:job:trigger', 3, 8, 110, '', '', '', 0, '1', '1', '', '2021-02-07 13:03:10', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1076, '数据库文档', '', 2, 4, 2, 'db-doc', 'table', 'infra/dbDoc/index', 0, '1', '1', '', '2021-02-08 01:41:47', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1077, '监控平台', '', 2, 13, 2, 'skywalking', 'eye-open', 'infra/skywalking/index', 0, '1', '1', '', '2021-02-08 20:41:31', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1078, '访问日志', '', 2, 1, 1083, 'api-access-log', 'log', 'infra/apiAccessLog/index', 0, '1', '1', '', '2021-02-26 01:32:59', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1082, '日志导出', 'infra:api-access-log:export', 3, 2, 1078, '', '', '', 0, '1', '1', '', '2021-02-26 01:32:59', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1083, 'API 日志', '', 2, 8, 2, 'log', 'log', NULL, 0, '1', '1', '', '2021-02-26 02:18:24', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1084, '错误日志', 'infra:api-error-log:query', 2, 2, 1083, 'api-error-log', 'log', 'infra/apiErrorLog/index', 0, '1', '1', '', '2021-02-26 07:53:20', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1085, '日志处理', 'infra:api-error-log:update-status', 3, 2, 1084, '', '', '', 0, '1', '1', '', '2021-02-26 07:53:20', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1086, '日志导出', 'infra:api-error-log:export', 3, 3, 1084, '', '', '', 0, '1', '1', '', '2021-02-26 07:53:20', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1087, '任务查询', 'infra:job:query', 3, 1, 110, '', '', '', 0, '1', '1', '1', '2021-03-10 01:26:19', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1088, '日志查询', 'infra:api-access-log:query', 3, 1, 1078, '', '', '', 0, '1', '1', '1', '2021-03-10 01:28:04', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1089, '日志查询', 'infra:api-error-log:query', 3, 1, 1084, '', '', '', 0, '1', '1', '1', '2021-03-10 01:29:09', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1090, '文件列表', '', 2, 5, 1243, 'file', 'upload', 'infra/file/index', 0, '1', '1', '', '2021-03-12 20:16:20', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1091, '文件查询', 'infra:file:query', 3, 1, 1090, '', '', '', 0, '1', '1', '', '2021-03-12 20:16:20', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1092, '文件删除', 'infra:file:delete', 3, 4, 1090, '', '', '', 0, '1', '1', '', '2021-03-12 20:16:20', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1093, '短信管理', '', 1, 11, 1, 'sms', 'validCode', NULL, 0, '1', '1', '1', '2021-04-05 01:10:16', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1094, '短信渠道', '', 2, 0, 1093, 'sms-channel', 'phone', 'system/sms/smsChannel', 0, '1', '1', '', '2021-04-01 11:07:15', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1095, '短信渠道查询', 'system:sms-channel:query', 3, 1, 1094, '', '', '', 0, '1', '1', '', '2021-04-01 11:07:15', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1096, '短信渠道创建', 'system:sms-channel:create', 3, 2, 1094, '', '', '', 0, '1', '1', '', '2021-04-01 11:07:15', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1097, '短信渠道更新', 'system:sms-channel:update', 3, 3, 1094, '', '', '', 0, '1', '1', '', '2021-04-01 11:07:15', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1098, '短信渠道删除', 'system:sms-channel:delete', 3, 4, 1094, '', '', '', 0, '1', '1', '', '2021-04-01 11:07:15', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1100, '短信模板', '', 2, 1, 1093, 'sms-template', 'phone', 'system/sms/smsTemplate', 0, '1', '1', '', '2021-04-01 17:35:17', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1101, '短信模板查询', 'system:sms-template:query', 3, 1, 1100, '', '', '', 0, '1', '1', '', '2021-04-01 17:35:17', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1102, '短信模板创建', 'system:sms-template:create', 3, 2, 1100, '', '', '', 0, '1', '1', '', '2021-04-01 17:35:17', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1103, '短信模板更新', 'system:sms-template:update', 3, 3, 1100, '', '', '', 0, '1', '1', '', '2021-04-01 17:35:17', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1104, '短信模板删除', 'system:sms-template:delete', 3, 4, 1100, '', '', '', 0, '1', '1', '', '2021-04-01 17:35:17', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1105, '短信模板导出', 'system:sms-template:export', 3, 5, 1100, '', '', '', 0, '1', '1', '', '2021-04-01 17:35:17', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1106, '发送测试短信', 'system:sms-template:send-sms', 3, 6, 1100, '', '', '', 0, '1', '1', '1', '2021-04-11 00:26:40', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1107, '短信日志', '', 2, 2, 1093, 'sms-log', 'phone', 'system/sms/smsLog', 0, '1', '1', '', '2021-04-11 08:37:05', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1108, '短信日志查询', 'system:sms-log:query', 3, 1, 1107, '', '', '', 0, '1', '1', '', '2021-04-11 08:37:05', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1109, '短信日志导出', 'system:sms-log:export', 3, 5, 1107, '', '', '', 0, '1', '1', '', '2021-04-11 08:37:05', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1110, '错误码管理', '', 2, 12, 1, 'error-code', 'code', 'system/errorCode/index', 0, '1', '1', '', '2021-04-13 21:46:42', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1111, '错误码查询', 'system:error-code:query', 3, 1, 1110, '', '', '', 0, '1', '1', '', '2021-04-13 21:46:42', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1112, '错误码创建', 'system:error-code:create', 3, 2, 1110, '', '', '', 0, '1', '1', '', '2021-04-13 21:46:42', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1113, '错误码更新', 'system:error-code:update', 3, 3, 1110, '', '', '', 0, '1', '1', '', '2021-04-13 21:46:42', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1114, '错误码删除', 'system:error-code:delete', 3, 4, 1110, '', '', '', 0, '1', '1', '', '2021-04-13 21:46:42', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1115, '错误码导出', 'system:error-code:export', 3, 5, 1110, '', '', '', 0, '1', '1', '', '2021-04-13 21:46:42', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1117, '支付管理', '', 1, 11, 0, '/pay', 'money', NULL, 0, '1', '1', '1', '2021-12-25 16:43:41', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1118, '请假查询', '', 2, 0, 5, 'leave', 'user', 'bpm/oa/leave/index', 0, '1', '1', '', '2021-09-20 08:51:03', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1119, '请假申请查询', 'bpm:oa-leave:query', 3, 1, 1118, '', '', '', 0, '1', '1', '', '2021-09-20 08:51:03', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1120, '请假申请创建', 'bpm:oa-leave:create', 3, 2, 1118, '', '', '', 0, '1', '1', '', '2021-09-20 08:51:03', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1126, '应用信息', '', 2, 1, 1117, 'app', 'table', 'pay/app/index', 0, '1', '1', '', '2021-11-10 01:13:30', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1127, '支付应用信息查询', 'pay:app:query', 3, 1, 1126, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:31', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1128, '支付应用信息创建', 'pay:app:create', 3, 2, 1126, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:31', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1129, '支付应用信息更新', 'pay:app:update', 3, 3, 1126, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:31', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1130, '支付应用信息删除', 'pay:app:delete', 3, 4, 1126, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:31', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1131, '支付应用信息导出', 'pay:app:export', 3, 5, 1126, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:31', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1132, '秘钥解析', 'pay:channel:parsing', 3, 6, 1129, '', '', '', 0, '1', '1', '1', '2021-11-08 15:15:47', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1133, '支付商户信息查询', 'pay:merchant:query', 3, 1, 1132, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:41', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1134, '支付商户信息创建', 'pay:merchant:create', 3, 2, 1132, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:41', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1135, '支付商户信息更新', 'pay:merchant:update', 3, 3, 1132, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:41', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1136, '支付商户信息删除', 'pay:merchant:delete', 3, 4, 1132, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:41', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1137, '支付商户信息导出', 'pay:merchant:export', 3, 5, 1132, '', '', '', 0, '1', '1', '', '2021-11-10 01:13:41', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1138, '租户列表', '', 2, 0, 1224, 'list', 'peoples', 'system/tenant/index', 0, '1', '1', '', '2021-12-14 12:31:43', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1139, '租户查询', 'system:tenant:query', 3, 1, 1138, '', '', '', 0, '1', '1', '', '2021-12-14 12:31:44', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1140, '租户创建', 'system:tenant:create', 3, 2, 1138, '', '', '', 0, '1', '1', '', '2021-12-14 12:31:44', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1141, '租户更新', 'system:tenant:update', 3, 3, 1138, '', '', '', 0, '1', '1', '', '2021-12-14 12:31:44', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1142, '租户删除', 'system:tenant:delete', 3, 4, 1138, '', '', '', 0, '1', '1', '', '2021-12-14 12:31:44', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1143, '租户导出', 'system:tenant:export', 3, 5, 1138, '', '', '', 0, '1', '1', '', '2021-12-14 12:31:44', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1150, '秘钥解析', '', 3, 6, 1129, '', '', '', 0, '1', '1', '1', '2021-11-08 15:15:47', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1161, '退款订单', '', 2, 3, 1117, 'refund', 'order', 'pay/refund/index', 0, '1', '1', '', '2021-12-25 08:29:07', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1162, '退款订单查询', 'pay:refund:query', 3, 1, 1161, '', '', '', 0, '1', '1', '', '2021-12-25 08:29:07', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1163, '退款订单创建', 'pay:refund:create', 3, 2, 1161, '', '', '', 0, '1', '1', '', '2021-12-25 08:29:07', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1164, '退款订单更新', 'pay:refund:update', 3, 3, 1161, '', '', '', 0, '1', '1', '', '2021-12-25 08:29:07', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1165, '退款订单删除', 'pay:refund:delete', 3, 4, 1161, '', '', '', 0, '1', '1', '', '2021-12-25 08:29:07', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1166, '退款订单导出', 'pay:refund:export', 3, 5, 1161, '', '', '', 0, '1', '1', '', '2021-12-25 08:29:07', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1173, '支付订单', '', 2, 2, 1117, 'order', 'pay', 'pay/order/index', 0, '1', '1', '', '2021-12-25 08:49:43', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1174, '支付订单查询', 'pay:order:query', 3, 1, 1173, '', '', '', 0, '1', '1', '', '2021-12-25 08:49:43', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1175, '支付订单创建', 'pay:order:create', 3, 2, 1173, '', '', '', 0, '1', '1', '', '2021-12-25 08:49:43', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1176, '支付订单更新', 'pay:order:update', 3, 3, 1173, '', '', '', 0, '1', '1', '', '2021-12-25 08:49:43', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1177, '支付订单删除', 'pay:order:delete', 3, 4, 1173, '', '', '', 0, '1', '1', '', '2021-12-25 08:49:43', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1178, '支付订单导出', 'pay:order:export', 3, 5, 1173, '', '', '', 0, '1', '1', '', '2021-12-25 08:49:43', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1179, '商户信息', '', 2, 0, 1117, 'merchant', 'merchant', 'pay/merchant/index', 0, '1', '1', '', '2021-12-25 09:01:44', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1180, '支付商户信息查询', 'pay:merchant:query', 3, 1, 1179, '', '', '', 0, '1', '1', '', '2021-12-25 09:01:44', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1181, '支付商户信息创建', 'pay:merchant:create', 3, 2, 1179, '', '', '', 0, '1', '1', '', '2021-12-25 09:01:44', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1182, '支付商户信息更新', 'pay:merchant:update', 3, 3, 1179, '', '', '', 0, '1', '1', '', '2021-12-25 09:01:44', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1183, '支付商户信息删除', '', 3, 4, 1179, '', '', '', 0, '1', '1', '', '2021-12-25 09:01:44', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1184, '支付商户信息导出', 'pay:merchant:export', 3, 5, 1179, '', '', '', 0, '1', '1', '', '2021-12-25 09:01:44', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1185, '工作流程', '', 1, 50, 0, '/bpm', 'tool', NULL, 0, '1', '1', '1', '2021-12-30 20:26:36', '103', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1186, '流程管理', '', 1, 10, 1185, 'manager', 'nested', NULL, 0, '1', '1', '1', '2021-12-30 20:28:30', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1187, '流程表单', '', 2, 0, 1186, 'form', 'form', 'bpm/form/index', 0, '1', '1', '', '2021-12-30 12:38:22', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1188, '表单查询', 'bpm:form:query', 3, 1, 1187, '', '', '', 0, '1', '1', '', '2021-12-30 12:38:22', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1189, '表单创建', 'bpm:form:create', 3, 2, 1187, '', '', '', 0, '1', '1', '', '2021-12-30 12:38:22', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1190, '表单更新', 'bpm:form:update', 3, 3, 1187, '', '', '', 0, '1', '1', '', '2021-12-30 12:38:22', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1191, '表单删除', 'bpm:form:delete', 3, 4, 1187, '', '', '', 0, '1', '1', '', '2021-12-30 12:38:22', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1192, '表单导出', 'bpm:form:export', 3, 5, 1187, '', '', '', 0, '1', '1', '', '2021-12-30 12:38:22', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1193, '流程模型', '', 2, 5, 1186, 'model', 'guide', 'bpm/model/index', 0, '1', '1', '1', '2021-12-31 23:24:58', '103', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1194, '模型查询', 'bpm:model:query', 3, 1, 1193, '', '', '', 0, '1', '1', '1', '2022-01-03 19:01:10', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1195, '模型创建', 'bpm:model:create', 3, 2, 1193, '', '', '', 0, '1', '1', '1', '2022-01-03 19:01:24', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1196, '模型导入', 'bpm:model:import', 3, 3, 1193, '', '', '', 0, '1', '1', '1', '2022-01-03 19:01:35', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1197, '模型更新', 'bpm:model:update', 3, 4, 1193, '', '', '', 0, '1', '1', '1', '2022-01-03 19:02:28', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1198, '模型删除', 'bpm:model:delete', 3, 5, 1193, '', '', '', 0, '1', '1', '1', '2022-01-03 19:02:43', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1199, '模型发布', 'bpm:model:deploy', 3, 6, 1193, '', '', '', 0, '1', '1', '1', '2022-01-03 19:03:24', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1200, '任务管理', '', 1, 20, 1185, 'task', 'cascader', NULL, 0, '1', '1', '1', '2022-01-07 23:51:48', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1201, '我的流程', '', 2, 0, 1200, 'my', 'people', 'bpm/processInstance/index', 0, '1', '1', '', '2022-01-07 15:53:44', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1202, '流程实例的查询', 'bpm:process-instance:query', 3, 1, 1201, '', '', '', 0, '1', '1', '', '2022-01-07 15:53:44', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1207, '待办任务', '', 2, 10, 1200, 'todo', 'eye-open', 'bpm/task/todo', 0, '1', '1', '1', '2022-01-08 10:33:37', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1208, '已办任务', '', 2, 20, 1200, 'done', 'eye', 'bpm/task/done', 0, '1', '1', '1', '2022-01-08 10:34:13', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1209, '用户分组', '', 2, 2, 1186, 'user-group', 'people', 'bpm/group/index', 0, '1', '1', '', '2022-01-14 02:14:20', '103', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1210, '用户组查询', 'bpm:user-group:query', 3, 1, 1209, '', '', '', 0, '1', '1', '', '2022-01-14 02:14:20', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1211, '用户组创建', 'bpm:user-group:create', 3, 2, 1209, '', '', '', 0, '1', '1', '', '2022-01-14 02:14:20', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1212, '用户组更新', 'bpm:user-group:update', 3, 3, 1209, '', '', '', 0, '1', '1', '', '2022-01-14 02:14:20', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1213, '用户组删除', 'bpm:user-group:delete', 3, 4, 1209, '', '', '', 0, '1', '1', '', '2022-01-14 02:14:20', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1215, '流程定义查询', 'bpm:process-definition:query', 3, 10, 1193, '', '', '', 0, '1', '1', '1', '2022-01-23 00:21:43', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1216, '流程任务分配规则查询', 'bpm:task-assign-rule:query', 3, 20, 1193, '', '', '', 0, '1', '1', '1', '2022-01-23 00:26:53', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1217, '流程任务分配规则创建', 'bpm:task-assign-rule:create', 3, 21, 1193, '', '', '', 0, '1', '1', '1', '2022-01-23 00:28:15', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1218, '流程任务分配规则更新', 'bpm:task-assign-rule:update', 3, 22, 1193, '', '', '', 0, '1', '1', '1', '2022-01-23 00:28:41', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1219, '流程实例的创建', 'bpm:process-instance:create', 3, 2, 1201, '', '', '', 0, '1', '1', '1', '2022-01-23 00:36:15', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1220, '流程实例的取消', 'bpm:process-instance:cancel', 3, 3, 1201, '', '', '', 0, '1', '1', '1', '2022-01-23 00:36:33', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1221, '流程任务的查询', 'bpm:task:query', 3, 1, 1207, '', '', '', 0, '1', '1', '1', '2022-01-23 00:38:52', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1222, '流程任务的更新', 'bpm:task:update', 3, 2, 1207, '', '', '', 0, '1', '1', '1', '2022-01-23 00:39:24', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1224, '租户管理', '', 2, 0, 1, 'tenant', 'peoples', NULL, 0, '1', '1', '1', '2022-02-20 01:41:13', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1225, '租户套餐', '', 2, 0, 1224, 'package', 'eye', 'system/tenantPackage/index', 0, '1', '1', '', '2022-02-19 17:44:06', '1', '2022-04-21 01:21:25', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1226, '租户套餐查询', 'system:tenant-package:query', 3, 1, 1225, '', '', '', 0, '1', '1', '', '2022-02-19 17:44:06', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1227, '租户套餐创建', 'system:tenant-package:create', 3, 2, 1225, '', '', '', 0, '1', '1', '', '2022-02-19 17:44:06', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1228, '租户套餐更新', 'system:tenant-package:update', 3, 3, 1225, '', '', '', 0, '1', '1', '', '2022-02-19 17:44:06', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1229, '租户套餐删除', 'system:tenant-package:delete', 3, 4, 1225, '', '', '', 0, '1', '1', '', '2022-02-19 17:44:06', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1237, '文件配置', '', 2, 0, 1243, 'file-config', 'config', 'infra/fileConfig/index', 0, '1', '1', '', '2022-03-15 14:35:28', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1238, '文件配置查询', 'infra:file-config:query', 3, 1, 1237, '', '', '', 0, '1', '1', '', '2022-03-15 14:35:28', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1239, '文件配置创建', 'infra:file-config:create', 3, 2, 1237, '', '', '', 0, '1', '1', '', '2022-03-15 14:35:28', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1240, '文件配置更新', 'infra:file-config:update', 3, 3, 1237, '', '', '', 0, '1', '1', '', '2022-03-15 14:35:28', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1241, '文件配置删除', 'infra:file-config:delete', 3, 4, 1237, '', '', '', 0, '1', '1', '', '2022-03-15 14:35:28', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1242, '文件配置导出', 'infra:file-config:export', 3, 5, 1237, '', '', '', 0, '1', '1', '', '2022-03-15 14:35:28', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1243, '文件管理', '', 2, 5, 2, 'file', 'download', NULL, 0, '1', '1', '1', '2022-03-16 23:47:40', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1247, '敏感词管理', '', 2, 13, 1, 'sensitive-word', 'education', 'system/sensitiveWord/index', 0, '1', '1', '', '2022-04-07 16:55:03', '1', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1248, '敏感词查询', 'system:sensitive-word:query', 3, 1, 1247, '', '', '', 0, '1', '1', '', '2022-04-07 16:55:03', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1249, '敏感词创建', 'system:sensitive-word:create', 3, 2, 1247, '', '', '', 0, '1', '1', '', '2022-04-07 16:55:03', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1250, '敏感词更新', 'system:sensitive-word:update', 3, 3, 1247, '', '', '', 0, '1', '1', '', '2022-04-07 16:55:03', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1251, '敏感词删除', 'system:sensitive-word:delete', 3, 4, 1247, '', '', '', 0, '1', '1', '', '2022-04-07 16:55:03', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1252, '敏感词导出', 'system:sensitive-word:export', 3, 5, 1247, '', '', '', 0, '1', '1', '', '2022-04-07 16:55:03', '', '2022-04-20 17:03:10', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1254, '作者动态', '', 1, 0, 0, 'https://www.iocoder.cn', 'people', NULL, 0, '1', '1', '1', '2022-04-23 01:03:15', '1', '2022-04-23 01:03:15', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1255, '数据源配置', '', 2, 1, 2, 'data-source-config', 'rate', 'infra/dataSourceConfig/index', 0, '1', '1', '', '2022-04-27 14:37:32', '1', '2022-04-27 22:42:06', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1256, '数据源配置查询', 'infra:data-source-config:query', 3, 1, 1255, '', '', '', 0, '1', '1', '', '2022-04-27 14:37:32', '', '2022-04-27 14:37:32', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1257, '数据源配置创建', 'infra:data-source-config:create', 3, 2, 1255, '', '', '', 0, '1', '1', '', '2022-04-27 14:37:32', '', '2022-04-27 14:37:32', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1258, '数据源配置更新', 'infra:data-source-config:update', 3, 3, 1255, '', '', '', 0, '1', '1', '', '2022-04-27 14:37:32', '', '2022-04-27 14:37:32', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1259, '数据源配置删除', 'infra:data-source-config:delete', 3, 4, 1255, '', '', '', 0, '1', '1', '', '2022-04-27 14:37:32', '', '2022-04-27 14:37:32', 0); +INSERT INTO "system_menu" ("id", "name", "permission", "type", "sort", "parent_id", "path", "icon", "component", "status", "visible", "keep_alive", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1260, '数据源配置导出', 'infra:data-source-config:export', 3, 5, 1255, '', '', '', 0, '1', '1', '', '2022-04-27 14:37:32', '', '2022-04-27 14:37:32', 0); COMMIT; -- ---------------------------- -- Table structure for system_notice -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_notice"; -CREATE TABLE "public"."system_notice" ( +DROP TABLE IF EXISTS "system_notice"; +CREATE TABLE "system_notice" ( "id" int8 NOT NULL, "title" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, "content" text COLLATE "pg_catalog"."default" NOT NULL, @@ -19152,35 +2795,33 @@ CREATE TABLE "public"."system_notice" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_notice" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_notice"."id" IS '公告ID'; -COMMENT ON COLUMN "public"."system_notice"."title" IS '公告标题'; -COMMENT ON COLUMN "public"."system_notice"."content" IS '公告内容'; -COMMENT ON COLUMN "public"."system_notice"."type" IS '公告类型(1通知 2公告)'; -COMMENT ON COLUMN "public"."system_notice"."status" IS '公告状态(0正常 1关闭)'; -COMMENT ON COLUMN "public"."system_notice"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_notice"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_notice"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_notice"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_notice"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."system_notice"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."system_notice" IS '通知公告表'; +COMMENT ON COLUMN "system_notice"."id" IS '公告ID'; +COMMENT ON COLUMN "system_notice"."title" IS '公告标题'; +COMMENT ON COLUMN "system_notice"."content" IS '公告内容'; +COMMENT ON COLUMN "system_notice"."type" IS '公告类型(1通知 2公告)'; +COMMENT ON COLUMN "system_notice"."status" IS '公告状态(0正常 1关闭)'; +COMMENT ON COLUMN "system_notice"."creator" IS '创建者'; +COMMENT ON COLUMN "system_notice"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_notice"."updater" IS '更新者'; +COMMENT ON COLUMN "system_notice"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_notice"."deleted" IS '是否删除'; +COMMENT ON COLUMN "system_notice"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "system_notice" IS '通知公告表'; -- ---------------------------- -- Records of system_notice -- ---------------------------- BEGIN; -INSERT INTO "public"."system_notice" ("id", "title", "content", "type", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1, '温馨提醒:2018-07-01 若依新版本发布啦', '

新版本内容133

', 2, 0, 'admin', '2021-01-05 17:03:48', '1', '2022-02-15 19:47:20', 0, 1); -INSERT INTO "public"."system_notice" ("id", "title", "content", "type", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (2, '维护通知:2018-07-01 若依系统凌晨维护', '维护内容', 1, 0, 'admin', '2021-01-05 17:03:48', '', '2021-12-15 05:02:22', 0, 1); -INSERT INTO "public"."system_notice" ("id", "title", "content", "type", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (3, '1133', '

222333

', 1, 0, '', '2021-01-13 05:24:52', '', '2021-12-15 05:02:21', 1, 1); -INSERT INTO "public"."system_notice" ("id", "title", "content", "type", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (4, '我是测试标题', '

哈哈哈哈123

', 1, 0, '110', '2022-02-22 01:01:25', '110', '2022-02-22 01:01:46', 0, 121); +INSERT INTO "system_notice" ("id", "title", "content", "type", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1, '温馨提醒:2018-07-01 若依新版本发布啦', '

新版本内容133

', 2, 0, 'admin', '2021-01-05 17:03:48', '1', '2022-02-15 19:47:20', 0, 1); +INSERT INTO "system_notice" ("id", "title", "content", "type", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (2, '维护通知:2018-07-01 若依系统凌晨维护', '维护内容', 1, 0, 'admin', '2021-01-05 17:03:48', '', '2021-12-15 05:02:22', 0, 1); +INSERT INTO "system_notice" ("id", "title", "content", "type", "status", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (4, '我是测试标题', '

哈哈哈哈123

', 1, 0, '110', '2022-02-22 01:01:25', '110', '2022-02-22 01:01:46', 0, 121); COMMIT; -- ---------------------------- -- Table structure for system_operate_log -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_operate_log"; -CREATE TABLE "public"."system_operate_log" ( +DROP TABLE IF EXISTS "system_operate_log"; +CREATE TABLE "system_operate_log" ( "id" int8 NOT NULL, "trace_id" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, "user_id" int8 NOT NULL, @@ -19209,165 +2850,45 @@ CREATE TABLE "public"."system_operate_log" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_operate_log" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_operate_log"."id" IS '日志主键'; -COMMENT ON COLUMN "public"."system_operate_log"."trace_id" IS '链路追踪编号'; -COMMENT ON COLUMN "public"."system_operate_log"."user_id" IS '用户编号'; -COMMENT ON COLUMN "public"."system_operate_log"."user_type" IS '用户类型'; -COMMENT ON COLUMN "public"."system_operate_log"."module" IS '模块标题'; -COMMENT ON COLUMN "public"."system_operate_log"."name" IS '操作名'; -COMMENT ON COLUMN "public"."system_operate_log"."type" IS '操作分类'; -COMMENT ON COLUMN "public"."system_operate_log"."content" IS '操作内容'; -COMMENT ON COLUMN "public"."system_operate_log"."exts" IS '拓展字段'; -COMMENT ON COLUMN "public"."system_operate_log"."request_method" IS '请求方法名'; -COMMENT ON COLUMN "public"."system_operate_log"."request_url" IS '请求地址'; -COMMENT ON COLUMN "public"."system_operate_log"."user_ip" IS '用户 IP'; -COMMENT ON COLUMN "public"."system_operate_log"."user_agent" IS '浏览器 UA'; -COMMENT ON COLUMN "public"."system_operate_log"."java_method" IS 'Java 方法名'; -COMMENT ON COLUMN "public"."system_operate_log"."java_method_args" IS 'Java 方法的参数'; -COMMENT ON COLUMN "public"."system_operate_log"."start_time" IS '操作时间'; -COMMENT ON COLUMN "public"."system_operate_log"."duration" IS '执行时长'; -COMMENT ON COLUMN "public"."system_operate_log"."result_code" IS '结果码'; -COMMENT ON COLUMN "public"."system_operate_log"."result_msg" IS '结果提示'; -COMMENT ON COLUMN "public"."system_operate_log"."result_data" IS '结果数据'; -COMMENT ON COLUMN "public"."system_operate_log"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_operate_log"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_operate_log"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_operate_log"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_operate_log"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."system_operate_log"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."system_operate_log" IS '操作日志记录'; +COMMENT ON COLUMN "system_operate_log"."id" IS '日志主键'; +COMMENT ON COLUMN "system_operate_log"."trace_id" IS '链路追踪编号'; +COMMENT ON COLUMN "system_operate_log"."user_id" IS '用户编号'; +COMMENT ON COLUMN "system_operate_log"."user_type" IS '用户类型'; +COMMENT ON COLUMN "system_operate_log"."module" IS '模块标题'; +COMMENT ON COLUMN "system_operate_log"."name" IS '操作名'; +COMMENT ON COLUMN "system_operate_log"."type" IS '操作分类'; +COMMENT ON COLUMN "system_operate_log"."content" IS '操作内容'; +COMMENT ON COLUMN "system_operate_log"."exts" IS '拓展字段'; +COMMENT ON COLUMN "system_operate_log"."request_method" IS '请求方法名'; +COMMENT ON COLUMN "system_operate_log"."request_url" IS '请求地址'; +COMMENT ON COLUMN "system_operate_log"."user_ip" IS '用户 IP'; +COMMENT ON COLUMN "system_operate_log"."user_agent" IS '浏览器 UA'; +COMMENT ON COLUMN "system_operate_log"."java_method" IS 'Java 方法名'; +COMMENT ON COLUMN "system_operate_log"."java_method_args" IS 'Java 方法的参数'; +COMMENT ON COLUMN "system_operate_log"."start_time" IS '操作时间'; +COMMENT ON COLUMN "system_operate_log"."duration" IS '执行时长'; +COMMENT ON COLUMN "system_operate_log"."result_code" IS '结果码'; +COMMENT ON COLUMN "system_operate_log"."result_msg" IS '结果提示'; +COMMENT ON COLUMN "system_operate_log"."result_data" IS '结果数据'; +COMMENT ON COLUMN "system_operate_log"."creator" IS '创建者'; +COMMENT ON COLUMN "system_operate_log"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_operate_log"."updater" IS '更新者'; +COMMENT ON COLUMN "system_operate_log"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_operate_log"."deleted" IS '是否删除'; +COMMENT ON COLUMN "system_operate_log"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "system_operate_log" IS '操作日志记录'; -- ---------------------------- -- Records of system_operate_log -- ---------------------------- BEGIN; -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1841, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["infra_data_source_config"]}', '2022-04-27 21:44:54', 160, 0, '', '[70]', NULL, '2022-04-27 21:44:54', NULL, '2022-04-27 21:44:54', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1842, '', 1, 2, '管理后台 - 代码生成器', '更新数据库的表和字段定义', 3, '', '', 'PUT', '/admin-api/infra/codegen/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.updateCodegen(CodegenUpdateReqVO)', '{"updateReqVO":{"table":{"importType":1,"scene":1,"tableName":"infra_data_source_config","tableComment":"数据源配置表","remark":null,"moduleName":"infra","businessName":"db","className":"DataSourceConfig","classComment":"数据源配置","author":"芋道源码","templateType":1,"parentMenuId":2,"id":70,"parentMenuIdValid":true},"columns":[{"tableId":70,"columnName":"id","columnType":"int","columnComment":"主键编号","nullable":false,"primaryKey":true,"autoIncrement":"true","ordinalPosition":1,"javaType":"Integer","javaField":"id","dictType":"","example":"1024","createOperation":false,"updateOperation":true,"listOperation":false,"listOperationCondition":"=","listOperationResult":true,"htmlType":"input","id":824},{"tableId":70,"columnName":"name","columnType":"varchar(100)","columnComment":"参数名称","nullable":false,"primaryKey":false,"autoIncrement":"false","ordinalPosition":2,"javaType":"String","javaField":"name","dictType":"","example":"test","createOperation":true,"updateOperation":true,"listOperation":true,"listOperationCondition":"LIKE","listOperationResult":true,"htmlType":"input","id":825},{"tableId":70,"columnName":"url","columnType":"varchar(1024)","columnComment":"数据源连接","nullable":false,"primaryKey":false,"autoIncrement":"false","ordinalPosition":3,"javaType":"String","javaField":"url","dictType":"","example":"jdbc:mysql://127.0.0.1:3306/ruoyi-vue-pro","createOperation":true,"updateOperation":true,"listOperation":true,"listOperationCondition":"LIKE","listOperationResult":true,"htmlType":"input","id":826},{"tableId":70,"columnName":"username","columnType":"varchar(255)","columnComment":"用户名","nullable":false,"primaryKey":false,"autoIncrement":"false","ordinalPosition":4,"javaType":"String","javaField":"username","dictType":"","example":"root","createOperation":true,"updateOperation":true,"listOperation":false,"listOperationCondition":"LIKE","listOperationResult":true,"htmlType":"input","id":827},{"tableId":70,"columnName":"password","columnType":"varchar(255)","columnComment":"密码","nullable":false,"primaryKey":false,"autoIncrement":"false","ordinalPosition":5,"javaType":"String","javaField":"password","dictType":"","example":"123456","createOperation":true,"updateOperation":true,"listOperation":false,"listOperationCondition":"=","listOperationResult":false,"htmlType":"input","id":828},{"tableId":70,"columnName":"creator","columnType":"varchar(64)","columnComment":"创建者","nullable":true,"primaryKey":false,"autoIncrement":"false","ordinalPosition":6,"javaType":"String","javaField":"creator","dictType":"","example":null,"createOperation":false,"updateOperation":false,"listOperation":false,"listOperationCondition":"=","listOperationResult":false,"htmlType":"input","id":829},{"tableId":70,"columnName":"create_time","columnType":"datetime","columnComment":"创建时间","nullable":false,"primaryKey":false,"autoIncrement":"false","ordinalPosition":7,"javaType":"Date","javaField":"createTime","dictType":"","example":null,"createOperation":false,"updateOperation":false,"listOperation":true,"listOperationCondition":"BETWEEN","listOperationResult":true,"htmlType":"datetime","id":830},{"tableId":70,"columnName":"updater","columnType":"varchar(64)","columnComment":"更新者","nullable":true,"primaryKey":false,"autoIncrement":"false","ordinalPosition":8,"javaType":"String","javaField":"updater","dictType":"","example":null,"createOperation":false,"updateOperation":false,"listOperation":false,"listOperationCondition":"=","listOperationResult":false,"htmlType":"input","id":831},{"tableId":70,"columnName":"update_time","columnType":"datetime","columnComment":"更新时间","nullable":false,"primaryKey":false,"autoIncrement":"false","ordinalPosition":9,"javaType":"Date","javaField":"updateTime","dictType":"","example":null,"createOperation":false,"updateOperation":false,"listOperation":false,"listOperationCondition":"BETWEEN","listOperationResult":false,"htmlType":"datetime","id":832},{"tableId":70,"columnName":"deleted","columnType":"bit(1)","columnComment":"是否删除","nullable":false,"primaryKey":false,"autoIncrement":"false","ordinalPosition":10,"javaType":"Boolean","javaField":"deleted","dictType":"","example":null,"createOperation":false,"updateOperation":false,"listOperation":false,"listOperationCondition":"=","listOperationResult":false,"htmlType":"radio","id":833}]}}', '2022-04-27 21:50:04', 93, 0, '', 'true', NULL, '2022-04-27 21:50:04', NULL, '2022-04-27 21:50:04', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1843, '', 1, 2, '管理后台 - 菜单', '修改菜单', 3, '', '', 'PUT', '/admin-api/system/menu/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.system.controller.admin.permission.MenuController.updateMenu(MenuUpdateReqVO)', '{"reqVO":{"name":"数据源配置管理","permission":"","type":2,"sort":1,"parentId":2,"path":"data-source-config","icon":"","component":"infra/dataSourceConfig/index","status":0,"visible":true,"keepAlive":true,"id":1255}}', '2022-04-27 22:41:28', 68, 0, '', 'true', NULL, '2022-04-27 22:41:28', NULL, '2022-04-27 22:41:28', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1844, '', 1, 2, '管理后台 - 菜单', '修改菜单', 3, '', '', 'PUT', '/admin-api/system/menu/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.system.controller.admin.permission.MenuController.updateMenu(MenuUpdateReqVO)', '{"reqVO":{"name":"数据源配置","permission":"","type":2,"sort":1,"parentId":2,"path":"data-source-config","icon":"","component":"infra/dataSourceConfig/index","status":0,"visible":true,"keepAlive":true,"id":1255}}', '2022-04-27 22:41:37', 55, 0, '', 'true', NULL, '2022-04-27 22:41:37', NULL, '2022-04-27 22:41:37', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1845, '', 1, 2, '管理后台 - 菜单', '修改菜单', 3, '', '', 'PUT', '/admin-api/system/menu/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.system.controller.admin.permission.MenuController.updateMenu(MenuUpdateReqVO)', '{"reqVO":{"name":"数据源配置","permission":"","type":2,"sort":1,"parentId":2,"path":"data-source-config","icon":"rate","component":"infra/dataSourceConfig/index","status":0,"visible":true,"keepAlive":true,"id":1255}}', '2022-04-27 22:42:06', 44, 0, '', 'true', NULL, '2022-04-27 22:42:06', NULL, '2022-04-27 22:42:06', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1846, '', 1, 2, '管理后台 - 数据源配置', '创建数据源配置', 2, '', '', 'POST', '/admin-api/infra/data-source-config/create', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.createDataSourceConfig(DataSourceConfigCreateReqVO)', '{"createReqVO":{"name":"test","url":"jdbc:mysql://127.0.0.1:3306/testb5f4","username":"root","password":"123456"}}', '2022-04-27 22:48:20', 97, 0, '', '8', NULL, '2022-04-27 22:48:20', NULL, '2022-04-27 22:48:20', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1847, '', 1, 2, '管理后台 - 数据源配置', '更新数据源配置', 3, '', '', 'PUT', '/admin-api/infra/data-source-config/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.updateDataSourceConfig(DataSourceConfigUpdateReqVO)', '{"updateReqVO":{"name":"test","url":"jdbc:mysql://127.0.0.1:3306/testb5f4","username":"root","id":8,"password":"123456"}}', '2022-04-27 22:49:22', 31, 0, '', 'true', NULL, '2022-04-27 22:49:22', NULL, '2022-04-27 22:49:22', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1848, '', 1, 2, '管理后台 - 数据源配置', '更新数据源配置', 3, '', '', 'PUT', '/admin-api/infra/data-source-config/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.updateDataSourceConfig(DataSourceConfigUpdateReqVO)', '{"updateReqVO":{"name":"test","url":"jdbc:mysql://127.0.0.1:3306/testb5f4","username":"root","id":8,"password":"1"}}', '2022-04-27 23:04:21', 156, 500, 'ServiceException: 数据源配置不正确,无法进行连接', 'null', NULL, '2022-04-27 23:04:22', NULL, '2022-04-27 23:04:22', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1849, '', 1, 2, '管理后台 - 数据源配置', '更新数据源配置', 3, '', '', 'PUT', '/admin-api/infra/data-source-config/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.updateDataSourceConfig(DataSourceConfigUpdateReqVO)', '{"updateReqVO":{"name":"test","url":"jdbc:mysql://127.0.0.1:3306/testb5f4","username":"root","id":8,"password":"123456"}}', '2022-04-27 23:04:24', 81, 0, '', 'true', NULL, '2022-04-27 23:04:24', NULL, '2022-04-27 23:04:24', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1850, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-28 19:19:14', 47, 500, 'MySQLSyntaxErrorException: Unknown column ''column_name'' in ''field list''', 'null', NULL, '2022-04-28 19:19:14', NULL, '2022-04-28 19:19:14', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1851, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-28 19:21:18', 46, 500, 'MySQLSyntaxErrorException: Unknown column ''ordinalPosition'' in ''field list''', 'null', NULL, '2022-04-28 19:21:18', NULL, '2022-04-28 19:21:18', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1852, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-28 19:22:38', 46, 500, 'SQLException: Column ''table_name'' not found.', 'null', NULL, '2022-04-28 19:22:39', NULL, '2022-04-28 19:22:39', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1853, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-28 19:23:20', 31406, 500, 'SQLException: Column ''table_name'' not found.', 'null', NULL, '2022-04-28 19:23:51', NULL, '2022-04-28 19:23:51', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1854, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-28 19:23:51', 2149, 500, 'SQLException: Column ''table_name'' not found.', 'null', NULL, '2022-04-28 19:23:53', NULL, '2022-04-28 19:23:53', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1855, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-28 19:23:56', 38, 500, 'SQLException: Column ''table_name'' not found.', 'null', NULL, '2022-04-28 19:23:57', NULL, '2022-04-28 19:23:57', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1856, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-28 19:25:47', 4275, 0, '', '[71]', NULL, '2022-04-28 19:25:51', NULL, '2022-04-28 19:25:51', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1857, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":53}', '2022-04-28 19:25:57', 47, 0, '', 'true', NULL, '2022-04-28 19:25:57', NULL, '2022-04-28 19:25:57', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1858, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":54}', '2022-04-28 19:26:00', 33, 0, '', 'true', NULL, '2022-04-28 19:26:00', NULL, '2022-04-28 19:26:00', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1859, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":55}', '2022-04-28 19:26:02', 36, 0, '', 'true', NULL, '2022-04-28 19:26:02', NULL, '2022-04-28 19:26:02', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1860, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":59}', '2022-04-28 19:26:03', 34, 0, '', 'true', NULL, '2022-04-28 19:26:03', NULL, '2022-04-28 19:26:03', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1861, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":62}', '2022-04-28 19:26:05', 35, 0, '', 'true', NULL, '2022-04-28 19:26:05', NULL, '2022-04-28 19:26:05', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1862, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":64}', '2022-04-28 19:26:07', 35, 0, '', 'true', NULL, '2022-04-28 19:26:07', NULL, '2022-04-28 19:26:07', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1863, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":67}', '2022-04-28 19:26:09', 33, 0, '', 'true', NULL, '2022-04-28 19:26:09', NULL, '2022-04-28 19:26:09', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1864, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":68}', '2022-04-28 19:26:11', 33, 0, '', 'true', NULL, '2022-04-28 19:26:11', NULL, '2022-04-28 19:26:11', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1865, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":69}', '2022-04-28 19:26:12', 34, 0, '', 'true', NULL, '2022-04-28 19:26:12', NULL, '2022-04-28 19:26:12', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1866, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":70}', '2022-04-28 19:26:14', 32, 0, '', 'true', NULL, '2022-04-28 19:26:14', NULL, '2022-04-28 19:26:14', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1867, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":71}', '2022-04-28 19:26:16', 37, 0, '', 'true', NULL, '2022-04-28 19:26:16', NULL, '2022-04-28 19:26:16', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1868, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":[]}', '2022-04-28 20:03:16', 6, 0, '', '[]', NULL, '2022-04-28 20:03:16', NULL, '2022-04-28 20:03:16', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1869, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":[]}', '2022-04-28 20:03:16', 6, 0, '', '[]', NULL, '2022-04-28 20:03:16', NULL, '2022-04-28 20:03:16', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1870, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":[]}', '2022-04-28 20:03:19', 6, 0, '', '[]', NULL, '2022-04-28 20:03:19', NULL, '2022-04-28 20:03:19', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1871, '', 1, 2, '管理后台 - 数据源配置', '更新数据源配置', 3, '', '', 'PUT', '/admin-api/infra/data-source-config/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.updateDataSourceConfig(DataSourceConfigUpdateReqVO)', '{"updateReqVO":{"name":"test","url":"jdbc:mysql://127.0.0.1:3306/testb5f4","username":"root","id":8,"password":"123456"}}', '2022-04-28 20:04:05', 254, 0, '', 'true', NULL, '2022-04-28 20:04:06', NULL, '2022-04-28 20:04:06', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1872, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["user_profile"]}', '2022-04-28 20:11:02', 42, 500, 'ServiceException: 导入的表不存在', 'null', NULL, '2022-04-28 20:11:02', NULL, '2022-04-28 20:11:02', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1873, '', 1, 2, '管理后台 - 数据源配置', '创建数据源配置', 2, '', '', 'POST', '/admin-api/infra/data-source-config/create', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.createDataSourceConfig(DataSourceConfigCreateReqVO)', '{"createReqVO":{"name":"oracle_test","url":"jdbc:oracle:thin:@127.0.0.1:1521:orcl","username":"root","password":"123456"}}', '2022-04-28 20:41:07', 119, 500, 'ServiceException: 数据源配置不正确,无法进行连接', 'null', NULL, '2022-04-28 20:41:07', NULL, '2022-04-28 20:41:07', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1874, '', 1, 2, '管理后台 - 数据源配置', '创建数据源配置', 2, '', '', 'POST', '/admin-api/infra/data-source-config/create', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.db.DataSourceConfigController.createDataSourceConfig(DataSourceConfigCreateReqVO)', '{"createReqVO":{"name":"oracle_test","url":"jdbc:oracle:thin:@127.0.0.1:1521:xe","username":"root","password":"123456"}}', '2022-04-28 20:41:26', 250, 0, '', '9', NULL, '2022-04-28 20:41:26', NULL, '2022-04-28 20:41:26', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1875, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":[]}', '2022-04-28 21:15:57', 16, 0, '', '[]', NULL, '2022-04-28 21:15:57', NULL, '2022-04-28 21:15:57', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1876, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:18:31', 45, 500, 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1', 'null', NULL, '2022-04-29 00:18:31', NULL, '2022-04-29 00:18:31', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1877, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:18:53', 34, 500, 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1', 'null', NULL, '2022-04-29 00:18:53', NULL, '2022-04-29 00:18:53', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1878, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:19:05', 30, 500, 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1', 'null', NULL, '2022-04-29 00:19:05', NULL, '2022-04-29 00:19:05', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1879, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:20:01', 77, 500, 'EncryptionOperationNotPossibleException: null', 'null', NULL, '2022-04-29 00:20:01', NULL, '2022-04-29 00:20:01', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1880, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:20:24', 59, 500, 'EncryptionOperationNotPossibleException: null', 'null', NULL, '2022-04-29 00:20:24', NULL, '2022-04-29 00:20:24', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1881, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:20:51', 7602, 500, 'EncryptionOperationNotPossibleException: null', 'null', NULL, '2022-04-29 00:20:58', NULL, '2022-04-29 00:20:58', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1882, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:21:20', 82592, 500, 'EncryptionOperationNotPossibleException: null', 'null', NULL, '2022-04-29 00:22:43', NULL, '2022-04-29 00:22:43', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1883, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:22:45', 15723, 500, 'EncryptionOperationNotPossibleException: null', 'null', NULL, '2022-04-29 00:23:00', NULL, '2022-04-29 00:23:00', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1884, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:23:42', 454, 500, 'EncryptionOperationNotPossibleException: null', 'null', NULL, '2022-04-29 00:23:43', NULL, '2022-04-29 00:23:43', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1885, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:24:05', 30318, 500, 'EncryptionOperationNotPossibleException: null', 'null', NULL, '2022-04-29 00:24:35', NULL, '2022-04-29 00:24:35', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1886, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:25:57', 3748, 500, 'OracleDatabaseException: ORA-00923: 未找到要求的 FROM 关键字 -', 'null', NULL, '2022-04-29 00:26:00', NULL, '2022-04-29 00:26:00', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1887, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:26:25', 230, 500, 'OracleDatabaseException: ORA-00923: 未找到要求的 FROM 关键字 -', 'null', NULL, '2022-04-29 00:26:25', NULL, '2022-04-29 00:26:25', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1888, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:26:36', 118266, 500, 'OracleDatabaseException: ORA-00923: 未找到要求的 FROM 关键字 -', 'null', NULL, '2022-04-29 00:28:34', NULL, '2022-04-29 00:28:34', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1889, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:28:42', 3678, 500, 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'null', NULL, '2022-04-29 00:28:46', NULL, '2022-04-29 00:28:46', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1890, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:29:54', 49484, 500, 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'null', NULL, '2022-04-29 00:30:44', NULL, '2022-04-29 00:30:44', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1903, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":74}', '2022-04-29 21:29:32', 56, 0, '', 'true', NULL, '2022-04-29 21:29:32', NULL, '2022-04-29 21:29:32', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1891, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-29 00:40:18', 48, 500, 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1', 'null', NULL, '2022-04-29 00:40:18', NULL, '2022-04-29 00:40:18', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1892, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-29 00:40:50', 38, 500, 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1', 'null', NULL, '2022-04-29 00:40:50', NULL, '2022-04-29 00:40:50', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1893, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-29 00:40:54', 30, 500, 'MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''FROM information_schema.COLUMNS WHERE table_schema = (SELECT DATABASE()) AND tab'' at line 1', 'null', NULL, '2022-04-29 00:40:54', NULL, '2022-04-29 00:40:54', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1894, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-29 00:41:51', 184, 0, '', '[74]', NULL, '2022-04-29 00:41:51', NULL, '2022-04-29 00:41:51', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1895, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:43:04', 485, 500, 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'null', NULL, '2022-04-29 00:43:05', NULL, '2022-04-29 00:43:05', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1896, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:43:15', 11969, 500, 'IllegalStateException: column(app_id) 的数据库类型(null) 找不到匹配的 Java 类型', 'null', NULL, '2022-04-29 00:43:27', NULL, '2022-04-29 00:43:27', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1897, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:44:16', 23936, 500, 'IllegalStateException: column(creator) 的数据库类型(null) 找不到匹配的 Java 类型', 'null', NULL, '2022-04-29 00:44:40', NULL, '2022-04-29 00:44:40', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1898, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_task"]}', '2022-04-29 00:47:21', 1110, 0, '', '[79]', NULL, '2022-04-29 00:47:22', NULL, '2022-04-29 00:47:22', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1899, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":[]}', '2022-04-29 20:34:21', 16, 0, '', '[]', NULL, '2022-04-29 20:34:21', NULL, '2022-04-29 20:34:21', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1900, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_merchant"]}', '2022-04-29 21:28:40', 1210, 500, 'ServiceException: 表定义已经存在', 'null', NULL, '2022-04-29 21:28:41', NULL, '2022-04-29 21:28:41', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1901, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_log"]}', '2022-04-29 21:28:49', 576, 500, 'ServiceException: 表定义已经存在', 'null', NULL, '2022-04-29 21:28:50', NULL, '2022-04-29 21:28:50', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1902, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["pay_notify_log"]}', '2022-04-29 21:29:10', 16854, 500, 'ServiceException: 表定义已经存在', 'null', NULL, '2022-04-29 21:29:27', NULL, '2022-04-29 21:29:27', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1904, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":79}', '2022-04-29 21:29:34', 35, 0, '', 'true', NULL, '2022-04-29 21:29:34', NULL, '2022-04-29 21:29:34', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1905, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-29 21:29:40', 124688, 0, '', '[80]', NULL, '2022-04-29 21:31:44', NULL, '2022-04-29 21:31:44', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1906, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":80}', '2022-04-29 21:36:53', 52, 0, '', 'true', NULL, '2022-04-29 21:36:53', NULL, '2022-04-29 21:36:53', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1907, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-29 21:36:58', 43010, 0, '', '[81]', NULL, '2022-04-29 21:37:41', NULL, '2022-04-29 21:37:41', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1908, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":81}', '2022-04-29 21:37:52', 33, 0, '', 'true', NULL, '2022-04-29 21:37:52', NULL, '2022-04-29 21:37:52', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1909, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-29 21:39:04', 46584, 0, '', '[82]', NULL, '2022-04-29 21:39:51', NULL, '2022-04-29 21:39:51', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1910, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-29 21:39:57', 49, 500, 'ServiceException: 表定义已经存在', 'null', NULL, '2022-04-29 21:39:57', NULL, '2022-04-29 21:39:57', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1911, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":82}', '2022-04-29 21:40:37', 34, 0, '', 'true', NULL, '2022-04-29 21:40:37', NULL, '2022-04-29 21:40:37', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1912, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-29 21:41:15', 148, 0, '', '[83]', NULL, '2022-04-29 21:41:15', NULL, '2022-04-29 21:41:15', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1913, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":83}', '2022-04-29 21:42:16', 33, 0, '', 'true', NULL, '2022-04-29 21:42:16', NULL, '2022-04-29 21:42:16', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1914, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-29 21:42:22', 30578, 0, '', '[84]', NULL, '2022-04-29 21:42:53', NULL, '2022-04-29 21:42:53', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1915, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":84}', '2022-04-29 21:45:19', 34, 0, '', 'true', NULL, '2022-04-29 21:45:19', NULL, '2022-04-29 21:45:19', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1916, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-29 21:45:25', 23558, 0, '', '[85]', NULL, '2022-04-29 21:45:49', NULL, '2022-04-29 21:45:49', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1917, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":85}', '2022-04-29 21:46:03', 37, 0, '', 'true', NULL, '2022-04-29 21:46:03', NULL, '2022-04-29 21:46:03', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1918, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-29 21:46:10', 73377, 0, '', '[86]', NULL, '2022-04-29 21:47:24', NULL, '2022-04-29 21:47:24', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1919, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_oa_leave"]}', '2022-04-29 21:48:22', 25839, 0, '', '[87]', NULL, '2022-04-29 21:48:48', NULL, '2022-04-29 21:48:48', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1920, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":86}', '2022-04-29 21:50:13', 39, 0, '', 'true', NULL, '2022-04-29 21:50:13', NULL, '2022-04-29 21:50:13', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1921, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":87}', '2022-04-29 21:50:15', 33, 0, '', 'true', NULL, '2022-04-29 21:50:15', NULL, '2022-04-29 21:50:15', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1922, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(List)', '{"tableNames":["bpm_form"]}', '2022-04-29 22:04:47', 176, 0, '', '[88]', NULL, '2022-04-29 22:04:47', NULL, '2022-04-29 22:04:47', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1923, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,同步数据库的表和字段定义', 3, '', '', 'PUT', '/admin-api/infra/codegen/sync-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.syncCodegenFromDB(Long)', '{"tableId":88}', '2022-04-29 22:04:53', 659, 500, 'ServiceException: 同步失败,不存在改变', 'null', NULL, '2022-04-29 22:04:54', NULL, '2022-04-29 22:04:54', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1924, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,同步数据库的表和字段定义', 3, '', '', 'PUT', '/admin-api/infra/codegen/sync-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.syncCodegenFromDB(Long)', '{"tableId":88}', '2022-04-29 22:05:23', 107, 500, 'ServiceException: 同步失败,不存在改变', 'null', NULL, '2022-04-29 22:05:23', NULL, '2022-04-29 22:05:23', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1925, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,同步数据库的表和字段定义', 3, '', '', 'PUT', '/admin-api/infra/codegen/sync-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.syncCodegenFromDB(Long)', '{"tableId":88}', '2022-04-29 22:05:44', 82, 0, '', 'true', NULL, '2022-04-29 22:05:44', NULL, '2022-04-29 22:05:44', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1926, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":88}', '2022-04-29 22:06:17', 40, 0, '', 'true', NULL, '2022-04-29 22:06:17', NULL, '2022-04-29 22:06:17', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1927, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenCreateListFromDBReqVO)', '{"reqVO":{"dataSourceConfigId":0,"tableNames":["bpm_form"]}}', '2022-04-29 22:30:44', 145, 500, 'SQLException: Field ''data_source_config_id'' doesn''t have a default value', 'null', NULL, '2022-04-29 22:30:44', NULL, '2022-04-29 22:30:44', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1928, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenCreateListFromDBReqVO)', '{"reqVO":{"dataSourceConfigId":0,"tableNames":["bpm_form"]}}', '2022-04-29 22:33:54', 190, 0, '', '[89]', NULL, '2022-04-29 22:33:54', NULL, '2022-04-29 22:33:54', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1929, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenCreateListFromDBReqVO)', '{"reqVO":{"dataSourceConfigId":9,"tableNames":["bpm_oa_leave"]}}', '2022-04-29 22:34:12', 197, 0, '', '[90]', NULL, '2022-04-29 22:34:12', NULL, '2022-04-29 22:34:12', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1930, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenListFromDB(CodegenCreateListFromDBReqVO)', '{"reqVO":{"dataSourceConfigId":9,"tableNames":["bpm_form"]}}', '2022-04-29 22:56:11', 213, 0, '', '[91]', NULL, '2022-04-29 22:56:11', NULL, '2022-04-29 22:56:11', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1931, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":91}', '2022-04-29 22:56:21', 46, 0, '', 'true', NULL, '2022-04-29 22:56:21', NULL, '2022-04-29 22:56:21', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1932, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":90}', '2022-04-29 22:56:23', 31, 0, '', 'true', NULL, '2022-04-29 22:56:24', NULL, '2022-04-29 22:56:24', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1933, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":89}', '2022-04-29 22:56:25', 34, 0, '', 'true', NULL, '2022-04-29 22:56:25', NULL, '2022-04-29 22:56:25', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1934, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenList(CodegenCreateListReqVO)', '{"reqVO":{"dataSourceConfigId":0,"tableNames":["bpm_form"]}}', '2022-04-29 23:12:12', 171, 0, '', '[92]', NULL, '2022-04-29 23:12:12', NULL, '2022-04-29 23:12:12', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1935, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,同步数据库的表和字段定义', 3, '', '', 'PUT', '/admin-api/infra/codegen/sync-from-db', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.syncCodegenFromDB(Long)', '{"tableId":92}', '2022-04-29 23:12:16', 79, 500, 'ServiceException: 同步失败,不存在改变', 'null', NULL, '2022-04-29 23:12:16', NULL, '2022-04-29 23:12:16', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1936, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenList(CodegenCreateListReqVO)', '{"reqVO":{"dataSourceConfigId":0,"tableNames":["bpm_task_assign_rule"]}}', '2022-04-29 23:13:55', 130, 0, '', '[93]', NULL, '2022-04-29 23:13:56', NULL, '2022-04-29 23:13:56', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1937, '', 1, 2, '管理后台 - 代码生成器', '删除数据库的表和字段定义', 4, '', '', 'DELETE', '/admin-api/infra/codegen/delete', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.deleteCodegen(Long)', '{"tableId":93}', '2022-04-29 23:13:59', 42, 0, '', 'true', NULL, '2022-04-29 23:13:59', NULL, '2022-04-29 23:13:59', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1938, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenList(CodegenCreateListReqVO)', '{"reqVO":{"dataSourceConfigId":9,"tableNames":["bpm_form"]}}', '2022-04-29 23:14:46', 180, 0, '', '[94]', NULL, '2022-04-29 23:14:47', NULL, '2022-04-29 23:14:47', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1939, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenList(CodegenCreateListReqVO)', '{"reqVO":{"dataSourceConfigId":0,"tableNames":["bpm_oa_leave"]}}', '2022-04-29 23:18:59', 142, 0, '', '[95]', NULL, '2022-04-29 23:18:59', NULL, '2022-04-29 23:18:59', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1940, '', 1, 2, '管理后台 - 代码生成器', '基于数据库的表结构,创建代码生成器的表和字段定义', 2, '', '', 'POST', '/admin-api/infra/codegen/create-list', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.codegen.CodegenController.createCodegenList(CodegenCreateListReqVO)', '{"reqVO":{"dataSourceConfigId":0,"tableNames":["system_user_session"]}}', '2022-04-29 23:48:56', 162, 0, '', '[96]', NULL, '2022-04-29 23:48:56', NULL, '2022-04-29 23:48:56', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1941, '', 1, 2, '管理后台 - 用户', '新增用户', 2, '', '', 'POST', '/admin-api/system/user/create', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.system.controller.admin.user.UserController.createUser(UserCreateReqVO)', '{"reqVO":{"username":"admin","nickname":"1","remark":"11","deptId":100,"postIds":[],"email":"","mobile":"","sex":null,"avatar":null,"password":"admin123"}}', '2022-04-30 02:55:34', 51, 500, 'ServiceException: 用户账号已经存在', 'null', NULL, '2022-04-30 02:55:34', NULL, '2022-04-30 02:55:34', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1942, '', 1, 2, '管理后台 - 用户', '新增用户', 2, '', '', 'POST', '/admin-api/system/user/create', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.system.controller.admin.user.UserController.createUser(UserCreateReqVO)', '{"reqVO":{"username":"aotemane","nickname":"1","remark":"11","deptId":100,"postIds":[],"email":"","mobile":"","sex":null,"avatar":null,"password":"admin123"}}', '2022-04-30 02:55:43', 169, 0, '', '115', NULL, '2022-04-30 02:55:43', NULL, '2022-04-30 02:55:43', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (11, '', 1, 2, '管理后台 - 定时任务', '更新定时任务', 3, '', '', 'PUT', '/admin-api/infra/job/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.infra.controller.admin.job.JobController.updateJob(JobUpdateReqVO)', '{"updateReqVO":{"name":"用户 Session 超时 Job","handlerParam":null,"cronExpression":"0 * * * * ? *","retryCount":3,"retryInterval":2000,"monitorTimeout":0,"id":2}}', '2022-04-30 22:22:06.027', 48, 0, '', 'true', NULL, '2022-04-30 22:22:06.08', NULL, '2022-04-30 22:22:06.08', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (12, '', 1, 2, '管理后台 - 流程模型', '新建模型', 2, '', '', 'POST', '/admin-api/bpm/model/create', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.bpm.controller.admin.definition.BpmModelController.createModel(BpmModelCreateReqVO)', '{"createRetVO":{"key":"oa_leave","name":"OA 请假","description":null}}', '2022-04-30 22:31:09.052', 24, 0, '', '"2d3151fa-c892-11ec-a15b-3e2374911326"', NULL, '2022-04-30 22:31:09.096', NULL, '2022-04-30 22:31:09.096', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (13, '', 1, 2, '管理后台 - 流程模型', '修改模型', 3, '', '', 'PUT', '/admin-api/bpm/model/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.bpm.controller.admin.definition.BpmModelController.updateModel(BpmModelUpdateReqVO)', '{"modelVO":{"id":"2d3151fa-c892-11ec-a15b-3e2374911326","name":"OA 请假","description":null,"category":null,"bpmnXml":"\nFlow_0804gmoFlow_0804gmoFlow_0cx479xFlow_0cx479x","formType":null,"formId":null,"formCustomCreatePath":null,"formCustomViewPath":null}}', '2022-04-30 22:32:42.944', 26, 0, '', 'true', NULL, '2022-04-30 22:32:42.976', NULL, '2022-04-30 22:32:42.976', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (14, '', 1, 2, '管理后台 - 任务分配规则', '创建任务分配规则', 2, '', '', 'POST', '/admin-api/bpm/task-assign-rule/create', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.bpm.controller.admin.definition.BpmTaskAssignRuleController.createTaskAssignRule(BpmTaskAssignRuleCreateReqVO)', '{"reqVO":{"type":30,"options":[1],"modelId":"2d3151fa-c892-11ec-a15b-3e2374911326","taskDefinitionKey":"task01"}}', '2022-04-30 22:32:54.958', 55, 0, '', '0', NULL, '2022-04-30 22:32:55.018', NULL, '2022-04-30 22:32:55.018', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (15, '', 1, 2, '管理后台 - 流程模型', '部署模型', 2, '', '', 'POST', '/admin-api/bpm/model/deploy', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.bpm.controller.admin.definition.BpmModelController.deployModel(String)', '{"id":"2d3151fa-c892-11ec-a15b-3e2374911326"}', '2022-04-30 22:32:58.426', 12, 500, 'ServiceException: 部署流程失败,原因:流程表单未配置,请点击【修改流程】按钮进行配置', 'null', NULL, '2022-04-30 22:32:58.443', NULL, '2022-04-30 22:32:58.443', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (16, '', 1, 2, '管理后台 - 流程模型', '修改模型', 3, '', '', 'PUT', '/admin-api/bpm/model/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.bpm.controller.admin.definition.BpmModelController.updateModel(BpmModelUpdateReqVO)', '{"modelVO":{"id":"2d3151fa-c892-11ec-a15b-3e2374911326","name":"OA 请假","description":null,"category":"2","bpmnXml":null,"formType":20,"formId":null,"formCustomCreatePath":"/bpm/oa/leave/create","formCustomViewPath":"/bpm/oa/leave/detail"}}', '2022-04-30 22:33:35.447', 11, 0, '', 'true', NULL, '2022-04-30 22:33:35.465', NULL, '2022-04-30 22:33:35.465', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (17, '', 1, 2, '管理后台 - 流程模型', '部署模型', 2, '', '', 'POST', '/admin-api/bpm/model/deploy', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.bpm.controller.admin.definition.BpmModelController.deployModel(String)', '{"id":"2d3151fa-c892-11ec-a15b-3e2374911326"}', '2022-04-30 22:33:39.231', 1717, 500, 'ServiceException: 流程定义的标识期望是(oa_leave),当前是(flowable_01),请修改 BPMN 流程图', 'null', NULL, '2022-04-30 22:33:40.957', NULL, '2022-04-30 22:33:40.957', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (18, '', 1, 2, '管理后台 - 流程模型', '修改模型', 3, '', '', 'PUT', '/admin-api/bpm/model/update', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.bpm.controller.admin.definition.BpmModelController.updateModel(BpmModelUpdateReqVO)', '{"modelVO":{"id":"2d3151fa-c892-11ec-a15b-3e2374911326","name":"OA 请假","description":null,"category":"2","bpmnXml":"\nFlow_0804gmoFlow_0804gmoFlow_0cx479xFlow_0cx479x","formType":20,"formId":null,"formCustomCreatePath":"/bpm/oa/leave/create","formCustomViewPath":"/bpm/oa/leave/detail"}}', '2022-04-30 22:33:56.293', 15, 0, '', 'true', NULL, '2022-04-30 22:33:56.314', NULL, '2022-04-30 22:33:56.314', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (19, '', 1, 2, '管理后台 - 流程模型', '部署模型', 2, '', '', 'POST', '/admin-api/bpm/model/deploy', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.bpm.controller.admin.definition.BpmModelController.deployModel(String)', '{"id":"2d3151fa-c892-11ec-a15b-3e2374911326"}', '2022-04-30 22:34:00.157', 251, 0, '', 'true', NULL, '2022-04-30 22:34:00.415', NULL, '2022-04-30 22:34:00.415', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (20, '', 1, 2, '管理后台 - OA 请假申请', '创建请求申请', 2, '', '', 'POST', '/admin-api/bpm/oa/leave/create', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.bpm.controller.admin.oa.BpmOALeaveController.createLeave(BpmOALeaveCreateReqVO)', '{"createReqVO":{"startTime":1649001600000,"endTime":1650297600000,"type":2,"reason":"222","endTimeValid":true}}', '2022-04-30 22:34:16.571', 45, 500, 'PSQLException: ERROR: column "type" is of type smallint but expression is of type character varying - 建议:You will need to rewrite or cast the expression. - 位置:162', 'null', NULL, '2022-04-30 22:34:16.622', NULL, '2022-04-30 22:34:16.622', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (21, '', 1, 2, '管理后台 - OA 请假申请', '创建请求申请', 2, '', '', 'POST', '/admin-api/bpm/oa/leave/create', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.bpm.controller.admin.oa.BpmOALeaveController.createLeave(BpmOALeaveCreateReqVO)', '{"createReqVO":{"startTime":1649001600000,"endTime":1650297600000,"type":2,"reason":"222","endTimeValid":true}}', '2022-04-30 22:37:24.559', 596, 0, '', '1', NULL, '2022-04-30 22:37:25.175', NULL, '2022-04-30 22:37:25.175', 0, 1); -INSERT INTO "public"."system_operate_log" ("id", "trace_id", "user_id", "user_type", "module", "name", "type", "content", "exts", "request_method", "request_url", "user_ip", "user_agent", "java_method", "java_method_args", "start_time", "duration", "result_code", "result_msg", "result_data", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (22, '', 1, 2, '管理后台 - 流程任务实例', '通过任务', 3, '', '', 'PUT', '/admin-api/bpm/task/approve', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', 'CommonResult cn.iocoder.yudao.module.bpm.controller.admin.task.BpmTaskController.approveTask(BpmTaskApproveReqVO)', '{"reqVO":{"id":"0d2f167e-c893-11ec-8a1d-3e2374911326","comment":"A"}}', '2022-04-30 22:40:30.297', 401, 0, '', 'true', NULL, '2022-04-30 22:40:30.721', NULL, '2022-04-30 22:40:30.721', 0, 1); COMMIT; -- ---------------------------- -- Table structure for system_post -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_post"; -CREATE TABLE "public"."system_post" ( +DROP TABLE IF EXISTS "system_post"; +CREATE TABLE "system_post" ( "id" int8 NOT NULL DEFAULT 0, "code" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, "name" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, @@ -19382,39 +2903,34 @@ CREATE TABLE "public"."system_post" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_post" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_post"."id" IS '岗位ID'; -COMMENT ON COLUMN "public"."system_post"."code" IS '岗位编码'; -COMMENT ON COLUMN "public"."system_post"."name" IS '岗位名称'; -COMMENT ON COLUMN "public"."system_post"."sort" IS '显示顺序'; -COMMENT ON COLUMN "public"."system_post"."status" IS '状态(0正常 1停用)'; -COMMENT ON COLUMN "public"."system_post"."remark" IS '备注'; -COMMENT ON COLUMN "public"."system_post"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_post"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_post"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_post"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_post"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."system_post"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."system_post" IS '岗位信息表'; +COMMENT ON COLUMN "system_post"."id" IS '岗位ID'; +COMMENT ON COLUMN "system_post"."code" IS '岗位编码'; +COMMENT ON COLUMN "system_post"."name" IS '岗位名称'; +COMMENT ON COLUMN "system_post"."sort" IS '显示顺序'; +COMMENT ON COLUMN "system_post"."status" IS '状态(0正常 1停用)'; +COMMENT ON COLUMN "system_post"."remark" IS '备注'; +COMMENT ON COLUMN "system_post"."creator" IS '创建者'; +COMMENT ON COLUMN "system_post"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_post"."updater" IS '更新者'; +COMMENT ON COLUMN "system_post"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_post"."deleted" IS '是否删除'; +COMMENT ON COLUMN "system_post"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "system_post" IS '岗位信息表'; -- ---------------------------- -- Records of system_post -- ---------------------------- BEGIN; -INSERT INTO "public"."system_post" ("id", "code", "name", "sort", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1, 'ceo', '董事长', 1, 0, '', 'admin', '2021-01-06 17:03:48', '1', '2022-04-19 16:53:39', 0, 1); -INSERT INTO "public"."system_post" ("id", "code", "name", "sort", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (2, 'se', '项目经理', 2, 0, '', 'admin', '2021-01-05 17:03:48', '1', '2021-12-12 10:47:47', 0, 1); -INSERT INTO "public"."system_post" ("id", "code", "name", "sort", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (3, 'hr', '人力资源', 3, 0, '', 'admin', '2021-01-05 17:03:48', '', '2022-04-19 04:56:16', 1, 1); -INSERT INTO "public"."system_post" ("id", "code", "name", "sort", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (4, 'user', '普通员工', 4, 0, '111', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 00:59:35', 0, 1); -INSERT INTO "public"."system_post" ("id", "code", "name", "sort", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (5, 'test', '测试岗位', 0, 1, '132', '', '2021-01-07 15:07:44', '', '2021-12-12 10:47:53', 1, 1); -INSERT INTO "public"."system_post" ("id", "code", "name", "sort", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (6, '2', '1', 0, 0, NULL, '1', '2022-04-19 18:31:07', '1', '2022-04-19 11:36:22', 1, 1); -INSERT INTO "public"."system_post" ("id", "code", "name", "sort", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (7, 'xx', 'xx', 0, 0, NULL, '1', '2022-04-19 20:11:56', '1', '2022-04-19 12:13:35', 1, 1); +INSERT INTO "system_post" ("id", "code", "name", "sort", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1, 'ceo', '董事长', 1, 0, '', 'admin', '2021-01-06 17:03:48', '1', '2022-04-19 16:53:39', 0, 1); +INSERT INTO "system_post" ("id", "code", "name", "sort", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (2, 'se', '项目经理', 2, 0, '', 'admin', '2021-01-05 17:03:48', '1', '2021-12-12 10:47:47', 0, 1); +INSERT INTO "system_post" ("id", "code", "name", "sort", "status", "remark", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (4, 'user', '普通员工', 4, 0, '111', 'admin', '2021-01-05 17:03:48', '1', '2022-04-20 00:59:35', 0, 1); COMMIT; -- ---------------------------- -- Table structure for system_role -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_role"; -CREATE TABLE "public"."system_role" ( +DROP TABLE IF EXISTS "system_role"; +CREATE TABLE "system_role" ( "id" int8 NOT NULL, "name" varchar(30) COLLATE "pg_catalog"."default" NOT NULL, "code" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, @@ -19432,41 +2948,40 @@ CREATE TABLE "public"."system_role" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_role" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_role"."id" IS '角色ID'; -COMMENT ON COLUMN "public"."system_role"."name" IS '角色名称'; -COMMENT ON COLUMN "public"."system_role"."code" IS '角色权限字符串'; -COMMENT ON COLUMN "public"."system_role"."sort" IS '显示顺序'; -COMMENT ON COLUMN "public"."system_role"."data_scope" IS '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)'; -COMMENT ON COLUMN "public"."system_role"."data_scope_dept_ids" IS '数据范围(指定部门数组)'; -COMMENT ON COLUMN "public"."system_role"."status" IS '角色状态(0正常 1停用)'; -COMMENT ON COLUMN "public"."system_role"."type" IS '角色类型'; -COMMENT ON COLUMN "public"."system_role"."remark" IS '备注'; -COMMENT ON COLUMN "public"."system_role"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_role"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_role"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_role"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_role"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."system_role"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."system_role" IS '角色信息表'; +COMMENT ON COLUMN "system_role"."id" IS '角色ID'; +COMMENT ON COLUMN "system_role"."name" IS '角色名称'; +COMMENT ON COLUMN "system_role"."code" IS '角色权限字符串'; +COMMENT ON COLUMN "system_role"."sort" IS '显示顺序'; +COMMENT ON COLUMN "system_role"."data_scope" IS '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)'; +COMMENT ON COLUMN "system_role"."data_scope_dept_ids" IS '数据范围(指定部门数组)'; +COMMENT ON COLUMN "system_role"."status" IS '角色状态(0正常 1停用)'; +COMMENT ON COLUMN "system_role"."type" IS '角色类型'; +COMMENT ON COLUMN "system_role"."remark" IS '备注'; +COMMENT ON COLUMN "system_role"."creator" IS '创建者'; +COMMENT ON COLUMN "system_role"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_role"."updater" IS '更新者'; +COMMENT ON COLUMN "system_role"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_role"."deleted" IS '是否删除'; +COMMENT ON COLUMN "system_role"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "system_role" IS '角色信息表'; -- ---------------------------- -- Records of system_role -- ---------------------------- BEGIN; -INSERT INTO "public"."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, '超级管理员', 'super_admin', 1, 1, '', 0, 1, '超级管理员', 'admin', '2021-01-05 17:03:48', '', '2022-02-22 05:08:21', 0, 1); -INSERT INTO "public"."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, '普通角色', 'common', 2, 2, '', 0, 1, '普通角色', 'admin', '2021-01-05 17:03:48', '', '2022-02-22 05:08:20', 0, 1); -INSERT INTO "public"."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, '测试账号', 'test', 0, 1, '[]', 0, 2, '132', '', '2021-01-06 13:49:35', '1', '2022-04-01 21:37:13', 0, 1); -INSERT INTO "public"."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, '租户管理员', 'tenant_admin', 0, 1, '', 0, 1, '系统自动生成', '1', '2022-02-22 00:56:14', '1', '2022-02-22 00:56:14', 0, 121); -INSERT INTO "public"."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 (110, '测试角色', 'test', 0, 1, '[]', 0, 2, '嘿嘿', '110', '2022-02-23 00:14:34', '110', '2022-02-23 13:14:58', 0, 121); -INSERT INTO "public"."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, '租户管理员', 'tenant_admin', 0, 1, '', 0, 1, '系统自动生成', '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); +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, '超级管理员', 'super_admin', 1, 1, '', 0, 1, '超级管理员', 'admin', '2021-01-05 17:03:48', '', '2022-02-22 05:08:21', 0, 1); +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, '普通角色', 'common', 2, 2, '', 0, 1, '普通角色', 'admin', '2021-01-05 17:03:48', '', '2022-02-22 05:08:20', 0, 1); +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, '测试账号', 'test', 0, 1, '[]', 0, 2, '132', '', '2021-01-06 13:49:35', '1', '2022-04-01 21:37:13', 0, 1); +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, '租户管理员', 'tenant_admin', 0, 1, '', 0, 1, '系统自动生成', '1', '2022-02-22 00:56:14', '1', '2022-02-22 00:56:14', 0, 121); +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 (110, '测试角色', 'test', 0, 1, '[]', 0, 2, '嘿嘿', '110', '2022-02-23 00:14:34', '110', '2022-02-23 13:14:58', 0, 121); +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, '租户管理员', 'tenant_admin', 0, 1, '', 0, 1, '系统自动生成', '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); COMMIT; -- ---------------------------- -- Table structure for system_role_menu -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_role_menu"; -CREATE TABLE "public"."system_role_menu" ( +DROP TABLE IF EXISTS "system_role_menu"; +CREATE TABLE "system_role_menu" ( "id" int8 NOT NULL, "role_id" int8 NOT NULL, "menu_id" int8 NOT NULL, @@ -19478,1463 +2993,219 @@ CREATE TABLE "public"."system_role_menu" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_role_menu" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_role_menu"."id" IS '自增编号'; -COMMENT ON COLUMN "public"."system_role_menu"."role_id" IS '角色ID'; -COMMENT ON COLUMN "public"."system_role_menu"."menu_id" IS '菜单ID'; -COMMENT ON COLUMN "public"."system_role_menu"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_role_menu"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_role_menu"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_role_menu"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_role_menu"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."system_role_menu"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."system_role_menu" IS '角色和菜单关联表'; +COMMENT ON COLUMN "system_role_menu"."id" IS '自增编号'; +COMMENT ON COLUMN "system_role_menu"."role_id" IS '角色ID'; +COMMENT ON COLUMN "system_role_menu"."menu_id" IS '菜单ID'; +COMMENT ON COLUMN "system_role_menu"."creator" IS '创建者'; +COMMENT ON COLUMN "system_role_menu"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_role_menu"."updater" IS '更新者'; +COMMENT ON COLUMN "system_role_menu"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_role_menu"."deleted" IS '是否删除'; +COMMENT ON COLUMN "system_role_menu"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "system_role_menu" IS '角色和菜单关联表'; -- ---------------------------- -- Records of system_role_menu -- ---------------------------- BEGIN; -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (261, 109, 1024, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (262, 109, 1025, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (263, 109, 1, '1', '2022-02-22 00:56:14', '1', '2022-02-22 00:56:14', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (264, 109, 1026, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (265, 109, 1027, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (266, 109, 1028, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (267, 109, 1029, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (268, 109, 1030, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (269, 109, 1036, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (270, 109, 1037, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (271, 109, 1038, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (272, 109, 1039, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (273, 109, 1040, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (274, 109, 1042, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (275, 109, 1043, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (276, 109, 1045, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (277, 109, 1046, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (278, 109, 1048, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (279, 109, 1093, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (280, 109, 1094, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (281, 109, 1095, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (282, 109, 1096, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (283, 109, 1097, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (284, 109, 1098, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (285, 109, 1100, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (286, 109, 1101, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (287, 109, 1102, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (288, 109, 1103, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (289, 109, 1104, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (290, 109, 1105, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (291, 109, 1106, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (292, 109, 1107, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (293, 109, 1108, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (294, 109, 1109, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (295, 109, 1110, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (296, 109, 1111, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (297, 109, 1112, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (298, 109, 1113, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (299, 109, 1114, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (300, 109, 1115, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (301, 109, 102, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (302, 109, 103, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (303, 109, 104, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (304, 109, 105, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (305, 109, 107, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (306, 109, 108, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (307, 109, 109, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (308, 109, 500, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (309, 109, 1013, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (310, 109, 501, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (311, 109, 1014, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (312, 109, 1015, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (313, 109, 1016, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (314, 109, 1017, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (315, 109, 1018, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (316, 109, 1019, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (317, 109, 1020, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (318, 109, 1021, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (319, 109, 1022, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (320, 109, 1023, '1', '2022-02-22 00:56:14', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (321, 109, 1161, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (322, 109, 1162, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (323, 109, 1163, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (324, 109, 1164, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (325, 109, 1165, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (326, 109, 1166, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (327, 109, 1173, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (328, 109, 1174, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (329, 109, 1175, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (330, 109, 1176, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (331, 109, 1177, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (332, 109, 1178, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (333, 109, 1179, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (334, 109, 1180, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (335, 109, 1181, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (336, 109, 1182, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (337, 109, 1183, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (338, 109, 1184, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (339, 109, 1117, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (340, 109, 1126, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (341, 109, 1127, '1', '2022-02-22 01:02:42', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (342, 109, 1128, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (343, 109, 1129, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (344, 109, 1130, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (345, 109, 1131, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (346, 109, 1132, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (347, 109, 1133, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (348, 109, 1134, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (349, 109, 1135, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (350, 109, 1136, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (351, 109, 1137, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (352, 109, 1150, '1', '2022-02-22 01:02:43', '1', '2022-02-21 17:05:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (353, 109, 2, '1', '2022-02-22 01:06:37', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (354, 109, 1031, '1', '2022-02-22 01:06:37', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (355, 109, 1032, '1', '2022-02-22 01:06:37', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (356, 109, 1033, '1', '2022-02-22 01:06:37', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (357, 109, 1034, '1', '2022-02-22 01:06:37', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (358, 109, 1035, '1', '2022-02-22 01:06:38', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (359, 109, 1050, '1', '2022-02-22 01:06:38', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (360, 109, 1051, '1', '2022-02-22 01:06:38', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (361, 109, 1052, '1', '2022-02-22 01:06:38', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (362, 109, 1053, '1', '2022-02-22 01:06:39', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (363, 109, 1054, '1', '2022-02-22 01:06:39', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (364, 109, 1066, '1', '2022-02-22 01:06:39', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (365, 109, 1067, '1', '2022-02-22 01:06:39', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (366, 109, 1075, '1', '2022-02-22 01:06:40', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (367, 109, 1077, '1', '2022-02-22 01:06:40', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (368, 109, 1078, '1', '2022-02-22 01:06:40', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (369, 109, 1082, '1', '2022-02-22 01:06:40', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (370, 109, 1083, '1', '2022-02-22 01:06:40', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (371, 109, 1084, '1', '2022-02-22 01:06:41', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (372, 109, 1085, '1', '2022-02-22 01:06:41', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (373, 109, 1086, '1', '2022-02-22 01:06:41', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (374, 109, 1087, '1', '2022-02-22 01:06:41', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (375, 109, 1088, '1', '2022-02-22 01:06:42', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (376, 109, 1089, '1', '2022-02-22 01:06:42', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (377, 109, 1090, '1', '2022-02-22 01:06:42', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (378, 109, 1091, '1', '2022-02-22 01:06:42', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (379, 109, 1092, '1', '2022-02-22 01:06:42', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (380, 109, 1116, '1', '2022-02-22 01:06:43', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (381, 109, 1117, '1', '2022-02-22 01:06:43', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (382, 109, 1126, '1', '2022-02-22 01:06:43', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (383, 109, 1127, '1', '2022-02-22 01:06:43', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (384, 109, 1128, '1', '2022-02-22 01:06:43', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (385, 109, 1129, '1', '2022-02-22 01:06:44', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (386, 109, 1130, '1', '2022-02-22 01:06:44', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (387, 109, 106, '1', '2022-02-22 01:06:44', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (388, 109, 1131, '1', '2022-02-22 01:06:44', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (389, 109, 1132, '1', '2022-02-22 01:06:45', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (390, 109, 1133, '1', '2022-02-22 01:06:45', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (391, 109, 1134, '1', '2022-02-22 01:06:45', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (392, 109, 110, '1', '2022-02-22 01:06:45', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (393, 109, 1135, '1', '2022-02-22 01:06:46', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (394, 109, 111, '1', '2022-02-22 01:06:46', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (395, 109, 1136, '1', '2022-02-22 01:06:46', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (396, 109, 112, '1', '2022-02-22 01:06:46', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (397, 109, 1137, '1', '2022-02-22 01:06:46', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (398, 109, 113, '1', '2022-02-22 01:06:47', '1', '2022-02-22 16:10:58', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (399, 109, 1150, '1', '2022-02-22 01:06:47', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (400, 109, 1161, '1', '2022-02-22 01:06:47', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (401, 109, 1162, '1', '2022-02-22 01:06:47', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (402, 109, 1163, '1', '2022-02-22 01:06:48', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (403, 109, 1164, '1', '2022-02-22 01:06:48', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (404, 109, 1165, '1', '2022-02-22 01:06:48', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (405, 109, 1166, '1', '2022-02-22 01:06:48', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (406, 109, 1173, '1', '2022-02-22 01:06:49', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (407, 109, 1174, '1', '2022-02-22 01:06:49', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (408, 109, 1175, '1', '2022-02-22 01:06:49', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (409, 109, 1176, '1', '2022-02-22 01:06:49', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (410, 109, 1177, '1', '2022-02-22 01:06:50', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (411, 109, 1178, '1', '2022-02-22 01:06:50', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (412, 109, 1179, '1', '2022-02-22 01:06:50', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (413, 109, 1180, '1', '2022-02-22 01:06:50', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (414, 109, 1181, '1', '2022-02-22 01:06:50', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (415, 109, 1182, '1', '2022-02-22 01:06:51', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (416, 109, 1183, '1', '2022-02-22 01:06:51', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (417, 109, 1184, '1', '2022-02-22 01:06:51', '1', '2022-02-22 16:11:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (418, 109, 3, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (419, 109, 1056, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (420, 109, 1057, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (421, 109, 1058, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (422, 109, 1059, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (423, 109, 1060, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (424, 109, 1070, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (425, 109, 1071, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (426, 109, 1072, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (427, 109, 1073, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (428, 109, 1074, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (429, 109, 1076, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (430, 109, 114, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (431, 109, 115, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (432, 109, 116, '1', '2022-02-22 01:09:10', '1', '2022-02-22 16:10:28', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (433, 2, 1024, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (434, 2, 1, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (435, 2, 1025, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (436, 2, 1026, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (437, 2, 1027, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (438, 2, 1028, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (439, 2, 1029, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (440, 2, 1030, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (441, 2, 1036, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (442, 2, 1037, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (443, 2, 1038, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (444, 2, 1039, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (445, 2, 1040, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (446, 2, 1042, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (447, 2, 1043, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (448, 2, 1045, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (449, 2, 1046, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (450, 2, 1048, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (451, 2, 1063, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (452, 2, 1064, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (453, 2, 1065, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (454, 2, 1093, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (455, 2, 1094, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (456, 2, 1095, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (457, 2, 1096, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (458, 2, 1097, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (459, 2, 1098, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (460, 2, 1100, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (461, 2, 1101, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (462, 2, 1102, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (463, 2, 1103, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (464, 2, 1104, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (465, 2, 1105, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (466, 2, 1106, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (467, 2, 1107, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (468, 2, 1108, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (469, 2, 1109, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (470, 2, 1110, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (471, 2, 1111, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (472, 2, 1112, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (473, 2, 1113, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (474, 2, 1114, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (475, 2, 1115, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (476, 2, 1117, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (477, 2, 100, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (478, 2, 101, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (479, 2, 102, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (480, 2, 1126, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (481, 2, 103, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (482, 2, 1127, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (483, 2, 104, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (484, 2, 1128, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (485, 2, 105, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (486, 2, 1129, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (487, 2, 1130, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (488, 2, 107, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (489, 2, 1131, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (490, 2, 108, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (491, 2, 1132, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (492, 2, 109, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (493, 2, 1133, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (494, 2, 1134, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (495, 2, 1135, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (496, 2, 1136, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (497, 2, 1137, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (498, 2, 1138, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (499, 2, 1139, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (500, 2, 1140, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (501, 2, 1141, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (502, 2, 1142, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (503, 2, 1143, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (504, 2, 1150, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (505, 2, 1161, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (506, 2, 1162, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (507, 2, 1163, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (508, 2, 1164, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (509, 2, 1165, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (510, 2, 1166, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (511, 2, 1173, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (512, 2, 1174, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (513, 2, 1175, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (514, 2, 1176, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (515, 2, 1177, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (516, 2, 1178, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (517, 2, 1179, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (518, 2, 1180, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (519, 2, 1181, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (520, 2, 1182, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (521, 2, 1183, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (522, 2, 1184, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (523, 2, 1224, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (524, 2, 1225, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (525, 2, 1226, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (526, 2, 1227, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (527, 2, 1228, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (528, 2, 1229, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (529, 2, 1001, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (530, 2, 1002, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (531, 2, 1003, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (532, 2, 1004, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (533, 2, 1005, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (534, 2, 1006, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (535, 2, 1007, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (536, 2, 1008, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (537, 2, 1009, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (538, 2, 1010, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (539, 2, 1011, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (540, 2, 1012, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (541, 2, 500, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (542, 2, 1013, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (543, 2, 501, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (544, 2, 1014, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (545, 2, 1015, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (546, 2, 1016, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (547, 2, 1017, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (548, 2, 1018, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (549, 2, 1019, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (550, 2, 1020, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (551, 2, 1021, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (552, 2, 1022, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (553, 2, 1023, '1', '2022-02-22 13:09:12', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (554, 101, 1024, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (555, 101, 1, '1', '2022-02-22 13:09:55', '1', '2022-03-19 13:45:52', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (556, 101, 1025, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (557, 101, 1026, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (558, 101, 1027, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (559, 101, 1028, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (560, 101, 1029, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (561, 101, 1030, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (562, 101, 1036, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (563, 101, 1037, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (564, 101, 1038, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (565, 101, 1039, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (566, 101, 1040, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (567, 101, 1042, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (568, 101, 1043, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (569, 101, 1045, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (570, 101, 1046, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (571, 101, 1048, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (572, 101, 1063, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (573, 101, 1064, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (574, 101, 1065, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (575, 101, 1093, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (576, 101, 1094, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (577, 101, 1095, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (578, 101, 1224, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (579, 101, 1096, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (580, 101, 1225, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (581, 101, 1097, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (582, 101, 1226, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (583, 101, 1098, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (584, 101, 1227, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (585, 101, 1228, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (586, 101, 1100, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (587, 101, 1229, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (588, 101, 1101, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (589, 101, 1102, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (590, 101, 1103, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (591, 101, 1104, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (592, 101, 1105, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (593, 101, 1106, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (594, 101, 1107, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (595, 101, 1108, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (596, 101, 1109, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (597, 101, 1110, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (598, 101, 1111, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (599, 101, 1112, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (600, 101, 1113, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (601, 101, 1114, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (602, 101, 1115, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (603, 101, 100, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (604, 101, 101, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (605, 101, 102, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:12:01', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (606, 101, 103, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (607, 101, 104, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (608, 101, 1001, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (609, 101, 105, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (610, 101, 1002, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (611, 101, 1003, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (612, 101, 107, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (613, 101, 1004, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (614, 101, 108, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (615, 101, 1005, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (616, 101, 109, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (617, 101, 1006, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (618, 101, 1007, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (619, 101, 1008, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (620, 101, 1009, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (621, 101, 1138, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (622, 101, 1010, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (623, 101, 1139, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (624, 101, 1011, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (625, 101, 1140, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (626, 101, 1012, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (627, 101, 500, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (628, 101, 1141, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (629, 101, 1013, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (630, 101, 501, '1', '2022-02-22 13:09:55', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (631, 101, 1142, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (632, 101, 1014, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (633, 101, 1143, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (634, 101, 1015, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (635, 101, 1016, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (636, 101, 1017, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (637, 101, 1018, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (638, 101, 1019, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (639, 101, 1020, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (640, 101, 1021, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (641, 101, 1022, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (642, 101, 1023, '1', '2022-02-22 13:09:55', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (643, 101, 1117, '1', '2022-02-22 13:12:45', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (644, 101, 1126, '1', '2022-02-22 13:12:45', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (645, 101, 1127, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (646, 101, 1128, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (647, 101, 1129, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (648, 101, 1130, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (649, 101, 1131, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (650, 101, 1132, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (651, 101, 1133, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (652, 101, 1134, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (653, 101, 1135, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (654, 101, 1136, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (655, 101, 1137, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (656, 101, 1150, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (657, 101, 1161, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (658, 101, 1162, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (659, 101, 1163, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (660, 101, 1164, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (661, 101, 1165, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (662, 101, 1166, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (663, 101, 1173, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (664, 101, 1174, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (665, 101, 1175, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (666, 101, 1176, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (667, 101, 1177, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (668, 101, 1178, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (669, 101, 1179, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (670, 101, 1180, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (671, 101, 1181, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (672, 101, 1182, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (673, 101, 1183, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (674, 101, 1184, '1', '2022-02-22 13:12:45', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (675, 2, 2, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (676, 2, 1031, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (677, 2, 1032, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (678, 2, 1033, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (679, 2, 1034, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (680, 2, 1035, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (681, 2, 1050, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (682, 2, 1051, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (683, 2, 1052, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (684, 2, 1053, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (685, 2, 1054, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (686, 2, 1066, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (687, 2, 1067, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (688, 2, 1075, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (689, 2, 1077, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (690, 2, 1078, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (691, 2, 1082, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (692, 2, 1083, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (693, 2, 1084, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (694, 2, 1085, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (695, 2, 1086, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (696, 2, 1087, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (697, 2, 1088, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (698, 2, 1089, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (699, 2, 1090, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (700, 2, 1091, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (701, 2, 1092, '1', '2022-02-22 13:16:57', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (702, 2, 1116, '1', '2022-02-22 13:16:57', '1', '2022-04-17 04:35:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (703, 2, 106, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (704, 2, 110, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (705, 2, 111, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (706, 2, 112, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (707, 2, 113, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (708, 101, 2, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (709, 101, 1031, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (710, 101, 1032, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (711, 101, 1033, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (712, 101, 1034, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (713, 101, 1035, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (714, 101, 1050, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (715, 101, 1051, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (716, 101, 1052, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (717, 101, 1053, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (718, 101, 1054, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (719, 101, 1066, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (720, 101, 1067, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (721, 101, 1075, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (722, 101, 1077, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (723, 101, 1078, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (724, 101, 1082, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (725, 101, 1083, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (726, 101, 1084, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (727, 101, 1085, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (728, 101, 1086, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (729, 101, 1087, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (730, 101, 1088, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (731, 101, 1089, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (732, 101, 1090, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (733, 101, 1091, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (734, 101, 1092, '1', '2022-02-22 13:19:14', '1', '2022-02-23 12:03:57', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (735, 101, 1116, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (736, 101, 106, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (737, 101, 110, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (738, 101, 111, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (739, 101, 112, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (740, 101, 113, '1', '2022-02-22 13:19:14', '1', '2022-02-27 03:11:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (741, 109, 1161, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (742, 109, 1162, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (743, 109, 1163, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (744, 109, 1164, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (745, 109, 1165, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (746, 109, 1166, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (747, 109, 1173, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (748, 109, 1174, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (749, 109, 1175, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (750, 109, 1176, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (751, 109, 1177, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (752, 109, 1178, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (753, 109, 1179, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (754, 109, 1180, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (755, 109, 1181, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (756, 109, 1182, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (757, 109, 1183, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (758, 109, 1184, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (759, 109, 1117, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (760, 109, 1126, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (761, 109, 1127, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (762, 109, 1128, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (763, 109, 1129, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (764, 109, 1130, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (765, 109, 1131, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (766, 109, 1132, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (767, 109, 1133, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (768, 109, 1134, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (769, 109, 1135, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (770, 109, 1136, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (771, 109, 1137, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (772, 109, 1150, '1', '2022-02-23 00:12:12', '1', '2022-02-22 16:12:41', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (773, 109, 100, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:35:16', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (774, 109, 101, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:35:16', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (775, 109, 1063, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (776, 109, 1064, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (777, 109, 1001, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (778, 109, 1065, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (779, 109, 1002, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (780, 109, 1003, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (781, 109, 1004, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (782, 109, 1005, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (783, 109, 1006, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (784, 109, 1007, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (785, 109, 1008, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (786, 109, 1009, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (787, 109, 1010, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (788, 109, 1011, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (789, 109, 1012, '1', '2022-02-23 00:12:42', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (790, 109, 102, '1', '2022-02-23 00:13:04', '1', '2022-02-23 11:35:16', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (791, 109, 1013, '1', '2022-02-23 00:13:04', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (792, 109, 1014, '1', '2022-02-23 00:13:04', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (793, 109, 1015, '1', '2022-02-23 00:13:04', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (794, 109, 1016, '1', '2022-02-23 00:13:04', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (795, 109, 1179, '1', '2022-02-23 00:13:18', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (796, 109, 1180, '1', '2022-02-23 00:13:18', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (797, 109, 1181, '1', '2022-02-23 00:13:18', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (798, 109, 1117, '1', '2022-02-23 00:13:18', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (799, 109, 1182, '1', '2022-02-23 00:13:18', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (800, 109, 1183, '1', '2022-02-23 00:13:18', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (801, 109, 1184, '1', '2022-02-23 00:13:18', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (802, 109, 2, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (803, 109, 1031, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (804, 109, 1032, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (805, 109, 1161, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (806, 109, 1033, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (807, 109, 1162, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (808, 109, 1034, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (809, 109, 1163, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (810, 109, 1035, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (811, 109, 1164, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (812, 109, 1165, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (813, 109, 1166, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (814, 109, 1173, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (815, 109, 1174, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (816, 109, 1175, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (817, 109, 1176, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (818, 109, 1177, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (819, 109, 1178, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (820, 109, 1050, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (821, 109, 1051, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (822, 109, 1052, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (823, 109, 1053, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (824, 109, 1054, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (825, 109, 1066, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (826, 109, 1067, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (827, 109, 1075, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (828, 109, 1077, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (829, 109, 1078, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (830, 109, 1082, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (831, 109, 1083, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (832, 109, 1084, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (833, 109, 1085, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (834, 109, 1086, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (835, 109, 1087, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (836, 109, 1088, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (837, 109, 1089, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (838, 109, 1090, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (839, 109, 1091, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (840, 109, 1092, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (841, 109, 1116, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (842, 109, 1126, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (843, 109, 1127, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (844, 109, 1128, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (845, 109, 1129, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (846, 109, 1130, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (847, 109, 106, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (848, 109, 1131, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (849, 109, 1132, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (850, 109, 1133, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (851, 109, 1134, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (852, 109, 110, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (853, 109, 1135, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (854, 109, 111, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (855, 109, 1136, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (856, 109, 112, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (857, 109, 1137, '1', '2022-02-23 00:13:33', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (858, 109, 113, '1', '2022-02-23 00:13:34', '1', '2022-02-22 16:13:44', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (859, 109, 1150, '1', '2022-02-23 00:13:34', '1', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (860, 109, 1050, '1', '2022-02-23 00:14:05', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (861, 109, 1051, '1', '2022-02-23 00:14:05', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (862, 109, 1052, '1', '2022-02-23 00:14:05', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (863, 109, 1053, '1', '2022-02-23 00:14:05', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (864, 109, 1054, '1', '2022-02-23 00:14:05', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (865, 109, 1075, '1', '2022-02-23 00:14:05', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (866, 109, 1087, '1', '2022-02-23 00:14:05', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (867, 109, 110, '1', '2022-02-23 00:14:05', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (868, 110, 1024, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (869, 110, 1, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (870, 110, 1025, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (871, 110, 1026, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (872, 110, 2, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (873, 110, 1027, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (874, 110, 3, '110', '2022-02-23 00:16:21', '110', '2022-02-23 05:07:57', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (875, 110, 1028, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (876, 110, 1029, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (877, 110, 5, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (878, 110, 1030, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (879, 110, 1031, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (880, 110, 1032, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (881, 110, 1033, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (882, 110, 1034, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (883, 110, 1035, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (884, 110, 1036, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (885, 110, 1037, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (886, 110, 1038, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (887, 110, 1039, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (888, 110, 1040, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (889, 110, 1042, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (890, 110, 1043, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (891, 110, 1045, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (892, 110, 1046, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (893, 110, 1048, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (894, 110, 1050, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (895, 110, 1051, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (896, 110, 1052, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (897, 110, 1053, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (898, 110, 1054, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (899, 110, 1056, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (900, 110, 1057, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (901, 110, 1058, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (902, 110, 1059, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (903, 110, 1060, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (904, 110, 1063, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (905, 110, 1064, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (906, 110, 1065, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (907, 110, 1066, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (908, 110, 1067, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (909, 110, 1070, '110', '2022-02-23 00:16:21', '110', '2022-02-23 05:00:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (910, 110, 1071, '110', '2022-02-23 00:16:21', '110', '2022-02-23 05:00:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (911, 110, 1072, '110', '2022-02-23 00:16:21', '110', '2022-02-23 05:00:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (912, 110, 1073, '110', '2022-02-23 00:16:21', '110', '2022-02-23 05:00:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (913, 110, 1074, '110', '2022-02-23 00:16:21', '110', '2022-02-23 05:00:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (914, 110, 1075, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (915, 110, 1076, '110', '2022-02-23 00:16:21', '110', '2022-02-23 05:00:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (916, 110, 1077, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (917, 110, 1078, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (918, 110, 1082, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (919, 110, 1083, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (920, 110, 1084, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (921, 110, 1085, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (922, 110, 1086, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (923, 110, 1087, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (924, 110, 1088, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (925, 110, 1089, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (926, 110, 1090, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (927, 110, 1091, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (928, 110, 1092, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (929, 110, 1093, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (930, 110, 1094, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (931, 110, 1095, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (932, 110, 1096, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (933, 110, 1097, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (934, 110, 1098, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (935, 110, 1100, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (936, 110, 1101, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (937, 110, 1102, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (938, 110, 1103, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (939, 110, 1104, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (940, 110, 1105, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (941, 110, 1106, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (942, 110, 1107, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (943, 110, 1108, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (944, 110, 1109, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (945, 110, 1110, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (946, 110, 1111, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (947, 110, 1112, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (948, 110, 1113, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (949, 110, 1114, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (950, 110, 1115, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (951, 110, 1116, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (952, 110, 1117, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (953, 110, 1118, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (954, 110, 1119, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (955, 110, 1120, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (956, 110, 100, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (957, 110, 101, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (958, 110, 102, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (959, 110, 1126, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (960, 110, 103, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (961, 110, 1127, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (962, 110, 104, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (963, 110, 1128, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (964, 110, 105, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (965, 110, 1129, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (966, 110, 1130, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (967, 110, 106, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (968, 110, 107, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (969, 110, 1131, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (970, 110, 108, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (971, 110, 1132, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (972, 110, 109, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (973, 110, 1133, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (974, 110, 1134, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (975, 110, 110, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (976, 110, 1135, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (977, 110, 111, '110', '2022-02-23 00:16:21', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (978, 110, 1136, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (979, 110, 112, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (980, 110, 1137, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (981, 110, 113, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (982, 110, 1138, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (983, 110, 114, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:07:57', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (984, 110, 1139, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (985, 110, 115, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (986, 110, 1140, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (987, 110, 116, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:00:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (988, 110, 1141, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (989, 110, 1142, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (990, 110, 1143, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (991, 110, 1150, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (992, 110, 1161, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (993, 110, 1162, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (994, 110, 1163, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (995, 110, 1164, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (996, 110, 1165, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (997, 110, 1166, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (998, 110, 1173, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (999, 110, 1174, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1000, 110, 1175, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1001, 110, 1176, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1002, 110, 1177, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1003, 110, 1178, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1004, 110, 1179, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1005, 110, 1180, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1006, 110, 1181, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1007, 110, 1182, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1008, 110, 1183, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1009, 110, 1184, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1010, 110, 1185, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1011, 110, 1186, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1012, 110, 1187, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1013, 110, 1188, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1014, 110, 1189, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1015, 110, 1190, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1016, 110, 1191, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1017, 110, 1192, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1018, 110, 1193, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1019, 110, 1194, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1020, 110, 1195, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1021, 110, 1196, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1022, 110, 1197, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1023, 110, 1198, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1024, 110, 1199, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1025, 110, 1200, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1026, 110, 1024, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1027, 110, 1201, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1028, 110, 1202, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1029, 110, 1, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1030, 110, 1207, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1031, 110, 1025, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1032, 110, 1026, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1033, 110, 1208, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1034, 110, 1209, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1035, 110, 2, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1036, 110, 1210, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1037, 110, 1027, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1038, 110, 3, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:07:57', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1039, 110, 1211, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1040, 110, 1212, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1041, 110, 1028, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1042, 110, 1213, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1043, 110, 1029, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1044, 110, 1215, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1045, 110, 5, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1046, 110, 1030, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1047, 110, 1216, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1048, 110, 1217, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1049, 110, 1031, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1050, 110, 1218, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1051, 110, 1032, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1052, 110, 1219, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1053, 110, 1033, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1054, 110, 1220, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1055, 110, 1034, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1056, 110, 1221, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1057, 110, 1035, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1058, 110, 1036, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1059, 110, 1222, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1060, 110, 1224, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1061, 110, 1037, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1062, 110, 1038, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1063, 110, 1225, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1064, 110, 1226, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1065, 110, 1039, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1066, 110, 1227, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1067, 110, 1040, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1068, 110, 1228, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1069, 110, 1042, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1070, 110, 1229, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1071, 110, 1043, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1072, 110, 1001, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1073, 110, 1045, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1074, 110, 1046, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1075, 110, 1002, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1076, 110, 1003, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1077, 110, 1048, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1078, 110, 1004, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1079, 110, 1050, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1080, 110, 1051, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1081, 110, 1005, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1082, 110, 1052, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1083, 110, 1006, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1084, 110, 1053, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1085, 110, 1007, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1086, 110, 1054, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1087, 110, 1056, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1088, 110, 1057, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1089, 110, 1008, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1090, 110, 1058, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1091, 110, 1059, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1092, 110, 1009, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1093, 110, 1060, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1094, 110, 1010, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1095, 110, 1011, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1096, 110, 1063, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1097, 110, 1012, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1098, 110, 1064, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1099, 110, 1065, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1100, 110, 500, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1101, 110, 1066, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1102, 110, 1013, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1103, 110, 1067, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1104, 110, 501, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1105, 110, 1070, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:00:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1106, 110, 1014, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1107, 110, 1071, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:00:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1108, 110, 1015, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1109, 110, 1072, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:00:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1110, 110, 1016, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1111, 110, 1073, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:00:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1112, 110, 1017, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1113, 110, 1074, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:00:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1114, 110, 1018, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1115, 110, 1075, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1116, 110, 1019, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1117, 110, 1076, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:00:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1118, 110, 1020, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1119, 110, 1077, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1120, 110, 1021, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1121, 110, 1078, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1122, 110, 1022, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1123, 110, 1082, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1124, 110, 1023, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1125, 110, 1083, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1126, 110, 1084, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1127, 110, 1085, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1128, 110, 1086, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1129, 110, 1087, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1130, 110, 1088, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1131, 110, 1089, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1132, 110, 1090, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1133, 110, 1091, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1134, 110, 1092, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1135, 110, 1093, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1136, 110, 1094, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1137, 110, 1095, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1138, 110, 1096, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1139, 110, 1097, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1140, 110, 1098, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1141, 110, 1100, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1142, 110, 1101, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1143, 110, 1102, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1144, 110, 1103, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1145, 110, 1104, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1146, 110, 1105, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1147, 110, 1106, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1148, 110, 1107, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1149, 110, 1108, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1150, 110, 1109, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1151, 110, 1110, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1152, 110, 1111, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1153, 110, 1112, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1154, 110, 1113, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1155, 110, 1114, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1156, 110, 1115, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1157, 110, 1116, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1158, 110, 1117, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1159, 110, 1118, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1160, 110, 1119, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1161, 110, 1120, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1162, 110, 100, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1163, 110, 101, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1164, 110, 102, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1165, 110, 1126, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1166, 110, 103, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1167, 110, 1127, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1168, 110, 104, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1169, 110, 1128, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1170, 110, 105, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1171, 110, 1129, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1172, 110, 1130, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1173, 110, 106, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1174, 110, 107, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1175, 110, 1131, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1176, 110, 108, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1177, 110, 1132, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1178, 110, 109, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1179, 110, 1133, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1180, 110, 1134, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1181, 110, 110, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1182, 110, 1135, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1183, 110, 111, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1184, 110, 1136, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1185, 110, 112, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1186, 110, 1137, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1187, 110, 113, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1188, 110, 1138, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1189, 110, 114, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:07:57', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1190, 110, 1139, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1191, 110, 115, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1192, 110, 1140, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1193, 110, 116, '110', '2022-02-23 00:16:22', '110', '2022-02-23 05:00:30', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1194, 110, 1141, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1195, 110, 1142, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1196, 110, 1143, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1197, 110, 1150, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1198, 110, 1161, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1199, 110, 1162, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1200, 110, 1163, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1201, 110, 1164, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1202, 110, 1165, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1203, 110, 1166, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1204, 110, 1173, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1205, 110, 1174, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1206, 110, 1175, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1207, 110, 1176, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1208, 110, 1177, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1209, 110, 1178, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1210, 110, 1179, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1211, 110, 1180, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1212, 110, 1181, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1213, 110, 1182, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1214, 110, 1183, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1215, 110, 1184, '110', '2022-02-23 00:16:22', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1216, 110, 1185, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1217, 110, 1186, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1218, 110, 1187, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1219, 110, 1188, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1220, 110, 1189, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1221, 110, 1190, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1222, 110, 1191, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1223, 110, 1192, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1224, 110, 1193, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1225, 110, 1194, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1226, 110, 1195, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1227, 110, 1196, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1228, 110, 1197, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1229, 110, 1198, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1230, 110, 1199, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1231, 110, 1200, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1232, 110, 1201, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1233, 110, 1202, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1234, 110, 1207, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1235, 110, 1208, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1236, 110, 1209, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1237, 110, 1210, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1238, 110, 1211, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1239, 110, 1212, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1240, 110, 1213, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1241, 110, 1215, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1242, 110, 1216, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1243, 110, 1217, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1244, 110, 1218, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1245, 110, 1219, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1246, 110, 1220, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1247, 110, 1221, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1248, 110, 1222, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1249, 110, 1224, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1250, 110, 1225, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1251, 110, 1226, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1252, 110, 1227, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1253, 110, 1228, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1254, 110, 1229, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1255, 110, 1001, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1256, 110, 1002, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1257, 110, 1003, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1258, 110, 1004, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1259, 110, 1005, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1260, 110, 1006, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1261, 110, 1007, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1262, 110, 1008, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1263, 110, 1009, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1264, 110, 1010, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1265, 110, 1011, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1266, 110, 1012, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1267, 110, 500, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1268, 110, 1013, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1269, 110, 501, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1270, 110, 1014, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1271, 110, 1015, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1272, 110, 1016, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:17:15', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1273, 110, 1017, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1274, 110, 1018, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1275, 110, 1019, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1276, 110, 1020, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1277, 110, 1021, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1278, 110, 1022, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1279, 110, 1023, '110', '2022-02-23 00:16:23', '110', '2022-02-22 16:23:24', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1280, 109, 3, '1', '2022-02-23 00:23:24', '1', '2022-02-23 11:35:16', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1281, 109, 1056, '1', '2022-02-23 00:23:24', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1282, 109, 1057, '1', '2022-02-23 00:23:24', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1283, 109, 1058, '1', '2022-02-23 00:23:24', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1284, 109, 1059, '1', '2022-02-23 00:23:24', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1285, 109, 1060, '1', '2022-02-23 00:23:24', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1286, 109, 1070, '1', '2022-02-23 00:23:24', '1', '2022-02-23 11:35:16', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1287, 109, 1071, '1', '2022-02-23 00:23:24', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1288, 109, 1072, '1', '2022-02-23 00:23:24', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1289, 109, 1073, '1', '2022-02-23 00:23:24', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1290, 109, 1074, '1', '2022-02-23 00:23:24', '1', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1291, 109, 1076, '1', '2022-02-23 00:23:25', '1', '2022-02-23 11:35:16', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1292, 109, 114, '1', '2022-02-23 00:23:25', '1', '2022-02-23 11:35:16', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1293, 109, 115, '1', '2022-02-23 00:23:25', '1', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1294, 109, 116, '1', '2022-02-23 00:23:25', '1', '2022-02-23 11:35:16', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1295, 110, 1024, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1296, 110, 1, '110', '2022-02-23 00:23:55', '110', '2022-02-23 00:23:55', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1297, 110, 1025, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1298, 110, 1026, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1299, 110, 2, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1300, 110, 1027, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1301, 110, 1028, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1302, 110, 1029, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1303, 110, 5, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1304, 110, 1030, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1305, 110, 1031, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1306, 110, 1032, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1307, 110, 1033, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1308, 110, 1034, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1309, 110, 1035, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1310, 110, 1036, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1311, 110, 1037, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1312, 110, 1038, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1313, 110, 1039, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1314, 110, 1040, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1315, 110, 1042, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1316, 110, 1043, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1317, 110, 1045, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1318, 110, 1046, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1319, 110, 1048, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1320, 110, 1050, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1321, 110, 1051, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1322, 110, 1052, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1323, 110, 1053, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1324, 110, 1054, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1325, 110, 1063, '110', '2022-02-23 00:23:55', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1326, 110, 1064, '110', '2022-02-23 00:23:55', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1327, 110, 1065, '110', '2022-02-23 00:23:55', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1328, 110, 1066, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1329, 110, 1067, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1330, 110, 1075, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1331, 110, 1077, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1332, 110, 1078, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1333, 110, 1082, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1334, 110, 1083, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1335, 110, 1084, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1336, 110, 1085, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1337, 110, 1086, '110', '2022-02-23 00:23:55', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1338, 110, 1087, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1339, 110, 1088, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1340, 110, 1089, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1341, 110, 1090, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1342, 110, 1091, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1343, 110, 1092, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1344, 110, 1093, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1345, 110, 1094, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1346, 110, 1095, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1347, 110, 1096, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1348, 110, 1097, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1349, 110, 1098, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1350, 110, 1100, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1351, 110, 1101, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1352, 110, 1102, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1353, 110, 1103, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1354, 110, 1104, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1355, 110, 1105, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1356, 110, 1106, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1357, 110, 1107, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1358, 110, 1108, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1359, 110, 1109, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1360, 110, 1110, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1361, 110, 1111, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1362, 110, 1112, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1363, 110, 1113, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1364, 110, 1114, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1365, 110, 1115, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1366, 110, 1116, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1367, 110, 1117, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1368, 110, 1118, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1369, 110, 1119, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1370, 110, 1120, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1371, 110, 100, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:35:16', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1372, 110, 101, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:35:16', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1373, 110, 102, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:35:16', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1374, 110, 1126, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1375, 110, 103, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1376, 110, 1127, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1377, 110, 104, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1378, 110, 1128, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1379, 110, 105, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1380, 110, 1129, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1381, 110, 1130, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1382, 110, 106, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1383, 110, 107, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1384, 110, 1131, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1385, 110, 108, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1386, 110, 1132, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1387, 110, 109, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1388, 110, 1133, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1389, 110, 1134, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1390, 110, 110, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1391, 110, 1135, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1392, 110, 111, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1393, 110, 1136, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1394, 110, 112, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1395, 110, 1137, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1396, 110, 113, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1397, 110, 1138, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1398, 110, 1139, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1399, 110, 1140, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1400, 110, 1141, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1401, 110, 1142, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1402, 110, 1143, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1403, 110, 1150, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1404, 110, 1161, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1405, 110, 1162, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1406, 110, 1163, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1407, 110, 1164, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1408, 110, 1165, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1409, 110, 1166, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1410, 110, 1173, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1411, 110, 1174, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1412, 110, 1175, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1413, 110, 1176, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1414, 110, 1177, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1415, 110, 1178, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1416, 110, 1179, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1417, 110, 1180, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1418, 110, 1181, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1419, 110, 1182, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1420, 110, 1183, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1421, 110, 1184, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1422, 110, 1185, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1423, 110, 1186, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1424, 110, 1187, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1425, 110, 1188, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1426, 110, 1189, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1427, 110, 1190, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1428, 110, 1191, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1429, 110, 1192, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1430, 110, 1193, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1431, 110, 1194, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1432, 110, 1195, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1433, 110, 1196, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1434, 110, 1197, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1435, 110, 1198, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1436, 110, 1199, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1437, 110, 1200, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1438, 110, 1201, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1439, 110, 1202, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1440, 110, 1207, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1441, 110, 1208, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1442, 110, 1209, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1443, 110, 1210, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1444, 110, 1211, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1445, 110, 1212, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1446, 110, 1213, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1447, 110, 1215, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1448, 110, 1216, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1449, 110, 1217, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1450, 110, 1218, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1451, 110, 1219, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1452, 110, 1220, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1453, 110, 1221, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1454, 110, 1222, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1455, 110, 1224, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1456, 110, 1225, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1457, 110, 1226, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1458, 110, 1227, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1459, 110, 1228, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1460, 110, 1229, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1461, 110, 1001, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1462, 110, 1002, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1463, 110, 1003, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1464, 110, 1004, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1465, 110, 1005, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1466, 110, 1006, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1467, 110, 1007, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1468, 110, 1008, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1469, 110, 1009, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1470, 110, 1010, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1471, 110, 1011, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1472, 110, 1012, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1473, 110, 500, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1474, 110, 1013, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1475, 110, 501, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1476, 110, 1014, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1477, 110, 1015, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1478, 110, 1016, '110', '2022-02-23 00:23:56', '110', '2022-02-23 11:32:14', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1479, 110, 1017, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1480, 110, 1018, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1481, 110, 1019, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1482, 110, 1020, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1483, 110, 1021, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1484, 110, 1022, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1485, 110, 1023, '110', '2022-02-23 00:23:56', '110', '2022-02-22 16:24:13', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1486, 109, 103, '1', '2022-02-23 19:32:14', '1', '2022-02-23 19:32:14', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1487, 109, 104, '1', '2022-02-23 19:32:14', '1', '2022-02-23 19:32:14', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1488, 109, 105, '1', '2022-02-23 19:43:22', '1', '2022-03-19 10:39:06', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1489, 1, 1, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1490, 1, 2, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1491, 1, 3, '1', '2022-02-23 20:03:57', '1', '2022-02-23 12:04:07', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1492, 1, 1070, '1', '2022-02-23 20:03:57', '1', '2022-02-23 12:04:07', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1493, 1, 1076, '1', '2022-02-23 20:03:57', '1', '2022-02-23 12:04:07', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1494, 1, 1077, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1495, 1, 1078, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1496, 1, 1083, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1497, 1, 1084, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1498, 1, 1090, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1499, 1, 1093, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1500, 1, 1094, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1501, 1, 1100, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1502, 1, 1107, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1503, 1, 1110, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1504, 1, 1116, '1', '2022-02-23 20:03:57', '1', '2022-04-17 04:35:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1505, 1, 1117, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1506, 1, 100, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1507, 1, 101, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1508, 1, 102, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1509, 1, 1126, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1510, 1, 103, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1511, 1, 104, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1512, 1, 105, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1513, 1, 106, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1514, 1, 107, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1515, 1, 108, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1516, 1, 109, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1517, 1, 110, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1518, 1, 111, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1519, 1, 112, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1520, 1, 113, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1521, 1, 114, '1', '2022-02-23 20:03:57', '1', '2022-02-23 12:04:07', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1522, 1, 1138, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1523, 1, 115, '1', '2022-02-23 20:03:57', '1', '2022-02-23 12:04:07', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1524, 1, 116, '1', '2022-02-23 20:03:57', '1', '2022-02-23 12:04:07', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1525, 1, 1224, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1526, 1, 1225, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1527, 1, 500, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1528, 1, 501, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1529, 109, 1024, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1530, 109, 1025, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1531, 109, 1026, '1', '2022-02-23 20:30:14', '1', '2022-03-19 10:39:06', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1532, 109, 1027, '1', '2022-02-23 20:30:14', '1', '2022-03-19 10:39:06', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1533, 109, 1028, '1', '2022-02-23 20:30:14', '1', '2022-03-19 10:39:06', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1534, 109, 1029, '1', '2022-02-23 20:30:14', '1', '2022-03-19 10:39:06', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1535, 109, 1030, '1', '2022-02-23 20:30:14', '1', '2022-03-19 10:39:06', 1, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1536, 109, 1017, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1537, 109, 1018, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1538, 109, 1019, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1539, 109, 1020, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1540, 109, 1021, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1541, 109, 1022, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1542, 109, 1023, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1543, 101, 1013, '1', '2022-02-27 11:11:22', '1', '2022-02-27 03:12:01', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1544, 101, 1014, '1', '2022-02-27 11:11:22', '1', '2022-02-27 03:12:01', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1545, 101, 1015, '1', '2022-02-27 11:11:22', '1', '2022-02-27 03:12:01', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1546, 101, 1016, '1', '2022-02-27 11:11:22', '1', '2022-02-27 03:12:01', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1547, 101, 103, '1', '2022-02-27 11:12:02', '1', '2022-02-27 03:56:45', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1548, 101, 1017, '1', '2022-02-27 11:12:02', '1', '2022-02-27 03:56:45', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1549, 101, 1018, '1', '2022-02-27 11:12:02', '1', '2022-02-27 03:56:45', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1550, 101, 1019, '1', '2022-02-27 11:12:02', '1', '2022-02-27 03:56:45', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1551, 101, 1020, '1', '2022-02-27 11:12:02', '1', '2022-02-27 03:56:45', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1552, 101, 1110, '1', '2022-02-27 11:56:45', '1', '2022-02-27 04:03:43', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1553, 101, 1111, '1', '2022-02-27 11:56:45', '1', '2022-02-27 04:03:43', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1554, 101, 1112, '1', '2022-02-27 11:56:45', '1', '2022-02-27 04:03:43', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1555, 101, 1113, '1', '2022-02-27 11:56:45', '1', '2022-02-27 04:03:43', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1556, 101, 1114, '1', '2022-02-27 11:56:45', '1', '2022-02-27 04:03:43', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1557, 101, 1115, '1', '2022-02-27 11:56:45', '1', '2022-02-27 04:03:43', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1558, 101, 103, '1', '2022-02-27 12:01:29', '1', '2022-02-27 04:08:47', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1559, 101, 1017, '1', '2022-02-27 12:01:29', '1', '2022-02-27 04:08:47', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1560, 101, 1018, '1', '2022-02-27 12:01:29', '1', '2022-02-27 04:08:47', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1561, 101, 1019, '1', '2022-02-27 12:01:30', '1', '2022-02-27 04:08:47', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1562, 101, 1020, '1', '2022-02-27 12:01:30', '1', '2022-02-27 04:08:47', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1563, 101, 100, '1', '2022-02-27 12:08:36', '1', '2022-02-27 04:11:38', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1564, 101, 1001, '1', '2022-02-27 12:08:36', '1', '2022-02-27 04:11:38', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1565, 101, 1002, '1', '2022-02-27 12:08:37', '1', '2022-02-27 04:11:38', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1566, 101, 1003, '1', '2022-02-27 12:08:37', '1', '2022-02-27 04:11:38', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1567, 101, 1004, '1', '2022-02-27 12:08:37', '1', '2022-02-27 04:11:38', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1568, 101, 1005, '1', '2022-02-27 12:08:37', '1', '2022-02-27 04:11:38', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1569, 101, 1006, '1', '2022-02-27 12:08:38', '1', '2022-02-27 04:11:38', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1570, 101, 1007, '1', '2022-02-27 12:08:38', '1', '2022-02-27 04:11:38', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1571, 101, 103, '1', '2022-02-27 12:11:39', '1', '2022-03-19 13:45:52', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1572, 101, 1017, '1', '2022-02-27 12:11:39', '1', '2022-03-19 13:45:52', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1573, 101, 1018, '1', '2022-02-27 12:11:39', '1', '2022-03-19 13:45:52', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1574, 101, 1019, '1', '2022-02-27 12:11:39', '1', '2022-03-19 13:45:52', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1575, 101, 1020, '1', '2022-02-27 12:11:39', '1', '2022-03-19 13:45:52', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1576, 111, 1024, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1577, 111, 1025, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1578, 111, 1, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1579, 111, 1026, '1', '2022-03-07 21:37:58', '1', '2022-03-19 10:39:06', 1, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1580, 111, 1027, '1', '2022-03-07 21:37:58', '1', '2022-03-19 10:39:06', 1, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1581, 111, 1028, '1', '2022-03-07 21:37:58', '1', '2022-03-19 10:39:06', 1, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1582, 111, 1029, '1', '2022-03-07 21:37:58', '1', '2022-03-19 10:39:06', 1, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1583, 111, 1030, '1', '2022-03-07 21:37:58', '1', '2022-03-19 10:39:06', 1, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1584, 111, 103, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1585, 111, 104, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1586, 111, 105, '1', '2022-03-07 21:37:58', '1', '2022-03-19 10:39:06', 1, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1587, 111, 1017, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1588, 111, 1018, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1589, 111, 1019, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1590, 111, 1020, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1591, 111, 1021, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1592, 111, 1022, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1593, 111, 1023, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1594, 109, 102, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1595, 109, 1013, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1596, 109, 1014, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1597, 109, 1015, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1598, 109, 1016, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 121); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1599, 111, 102, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1600, 111, 1013, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1601, 111, 1014, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1602, 111, 1015, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1603, 111, 1016, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 122); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1604, 101, 1216, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1605, 101, 1217, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1606, 101, 1218, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1607, 101, 1219, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1608, 101, 1220, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1609, 101, 1221, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1610, 101, 5, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1611, 101, 1222, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1612, 101, 1118, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1613, 101, 1119, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1614, 101, 1120, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1615, 101, 1185, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1616, 101, 1186, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1617, 101, 1187, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1618, 101, 1188, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1619, 101, 1189, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1620, 101, 1190, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1621, 101, 1191, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1622, 101, 1192, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1623, 101, 1193, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1624, 101, 1194, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1625, 101, 1195, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1626, 101, 1196, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1627, 101, 1197, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1628, 101, 1198, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1629, 101, 1199, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1630, 101, 1200, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1631, 101, 1201, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1632, 101, 1202, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1633, 101, 1207, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1634, 101, 1208, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1635, 101, 1209, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1636, 101, 1210, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1637, 101, 1211, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1638, 101, 1212, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1639, 101, 1213, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1640, 101, 1215, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1641, 101, 2, '1', '2022-04-01 22:21:24', '1', '2022-04-01 22:21:24', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1642, 101, 1031, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1643, 101, 1032, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1644, 101, 1033, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1645, 101, 1034, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1646, 101, 1035, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1647, 101, 1050, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1648, 101, 1051, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1649, 101, 1052, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1650, 101, 1053, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1651, 101, 1054, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1652, 101, 1056, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1653, 101, 1057, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1654, 101, 1058, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1655, 101, 1059, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1656, 101, 1060, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1657, 101, 1066, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1658, 101, 1067, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1659, 101, 1070, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1660, 101, 1071, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1661, 101, 1072, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1662, 101, 1073, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1663, 101, 1074, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1664, 101, 1075, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1665, 101, 1076, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1666, 101, 1077, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1667, 101, 1078, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1668, 101, 1082, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1669, 101, 1083, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1670, 101, 1084, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1671, 101, 1085, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1672, 101, 1086, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1673, 101, 1087, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1674, 101, 1088, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1675, 101, 1089, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1676, 101, 1090, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1677, 101, 1091, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1678, 101, 1092, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1679, 101, 1237, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1680, 101, 1238, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1681, 101, 1239, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1682, 101, 1240, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1683, 101, 1241, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1684, 101, 1242, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1685, 101, 1243, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1686, 101, 1116, '1', '2022-04-01 22:21:37', '1', '2022-04-17 04:35:21', 1, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1687, 101, 106, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1688, 101, 110, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1689, 101, 111, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1690, 101, 112, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1691, 101, 113, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1692, 101, 114, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1693, 101, 115, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); -INSERT INTO "public"."system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1694, 101, 116, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (263, 109, 1, '1', '2022-02-22 00:56:14', '1', '2022-02-22 00:56:14', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (434, 2, 1, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (454, 2, 1093, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (455, 2, 1094, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (460, 2, 1100, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (467, 2, 1107, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (470, 2, 1110, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (476, 2, 1117, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (477, 2, 100, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (478, 2, 101, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (479, 2, 102, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (480, 2, 1126, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (481, 2, 103, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (483, 2, 104, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (485, 2, 105, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (488, 2, 107, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (490, 2, 108, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (492, 2, 109, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (498, 2, 1138, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (523, 2, 1224, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (524, 2, 1225, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (541, 2, 500, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (543, 2, 501, '1', '2022-02-22 13:09:12', '1', '2022-02-22 13:09:12', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (675, 2, 2, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (689, 2, 1077, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (690, 2, 1078, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (692, 2, 1083, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (693, 2, 1084, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (699, 2, 1090, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (703, 2, 106, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (704, 2, 110, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (705, 2, 111, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (706, 2, 112, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (707, 2, 113, '1', '2022-02-22 13:16:57', '1', '2022-02-22 13:16:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1296, 110, 1, '110', '2022-02-23 00:23:55', '110', '2022-02-23 00:23:55', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1486, 109, 103, '1', '2022-02-23 19:32:14', '1', '2022-02-23 19:32:14', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1487, 109, 104, '1', '2022-02-23 19:32:14', '1', '2022-02-23 19:32:14', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1489, 1, 1, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1490, 1, 2, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1494, 1, 1077, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1495, 1, 1078, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1496, 1, 1083, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1497, 1, 1084, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1498, 1, 1090, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1499, 1, 1093, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1500, 1, 1094, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1501, 1, 1100, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1502, 1, 1107, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1503, 1, 1110, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1505, 1, 1117, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1506, 1, 100, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1507, 1, 101, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1508, 1, 102, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1509, 1, 1126, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1510, 1, 103, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1511, 1, 104, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1512, 1, 105, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1513, 1, 106, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1514, 1, 107, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1515, 1, 108, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1516, 1, 109, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1517, 1, 110, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1518, 1, 111, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1519, 1, 112, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1520, 1, 113, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1522, 1, 1138, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1525, 1, 1224, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1526, 1, 1225, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1527, 1, 500, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1528, 1, 501, '1', '2022-02-23 20:03:57', '1', '2022-02-23 20:03:57', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1529, 109, 1024, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1530, 109, 1025, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1536, 109, 1017, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1537, 109, 1018, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1538, 109, 1019, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1539, 109, 1020, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1540, 109, 1021, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1541, 109, 1022, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1542, 109, 1023, '1', '2022-02-23 20:30:14', '1', '2022-02-23 20:30:14', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1576, 111, 1024, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1577, 111, 1025, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1578, 111, 1, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1584, 111, 103, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1585, 111, 104, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1587, 111, 1017, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1588, 111, 1018, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1589, 111, 1019, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1590, 111, 1020, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1591, 111, 1021, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1592, 111, 1022, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1593, 111, 1023, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1594, 109, 102, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1595, 109, 1013, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1596, 109, 1014, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1597, 109, 1015, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1598, 109, 1016, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 121); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1599, 111, 102, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1600, 111, 1013, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1601, 111, 1014, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1602, 111, 1015, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1603, 111, 1016, '1', '2022-03-19 18:39:13', '1', '2022-03-19 18:39:13', 0, 122); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1604, 101, 1216, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1605, 101, 1217, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1606, 101, 1218, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1607, 101, 1219, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1608, 101, 1220, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1609, 101, 1221, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1610, 101, 5, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1611, 101, 1222, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1612, 101, 1118, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1613, 101, 1119, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1614, 101, 1120, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1615, 101, 1185, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1616, 101, 1186, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1617, 101, 1187, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1618, 101, 1188, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1619, 101, 1189, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1620, 101, 1190, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1621, 101, 1191, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1622, 101, 1192, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1623, 101, 1193, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1624, 101, 1194, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1625, 101, 1195, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1626, 101, 1196, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1627, 101, 1197, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1628, 101, 1198, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1629, 101, 1199, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1630, 101, 1200, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1631, 101, 1201, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1632, 101, 1202, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1633, 101, 1207, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1634, 101, 1208, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1635, 101, 1209, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1636, 101, 1210, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1637, 101, 1211, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1638, 101, 1212, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1639, 101, 1213, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1640, 101, 1215, '1', '2022-03-19 21:45:52', '1', '2022-03-19 21:45:52', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1641, 101, 2, '1', '2022-04-01 22:21:24', '1', '2022-04-01 22:21:24', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1642, 101, 1031, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1643, 101, 1032, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1644, 101, 1033, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1645, 101, 1034, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1646, 101, 1035, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1647, 101, 1050, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1648, 101, 1051, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1649, 101, 1052, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1650, 101, 1053, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1651, 101, 1054, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1652, 101, 1056, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1653, 101, 1057, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1654, 101, 1058, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1655, 101, 1059, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1656, 101, 1060, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1657, 101, 1066, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1658, 101, 1067, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1659, 101, 1070, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1660, 101, 1071, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1661, 101, 1072, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1662, 101, 1073, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1663, 101, 1074, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1664, 101, 1075, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1665, 101, 1076, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1666, 101, 1077, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1667, 101, 1078, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1668, 101, 1082, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1669, 101, 1083, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1670, 101, 1084, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1671, 101, 1085, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1672, 101, 1086, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1673, 101, 1087, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1674, 101, 1088, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1675, 101, 1089, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1676, 101, 1090, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1677, 101, 1091, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1678, 101, 1092, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1679, 101, 1237, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1680, 101, 1238, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1681, 101, 1239, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1682, 101, 1240, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1683, 101, 1241, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1684, 101, 1242, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1685, 101, 1243, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1687, 101, 106, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1688, 101, 110, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1689, 101, 111, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1690, 101, 112, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1691, 101, 113, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1692, 101, 114, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1693, 101, 115, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); +INSERT INTO "system_role_menu" ("id", "role_id", "menu_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1694, 101, 116, '1', '2022-04-01 22:21:37', '1', '2022-04-01 22:21:37', 0, 1); COMMIT; -- ---------------------------- -- Table structure for system_sensitive_word -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_sensitive_word"; -CREATE TABLE "public"."system_sensitive_word" ( +DROP TABLE IF EXISTS "system_sensitive_word"; +CREATE TABLE "system_sensitive_word" ( "id" int8 NOT NULL, "name" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, "description" varchar(512) COLLATE "pg_catalog"."default", @@ -20947,34 +3218,31 @@ CREATE TABLE "public"."system_sensitive_word" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_sensitive_word" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_sensitive_word"."id" IS '编号'; -COMMENT ON COLUMN "public"."system_sensitive_word"."name" IS '敏感词'; -COMMENT ON COLUMN "public"."system_sensitive_word"."description" IS '描述'; -COMMENT ON COLUMN "public"."system_sensitive_word"."tags" IS '标签数组'; -COMMENT ON COLUMN "public"."system_sensitive_word"."status" IS '状态'; -COMMENT ON COLUMN "public"."system_sensitive_word"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_sensitive_word"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_sensitive_word"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_sensitive_word"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_sensitive_word"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."system_sensitive_word" IS '敏感词'; +COMMENT ON COLUMN "system_sensitive_word"."id" IS '编号'; +COMMENT ON COLUMN "system_sensitive_word"."name" IS '敏感词'; +COMMENT ON COLUMN "system_sensitive_word"."description" IS '描述'; +COMMENT ON COLUMN "system_sensitive_word"."tags" IS '标签数组'; +COMMENT ON COLUMN "system_sensitive_word"."status" IS '状态'; +COMMENT ON COLUMN "system_sensitive_word"."creator" IS '创建者'; +COMMENT ON COLUMN "system_sensitive_word"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_sensitive_word"."updater" IS '更新者'; +COMMENT ON COLUMN "system_sensitive_word"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_sensitive_word"."deleted" IS '是否删除'; +COMMENT ON TABLE "system_sensitive_word" IS '敏感词'; -- ---------------------------- -- Records of system_sensitive_word -- ---------------------------- BEGIN; -INSERT INTO "public"."system_sensitive_word" ("id", "name", "description", "tags", "status", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1, '测试', '啊哈哈', '论坛,吃瓜', 0, '1', '2022-04-08 19:51:45', '1', '2022-04-08 12:10:45', 1); -INSERT INTO "public"."system_sensitive_word" ("id", "name", "description", "tags", "status", "creator", "create_time", "updater", "update_time", "deleted") VALUES (2, '测试', '哈哈', '论坛,吃瓜,蔬菜', 0, '1', '2022-04-08 20:10:27', '1', '2022-04-08 13:13:52', 1); -INSERT INTO "public"."system_sensitive_word" ("id", "name", "description", "tags", "status", "creator", "create_time", "updater", "update_time", "deleted") VALUES (3, '土豆', '好呀', '蔬菜,短信', 0, '1', '2022-04-08 21:07:12', '1', '2022-04-09 10:28:14', 0); -INSERT INTO "public"."system_sensitive_word" ("id", "name", "description", "tags", "status", "creator", "create_time", "updater", "update_time", "deleted") VALUES (4, 'XXX', NULL, '短信', 0, '1', '2022-04-08 21:27:49', '1', '2022-04-08 21:27:49', 0); +INSERT INTO "system_sensitive_word" ("id", "name", "description", "tags", "status", "creator", "create_time", "updater", "update_time", "deleted") VALUES (3, '土豆', '好呀', '蔬菜,短信', 0, '1', '2022-04-08 21:07:12', '1', '2022-04-09 10:28:14', 0); +INSERT INTO "system_sensitive_word" ("id", "name", "description", "tags", "status", "creator", "create_time", "updater", "update_time", "deleted") VALUES (4, 'XXX', NULL, '短信', 0, '1', '2022-04-08 21:27:49', '1', '2022-04-08 21:27:49', 0); COMMIT; -- ---------------------------- -- Table structure for system_sms_channel -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_sms_channel"; -CREATE TABLE "public"."system_sms_channel" ( +DROP TABLE IF EXISTS "system_sms_channel"; +CREATE TABLE "system_sms_channel" ( "id" int8 NOT NULL, "signature" varchar(10) COLLATE "pg_catalog"."default" NOT NULL, "code" varchar(63) COLLATE "pg_catalog"."default" NOT NULL, @@ -20990,39 +3258,36 @@ CREATE TABLE "public"."system_sms_channel" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_sms_channel" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_sms_channel"."id" IS '编号'; -COMMENT ON COLUMN "public"."system_sms_channel"."signature" IS '短信签名'; -COMMENT ON COLUMN "public"."system_sms_channel"."code" IS '渠道编码'; -COMMENT ON COLUMN "public"."system_sms_channel"."status" IS '开启状态'; -COMMENT ON COLUMN "public"."system_sms_channel"."remark" IS '备注'; -COMMENT ON COLUMN "public"."system_sms_channel"."api_key" IS '短信 API 的账号'; -COMMENT ON COLUMN "public"."system_sms_channel"."api_secret" IS '短信 API 的秘钥'; -COMMENT ON COLUMN "public"."system_sms_channel"."callback_url" IS '短信发送回调 URL'; -COMMENT ON COLUMN "public"."system_sms_channel"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_sms_channel"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_sms_channel"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_sms_channel"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_sms_channel"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."system_sms_channel" IS '短信渠道'; +COMMENT ON COLUMN "system_sms_channel"."id" IS '编号'; +COMMENT ON COLUMN "system_sms_channel"."signature" IS '短信签名'; +COMMENT ON COLUMN "system_sms_channel"."code" IS '渠道编码'; +COMMENT ON COLUMN "system_sms_channel"."status" IS '开启状态'; +COMMENT ON COLUMN "system_sms_channel"."remark" IS '备注'; +COMMENT ON COLUMN "system_sms_channel"."api_key" IS '短信 API 的账号'; +COMMENT ON COLUMN "system_sms_channel"."api_secret" IS '短信 API 的秘钥'; +COMMENT ON COLUMN "system_sms_channel"."callback_url" IS '短信发送回调 URL'; +COMMENT ON COLUMN "system_sms_channel"."creator" IS '创建者'; +COMMENT ON COLUMN "system_sms_channel"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_sms_channel"."updater" IS '更新者'; +COMMENT ON COLUMN "system_sms_channel"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_sms_channel"."deleted" IS '是否删除'; +COMMENT ON TABLE "system_sms_channel" IS '短信渠道'; -- ---------------------------- -- Records of system_sms_channel -- ---------------------------- BEGIN; -INSERT INTO "public"."system_sms_channel" ("id", "signature", "code", "status", "remark", "api_key", "api_secret", "callback_url", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1, '芋道', 'YUN_PIAN', 0, '呵呵呵哒', '1555a14277cb8a608cf45a9e6a80d510', NULL, 'http://vdwapu.natappfree.cc/admin-api/system/sms/callback/yunpian', '', '2021-03-31 06:12:20', '1', '2022-02-23 16:48:44', 0); -INSERT INTO "public"."system_sms_channel" ("id", "signature", "code", "status", "remark", "api_key", "api_secret", "callback_url", "creator", "create_time", "updater", "update_time", "deleted") VALUES (2, 'Ballcat', 'ALIYUN', 0, '啦啦啦', 'LTAI5tCnKso2uG3kJ5gRav88', 'fGJ5SNXL7P1NHNRmJ7DJaMJGPyE55C', NULL, '', '2021-03-31 11:53:10', '1', '2021-04-14 00:08:37', 0); -INSERT INTO "public"."system_sms_channel" ("id", "signature", "code", "status", "remark", "api_key", "api_secret", "callback_url", "creator", "create_time", "updater", "update_time", "deleted") VALUES (3, '测试', 'YUN_PIAN', 0, '哈哈哈', '23132', NULL, 'http://www.baidu.com', '1', '2021-04-05 21:10:34', '1', '2021-04-11 16:21:58', 1); -INSERT INTO "public"."system_sms_channel" ("id", "signature", "code", "status", "remark", "api_key", "api_secret", "callback_url", "creator", "create_time", "updater", "update_time", "deleted") VALUES (4, '测试渠道', 'DEBUG_DING_TALK', 0, '123', '696b5d8ead48071237e4aa5861ff08dbadb2b4ded1c688a7b7c9afc615579859', 'SEC5c4e5ff888bc8a9923ae47f59e7ccd30af1f14d93c55b4e2c9cb094e35aeed67', NULL, '1', '2021-04-13 00:23:14', '1', '2022-03-27 20:29:49', 0); -INSERT INTO "public"."system_sms_channel" ("id", "signature", "code", "status", "remark", "api_key", "api_secret", "callback_url", "creator", "create_time", "updater", "update_time", "deleted") VALUES (5, '1', '2', 0, '3', '2', NULL, NULL, '1', '2022-03-27 20:22:34', '1', '2022-03-27 12:22:36', 1); -INSERT INTO "public"."system_sms_channel" ("id", "signature", "code", "status", "remark", "api_key", "api_secret", "callback_url", "creator", "create_time", "updater", "update_time", "deleted") VALUES (6, '测试演示', 'DEBUG_DING_TALK', 0, NULL, '696b5d8ead48071237e4aa5861ff08dbadb2b4ded1c688a7b7c9afc615579859', 'SEC5c4e5ff888bc8a9923ae47f59e7ccd30af1f14d93c55b4e2c9cb094e35aeed67', NULL, '1', '2022-04-10 23:07:59', '1', '2022-04-10 23:07:59', 0); +INSERT INTO "system_sms_channel" ("id", "signature", "code", "status", "remark", "api_key", "api_secret", "callback_url", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1, '芋道', 'YUN_PIAN', 0, '呵呵呵哒', '1555a14277cb8a608cf45a9e6a80d510', NULL, 'http://vdwapu.natappfree.cc/admin-api/system/sms/callback/yunpian', '', '2021-03-31 06:12:20', '1', '2022-02-23 16:48:44', 0); +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, 'Ballcat', 'ALIYUN', 0, '啦啦啦', 'LTAI5tCnKso2uG3kJ5gRav88', 'fGJ5SNXL7P1NHNRmJ7DJaMJGPyE55C', NULL, '', '2021-03-31 11:53:10', '1', '2021-04-14 00:08:37', 0); +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, '测试渠道', 'DEBUG_DING_TALK', 0, '123', '696b5d8ead48071237e4aa5861ff08dbadb2b4ded1c688a7b7c9afc615579859', 'SEC5c4e5ff888bc8a9923ae47f59e7ccd30af1f14d93c55b4e2c9cb094e35aeed67', NULL, '1', '2021-04-13 00:23:14', '1', '2022-03-27 20:29:49', 0); +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, '测试演示', 'DEBUG_DING_TALK', 0, NULL, '696b5d8ead48071237e4aa5861ff08dbadb2b4ded1c688a7b7c9afc615579859', 'SEC5c4e5ff888bc8a9923ae47f59e7ccd30af1f14d93c55b4e2c9cb094e35aeed67', NULL, '1', '2022-04-10 23:07:59', '1', '2022-04-10 23:07:59', 0); COMMIT; -- ---------------------------- -- Table structure for system_sms_code -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_sms_code"; -CREATE TABLE "public"."system_sms_code" ( +DROP TABLE IF EXISTS "system_sms_code"; +CREATE TABLE "system_sms_code" ( "id" int8 NOT NULL, "mobile" varchar(11) COLLATE "pg_catalog"."default" NOT NULL, "code" varchar(6) COLLATE "pg_catalog"."default" NOT NULL, @@ -21040,37 +3305,34 @@ CREATE TABLE "public"."system_sms_code" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_sms_code" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_sms_code"."id" IS '编号'; -COMMENT ON COLUMN "public"."system_sms_code"."mobile" IS '手机号'; -COMMENT ON COLUMN "public"."system_sms_code"."code" IS '验证码'; -COMMENT ON COLUMN "public"."system_sms_code"."create_ip" IS '创建 IP'; -COMMENT ON COLUMN "public"."system_sms_code"."scene" IS '发送场景'; -COMMENT ON COLUMN "public"."system_sms_code"."today_index" IS '今日发送的第几条'; -COMMENT ON COLUMN "public"."system_sms_code"."used" IS '是否使用'; -COMMENT ON COLUMN "public"."system_sms_code"."used_time" IS '使用时间'; -COMMENT ON COLUMN "public"."system_sms_code"."used_ip" IS '使用 IP'; -COMMENT ON COLUMN "public"."system_sms_code"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_sms_code"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_sms_code"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_sms_code"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_sms_code"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."system_sms_code"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."system_sms_code" IS '手机验证码'; +COMMENT ON COLUMN "system_sms_code"."id" IS '编号'; +COMMENT ON COLUMN "system_sms_code"."mobile" IS '手机号'; +COMMENT ON COLUMN "system_sms_code"."code" IS '验证码'; +COMMENT ON COLUMN "system_sms_code"."create_ip" IS '创建 IP'; +COMMENT ON COLUMN "system_sms_code"."scene" IS '发送场景'; +COMMENT ON COLUMN "system_sms_code"."today_index" IS '今日发送的第几条'; +COMMENT ON COLUMN "system_sms_code"."used" IS '是否使用'; +COMMENT ON COLUMN "system_sms_code"."used_time" IS '使用时间'; +COMMENT ON COLUMN "system_sms_code"."used_ip" IS '使用 IP'; +COMMENT ON COLUMN "system_sms_code"."creator" IS '创建者'; +COMMENT ON COLUMN "system_sms_code"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_sms_code"."updater" IS '更新者'; +COMMENT ON COLUMN "system_sms_code"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_sms_code"."deleted" IS '是否删除'; +COMMENT ON COLUMN "system_sms_code"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "system_sms_code" IS '手机验证码'; -- ---------------------------- -- Records of system_sms_code -- ---------------------------- BEGIN; -INSERT INTO "public"."system_sms_code" ("id", "mobile", "code", "create_ip", "scene", "today_index", "used", "used_time", "used_ip", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (465, '15601691399', '9999', '127.0.0.1', 1, 1, 0, NULL, NULL, NULL, '2022-04-10 11:15:10', NULL, '2022-04-10 11:15:10', 0, 1); -INSERT INTO "public"."system_sms_code" ("id", "mobile", "code", "create_ip", "scene", "today_index", "used", "used_time", "used_ip", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (466, '15601691399', '9999', '127.0.0.1', 1, 2, 0, NULL, NULL, NULL, '2022-04-16 01:35:27', NULL, '2022-04-16 01:35:27', 0, 1); COMMIT; -- ---------------------------- -- Table structure for system_sms_log -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_sms_log"; -CREATE TABLE "public"."system_sms_log" ( +DROP TABLE IF EXISTS "system_sms_log"; +CREATE TABLE "system_sms_log" ( "id" int8 NOT NULL, "channel_id" int8 NOT NULL, "channel_code" varchar(63) COLLATE "pg_catalog"."default" NOT NULL, @@ -21102,51 +3364,48 @@ CREATE TABLE "public"."system_sms_log" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_sms_log" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_sms_log"."id" IS '编号'; -COMMENT ON COLUMN "public"."system_sms_log"."channel_id" IS '短信渠道编号'; -COMMENT ON COLUMN "public"."system_sms_log"."channel_code" IS '短信渠道编码'; -COMMENT ON COLUMN "public"."system_sms_log"."template_id" IS '模板编号'; -COMMENT ON COLUMN "public"."system_sms_log"."template_code" IS '模板编码'; -COMMENT ON COLUMN "public"."system_sms_log"."template_type" IS '短信类型'; -COMMENT ON COLUMN "public"."system_sms_log"."template_content" IS '短信内容'; -COMMENT ON COLUMN "public"."system_sms_log"."template_params" IS '短信参数'; -COMMENT ON COLUMN "public"."system_sms_log"."api_template_id" IS '短信 API 的模板编号'; -COMMENT ON COLUMN "public"."system_sms_log"."mobile" IS '手机号'; -COMMENT ON COLUMN "public"."system_sms_log"."user_id" IS '用户编号'; -COMMENT ON COLUMN "public"."system_sms_log"."user_type" IS '用户类型'; -COMMENT ON COLUMN "public"."system_sms_log"."send_status" IS '发送状态'; -COMMENT ON COLUMN "public"."system_sms_log"."send_time" IS '发送时间'; -COMMENT ON COLUMN "public"."system_sms_log"."send_code" IS '发送结果的编码'; -COMMENT ON COLUMN "public"."system_sms_log"."send_msg" IS '发送结果的提示'; -COMMENT ON COLUMN "public"."system_sms_log"."api_send_code" IS '短信 API 发送结果的编码'; -COMMENT ON COLUMN "public"."system_sms_log"."api_send_msg" IS '短信 API 发送失败的提示'; -COMMENT ON COLUMN "public"."system_sms_log"."api_request_id" IS '短信 API 发送返回的唯一请求 ID'; -COMMENT ON COLUMN "public"."system_sms_log"."api_serial_no" IS '短信 API 发送返回的序号'; -COMMENT ON COLUMN "public"."system_sms_log"."receive_status" IS '接收状态'; -COMMENT ON COLUMN "public"."system_sms_log"."receive_time" IS '接收时间'; -COMMENT ON COLUMN "public"."system_sms_log"."api_receive_code" IS 'API 接收结果的编码'; -COMMENT ON COLUMN "public"."system_sms_log"."api_receive_msg" IS 'API 接收结果的说明'; -COMMENT ON COLUMN "public"."system_sms_log"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_sms_log"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_sms_log"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_sms_log"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_sms_log"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."system_sms_log" IS '短信日志'; +COMMENT ON COLUMN "system_sms_log"."id" IS '编号'; +COMMENT ON COLUMN "system_sms_log"."channel_id" IS '短信渠道编号'; +COMMENT ON COLUMN "system_sms_log"."channel_code" IS '短信渠道编码'; +COMMENT ON COLUMN "system_sms_log"."template_id" IS '模板编号'; +COMMENT ON COLUMN "system_sms_log"."template_code" IS '模板编码'; +COMMENT ON COLUMN "system_sms_log"."template_type" IS '短信类型'; +COMMENT ON COLUMN "system_sms_log"."template_content" IS '短信内容'; +COMMENT ON COLUMN "system_sms_log"."template_params" IS '短信参数'; +COMMENT ON COLUMN "system_sms_log"."api_template_id" IS '短信 API 的模板编号'; +COMMENT ON COLUMN "system_sms_log"."mobile" IS '手机号'; +COMMENT ON COLUMN "system_sms_log"."user_id" IS '用户编号'; +COMMENT ON COLUMN "system_sms_log"."user_type" IS '用户类型'; +COMMENT ON COLUMN "system_sms_log"."send_status" IS '发送状态'; +COMMENT ON COLUMN "system_sms_log"."send_time" IS '发送时间'; +COMMENT ON COLUMN "system_sms_log"."send_code" IS '发送结果的编码'; +COMMENT ON COLUMN "system_sms_log"."send_msg" IS '发送结果的提示'; +COMMENT ON COLUMN "system_sms_log"."api_send_code" IS '短信 API 发送结果的编码'; +COMMENT ON COLUMN "system_sms_log"."api_send_msg" IS '短信 API 发送失败的提示'; +COMMENT ON COLUMN "system_sms_log"."api_request_id" IS '短信 API 发送返回的唯一请求 ID'; +COMMENT ON COLUMN "system_sms_log"."api_serial_no" IS '短信 API 发送返回的序号'; +COMMENT ON COLUMN "system_sms_log"."receive_status" IS '接收状态'; +COMMENT ON COLUMN "system_sms_log"."receive_time" IS '接收时间'; +COMMENT ON COLUMN "system_sms_log"."api_receive_code" IS 'API 接收结果的编码'; +COMMENT ON COLUMN "system_sms_log"."api_receive_msg" IS 'API 接收结果的说明'; +COMMENT ON COLUMN "system_sms_log"."creator" IS '创建者'; +COMMENT ON COLUMN "system_sms_log"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_sms_log"."updater" IS '更新者'; +COMMENT ON COLUMN "system_sms_log"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_sms_log"."deleted" IS '是否删除'; +COMMENT ON TABLE "system_sms_log" IS '短信日志'; -- ---------------------------- -- Records of system_sms_log -- ---------------------------- BEGIN; -INSERT INTO "public"."system_sms_log" ("id", "channel_id", "channel_code", "template_id", "template_code", "template_type", "template_content", "template_params", "api_template_id", "mobile", "user_id", "user_type", "send_status", "send_time", "send_code", "send_msg", "api_send_code", "api_send_msg", "api_request_id", "api_serial_no", "receive_status", "receive_time", "api_receive_code", "api_receive_msg", "creator", "create_time", "updater", "update_time", "deleted") VALUES (0, 4, 'DEBUG_DING_TALK', 9, 'bpm_task_assigned', 2, '您收到了一条新的待办任务:OA 请假-task01,申请人:芋道源码,处理链接:http://dashboard.yudao.iocoder.cn/bpm/process-instance/detail?id=0d23cbd6-c893-11ec-8a1d-3e2374911326', '{"startUserNickname":"芋道源码","taskName":"task01","detailUrl":"http://dashboard.yudao.iocoder.cn/bpm/process-instance/detail?id=0d23cbd6-c893-11ec-8a1d-3e2374911326","processInstanceName":"OA 请假"}', 'suibian', '15612345678', 1, 2, 10, '2022-04-30 22:37:25.987', 0, '成功', '0', NULL, NULL, '75df69a7-f8c8-427e-81ef-d17c95439ba1', 0, NULL, NULL, NULL, '1', '2022-04-30 22:37:25.13', NULL, '2022-04-30 22:37:25.993', 0); -INSERT INTO "public"."system_sms_log" ("id", "channel_id", "channel_code", "template_id", "template_code", "template_type", "template_content", "template_params", "api_template_id", "mobile", "user_id", "user_type", "send_status", "send_time", "send_code", "send_msg", "api_send_code", "api_send_msg", "api_request_id", "api_serial_no", "receive_status", "receive_time", "api_receive_code", "api_receive_msg", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1, 4, 'DEBUG_DING_TALK', 11, 'bpm_process_instance_approve', 2, '您的流程被审批通过:OA 请假,查看链接:http://dashboard.yudao.iocoder.cn/bpm/process-instance/detail?id=0d23cbd6-c893-11ec-8a1d-3e2374911326', '{"detailUrl":"http://dashboard.yudao.iocoder.cn/bpm/process-instance/detail?id=0d23cbd6-c893-11ec-8a1d-3e2374911326","processInstanceName":"OA 请假"}', 'suibian', '15612345678', 1, 2, 10, '2022-04-30 22:40:31.283', 0, '成功', '0', NULL, NULL, '86ef3a28-e4c6-46a6-b417-d2b11e308576', 0, NULL, NULL, NULL, '1', '2022-04-30 22:40:30.49', NULL, '2022-04-30 22:40:31.287', 0); COMMIT; -- ---------------------------- -- Table structure for system_sms_template -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_sms_template"; -CREATE TABLE "public"."system_sms_template" ( +DROP TABLE IF EXISTS "system_sms_template"; +CREATE TABLE "system_sms_template" ( "id" int8 NOT NULL, "type" int2 NOT NULL, "status" int2 NOT NULL, @@ -21165,45 +3424,44 @@ CREATE TABLE "public"."system_sms_template" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_sms_template" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_sms_template"."id" IS '编号'; -COMMENT ON COLUMN "public"."system_sms_template"."type" IS '短信签名'; -COMMENT ON COLUMN "public"."system_sms_template"."status" IS '开启状态'; -COMMENT ON COLUMN "public"."system_sms_template"."code" IS '模板编码'; -COMMENT ON COLUMN "public"."system_sms_template"."name" IS '模板名称'; -COMMENT ON COLUMN "public"."system_sms_template"."content" IS '模板内容'; -COMMENT ON COLUMN "public"."system_sms_template"."params" IS '参数数组'; -COMMENT ON COLUMN "public"."system_sms_template"."remark" IS '备注'; -COMMENT ON COLUMN "public"."system_sms_template"."api_template_id" IS '短信 API 的模板编号'; -COMMENT ON COLUMN "public"."system_sms_template"."channel_id" IS '短信渠道编号'; -COMMENT ON COLUMN "public"."system_sms_template"."channel_code" IS '短信渠道编码'; -COMMENT ON COLUMN "public"."system_sms_template"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_sms_template"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_sms_template"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_sms_template"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_sms_template"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."system_sms_template" IS '短信模板'; +COMMENT ON COLUMN "system_sms_template"."id" IS '编号'; +COMMENT ON COLUMN "system_sms_template"."type" IS '短信签名'; +COMMENT ON COLUMN "system_sms_template"."status" IS '开启状态'; +COMMENT ON COLUMN "system_sms_template"."code" IS '模板编码'; +COMMENT ON COLUMN "system_sms_template"."name" IS '模板名称'; +COMMENT ON COLUMN "system_sms_template"."content" IS '模板内容'; +COMMENT ON COLUMN "system_sms_template"."params" IS '参数数组'; +COMMENT ON COLUMN "system_sms_template"."remark" IS '备注'; +COMMENT ON COLUMN "system_sms_template"."api_template_id" IS '短信 API 的模板编号'; +COMMENT ON COLUMN "system_sms_template"."channel_id" IS '短信渠道编号'; +COMMENT ON COLUMN "system_sms_template"."channel_code" IS '短信渠道编码'; +COMMENT ON COLUMN "system_sms_template"."creator" IS '创建者'; +COMMENT ON COLUMN "system_sms_template"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_sms_template"."updater" IS '更新者'; +COMMENT ON COLUMN "system_sms_template"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_sms_template"."deleted" IS '是否删除'; +COMMENT ON TABLE "system_sms_template" IS '短信模板'; -- ---------------------------- -- Records of system_sms_template -- ---------------------------- BEGIN; -INSERT INTO "public"."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, 'test_01', '测试验证码短信', '正在进行登录操作{operation},您的验证码是{code}', '["operation","code"]', NULL, '4383920', 1, 'YUN_PIAN', '', '2021-03-31 10:49:38', '1', '2021-04-10 01:22:00', 0); -INSERT INTO "public"."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, 'test_02', '公告通知', '您的验证码{code},该验证码5分钟内有效,请勿泄漏于他人!', '["code"]', NULL, 'SMS_207945135', 2, 'ALIYUN', '', '2021-03-31 11:56:30', '1', '2021-04-10 01:22:02', 0); -INSERT INTO "public"."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, 'test-01', '测试模板', '哈哈哈 {name}', '["name"]', 'f哈哈哈', '4383920', 1, 'YUN_PIAN', '1', '2021-04-10 01:07:21', '1', '2021-04-10 01:22:05', 0); -INSERT INTO "public"."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, 'test-04', '测试下', '老鸡{name},牛逼{code}', '["name","code"]', NULL, 'suibian', 4, 'DEBUG_DING_TALK', '1', '2021-04-13 00:29:53', '1', '2021-04-14 00:30:38', 0); -INSERT INTO "public"."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, 'user-sms-login', '前台用户短信登录', '您的验证码是{code}', '["code"]', NULL, '4372216', 1, 'YUN_PIAN', '1', '2021-10-11 08:10:00', '1', '2021-10-11 08:10:00', 0); -INSERT INTO "public"."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, 'bpm_task_assigned', '【工作流】任务被分配', '您收到了一条新的待办任务:{processInstanceName}-{taskName},申请人:{startUserNickname},处理链接:{detailUrl}', '["processInstanceName","taskName","startUserNickname","detailUrl"]', NULL, 'suibian', 4, 'DEBUG_DING_TALK', '1', '2022-01-21 22:31:19', '1', '2022-01-22 00:03:36', 0); -INSERT INTO "public"."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, 'bpm_process_instance_reject', '【工作流】流程被不通过', '您的流程被审批不通过:{processInstanceName},原因:{comment},查看链接:{detailUrl}', '["processInstanceName","comment","detailUrl"]', NULL, 'suibian', 4, 'DEBUG_DING_TALK', '1', '2022-01-22 00:03:31', '1', '2022-01-22 00:24:31', 0); -INSERT INTO "public"."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, 'bpm_process_instance_approve', '【工作流】流程被通过', '您的流程被审批通过:{processInstanceName},查看链接:{detailUrl}', '["processInstanceName","detailUrl"]', NULL, 'suibian', 4, 'DEBUG_DING_TALK', '1', '2022-01-22 00:04:31', '1', '2022-03-27 20:32:21', 0); -INSERT INTO "public"."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, 'demo', '演示模板', '我就是测试一下下', '[]', NULL, 'biubiubiu', 6, 'DEBUG_DING_TALK', '1', '2022-04-10 23:22:49', '1', '2022-04-10 23:22:49', 0); +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, 'test_01', '测试验证码短信', '正在进行登录操作{operation},您的验证码是{code}', '["operation","code"]', NULL, '4383920', 1, 'YUN_PIAN', '', '2021-03-31 10:49:38', '1', '2021-04-10 01:22:00', 0); +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, 'test_02', '公告通知', '您的验证码{code},该验证码5分钟内有效,请勿泄漏于他人!', '["code"]', NULL, 'SMS_207945135', 2, 'ALIYUN', '', '2021-03-31 11:56:30', '1', '2021-04-10 01:22:02', 0); +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, 'test-01', '测试模板', '哈哈哈 {name}', '["name"]', 'f哈哈哈', '4383920', 1, 'YUN_PIAN', '1', '2021-04-10 01:07:21', '1', '2021-04-10 01:22:05', 0); +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, 'test-04', '测试下', '老鸡{name},牛逼{code}', '["name","code"]', NULL, 'suibian', 4, 'DEBUG_DING_TALK', '1', '2021-04-13 00:29:53', '1', '2021-04-14 00:30:38', 0); +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, 'user-sms-login', '前台用户短信登录', '您的验证码是{code}', '["code"]', NULL, '4372216', 1, 'YUN_PIAN', '1', '2021-10-11 08:10:00', '1', '2021-10-11 08:10:00', 0); +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, 'bpm_task_assigned', '【工作流】任务被分配', '您收到了一条新的待办任务:{processInstanceName}-{taskName},申请人:{startUserNickname},处理链接:{detailUrl}', '["processInstanceName","taskName","startUserNickname","detailUrl"]', NULL, 'suibian', 4, 'DEBUG_DING_TALK', '1', '2022-01-21 22:31:19', '1', '2022-01-22 00:03:36', 0); +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, 'bpm_process_instance_approve', '【工作流】流程被通过', '您的流程被审批通过:{processInstanceName},查看链接:{detailUrl}', '["processInstanceName","detailUrl"]', NULL, 'suibian', 4, 'DEBUG_DING_TALK', '1', '2022-01-22 00:04:31', '1', '2022-03-27 20:32:21', 0); +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, 'demo', '演示模板', '我就是测试一下下', '[]', NULL, 'biubiubiu', 6, 'DEBUG_DING_TALK', '1', '2022-04-10 23:22:49', '1', '2022-04-10 23:22:49', 0); +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, 'bpm_process_instance_reject', '【工作流】流程被不通过', '您的流程被审批不通过:{processInstanceName},原因:{reason},查看链接:{detailUrl}', '["processInstanceName","reason","detailUrl"]', NULL, 'suibian', 4, 'DEBUG_DING_TALK', '1', '2022-01-22 00:03:31', '1', '2022-01-22 00:24:31', 0); COMMIT; -- ---------------------------- -- Table structure for system_social_user -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_social_user"; -CREATE TABLE "public"."system_social_user" ( +DROP TABLE IF EXISTS "system_social_user"; +CREATE TABLE "system_social_user" ( "id" numeric(20,0) NOT NULL, "type" int2 NOT NULL, "openid" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, @@ -21222,24 +3480,23 @@ CREATE TABLE "public"."system_social_user" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_social_user" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_social_user"."id" IS '主键(自增策略)'; -COMMENT ON COLUMN "public"."system_social_user"."type" IS '社交平台的类型'; -COMMENT ON COLUMN "public"."system_social_user"."openid" IS '社交 openid'; -COMMENT ON COLUMN "public"."system_social_user"."token" IS '社交 token'; -COMMENT ON COLUMN "public"."system_social_user"."raw_token_info" IS '原始 Token 数据,一般是 JSON 格式'; -COMMENT ON COLUMN "public"."system_social_user"."nickname" IS '用户昵称'; -COMMENT ON COLUMN "public"."system_social_user"."avatar" IS '用户头像'; -COMMENT ON COLUMN "public"."system_social_user"."raw_user_info" IS '原始用户数据,一般是 JSON 格式'; -COMMENT ON COLUMN "public"."system_social_user"."code" IS '最后一次的认证 code'; -COMMENT ON COLUMN "public"."system_social_user"."state" IS '最后一次的认证 state'; -COMMENT ON COLUMN "public"."system_social_user"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_social_user"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_social_user"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_social_user"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_social_user"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."system_social_user"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."system_social_user" IS '社交用户表'; +COMMENT ON COLUMN "system_social_user"."id" IS '主键(自增策略)'; +COMMENT ON COLUMN "system_social_user"."type" IS '社交平台的类型'; +COMMENT ON COLUMN "system_social_user"."openid" IS '社交 openid'; +COMMENT ON COLUMN "system_social_user"."token" IS '社交 token'; +COMMENT ON COLUMN "system_social_user"."raw_token_info" IS '原始 Token 数据,一般是 JSON 格式'; +COMMENT ON COLUMN "system_social_user"."nickname" IS '用户昵称'; +COMMENT ON COLUMN "system_social_user"."avatar" IS '用户头像'; +COMMENT ON COLUMN "system_social_user"."raw_user_info" IS '原始用户数据,一般是 JSON 格式'; +COMMENT ON COLUMN "system_social_user"."code" IS '最后一次的认证 code'; +COMMENT ON COLUMN "system_social_user"."state" IS '最后一次的认证 state'; +COMMENT ON COLUMN "system_social_user"."creator" IS '创建者'; +COMMENT ON COLUMN "system_social_user"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_social_user"."updater" IS '更新者'; +COMMENT ON COLUMN "system_social_user"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_social_user"."deleted" IS '是否删除'; +COMMENT ON COLUMN "system_social_user"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "system_social_user" IS '社交用户表'; -- ---------------------------- -- Records of system_social_user @@ -21250,8 +3507,8 @@ COMMIT; -- ---------------------------- -- Table structure for system_social_user_bind -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_social_user_bind"; -CREATE TABLE "public"."system_social_user_bind" ( +DROP TABLE IF EXISTS "system_social_user_bind"; +CREATE TABLE "system_social_user_bind" ( "id" numeric(20,0) NOT NULL, "user_id" int8 NOT NULL, "user_type" int2 NOT NULL, @@ -21265,19 +3522,18 @@ CREATE TABLE "public"."system_social_user_bind" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_social_user_bind" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_social_user_bind"."id" IS '主键(自增策略)'; -COMMENT ON COLUMN "public"."system_social_user_bind"."user_id" IS '用户编号'; -COMMENT ON COLUMN "public"."system_social_user_bind"."user_type" IS '用户类型'; -COMMENT ON COLUMN "public"."system_social_user_bind"."social_type" IS '社交平台的类型'; -COMMENT ON COLUMN "public"."system_social_user_bind"."social_user_id" IS '社交用户的编号'; -COMMENT ON COLUMN "public"."system_social_user_bind"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_social_user_bind"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_social_user_bind"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_social_user_bind"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_social_user_bind"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."system_social_user_bind"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."system_social_user_bind" IS '社交绑定表'; +COMMENT ON COLUMN "system_social_user_bind"."id" IS '主键(自增策略)'; +COMMENT ON COLUMN "system_social_user_bind"."user_id" IS '用户编号'; +COMMENT ON COLUMN "system_social_user_bind"."user_type" IS '用户类型'; +COMMENT ON COLUMN "system_social_user_bind"."social_type" IS '社交平台的类型'; +COMMENT ON COLUMN "system_social_user_bind"."social_user_id" IS '社交用户的编号'; +COMMENT ON COLUMN "system_social_user_bind"."creator" IS '创建者'; +COMMENT ON COLUMN "system_social_user_bind"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_social_user_bind"."updater" IS '更新者'; +COMMENT ON COLUMN "system_social_user_bind"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_social_user_bind"."deleted" IS '是否删除'; +COMMENT ON COLUMN "system_social_user_bind"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "system_social_user_bind" IS '社交绑定表'; -- ---------------------------- -- Records of system_social_user_bind @@ -21288,8 +3544,8 @@ COMMIT; -- ---------------------------- -- Table structure for system_tenant -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_tenant"; -CREATE TABLE "public"."system_tenant" ( +DROP TABLE IF EXISTS "system_tenant"; +CREATE TABLE "system_tenant" ( "id" int8 NOT NULL, "name" varchar(30) COLLATE "pg_catalog"."default" NOT NULL, "contact_user_id" int8, @@ -21307,38 +3563,37 @@ CREATE TABLE "public"."system_tenant" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_tenant" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_tenant"."id" IS '租户编号'; -COMMENT ON COLUMN "public"."system_tenant"."name" IS '租户名'; -COMMENT ON COLUMN "public"."system_tenant"."contact_user_id" IS '联系人的用户编号'; -COMMENT ON COLUMN "public"."system_tenant"."contact_name" IS '联系人'; -COMMENT ON COLUMN "public"."system_tenant"."contact_mobile" IS '联系手机'; -COMMENT ON COLUMN "public"."system_tenant"."status" IS '租户状态(0正常 1停用)'; -COMMENT ON COLUMN "public"."system_tenant"."domain" IS '绑定域名'; -COMMENT ON COLUMN "public"."system_tenant"."package_id" IS '租户套餐编号'; -COMMENT ON COLUMN "public"."system_tenant"."expire_time" IS '过期时间'; -COMMENT ON COLUMN "public"."system_tenant"."account_count" IS '账号数量'; -COMMENT ON COLUMN "public"."system_tenant"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_tenant"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_tenant"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_tenant"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_tenant"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."system_tenant" IS '租户表'; +COMMENT ON COLUMN "system_tenant"."id" IS '租户编号'; +COMMENT ON COLUMN "system_tenant"."name" IS '租户名'; +COMMENT ON COLUMN "system_tenant"."contact_user_id" IS '联系人的用户编号'; +COMMENT ON COLUMN "system_tenant"."contact_name" IS '联系人'; +COMMENT ON COLUMN "system_tenant"."contact_mobile" IS '联系手机'; +COMMENT ON COLUMN "system_tenant"."status" IS '租户状态(0正常 1停用)'; +COMMENT ON COLUMN "system_tenant"."domain" IS '绑定域名'; +COMMENT ON COLUMN "system_tenant"."package_id" IS '租户套餐编号'; +COMMENT ON COLUMN "system_tenant"."expire_time" IS '过期时间'; +COMMENT ON COLUMN "system_tenant"."account_count" IS '账号数量'; +COMMENT ON COLUMN "system_tenant"."creator" IS '创建者'; +COMMENT ON COLUMN "system_tenant"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_tenant"."updater" IS '更新者'; +COMMENT ON COLUMN "system_tenant"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_tenant"."deleted" IS '是否删除'; +COMMENT ON TABLE "system_tenant" IS '租户表'; -- ---------------------------- -- Records of system_tenant -- ---------------------------- BEGIN; -INSERT INTO "public"."system_tenant" ("id", "name", "contact_user_id", "contact_name", "contact_mobile", "status", "domain", "package_id", "expire_time", "account_count", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1, '芋道源码', NULL, '芋艿', '17321315478', 0, 'https://www.iocoder.cn', 0, '2099-02-19 17:14:16', 9999, '1', '2021-01-05 17:03:47', '1', '2022-02-23 12:15:11', 0); -INSERT INTO "public"."system_tenant" ("id", "name", "contact_user_id", "contact_name", "contact_mobile", "status", "domain", "package_id", "expire_time", "account_count", "creator", "create_time", "updater", "update_time", "deleted") VALUES (121, '小租户', 110, '小王2', '15601691300', 0, 'http://www.iocoder.cn', 111, '2024-03-11 00:00:00', 20, '1', '2022-02-22 00:56:14', '1', '2022-03-19 18:37:20', 0); -INSERT INTO "public"."system_tenant" ("id", "name", "contact_user_id", "contact_name", "contact_mobile", "status", "domain", "package_id", "expire_time", "account_count", "creator", "create_time", "updater", "update_time", "deleted") VALUES (122, '测试租户', 113, '芋道', '15601691300', 0, 'https://www.iocoder.cn', 111, '2022-04-30 00:00:00', 50, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0); +INSERT INTO "system_tenant" ("id", "name", "contact_user_id", "contact_name", "contact_mobile", "status", "domain", "package_id", "expire_time", "account_count", "creator", "create_time", "updater", "update_time", "deleted") VALUES (1, '芋道源码', NULL, '芋艿', '17321315478', 0, 'https://www.iocoder.cn', 0, '2099-02-19 17:14:16', 9999, '1', '2021-01-05 17:03:47', '1', '2022-02-23 12:15:11', 0); +INSERT INTO "system_tenant" ("id", "name", "contact_user_id", "contact_name", "contact_mobile", "status", "domain", "package_id", "expire_time", "account_count", "creator", "create_time", "updater", "update_time", "deleted") VALUES (121, '小租户', 110, '小王2', '15601691300', 0, 'http://www.iocoder.cn', 111, '2024-03-11 00:00:00', 20, '1', '2022-02-22 00:56:14', '1', '2022-03-19 18:37:20', 0); +INSERT INTO "system_tenant" ("id", "name", "contact_user_id", "contact_name", "contact_mobile", "status", "domain", "package_id", "expire_time", "account_count", "creator", "create_time", "updater", "update_time", "deleted") VALUES (122, '测试租户', 113, '芋道', '15601691300', 0, 'https://www.iocoder.cn', 111, '2022-04-30 00:00:00', 50, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0); COMMIT; -- ---------------------------- -- Table structure for system_tenant_package -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_tenant_package"; -CREATE TABLE "public"."system_tenant_package" ( +DROP TABLE IF EXISTS "system_tenant_package"; +CREATE TABLE "system_tenant_package" ( "id" int8 NOT NULL, "name" varchar(30) COLLATE "pg_catalog"."default" NOT NULL, "status" int2 NOT NULL, @@ -21351,31 +3606,30 @@ CREATE TABLE "public"."system_tenant_package" ( "deleted" int2 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_tenant_package" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_tenant_package"."id" IS '套餐编号'; -COMMENT ON COLUMN "public"."system_tenant_package"."name" IS '套餐名'; -COMMENT ON COLUMN "public"."system_tenant_package"."status" IS '租户状态(0正常 1停用)'; -COMMENT ON COLUMN "public"."system_tenant_package"."remark" IS '备注'; -COMMENT ON COLUMN "public"."system_tenant_package"."menu_ids" IS '关联的菜单编号'; -COMMENT ON COLUMN "public"."system_tenant_package"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_tenant_package"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_tenant_package"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_tenant_package"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_tenant_package"."deleted" IS '是否删除'; -COMMENT ON TABLE "public"."system_tenant_package" IS '租户套餐表'; +COMMENT ON COLUMN "system_tenant_package"."id" IS '套餐编号'; +COMMENT ON COLUMN "system_tenant_package"."name" IS '套餐名'; +COMMENT ON COLUMN "system_tenant_package"."status" IS '租户状态(0正常 1停用)'; +COMMENT ON COLUMN "system_tenant_package"."remark" IS '备注'; +COMMENT ON COLUMN "system_tenant_package"."menu_ids" IS '关联的菜单编号'; +COMMENT ON COLUMN "system_tenant_package"."creator" IS '创建者'; +COMMENT ON COLUMN "system_tenant_package"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_tenant_package"."updater" IS '更新者'; +COMMENT ON COLUMN "system_tenant_package"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_tenant_package"."deleted" IS '是否删除'; +COMMENT ON TABLE "system_tenant_package" IS '租户套餐表'; -- ---------------------------- -- Records of system_tenant_package -- ---------------------------- BEGIN; -INSERT INTO "public"."system_tenant_package" ("id", "name", "status", "remark", "menu_ids", "creator", "create_time", "updater", "update_time", "deleted") VALUES (111, '普通套餐', 0, '小功能', '[1024,1025,1,102,103,104,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023]', '1', '2022-02-22 00:54:00', '1', '2022-03-19 18:39:13', 0); +INSERT INTO "system_tenant_package" ("id", "name", "status", "remark", "menu_ids", "creator", "create_time", "updater", "update_time", "deleted") VALUES (111, '普通套餐', 0, '小功能', '[1024,1025,1,102,103,104,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023]', '1', '2022-02-22 00:54:00', '1', '2022-03-19 18:39:13', 0); COMMIT; -- ---------------------------- -- Table structure for system_user -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_user"; -CREATE TABLE "public"."system_user" ( +DROP TABLE IF EXISTS "system_user"; +CREATE TABLE "system_user" ( "id" int8 NOT NULL, "username" varchar(30) COLLATE "pg_catalog"."default" NOT NULL, "password" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, @@ -21398,54 +3652,53 @@ CREATE TABLE "public"."system_user" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_user" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_user"."id" IS '用户ID'; -COMMENT ON COLUMN "public"."system_user"."username" IS '用户账号'; -COMMENT ON COLUMN "public"."system_user"."password" IS '密码'; -COMMENT ON COLUMN "public"."system_user"."nickname" IS '用户昵称'; -COMMENT ON COLUMN "public"."system_user"."remark" IS '备注'; -COMMENT ON COLUMN "public"."system_user"."dept_id" IS '部门ID'; -COMMENT ON COLUMN "public"."system_user"."post_ids" IS '岗位编号数组'; -COMMENT ON COLUMN "public"."system_user"."email" IS '用户邮箱'; -COMMENT ON COLUMN "public"."system_user"."mobile" IS '手机号码'; -COMMENT ON COLUMN "public"."system_user"."sex" IS '用户性别'; -COMMENT ON COLUMN "public"."system_user"."avatar" IS '头像地址'; -COMMENT ON COLUMN "public"."system_user"."status" IS '帐号状态(0正常 1停用)'; -COMMENT ON COLUMN "public"."system_user"."login_ip" IS '最后登录IP'; -COMMENT ON COLUMN "public"."system_user"."login_date" IS '最后登录时间'; -COMMENT ON COLUMN "public"."system_user"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_user"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_user"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_user"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_user"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."system_user"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."system_user" IS '用户信息表'; +COMMENT ON COLUMN "system_user"."id" IS '用户ID'; +COMMENT ON COLUMN "system_user"."username" IS '用户账号'; +COMMENT ON COLUMN "system_user"."password" IS '密码'; +COMMENT ON COLUMN "system_user"."nickname" IS '用户昵称'; +COMMENT ON COLUMN "system_user"."remark" IS '备注'; +COMMENT ON COLUMN "system_user"."dept_id" IS '部门ID'; +COMMENT ON COLUMN "system_user"."post_ids" IS '岗位编号数组'; +COMMENT ON COLUMN "system_user"."email" IS '用户邮箱'; +COMMENT ON COLUMN "system_user"."mobile" IS '手机号码'; +COMMENT ON COLUMN "system_user"."sex" IS '用户性别'; +COMMENT ON COLUMN "system_user"."avatar" IS '头像地址'; +COMMENT ON COLUMN "system_user"."status" IS '帐号状态(0正常 1停用)'; +COMMENT ON COLUMN "system_user"."login_ip" IS '最后登录IP'; +COMMENT ON COLUMN "system_user"."login_date" IS '最后登录时间'; +COMMENT ON COLUMN "system_user"."creator" IS '创建者'; +COMMENT ON COLUMN "system_user"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_user"."updater" IS '更新者'; +COMMENT ON COLUMN "system_user"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_user"."deleted" IS '是否删除'; +COMMENT ON COLUMN "system_user"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "system_user" IS '用户信息表'; -- ---------------------------- -- Records of system_user -- ---------------------------- BEGIN; -INSERT INTO "public"."system_user" ("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, 'admin', '$2a$10$0acJOIk2D25/oC87nyclE..0lzeu9DtQ/n3geP4fkun/zIVRhHJIO', '芋道源码', '管理员', 103, '[1]', 'aoteman@126.com', '15612345678', 1, 'http://test.yudao.iocoder.cn/48934f2f-92d4-4250-b917-d10d2b262c6a', 0, '127.0.0.1', '2022-04-30 00:06:21', 'admin', '2021-01-05 17:03:47', NULL, '2022-04-30 00:06:21', 0, 1); -INSERT INTO "public"."system_user" ("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, 'yudao', '$2a$10$11U48RhyJ5pSBYWSn12AD./ld671.ycSzJHbyrtpeoMeYiw31eo8a', '芋道', '不要吓我', 104, '[1]', 'yudao@iocoder.cn', '15601691300', 1, '', 1, '', NULL, '', '2021-01-07 09:07:17', '104', '2021-12-16 09:26:10', 0, 1); -INSERT INTO "public"."system_user" ("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, 'yuanma', '$2a$10$wWoPT7sqriM2O1YXRL.je.GiL538OR6ZTN8aQZr9JAGdnpCH2tpYe', '源码', NULL, 106, NULL, 'yuanma@iocoder.cn', '15601701300', 0, '', 0, '127.0.0.1', '2022-01-18 00:33:40', '', '2021-01-13 23:50:35', NULL, '2022-01-18 00:33:40', 0, 1); -INSERT INTO "public"."system_user" ("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, 'test', '$2a$10$e5RpuDCC0GYSt0Hvd2.CjujIXwgGct4SnXi6dVGxdgFsnqgEryk5a', '测试号', NULL, 107, '[]', '111@qq.com', '15601691200', 1, '', 0, '127.0.0.1', '2022-03-19 21:46:19', '', '2021-01-21 02:13:53', NULL, '2022-03-19 21:46:19', 0, 1); -INSERT INTO "public"."system_user" ("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, 'admin107', '$2a$10$dYOOBKMO93v/.ReCqzyFg.o67Tqk.bbc2bhrpyBGkIw9aypCtr2pm', '芋艿', NULL, NULL, NULL, '', '15601691300', 0, '', 0, '', NULL, '1', '2022-02-20 22:59:33', '1', '2022-02-27 08:26:51', 0, 118); -INSERT INTO "public"."system_user" ("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, 'admin108', '$2a$10$y6mfvKoNYL1GXWak8nYwVOH.kCWqjactkzdoIDgiKl93WN3Ejg.Lu', '芋艿', NULL, NULL, NULL, '', '15601691300', 0, '', 0, '', NULL, '1', '2022-02-20 23:00:50', '1', '2022-02-27 08:26:53', 0, 119); -INSERT INTO "public"."system_user" ("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, 'admin109', '$2a$10$JAqvH0tEc0I7dfDVBI7zyuB4E3j.uH6daIjV53.vUS6PknFkDJkuK', '芋艿', NULL, NULL, NULL, '', '15601691300', 0, '', 0, '', NULL, '1', '2022-02-20 23:11:50', '1', '2022-02-27 08:26:56', 0, 120); -INSERT INTO "public"."system_user" ("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, 'admin110', '$2a$10$qYxoXs0ogPHgYllyEneYde9xcCW5hZgukrxeXZ9lmLhKse8TK6IwW', '小王', NULL, NULL, NULL, '', '15601691300', 0, '', 0, '127.0.0.1', '2022-02-23 19:36:28', '1', '2022-02-22 00:56:14', NULL, '2022-02-27 08:26:59', 0, 121); -INSERT INTO "public"."system_user" ("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, 'test', '$2a$10$mExveopHUx9Q4QiLtAzhDeH3n4/QlNLzEsM4AqgxKrU.ciUZDXZCy', '测试用户', NULL, NULL, '[]', '', '', 0, '', 0, '', NULL, '110', '2022-02-23 13:14:33', '110', '2022-02-23 13:14:33', 0, 121); -INSERT INTO "public"."system_user" ("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, 'newobject', '$2a$10$jh5MsR.ud/gKe3mVeUp5t.nEXGDSmHyv5OYjWQwHO8wlGmMSI9Twy', '新对象', NULL, NULL, '[]', '', '', 0, '', 0, '', NULL, '1', '2022-02-23 19:08:03', '1', '2022-02-23 19:08:03', 0, 1); -INSERT INTO "public"."system_user" ("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, 'aoteman', '$2a$10$0acJOIk2D25/oC87nyclE..0lzeu9DtQ/n3geP4fkun/zIVRhHJIO', '芋道', NULL, NULL, NULL, '', '15601691300', 0, '', 0, '127.0.0.1', '2022-03-19 18:38:51', '1', '2022-03-07 21:37:58', NULL, '2022-03-19 18:38:51', 0, 122); -INSERT INTO "public"."system_user" ("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, 'hrmgr', '$2a$10$TR4eybBioGRhBmDBWkqWLO6NIh3mzYa8KBKDDB5woiGYFVlRAi.fu', 'hr 小姐姐', NULL, NULL, '[3]', '', '', 0, '', 0, '127.0.0.1', '2022-03-19 22:15:43', '1', '2022-03-19 21:50:58', NULL, '2022-03-19 22:15:43', 0, 1); -INSERT INTO "public"."system_user" ("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, 'aotemane', '$2a$10$/WCwGHu1eq0wOVDd/u8HweJ0gJCHyLS6T7ndCqI8UXZAQom1etk2e', '1', '11', 100, '[]', '', '', 0, '', 0, '', NULL, '1', '2022-04-30 02:55:43', '1', '2022-04-30 02:55:43', 0, 1); -INSERT INTO "public"."system_user" ("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 (0, 'admin1', '$2a$10$HXL5ExIqOYKJQiKp5uWqKOMOFdbRskMaF8ZEeaGF0PSs0GQFNyNgO', 'biu', NULL, NULL, '[]', NULL, NULL, NULL, NULL, 0, NULL, NULL, '1', '2022-04-30 20:06:11.114', '1', '2022-04-30 20:06:11.114', 0, 1); +INSERT INTO "system_user" ("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, 'admin', '$2a$10$0acJOIk2D25/oC87nyclE..0lzeu9DtQ/n3geP4fkun/zIVRhHJIO', '芋道源码', '管理员', 103, '[1]', 'aoteman@126.com', '15612345678', 1, 'http://test.yudao.iocoder.cn/48934f2f-92d4-4250-b917-d10d2b262c6a', 0, '127.0.0.1', '2022-04-30 00:06:21', 'admin', '2021-01-05 17:03:47', NULL, '2022-04-30 00:06:21', 0, 1); +INSERT INTO "system_user" ("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, 'yudao', '$2a$10$11U48RhyJ5pSBYWSn12AD./ld671.ycSzJHbyrtpeoMeYiw31eo8a', '芋道', '不要吓我', 104, '[1]', 'yudao@iocoder.cn', '15601691300', 1, '', 1, '', NULL, '', '2021-01-07 09:07:17', '104', '2021-12-16 09:26:10', 0, 1); +INSERT INTO "system_user" ("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, 'yuanma', '$2a$10$wWoPT7sqriM2O1YXRL.je.GiL538OR6ZTN8aQZr9JAGdnpCH2tpYe', '源码', NULL, 106, NULL, 'yuanma@iocoder.cn', '15601701300', 0, '', 0, '127.0.0.1', '2022-01-18 00:33:40', '', '2021-01-13 23:50:35', NULL, '2022-01-18 00:33:40', 0, 1); +INSERT INTO "system_user" ("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, 'test', '$2a$10$e5RpuDCC0GYSt0Hvd2.CjujIXwgGct4SnXi6dVGxdgFsnqgEryk5a', '测试号', NULL, 107, '[]', '111@qq.com', '15601691200', 1, '', 0, '127.0.0.1', '2022-03-19 21:46:19', '', '2021-01-21 02:13:53', NULL, '2022-03-19 21:46:19', 0, 1); +INSERT INTO "system_user" ("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, 'admin107', '$2a$10$dYOOBKMO93v/.ReCqzyFg.o67Tqk.bbc2bhrpyBGkIw9aypCtr2pm', '芋艿', NULL, NULL, NULL, '', '15601691300', 0, '', 0, '', NULL, '1', '2022-02-20 22:59:33', '1', '2022-02-27 08:26:51', 0, 118); +INSERT INTO "system_user" ("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, 'admin108', '$2a$10$y6mfvKoNYL1GXWak8nYwVOH.kCWqjactkzdoIDgiKl93WN3Ejg.Lu', '芋艿', NULL, NULL, NULL, '', '15601691300', 0, '', 0, '', NULL, '1', '2022-02-20 23:00:50', '1', '2022-02-27 08:26:53', 0, 119); +INSERT INTO "system_user" ("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, 'admin109', '$2a$10$JAqvH0tEc0I7dfDVBI7zyuB4E3j.uH6daIjV53.vUS6PknFkDJkuK', '芋艿', NULL, NULL, NULL, '', '15601691300', 0, '', 0, '', NULL, '1', '2022-02-20 23:11:50', '1', '2022-02-27 08:26:56', 0, 120); +INSERT INTO "system_user" ("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, 'admin110', '$2a$10$qYxoXs0ogPHgYllyEneYde9xcCW5hZgukrxeXZ9lmLhKse8TK6IwW', '小王', NULL, NULL, NULL, '', '15601691300', 0, '', 0, '127.0.0.1', '2022-02-23 19:36:28', '1', '2022-02-22 00:56:14', NULL, '2022-02-27 08:26:59', 0, 121); +INSERT INTO "system_user" ("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, 'test', '$2a$10$mExveopHUx9Q4QiLtAzhDeH3n4/QlNLzEsM4AqgxKrU.ciUZDXZCy', '测试用户', NULL, NULL, '[]', '', '', 0, '', 0, '', NULL, '110', '2022-02-23 13:14:33', '110', '2022-02-23 13:14:33', 0, 121); +INSERT INTO "system_user" ("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, 'newobject', '$2a$10$jh5MsR.ud/gKe3mVeUp5t.nEXGDSmHyv5OYjWQwHO8wlGmMSI9Twy', '新对象', NULL, NULL, '[]', '', '', 0, '', 0, '', NULL, '1', '2022-02-23 19:08:03', '1', '2022-02-23 19:08:03', 0, 1); +INSERT INTO "system_user" ("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, 'aoteman', '$2a$10$0acJOIk2D25/oC87nyclE..0lzeu9DtQ/n3geP4fkun/zIVRhHJIO', '芋道', NULL, NULL, NULL, '', '15601691300', 0, '', 0, '127.0.0.1', '2022-03-19 18:38:51', '1', '2022-03-07 21:37:58', NULL, '2022-03-19 18:38:51', 0, 122); +INSERT INTO "system_user" ("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, 'hrmgr', '$2a$10$TR4eybBioGRhBmDBWkqWLO6NIh3mzYa8KBKDDB5woiGYFVlRAi.fu', 'hr 小姐姐', NULL, NULL, '[3]', '', '', 0, '', 0, '127.0.0.1', '2022-03-19 22:15:43', '1', '2022-03-19 21:50:58', NULL, '2022-03-19 22:15:43', 0, 1); +INSERT INTO "system_user" ("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, 'aotemane', '$2a$10$/WCwGHu1eq0wOVDd/u8HweJ0gJCHyLS6T7ndCqI8UXZAQom1etk2e', '1', '11', 100, '[]', '', '', 0, '', 0, '', NULL, '1', '2022-04-30 02:55:43', '1', '2022-04-30 02:55:43', 0, 1); +INSERT INTO "system_user" ("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 (0, 'admin1', '$2a$10$HXL5ExIqOYKJQiKp5uWqKOMOFdbRskMaF8ZEeaGF0PSs0GQFNyNgO', 'biu', NULL, NULL, '[]', NULL, NULL, NULL, NULL, 0, NULL, NULL, '1', '2022-04-30 20:06:11.114', '1', '2022-04-30 20:06:11.114', 0, 1); COMMIT; -- ---------------------------- -- Table structure for system_user_role -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_user_role"; -CREATE TABLE "public"."system_user_role" ( +DROP TABLE IF EXISTS "system_user_role"; +CREATE TABLE "system_user_role" ( "id" int8 NOT NULL, "user_id" int8 NOT NULL, "role_id" int8 NOT NULL, @@ -21457,45 +3710,42 @@ CREATE TABLE "public"."system_user_role" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_user_role" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_user_role"."id" IS '自增编号'; -COMMENT ON COLUMN "public"."system_user_role"."user_id" IS '用户ID'; -COMMENT ON COLUMN "public"."system_user_role"."role_id" IS '角色ID'; -COMMENT ON COLUMN "public"."system_user_role"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_user_role"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_user_role"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_user_role"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_user_role"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."system_user_role"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."system_user_role" IS '用户和角色关联表'; +COMMENT ON COLUMN "system_user_role"."id" IS '自增编号'; +COMMENT ON COLUMN "system_user_role"."user_id" IS '用户ID'; +COMMENT ON COLUMN "system_user_role"."role_id" IS '角色ID'; +COMMENT ON COLUMN "system_user_role"."creator" IS '创建者'; +COMMENT ON COLUMN "system_user_role"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_user_role"."updater" IS '更新者'; +COMMENT ON COLUMN "system_user_role"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_user_role"."deleted" IS '是否删除'; +COMMENT ON COLUMN "system_user_role"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "system_user_role" IS '用户和角色关联表'; -- ---------------------------- -- Records of system_user_role -- ---------------------------- BEGIN; -INSERT INTO "public"."system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1, 1, 1, '', NULL, '', NULL, 0, 1); -INSERT INTO "public"."system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (2, 2, 2, '', NULL, '', NULL, 0, 1); -INSERT INTO "public"."system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (3, 100, 1, '', NULL, '', NULL, 1, 1); -INSERT INTO "public"."system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (4, 100, 101, '', NULL, '', NULL, 0, 1); -INSERT INTO "public"."system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (5, 100, 1, '', NULL, '', NULL, 0, 1); -INSERT INTO "public"."system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (6, 100, 2, '', NULL, '', NULL, 0, 1); -INSERT INTO "public"."system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (7, 104, 101, '', NULL, '', NULL, 0, 1); -INSERT INTO "public"."system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (9, 105, 1, '1', '2021-10-30 13:40:48', '1', '2021-10-30 13:40:48', 1, 1); -INSERT INTO "public"."system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (10, 103, 1, '1', '2022-01-11 13:19:45', '1', '2022-01-11 13:19:45', 0, 1); -INSERT INTO "public"."system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (11, 107, 106, '1', '2022-02-20 22:59:33', '1', '2022-02-20 22:59:33', 0, 118); -INSERT INTO "public"."system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (12, 108, 107, '1', '2022-02-20 23:00:50', '1', '2022-02-20 23:00:50', 0, 119); -INSERT INTO "public"."system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (13, 109, 108, '1', '2022-02-20 23:11:50', '1', '2022-02-20 23:11:50', 0, 120); -INSERT INTO "public"."system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (14, 110, 109, '1', '2022-02-22 00:56:14', '1', '2022-02-22 00:56:14', 0, 121); -INSERT INTO "public"."system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (15, 111, 110, '110', '2022-02-23 13:14:38', '110', '2022-02-23 13:14:38', 0, 121); -INSERT INTO "public"."system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (16, 113, 111, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); -INSERT INTO "public"."system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (17, 114, 101, '1', '2022-03-19 21:51:13', '1', '2022-03-19 21:51:13', 0, 1); +INSERT INTO "system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (1, 1, 1, '', NULL, '', NULL, 0, 1); +INSERT INTO "system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (2, 2, 2, '', NULL, '', NULL, 0, 1); +INSERT INTO "system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (4, 100, 101, '', NULL, '', NULL, 0, 1); +INSERT INTO "system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (5, 100, 1, '', NULL, '', NULL, 0, 1); +INSERT INTO "system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (6, 100, 2, '', NULL, '', NULL, 0, 1); +INSERT INTO "system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (7, 104, 101, '', NULL, '', NULL, 0, 1); +INSERT INTO "system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (10, 103, 1, '1', '2022-01-11 13:19:45', '1', '2022-01-11 13:19:45', 0, 1); +INSERT INTO "system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (11, 107, 106, '1', '2022-02-20 22:59:33', '1', '2022-02-20 22:59:33', 0, 118); +INSERT INTO "system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (12, 108, 107, '1', '2022-02-20 23:00:50', '1', '2022-02-20 23:00:50', 0, 119); +INSERT INTO "system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (13, 109, 108, '1', '2022-02-20 23:11:50', '1', '2022-02-20 23:11:50', 0, 120); +INSERT INTO "system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (14, 110, 109, '1', '2022-02-22 00:56:14', '1', '2022-02-22 00:56:14', 0, 121); +INSERT INTO "system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (15, 111, 110, '110', '2022-02-23 13:14:38', '110', '2022-02-23 13:14:38', 0, 121); +INSERT INTO "system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (16, 113, 111, '1', '2022-03-07 21:37:58', '1', '2022-03-07 21:37:58', 0, 122); +INSERT INTO "system_user_role" ("id", "user_id", "role_id", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES (17, 114, 101, '1', '2022-03-19 21:51:13', '1', '2022-03-19 21:51:13', 0, 1); COMMIT; -- ---------------------------- -- Table structure for system_user_session -- ---------------------------- -DROP TABLE IF EXISTS "public"."system_user_session"; -CREATE TABLE "public"."system_user_session" ( +DROP TABLE IF EXISTS "system_user_session"; +CREATE TABLE "system_user_session" ( "id" varchar(32) COLLATE "pg_catalog"."default" NOT NULL, "user_id" int8 NOT NULL, "user_type" int2 NOT NULL, @@ -21511,394 +3761,687 @@ CREATE TABLE "public"."system_user_session" ( "tenant_id" int8 NOT NULL DEFAULT 0 ) ; -ALTER TABLE "public"."system_user_session" OWNER TO "postgres"; -COMMENT ON COLUMN "public"."system_user_session"."id" IS '会话编号'; -COMMENT ON COLUMN "public"."system_user_session"."user_id" IS '用户编号'; -COMMENT ON COLUMN "public"."system_user_session"."user_type" IS '用户类型'; -COMMENT ON COLUMN "public"."system_user_session"."session_timeout" IS '会话超时时间'; -COMMENT ON COLUMN "public"."system_user_session"."username" IS '用户账号'; -COMMENT ON COLUMN "public"."system_user_session"."user_ip" IS '用户 IP'; -COMMENT ON COLUMN "public"."system_user_session"."user_agent" IS '浏览器 UA'; -COMMENT ON COLUMN "public"."system_user_session"."creator" IS '创建者'; -COMMENT ON COLUMN "public"."system_user_session"."create_time" IS '创建时间'; -COMMENT ON COLUMN "public"."system_user_session"."updater" IS '更新者'; -COMMENT ON COLUMN "public"."system_user_session"."update_time" IS '更新时间'; -COMMENT ON COLUMN "public"."system_user_session"."deleted" IS '是否删除'; -COMMENT ON COLUMN "public"."system_user_session"."tenant_id" IS '租户编号'; -COMMENT ON TABLE "public"."system_user_session" IS '用户在线 Session'; +COMMENT ON COLUMN "system_user_session"."id" IS '会话编号'; +COMMENT ON COLUMN "system_user_session"."user_id" IS '用户编号'; +COMMENT ON COLUMN "system_user_session"."user_type" IS '用户类型'; +COMMENT ON COLUMN "system_user_session"."session_timeout" IS '会话超时时间'; +COMMENT ON COLUMN "system_user_session"."username" IS '用户账号'; +COMMENT ON COLUMN "system_user_session"."user_ip" IS '用户 IP'; +COMMENT ON COLUMN "system_user_session"."user_agent" IS '浏览器 UA'; +COMMENT ON COLUMN "system_user_session"."creator" IS '创建者'; +COMMENT ON COLUMN "system_user_session"."create_time" IS '创建时间'; +COMMENT ON COLUMN "system_user_session"."updater" IS '更新者'; +COMMENT ON COLUMN "system_user_session"."update_time" IS '更新时间'; +COMMENT ON COLUMN "system_user_session"."deleted" IS '是否删除'; +COMMENT ON COLUMN "system_user_session"."tenant_id" IS '租户编号'; +COMMENT ON TABLE "system_user_session" IS '用户在线 Session'; -- ---------------------------- -- Records of system_user_session -- ---------------------------- BEGIN; -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('084a5a2a737b42e3bb13604a2ff6d4fe', 1, 2, '2022-03-13 18:01:54', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-12 18:01:54', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('09df5aaf4a7a4a9ab42722c8adea0767', 1, 2, '2022-04-03 22:04:37', 'admin', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-02 22:04:37', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('0c04639e800e4c75a52af71239146512', 1, 2, '2022-03-28 10:14:05', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-26 19:36:22', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('0d7a900b4a5e4089a48a54a71bca83e6', 1, 2, '2022-02-28 11:56:22', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36', NULL, '2022-02-27 11:56:22', NULL, '2022-02-27 08:25:28', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('101dc01ff37b4ceaa60a63e1c1005bbf', 1, 2, '2022-03-08 21:47:01', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-07 21:47:01', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('116ed46314c64d528cadcdc4e5a74710', 1, 2, '2022-03-20 18:27:50', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-19 18:27:50', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('1292ec7ef81d4833a08044cc11a8f4e6', 1, 2, '2022-04-11 17:40:46', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-10 17:40:46', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('1a86e1d5fda341d3baec7274c2887302', 1, 2, '2022-03-20 21:54:52', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-20 21:51:39', NULL, '2022-03-20 13:54:36', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('1cdf10987a5646de96197157e8f02f96', 1, 2, '2022-03-24 22:57:07', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-23 22:57:07', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('22b68303f9d34683b2ae24a9c23f7163', 1, 2, '2022-04-08 00:16:10', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-07 00:16:10', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('26a38c69374145b5920e991f155142cc', 1, 2, '2022-03-24 12:29:14', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-23 12:29:14', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('270d340ddd2b468c843627d7be53bbf4', 1, 2, '2022-04-01 20:53:05', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-03-31 20:53:05', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('2759180f76414d3d9807c47026b6f5a5', 1, 2, '2022-03-17 21:27:25', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-15 00:19:03', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('2935322c671b43fbbe7eb5532800bbcf', 110, 2, '2022-02-24 19:36:28', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36', NULL, '2022-02-23 19:36:28', NULL, '2022-04-03 14:21:23', 1, 121); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('2c1d3924d392416e8464f54d285346a5', 1, 2, '2022-04-10 12:59:37', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 12:59:37', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('2ebcc3bc90cd480e8744d30295470469', 1, 2, '2022-04-10 12:43:38', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 12:43:38', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('2fd60d0a2797450aa20f6fa5cb703ba2', 1, 2, '2022-03-21 21:50:09', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-20 21:50:09', NULL, '2022-03-20 13:51:32', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('303643dbabf74a4ca50b042a08904276', 1, 2, '2022-04-19 21:04:54', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-18 21:04:54', NULL, '2022-04-18 13:04:57', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('31a6162ca15c47f2b2e78d057737b8f5', 1, 2, '2022-05-01 00:06:21', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-30 00:06:21', NULL, '2022-04-30 00:06:21', 0, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('348813371e76453196b99db0fab7539a', 1, 2, '2022-03-24 23:30:34', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-23 23:30:34', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('34fafe141291443ab0da27e1bc12a011', 1, 2, '2022-03-13 16:25:02', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-12 16:25:02', NULL, '2022-03-12 09:55:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('3bb5bae78cc24cb5a1c1df9c479b50ad', 1, 2, '2022-02-21 23:57:11', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36', NULL, '2022-02-20 23:57:11', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('3bc770291bc44fcfad0bf91e5bfded0e', 104, 2, '2022-03-20 21:46:19', 'test', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-19 21:46:19', NULL, '2022-03-19 14:13:05', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('3fe414b748a247cc8e9e7afd11629622', 1, 2, '2022-04-30 18:06:09', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-28 10:48:15', NULL, '2022-04-29 16:02:19', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('463f24539a2b40669d41ae8134e41b87', 1, 2, '2022-04-10 23:03:52', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 23:03:52', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('488dbb3d30144e6fa290319fbf778a9c', 1, 2, '2022-04-02 21:33:52', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-01 21:33:52', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('498a1559218b4d91bec6474ada2332cf', 1, 2, '2022-03-28 20:16:50', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-26 20:06:48', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('4a97fd8f3721416ebe6c682ca9d70743', 1, 2, '2022-03-12 00:24:08', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-11 00:24:08', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('4a9ba3f0a4654831af288704fcdf61ff', 1, 2, '2022-04-11 00:16:52', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-10 00:16:52', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('519dc46429364e9287290cbf80831905', 1, 2, '2022-04-10 12:51:16', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 12:51:16', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('55eac5d72b7a4679a78bd63ad6507544', 1, 2, '2022-04-09 19:24:13', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-08 19:24:13', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('5bbe310eb8d147c6ac170292e8c473a2', 1, 2, '2022-04-10 12:42:37', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 12:42:37', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('5d6327fb8ecd4c71a51f14424211d419', 1, 2, '2022-04-08 00:15:10', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-07 00:15:10', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('6379129e87cd458098cc997cd0a052dc', 1, 2, '2022-04-19 20:59:28', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-17 12:34:18', NULL, '2022-04-18 12:59:33', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('66ad83da20944e4484aac92add3c9b03', 1, 2, '2022-04-01 20:46:52', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-03-31 20:46:52', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('70318f99805840219b3654b6a3f3f807', 1, 2, '2022-03-25 20:24:10', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-24 20:24:10', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('7456412f227a4795a9dd92cd1bcf5d9a', 1, 2, '2022-04-10 15:52:26', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 15:52:26', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('746f6938be5946d09ad401be856c6ede', 1, 2, '2022-04-19 21:07:56', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-18 21:07:56', NULL, '2022-04-18 13:07:59', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('74aefb0d507a43db9b20c535f3df68a0', 1, 2, '2022-04-28 00:55:12', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-27 00:55:12', NULL, '2022-04-26 17:08:00', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('76cdc832972d44ba8d6e833ca7fd462f', 1, 2, '2022-04-11 18:26:34', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-10 18:26:34', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('791bc552e91942dba54367fba060354f', 1, 2, '2022-03-21 22:03:38', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-20 22:03:38', NULL, '2022-03-20 15:45:21', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('7b0c15457686444bb17fb810807859f0', 114, 2, '2022-03-20 22:15:43', 'hrmgr', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-19 22:15:43', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('81048a56c53b4120a9b2160e1a36a504', 1, 2, '2022-04-10 12:53:52', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 12:53:52', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('830fc13c09ad48ef8a0dac4dd5df7d6b', 1, 2, '2022-04-19 21:05:37', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-18 21:05:37', NULL, '2022-04-18 13:05:39', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('8951e01e18774a92b0382a76dfa5aab9', 1, 2, '2022-03-13 14:30:59', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-11 00:16:29', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('8ac0590d04d343babe42575ba796a0b7', 1, 2, '2022-04-19 21:08:32', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-18 21:08:32', NULL, '2022-04-18 13:08:35', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('8b00bcd875da48348da7868d8bacdcb3', 1, 2, '2022-03-24 22:35:44', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-23 22:35:44', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('8c95c9324e4047428e4656a191257e7a', 1, 2, '2022-03-21 23:45:27', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-20 23:45:27', NULL, '2022-03-20 15:45:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('948bd07ea95a4126853e6b059d6cabd2', 1, 2, '2022-04-29 10:47:55', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-27 01:08:26', NULL, '2022-04-28 02:47:54', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('94dc2ccf74e648e6bdd51f1304969d33', 1, 2, '2022-03-30 00:12:30', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-03-29 00:12:30', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('95e6336e75794bffbd5b6b7617d24c52', 1, 2, '2022-03-08 21:36:53', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-07 21:36:53', NULL, '2022-03-07 13:42:52', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('991e7c5099384c50a0559b13a942f173', 1, 2, '2022-04-18 12:53:56', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-17 12:53:56', NULL, '2022-04-17 04:54:01', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('9c04a9ad1aab45729d9c3f131286a87b', 1, 2, '2022-04-04 20:35:06', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-03 20:35:06', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('9c93fd1cd23a43e3854451b781420aed', 1, 2, '2022-02-28 16:27:05', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36', NULL, '2022-02-27 16:27:05', NULL, '2022-02-27 16:27:05', 0, 0); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('9f15722e27f84063acc272d14608c7a7', 1, 2, '2022-03-27 23:58:21', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-26 23:58:21', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('a0cd3f0adcaa4bb3951b24969990f235', 1, 2, '2022-03-08 21:08:36', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-07 21:08:36', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('a412fb91661840a69eeb961b566c9fc6', 1, 2, '2022-04-10 15:49:15', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 15:49:15', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('a9162a1862ac44a8839f984e4192e9b0', 1, 2, '2022-04-09 00:52:17', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-08 00:52:17', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('ac02a7ef7af74d38990ef928dbe56fb8', 1, 2, '2022-04-19 21:09:25', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-18 21:09:25', NULL, '2022-04-18 13:09:28', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('b19a4fb3871b4dddaaa2a24298037ce1', 1, 2, '2022-04-27 23:07:21', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', '1', '2022-04-26 23:07:21', '1', '2022-04-26 16:42:08', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('b1bd95d813024acab14dd171ca887a94', 1, 2, '2022-02-28 10:52:17', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36', NULL, '2022-02-27 10:52:17', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('b2d2338cca6d49ec8b51ceaf609a2eb1', 1, 2, '2022-04-10 17:51:43', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 17:51:43', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('b2fe20b6073a43f9bfd843fab55e20f0', 1, 2, '2022-03-20 21:55:12', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-20 21:54:42', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('cb97d665c2bd4525b2fbfe9a399f5926', 104, 2, '2022-03-13 17:55:44', 'test', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-12 17:55:44', NULL, '2022-03-12 10:01:46', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('d0f721bd163149d8966e8a33b2c43f32', 1, 2, '2022-04-10 15:55:29', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 15:55:29', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('d85d3922978a48c1aed7b19665712883', 1, 2, '2022-04-04 20:07:18', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-02 23:05:51', NULL, '2022-04-03 16:04:42', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('daadfe0f94f34d60b1f83088612cf3e9', 1, 2, '2022-03-18 18:36:04', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-16 23:46:20', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('db48c609bd2840bca7499bddb43eeabe', 113, 2, '2022-03-20 18:38:51', 'aoteman', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-19 18:38:51', NULL, '2022-04-03 14:21:23', 1, 122); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('db777da72b0b4a528915d80c7b272141', 113, 2, '2022-03-08 21:43:59', 'aoteman', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-07 21:43:59', NULL, '2022-03-07 13:45:02', 1, 122); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('dd7a19cd44474a01bd98d3a40cc5fbf4', 1, 2, '2022-03-31 20:29:14', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-03-30 20:29:14', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('dd814fe542a446a4958dfb8bd9b0b248', 1, 2, '2022-03-25 09:59:06', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-23 23:33:02', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('dd8a81500e7a41a2a08353731a5131d0', 1, 2, '2022-04-11 22:34:40', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-10 22:34:40', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('ddd9b25faebf4d5499e4b6385909c026', 1, 2, '2022-04-10 15:41:12', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 15:41:12', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('df7083510c63407489688a800a55d97b', 1, 2, '2022-03-21 18:19:06', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-18 22:24:46', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('e24d367e497e4cf1af0129f9877fd747', 1, 2, '2022-04-05 23:04:28', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-04 00:07:21', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('e4309a512fdf4b6483ad31c399b50f05', 1, 2, '2022-04-10 10:06:46', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-09 02:06:37', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('e769a8511c4043a886f68d1d6c39bddd', 104, 2, '2022-02-28 11:10:07', 'test', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36', NULL, '2022-02-27 11:10:07', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('ec60e16dfd2546e1a118eef7a42c07ef', 1, 2, '2022-02-24 22:33:28', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36', NULL, '2022-02-22 00:44:08', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('f0762a8a01f64aba8271f2be06fe5523', 1, 2, '2022-04-19 21:14:17', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-18 21:14:17', NULL, '2022-04-18 13:14:19', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('f088b33f48e640a293b2353a07f67371', 104, 2, '2022-03-20 21:45:14', 'test', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-19 21:45:14', NULL, '2022-03-19 13:46:11', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('f91c33179ded4c6b98f93568614412f0', 1, 2, '2022-03-24 23:30:49', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-23 23:30:49', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('f9d823f694eb4c84ab2a6606d0411393', 1, 2, '2022-04-11 18:11:37', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-10 18:11:37', NULL, '2022-04-12 15:05:31', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('fa2980cb42524137a1bbde303cc71b38', 1, 2, '2022-03-22 00:10:05', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36', NULL, '2022-03-21 00:10:05', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('fac458fc6b1f4c27bbd851b114874ebc', 1, 2, '2022-04-19 21:06:54', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-18 21:06:54', NULL, '2022-04-18 13:07:02', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('fb282be32fdd4d81b08dbef7a7c4d2ce', 1, 2, '2022-03-24 12:29:19', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36', NULL, '2022-03-23 12:29:19', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('ffe28d833fea4e76a0b2b6bcde9236c2', 1, 2, '2022-04-03 22:03:16', 'admin', '0:0:0:0:0:0:0:1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-02 22:03:16', NULL, '2022-04-03 14:21:23', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('0909cb72ebb34d618236504ae0977385', 1, 2, '2022-04-20 23:52:19', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-19 23:52:19', NULL, '2022-04-19 23:52:19', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('1dc4886bd2b344b8b4c97b4d68e0491b', 1, 2, '2022-04-20 21:38:09', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-19 21:38:09', NULL, '2022-04-19 21:38:09', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('278554efca6d4efdaee2573b4a2b8756', 1, 2, '2022-04-18 12:54:18', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-17 12:54:18', NULL, '2022-04-17 12:54:18', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('3271c3a512e64dd79961848032ead7ef', 1, 2, '2022-04-24 00:55:33', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-23 00:55:33', NULL, '2022-04-23 00:55:33', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('35f894c8a50847499b243ebc3466cefd', 1, 2, '2022-04-15 22:06:39', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-14 22:06:39', NULL, '2022-04-14 22:06:39', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('478ce745c04b4737a61ac7b53495c620', 1, 2, '2022-04-24 02:01:45', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-23 02:01:45', NULL, '2022-04-23 02:01:45', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('4d8f2b5447e440038b928e7f2af38452', 1, 2, '2022-04-20 21:11:37', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-19 12:34:14', NULL, '2022-04-19 21:11:37', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('52c7e0ca46b344b6943968cd858e3faf', 1, 2, '2022-04-23 00:03:49', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-21 00:12:17', NULL, '2022-04-22 00:03:49', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('7973f6f53f9640ee9d65338f545e06dc', 1, 2, '2022-04-27 23:06:51', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-26 23:06:51', NULL, '2022-04-26 23:06:51', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('d09049bd19af4d80811dbdd2f69efd41', 1, 2, '2022-04-21 00:52:12', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-20 00:52:12', NULL, '2022-04-20 00:52:12', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('d683317cbcd940e3911a7ec6384a9e82', 1, 2, '2022-04-20 15:22:57', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-19 15:22:57', NULL, '2022-04-19 15:22:57', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('eb5a1c67438b4472a02f22d88b31205b', 1, 2, '2022-04-20 14:43:29', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36', NULL, '2022-04-19 14:43:29', NULL, '2022-04-19 14:43:29', 1, 1); -INSERT INTO "public"."system_user_session" ("id", "user_id", "user_type", "session_timeout", "username", "user_ip", "user_agent", "creator", "create_time", "updater", "update_time", "deleted", "tenant_id") VALUES ('fe11c39cfc2740a992063bf05bd170f3', 1, 2, '2022-04-15 21:09:14', 'admin', '127.0.0.1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36', NULL, '2022-04-14 21:09:14', NULL, '2022-04-14 21:09:14', 1, 1); COMMIT; +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- +ALTER SEQUENCE "act_evt_log_log_nr__seq" +OWNED BY "act_evt_log"."log_nr_"; +SELECT setval('"act_evt_log_log_nr__seq"', 1, false); + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- +ALTER SEQUENCE "act_hi_tsk_log_id__seq" +OWNED BY "act_hi_tsk_log"."id_"; +SELECT setval('"act_hi_tsk_log_id__seq"', 1, false); + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- +SELECT setval('"bpm_oa_leave_seq"', 1, true); + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- +SELECT setval('"bpm_task_assign_rule_seq"', 1, true); + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- +SELECT setval('"infra_api_access_log_seq"', 286, true); + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- +SELECT setval('"infra_api_error_log_seq"', 40, true); + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- +SELECT setval('"infra_job_log_seq"', 1, true); + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- +SELECT setval('"infra_job_seq"', 2, true); + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- +SELECT setval('"system_login_log_seq"', 12, true); + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- +SELECT setval('"system_operate_log_seq"', 22, true); + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- +SELECT setval('"system_sms_log_seq"', 1, true); + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Alter sequences owned by +-- ---------------------------- + +-- ---------------------------- +-- Primary Key structure for table act_evt_log +-- ---------------------------- +ALTER TABLE "act_evt_log" ADD CONSTRAINT "act_evt_log_pkey" PRIMARY KEY ("log_nr_"); + -- ---------------------------- -- Primary Key structure for table bpm_form -- ---------------------------- -ALTER TABLE "public"."bpm_form" ADD CONSTRAINT "bpm_form_pkey" PRIMARY KEY ("id"); +ALTER TABLE "bpm_form" ADD CONSTRAINT "bpm_form_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table bpm_oa_leave -- ---------------------------- -ALTER TABLE "public"."bpm_oa_leave" ADD CONSTRAINT "bpm_oa_leave_pkey" PRIMARY KEY ("id"); +ALTER TABLE "bpm_oa_leave" ADD CONSTRAINT "bpm_oa_leave_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table bpm_process_definition_ext -- ---------------------------- -ALTER TABLE "public"."bpm_process_definition_ext" ADD CONSTRAINT "bpm_process_definition_ext_pkey" PRIMARY KEY ("id"); +ALTER TABLE "bpm_process_definition_ext" ADD CONSTRAINT "bpm_process_definition_ext_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table bpm_process_instance_ext -- ---------------------------- -ALTER TABLE "public"."bpm_process_instance_ext" ADD CONSTRAINT "bpm_process_instance_ext_pkey" PRIMARY KEY ("id"); +ALTER TABLE "bpm_process_instance_ext" ADD CONSTRAINT "bpm_process_instance_ext_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table bpm_task_assign_rule -- ---------------------------- -ALTER TABLE "public"."bpm_task_assign_rule" ADD CONSTRAINT "bpm_task_assign_rule_pkey" PRIMARY KEY ("id"); +ALTER TABLE "bpm_task_assign_rule" ADD CONSTRAINT "bpm_task_assign_rule_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table bpm_task_ext -- ---------------------------- -ALTER TABLE "public"."bpm_task_ext" ADD CONSTRAINT "bpm_task_ext_pkey" PRIMARY KEY ("id"); +ALTER TABLE "bpm_task_ext" ADD CONSTRAINT "bpm_task_ext_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table bpm_user_group -- ---------------------------- -ALTER TABLE "public"."bpm_user_group" ADD CONSTRAINT "bpm_user_group_pkey" PRIMARY KEY ("id"); +ALTER TABLE "bpm_user_group" ADD CONSTRAINT "bpm_user_group_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table infra_api_access_log -- ---------------------------- -ALTER TABLE "public"."infra_api_access_log" ADD CONSTRAINT "infra_api_access_log_pkey" PRIMARY KEY ("id"); +ALTER TABLE "infra_api_access_log" ADD CONSTRAINT "infra_api_access_log_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table infra_api_error_log -- ---------------------------- -ALTER TABLE "public"."infra_api_error_log" ADD CONSTRAINT "infra_api_error_log_pkey" PRIMARY KEY ("id"); +ALTER TABLE "infra_api_error_log" ADD CONSTRAINT "infra_api_error_log_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table infra_codegen_column -- ---------------------------- -ALTER TABLE "public"."infra_codegen_column" ADD CONSTRAINT "infra_codegen_column_pkey" PRIMARY KEY ("id"); +ALTER TABLE "infra_codegen_column" ADD CONSTRAINT "infra_codegen_column_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table infra_codegen_table -- ---------------------------- -ALTER TABLE "public"."infra_codegen_table" ADD CONSTRAINT "infra_codegen_table_pkey" PRIMARY KEY ("id"); +ALTER TABLE "infra_codegen_table" ADD CONSTRAINT "infra_codegen_table_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table infra_config -- ---------------------------- -ALTER TABLE "public"."infra_config" ADD CONSTRAINT "infra_config_pkey" PRIMARY KEY ("id"); +ALTER TABLE "infra_config" ADD CONSTRAINT "infra_config_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table infra_data_source_config -- ---------------------------- -ALTER TABLE "public"."infra_data_source_config" ADD CONSTRAINT "infra_data_source_config_pkey" PRIMARY KEY ("id"); +ALTER TABLE "infra_data_source_config" ADD CONSTRAINT "infra_data_source_config_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table infra_file -- ---------------------------- -ALTER TABLE "public"."infra_file" ADD CONSTRAINT "infra_file_pkey" PRIMARY KEY ("id"); +ALTER TABLE "infra_file" ADD CONSTRAINT "infra_file_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table infra_file_config -- ---------------------------- -ALTER TABLE "public"."infra_file_config" ADD CONSTRAINT "infra_file_config_pkey" PRIMARY KEY ("id"); +ALTER TABLE "infra_file_config" ADD CONSTRAINT "infra_file_config_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table infra_file_content -- ---------------------------- -ALTER TABLE "public"."infra_file_content" ADD CONSTRAINT "infra_file_content_pkey" PRIMARY KEY ("id"); +ALTER TABLE "infra_file_content" ADD CONSTRAINT "infra_file_content_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table infra_job -- ---------------------------- -ALTER TABLE "public"."infra_job" ADD CONSTRAINT "infra_job_pkey" PRIMARY KEY ("id"); +ALTER TABLE "infra_job" ADD CONSTRAINT "infra_job_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table infra_job_log -- ---------------------------- -ALTER TABLE "public"."infra_job_log" ADD CONSTRAINT "infra_job_log_pkey" PRIMARY KEY ("id"); +ALTER TABLE "infra_job_log" ADD CONSTRAINT "infra_job_log_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table infra_test_demo -- ---------------------------- -ALTER TABLE "public"."infra_test_demo" ADD CONSTRAINT "infra_test_demo_pkey" PRIMARY KEY ("id"); +ALTER TABLE "infra_test_demo" ADD CONSTRAINT "infra_test_demo_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Indexes structure for table member_user -- ---------------------------- -CREATE UNIQUE INDEX "uk_mobile" ON "public"."member_user" USING btree ( +CREATE UNIQUE INDEX "uk_mobile" ON "member_user" USING btree ( "mobile" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST ); -COMMENT ON INDEX "public"."uk_mobile" IS '手机号'; +COMMENT ON INDEX "uk_mobile" IS '手机号'; -- ---------------------------- -- Primary Key structure for table member_user -- ---------------------------- -ALTER TABLE "public"."member_user" ADD CONSTRAINT "member_user_pkey" PRIMARY KEY ("id"); +ALTER TABLE "member_user" ADD CONSTRAINT "member_user_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table pay_app -- ---------------------------- -ALTER TABLE "public"."pay_app" ADD CONSTRAINT "pay_app_pkey" PRIMARY KEY ("id"); +ALTER TABLE "pay_app" ADD CONSTRAINT "pay_app_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table pay_channel -- ---------------------------- -ALTER TABLE "public"."pay_channel" ADD CONSTRAINT "pay_channel_pkey" PRIMARY KEY ("id"); +ALTER TABLE "pay_channel" ADD CONSTRAINT "pay_channel_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table pay_merchant -- ---------------------------- -ALTER TABLE "public"."pay_merchant" ADD CONSTRAINT "pay_merchant_pkey" PRIMARY KEY ("id"); +ALTER TABLE "pay_merchant" ADD CONSTRAINT "pay_merchant_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table pay_notify_log -- ---------------------------- -ALTER TABLE "public"."pay_notify_log" ADD CONSTRAINT "pay_notify_log_pkey" PRIMARY KEY ("id"); +ALTER TABLE "pay_notify_log" ADD CONSTRAINT "pay_notify_log_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table pay_notify_task -- ---------------------------- -ALTER TABLE "public"."pay_notify_task" ADD CONSTRAINT "pay_notify_task_pkey" PRIMARY KEY ("id"); +ALTER TABLE "pay_notify_task" ADD CONSTRAINT "pay_notify_task_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table pay_order -- ---------------------------- -ALTER TABLE "public"."pay_order" ADD CONSTRAINT "pay_order_pkey" PRIMARY KEY ("id"); +ALTER TABLE "pay_order" ADD CONSTRAINT "pay_order_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table pay_order_extension -- ---------------------------- -ALTER TABLE "public"."pay_order_extension" ADD CONSTRAINT "pay_order_extension_pkey" PRIMARY KEY ("id"); +ALTER TABLE "pay_order_extension" ADD CONSTRAINT "pay_order_extension_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table pay_refund -- ---------------------------- -ALTER TABLE "public"."pay_refund" ADD CONSTRAINT "pay_refund_pkey" PRIMARY KEY ("id"); +ALTER TABLE "pay_refund" ADD CONSTRAINT "pay_refund_pkey" PRIMARY KEY ("id"); + +-- ---------------------------- +-- Primary Key structure for table qrtz_blob_triggers +-- ---------------------------- +ALTER TABLE "qrtz_blob_triggers" ADD CONSTRAINT "qrtz_blob_triggers_pkey" PRIMARY KEY ("sched_name", "trigger_name", "trigger_group"); + +-- ---------------------------- +-- Primary Key structure for table qrtz_calendars +-- ---------------------------- +ALTER TABLE "qrtz_calendars" ADD CONSTRAINT "qrtz_calendars_pkey" PRIMARY KEY ("sched_name", "calendar_name"); + +-- ---------------------------- +-- Primary Key structure for table qrtz_cron_triggers +-- ---------------------------- +ALTER TABLE "qrtz_cron_triggers" ADD CONSTRAINT "qrtz_cron_triggers_pkey" PRIMARY KEY ("sched_name", "trigger_name", "trigger_group"); + +-- ---------------------------- +-- Indexes structure for table qrtz_fired_triggers +-- ---------------------------- +CREATE INDEX "idx_qrtz_ft_inst_job_req_rcvry" ON "qrtz_fired_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "instance_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "requests_recovery" "pg_catalog"."bool_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_ft_j_g" ON "qrtz_fired_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "job_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "job_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_ft_jg" ON "qrtz_fired_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "job_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_ft_t_g" ON "qrtz_fired_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "trigger_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_ft_tg" ON "qrtz_fired_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_ft_trig_inst_name" ON "qrtz_fired_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "instance_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST +); + +-- ---------------------------- +-- Primary Key structure for table qrtz_fired_triggers +-- ---------------------------- +ALTER TABLE "qrtz_fired_triggers" ADD CONSTRAINT "qrtz_fired_triggers_pkey" PRIMARY KEY ("sched_name", "entry_id"); + +-- ---------------------------- +-- Indexes structure for table qrtz_job_details +-- ---------------------------- +CREATE INDEX "idx_qrtz_j_grp" ON "qrtz_job_details" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "job_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_j_req_recovery" ON "qrtz_job_details" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "requests_recovery" "pg_catalog"."bool_ops" ASC NULLS LAST +); + +-- ---------------------------- +-- Primary Key structure for table qrtz_job_details +-- ---------------------------- +ALTER TABLE "qrtz_job_details" ADD CONSTRAINT "qrtz_job_details_pkey" PRIMARY KEY ("sched_name", "job_name", "job_group"); + +-- ---------------------------- +-- Primary Key structure for table qrtz_locks +-- ---------------------------- +ALTER TABLE "qrtz_locks" ADD CONSTRAINT "qrtz_locks_pkey" PRIMARY KEY ("sched_name", "lock_name"); + +-- ---------------------------- +-- Primary Key structure for table qrtz_paused_trigger_grps +-- ---------------------------- +ALTER TABLE "qrtz_paused_trigger_grps" ADD CONSTRAINT "qrtz_paused_trigger_grps_pkey" PRIMARY KEY ("sched_name", "trigger_group"); + +-- ---------------------------- +-- Primary Key structure for table qrtz_scheduler_state +-- ---------------------------- +ALTER TABLE "qrtz_scheduler_state" ADD CONSTRAINT "qrtz_scheduler_state_pkey" PRIMARY KEY ("sched_name", "instance_name"); + +-- ---------------------------- +-- Primary Key structure for table qrtz_simple_triggers +-- ---------------------------- +ALTER TABLE "qrtz_simple_triggers" ADD CONSTRAINT "qrtz_simple_triggers_pkey" PRIMARY KEY ("sched_name", "trigger_name", "trigger_group"); + +-- ---------------------------- +-- Primary Key structure for table qrtz_simprop_triggers +-- ---------------------------- +ALTER TABLE "qrtz_simprop_triggers" ADD CONSTRAINT "qrtz_simprop_triggers_pkey" PRIMARY KEY ("sched_name", "trigger_name", "trigger_group"); + +-- ---------------------------- +-- Indexes structure for table qrtz_triggers +-- ---------------------------- +CREATE INDEX "idx_qrtz_t_c" ON "qrtz_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "calendar_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_t_g" ON "qrtz_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_t_j" ON "qrtz_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "job_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "job_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_t_jg" ON "qrtz_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "job_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_t_n_g_state" ON "qrtz_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_t_n_state" ON "qrtz_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "trigger_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_t_next_fire_time" ON "qrtz_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "next_fire_time" "pg_catalog"."int8_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_t_nft_misfire" ON "qrtz_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "misfire_instr" "pg_catalog"."int2_ops" ASC NULLS LAST, + "next_fire_time" "pg_catalog"."int8_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_t_nft_st" ON "qrtz_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "next_fire_time" "pg_catalog"."int8_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_t_nft_st_misfire" ON "qrtz_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "misfire_instr" "pg_catalog"."int2_ops" ASC NULLS LAST, + "next_fire_time" "pg_catalog"."int8_ops" ASC NULLS LAST, + "trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_t_nft_st_misfire_grp" ON "qrtz_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "misfire_instr" "pg_catalog"."int2_ops" ASC NULLS LAST, + "next_fire_time" "pg_catalog"."int8_ops" ASC NULLS LAST, + "trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST +); +CREATE INDEX "idx_qrtz_t_state" ON "qrtz_triggers" USING btree ( + "sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, + "trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST +); + +-- ---------------------------- +-- Primary Key structure for table qrtz_triggers +-- ---------------------------- +ALTER TABLE "qrtz_triggers" ADD CONSTRAINT "qrtz_triggers_pkey" PRIMARY KEY ("sched_name", "trigger_name", "trigger_group"); -- ---------------------------- -- Primary Key structure for table system_dept -- ---------------------------- -ALTER TABLE "public"."system_dept" ADD CONSTRAINT "system_dept_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_dept" ADD CONSTRAINT "system_dept_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_dict_data -- ---------------------------- -ALTER TABLE "public"."system_dict_data" ADD CONSTRAINT "system_dict_data_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_dict_data" ADD CONSTRAINT "system_dict_data_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Indexes structure for table system_dict_type -- ---------------------------- -CREATE UNIQUE INDEX "dict_type" ON "public"."system_dict_type" USING btree ( +CREATE UNIQUE INDEX "dict_type" ON "system_dict_type" USING btree ( "type" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST ); -- ---------------------------- -- Primary Key structure for table system_dict_type -- ---------------------------- -ALTER TABLE "public"."system_dict_type" ADD CONSTRAINT "system_dict_type_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_dict_type" ADD CONSTRAINT "system_dict_type_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_error_code -- ---------------------------- -ALTER TABLE "public"."system_error_code" ADD CONSTRAINT "system_error_code_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_error_code" ADD CONSTRAINT "system_error_code_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_login_log -- ---------------------------- -ALTER TABLE "public"."system_login_log" ADD CONSTRAINT "system_login_log_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_login_log" ADD CONSTRAINT "system_login_log_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_menu -- ---------------------------- -ALTER TABLE "public"."system_menu" ADD CONSTRAINT "system_menu_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_menu" ADD CONSTRAINT "system_menu_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_notice -- ---------------------------- -ALTER TABLE "public"."system_notice" ADD CONSTRAINT "system_notice_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_notice" ADD CONSTRAINT "system_notice_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_operate_log -- ---------------------------- -ALTER TABLE "public"."system_operate_log" ADD CONSTRAINT "system_operate_log_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_operate_log" ADD CONSTRAINT "system_operate_log_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_post -- ---------------------------- -ALTER TABLE "public"."system_post" ADD CONSTRAINT "system_post_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_post" ADD CONSTRAINT "system_post_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_role -- ---------------------------- -ALTER TABLE "public"."system_role" ADD CONSTRAINT "system_role_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_role" ADD CONSTRAINT "system_role_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_role_menu -- ---------------------------- -ALTER TABLE "public"."system_role_menu" ADD CONSTRAINT "system_role_menu_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_role_menu" ADD CONSTRAINT "system_role_menu_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_sensitive_word -- ---------------------------- -ALTER TABLE "public"."system_sensitive_word" ADD CONSTRAINT "system_sensitive_word_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_sensitive_word" ADD CONSTRAINT "system_sensitive_word_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_sms_channel -- ---------------------------- -ALTER TABLE "public"."system_sms_channel" ADD CONSTRAINT "system_sms_channel_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_sms_channel" ADD CONSTRAINT "system_sms_channel_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Indexes structure for table system_sms_code -- ---------------------------- -CREATE INDEX "idx_mobile" ON "public"."system_sms_code" USING btree ( +CREATE INDEX "idx_mobile" ON "system_sms_code" USING btree ( "mobile" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST ); -COMMENT ON INDEX "public"."idx_mobile" IS '手机号'; +COMMENT ON INDEX "idx_mobile" IS '手机号'; -- ---------------------------- -- Primary Key structure for table system_sms_code -- ---------------------------- -ALTER TABLE "public"."system_sms_code" ADD CONSTRAINT "system_sms_code_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_sms_code" ADD CONSTRAINT "system_sms_code_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_sms_log -- ---------------------------- -ALTER TABLE "public"."system_sms_log" ADD CONSTRAINT "system_sms_log_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_sms_log" ADD CONSTRAINT "system_sms_log_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_sms_template -- ---------------------------- -ALTER TABLE "public"."system_sms_template" ADD CONSTRAINT "system_sms_template_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_sms_template" ADD CONSTRAINT "system_sms_template_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_social_user -- ---------------------------- -ALTER TABLE "public"."system_social_user" ADD CONSTRAINT "system_social_user_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_social_user" ADD CONSTRAINT "system_social_user_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_social_user_bind -- ---------------------------- -ALTER TABLE "public"."system_social_user_bind" ADD CONSTRAINT "system_social_user_bind_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_social_user_bind" ADD CONSTRAINT "system_social_user_bind_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_tenant -- ---------------------------- -ALTER TABLE "public"."system_tenant" ADD CONSTRAINT "system_tenant_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_tenant" ADD CONSTRAINT "system_tenant_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_tenant_package -- ---------------------------- -ALTER TABLE "public"."system_tenant_package" ADD CONSTRAINT "system_tenant_package_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_tenant_package" ADD CONSTRAINT "system_tenant_package_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Indexes structure for table system_user -- ---------------------------- -CREATE UNIQUE INDEX "idx_username" ON "public"."system_user" USING btree ( +CREATE UNIQUE INDEX "idx_username" ON "system_user" USING btree ( "username" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST, "update_time" "pg_catalog"."timestamp_ops" ASC NULLS LAST, "tenant_id" "pg_catalog"."int8_ops" ASC NULLS LAST @@ -21907,66 +4450,39 @@ CREATE UNIQUE INDEX "idx_username" ON "public"."system_user" USING btree ( -- ---------------------------- -- Primary Key structure for table system_user -- ---------------------------- -ALTER TABLE "public"."system_user" ADD CONSTRAINT "system_user_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_user" ADD CONSTRAINT "system_user_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_user_role -- ---------------------------- -ALTER TABLE "public"."system_user_role" ADD CONSTRAINT "system_user_role_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_user_role" ADD CONSTRAINT "system_user_role_pkey" PRIMARY KEY ("id"); -- ---------------------------- -- Primary Key structure for table system_user_session -- ---------------------------- -ALTER TABLE "public"."system_user_session" ADD CONSTRAINT "system_user_session_pkey" PRIMARY KEY ("id"); +ALTER TABLE "system_user_session" ADD CONSTRAINT "system_user_session_pkey" PRIMARY KEY ("id"); -CREATE SEQUENCE bpm_oa_leave_seq MINVALUE 0; -CREATE SEQUENCE bpm_process_instance_ext_seq MINVALUE 0; -CREATE SEQUENCE bpm_user_group_seq MINVALUE 0; -CREATE SEQUENCE infra_codegen_column_seq MINVALUE 0; -CREATE SEQUENCE infra_codegen_table_seq MINVALUE 0; -CREATE SEQUENCE infra_config_seq MINVALUE 0; -CREATE SEQUENCE bpm_task_assign_rule_seq MINVALUE 0; -CREATE SEQUENCE bpm_process_definition_ext_seq MINVALUE 0; -CREATE SEQUENCE bpm_task_ext_seq MINVALUE 0; -CREATE SEQUENCE infra_api_access_log_seq MINVALUE 0; -CREATE SEQUENCE infra_api_error_log_seq MINVALUE 0; -CREATE SEQUENCE infra_data_source_config_seq MINVALUE 0; -CREATE SEQUENCE infra_file_seq MINVALUE 0; -CREATE SEQUENCE infra_test_demo_seq MINVALUE 0; -CREATE SEQUENCE infra_job_seq MINVALUE 0; -CREATE SEQUENCE infra_job_log_seq MINVALUE 0; -CREATE SEQUENCE infra_file_config_seq MINVALUE 0; -CREATE SEQUENCE pay_channel_seq MINVALUE 0; -CREATE SEQUENCE pay_merchant_seq MINVALUE 0; -CREATE SEQUENCE pay_notify_task_seq MINVALUE 0; -CREATE SEQUENCE member_user_seq MINVALUE 0; -CREATE SEQUENCE pay_app_seq MINVALUE 0; -CREATE SEQUENCE pay_notify_log_seq MINVALUE 0; -CREATE SEQUENCE system_dict_data_seq MINVALUE 0; -CREATE SEQUENCE system_dept_seq MINVALUE 0; -CREATE SEQUENCE pay_refund_seq MINVALUE 0; -CREATE SEQUENCE system_login_log_seq MINVALUE 0; -CREATE SEQUENCE system_notice_seq MINVALUE 0; -CREATE SEQUENCE system_menu_seq MINVALUE 0; -CREATE SEQUENCE system_error_code_seq MINVALUE 0; -CREATE SEQUENCE system_dict_type_seq MINVALUE 0; -CREATE SEQUENCE pay_order_extension_seq MINVALUE 0; -CREATE SEQUENCE system_operate_log_seq MINVALUE 0; -CREATE SEQUENCE system_post_seq MINVALUE 0; -CREATE SEQUENCE pay_order_seq MINVALUE 0; -CREATE SEQUENCE system_role_menu_seq MINVALUE 0; -CREATE SEQUENCE system_sms_channel_seq MINVALUE 0; -CREATE SEQUENCE system_role_seq MINVALUE 0; -CREATE SEQUENCE system_sms_code_seq MINVALUE 0; -CREATE SEQUENCE system_sensitive_word_seq MINVALUE 0; -CREATE SEQUENCE system_sms_log_seq MINVALUE 0; -CREATE SEQUENCE system_sms_template_seq MINVALUE 0; -CREATE SEQUENCE system_social_user_bind_seq MINVALUE 0; -CREATE SEQUENCE system_social_user_seq MINVALUE 0; -CREATE SEQUENCE system_tenant_seq MINVALUE 0; -CREATE SEQUENCE system_user_role_seq MINVALUE 0; -CREATE SEQUENCE system_user_session_seq MINVALUE 0; -CREATE SEQUENCE system_user_seq MINVALUE 0; -CREATE SEQUENCE system_tenant_package_seq MINVALUE 0; -CREATE SEQUENCE infra_file_content_seq MINVALUE 0; -CREATE SEQUENCE bpm_form_seq MINVALUE 0; +-- ---------------------------- +-- Foreign Keys structure for table qrtz_blob_triggers +-- ---------------------------- +ALTER TABLE "qrtz_blob_triggers" ADD CONSTRAINT "qrtz_blob_triggers_sched_name_trigger_name_trigger_group_fkey" FOREIGN KEY ("sched_name", "trigger_name", "trigger_group") REFERENCES "qrtz_triggers" ("sched_name", "trigger_name", "trigger_group") ON DELETE NO ACTION ON UPDATE NO ACTION; + +-- ---------------------------- +-- Foreign Keys structure for table qrtz_cron_triggers +-- ---------------------------- +ALTER TABLE "qrtz_cron_triggers" ADD CONSTRAINT "qrtz_cron_triggers_sched_name_trigger_name_trigger_group_fkey" FOREIGN KEY ("sched_name", "trigger_name", "trigger_group") REFERENCES "qrtz_triggers" ("sched_name", "trigger_name", "trigger_group") ON DELETE NO ACTION ON UPDATE NO ACTION; + +-- ---------------------------- +-- Foreign Keys structure for table qrtz_simple_triggers +-- ---------------------------- +ALTER TABLE "qrtz_simple_triggers" ADD CONSTRAINT "qrtz_simple_triggers_sched_name_trigger_name_trigger_group_fkey" FOREIGN KEY ("sched_name", "trigger_name", "trigger_group") REFERENCES "qrtz_triggers" ("sched_name", "trigger_name", "trigger_group") ON DELETE NO ACTION ON UPDATE NO ACTION; + +-- ---------------------------- +-- Foreign Keys structure for table qrtz_simprop_triggers +-- ---------------------------- +ALTER TABLE "qrtz_simprop_triggers" ADD CONSTRAINT "qrtz_simprop_triggers_sched_name_trigger_name_trigger_grou_fkey" FOREIGN KEY ("sched_name", "trigger_name", "trigger_group") REFERENCES "qrtz_triggers" ("sched_name", "trigger_name", "trigger_group") ON DELETE NO ACTION ON UPDATE NO ACTION; + +-- ---------------------------- +-- Foreign Keys structure for table qrtz_triggers +-- ---------------------------- +ALTER TABLE "qrtz_triggers" ADD CONSTRAINT "qrtz_triggers_sched_name_job_name_job_group_fkey" FOREIGN KEY ("sched_name", "job_name", "job_group") REFERENCES "qrtz_job_details" ("sched_name", "job_name", "job_group") ON DELETE NO ACTION ON UPDATE NO ACTION; diff --git a/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/task/vo/task/BpmTaskApproveReqVO.java b/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/task/vo/task/BpmTaskApproveReqVO.java index 6effcc8a7..1b6a69066 100644 --- a/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/task/vo/task/BpmTaskApproveReqVO.java +++ b/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/task/vo/task/BpmTaskApproveReqVO.java @@ -3,12 +3,8 @@ package cn.iocoder.yudao.module.bpm.controller.admin.task.vo.task; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; -import lombok.EqualsAndHashCode; -import lombok.ToString; import javax.validation.constraints.NotEmpty; -import javax.validation.constraints.NotNull; -import java.util.Map; @ApiModel("管理后台 - 通过流程任务的 Request VO") @Data @@ -20,6 +16,6 @@ public class BpmTaskApproveReqVO { @ApiModelProperty(value = "审批意见", required = true, example = "不错不错!") @NotEmpty(message = "审批意见不能为空") - private String comment; + private String reason; } diff --git a/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/task/vo/task/BpmTaskDonePageItemRespVO.java b/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/task/vo/task/BpmTaskDonePageItemRespVO.java index 6d1865576..c5e2c23ae 100644 --- a/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/task/vo/task/BpmTaskDonePageItemRespVO.java +++ b/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/task/vo/task/BpmTaskDonePageItemRespVO.java @@ -22,6 +22,6 @@ public class BpmTaskDonePageItemRespVO extends BpmTaskTodoPageItemRespVO { @ApiModelProperty(value = "任务结果", required = true, notes = "参见 bpm_process_instance_result", example = "2") private Integer result; @ApiModelProperty(value = "审批建议", required = true, example = "不请假了!") - private String comment; + private String reason; } diff --git a/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/task/vo/task/BpmTaskRejectReqVO.java b/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/task/vo/task/BpmTaskRejectReqVO.java index 7196718f2..596a82f77 100644 --- a/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/task/vo/task/BpmTaskRejectReqVO.java +++ b/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/task/vo/task/BpmTaskRejectReqVO.java @@ -16,6 +16,6 @@ public class BpmTaskRejectReqVO { @ApiModelProperty(value = "审批意见", required = true, example = "不错不错!") @NotEmpty(message = "审批意见不能为空") - private String comment; + private String reason; } diff --git a/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/dal/dataobject/definition/BpmTaskAssignRuleDO.java b/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/dal/dataobject/definition/BpmTaskAssignRuleDO.java index 183e4c1d3..84c0a5771 100644 --- a/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/dal/dataobject/definition/BpmTaskAssignRuleDO.java +++ b/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/dal/dataobject/definition/BpmTaskAssignRuleDO.java @@ -33,8 +33,9 @@ public class BpmTaskAssignRuleDO extends BaseDO { /** * {@link #processDefinitionId} 空串,用于标识属于流程模型,而不属于流程定义 + * 不使用空串的原因,Oracle 针对空串,会处理成 null,进而导致无法检索 */ - public static final String PROCESS_DEFINITION_ID_NULL = ""; + public static final String PROCESS_DEFINITION_ID_NULL = "DEFAULT"; /** * 编号 diff --git a/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/dal/dataobject/task/BpmTaskExtDO.java b/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/dal/dataobject/task/BpmTaskExtDO.java index 99abde860..efbd76296 100644 --- a/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/dal/dataobject/task/BpmTaskExtDO.java +++ b/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/dal/dataobject/task/BpmTaskExtDO.java @@ -3,6 +3,7 @@ package cn.iocoder.yudao.module.bpm.dal.dataobject.task; import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO; import cn.iocoder.yudao.module.bpm.enums.task.BpmProcessInstanceResultEnum; import com.baomidou.mybatisplus.annotation.KeySequence; +import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; @@ -62,7 +63,7 @@ public class BpmTaskExtDO extends BaseDO { /** * 审批建议 */ - private String comment; + private String reason; /** * 任务的结束时间 * diff --git a/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/service/message/BpmMessageServiceImpl.java b/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/service/message/BpmMessageServiceImpl.java index 61b3c57d4..89dfd1227 100644 --- a/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/service/message/BpmMessageServiceImpl.java +++ b/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/service/message/BpmMessageServiceImpl.java @@ -44,7 +44,7 @@ public class BpmMessageServiceImpl implements BpmMessageService { public void sendMessageWhenProcessInstanceReject(BpmMessageSendWhenProcessInstanceRejectReqDTO reqDTO) { Map templateParams = new HashMap<>(); templateParams.put("processInstanceName", reqDTO.getProcessInstanceName()); - templateParams.put("comment", reqDTO.getComment()); + templateParams.put("reason", reqDTO.getReason()); templateParams.put("detailUrl", getProcessInstanceDetailUrl(reqDTO.getProcessInstanceId())); smsSendApi.sendSingleSmsToAdmin(BpmMessageConvert.INSTANCE.convert(reqDTO.getStartUserId(), BpmMessageEnum.PROCESS_INSTANCE_REJECT.getSmsTemplateCode(), templateParams)); diff --git a/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/service/message/dto/BpmMessageSendWhenProcessInstanceRejectReqDTO.java b/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/service/message/dto/BpmMessageSendWhenProcessInstanceRejectReqDTO.java index 0194d03a5..69a266b68 100644 --- a/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/service/message/dto/BpmMessageSendWhenProcessInstanceRejectReqDTO.java +++ b/yudao-module-bpm/yudao-module-bpm-base/src/main/java/cn/iocoder/yudao/module/bpm/service/message/dto/BpmMessageSendWhenProcessInstanceRejectReqDTO.java @@ -28,6 +28,6 @@ public class BpmMessageSendWhenProcessInstanceRejectReqDTO { * 不通过理由 */ @NotEmpty(message = "不通过理由不能为空") - private String comment; + private String reason; } diff --git a/yudao-module-bpm/yudao-module-bpm-biz-activiti/src/main/java/cn/iocoder/yudao/module/bpm/convert/task/BpmProcessInstanceConvert.java b/yudao-module-bpm/yudao-module-bpm-biz-activiti/src/main/java/cn/iocoder/yudao/module/bpm/convert/task/BpmProcessInstanceConvert.java index abc94d89a..8b58a15e7 100644 --- a/yudao-module-bpm/yudao-module-bpm-biz-activiti/src/main/java/cn/iocoder/yudao/module/bpm/convert/task/BpmProcessInstanceConvert.java +++ b/yudao-module-bpm/yudao-module-bpm-biz-activiti/src/main/java/cn/iocoder/yudao/module/bpm/convert/task/BpmProcessInstanceConvert.java @@ -116,10 +116,10 @@ public interface BpmProcessInstanceConvert { return event; } - default BpmMessageSendWhenProcessInstanceRejectReqDTO convert(ProcessInstance processInstance, String comment) { + default BpmMessageSendWhenProcessInstanceRejectReqDTO convert(ProcessInstance processInstance, String reason) { BpmMessageSendWhenProcessInstanceRejectReqDTO reqDTO = new BpmMessageSendWhenProcessInstanceRejectReqDTO(); copyTo(processInstance, reqDTO); - reqDTO.setComment(comment); + reqDTO.setReason(reason); return reqDTO; } @Mapping(source = "name", target = "processInstanceName") diff --git a/yudao-module-bpm/yudao-module-bpm-biz-activiti/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceService.java b/yudao-module-bpm/yudao-module-bpm-biz-activiti/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceService.java index 6dcacac1f..2e9145f3a 100644 --- a/yudao-module-bpm/yudao-module-bpm-biz-activiti/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceService.java +++ b/yudao-module-bpm/yudao-module-bpm-biz-activiti/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceService.java @@ -158,8 +158,8 @@ public interface BpmProcessInstanceService { * 更新 ProcessInstance 拓展记录为不通过 * * @param id 流程编号 - * @param comment 理由。例如说,审批不通过时,需要传递该值 + * @param reason 理由。例如说,审批不通过时,需要传递该值 */ - void updateProcessInstanceExtReject(String id, String comment); + void updateProcessInstanceExtReject(String id, String reason); } diff --git a/yudao-module-bpm/yudao-module-bpm-biz-activiti/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceServiceImpl.java b/yudao-module-bpm/yudao-module-bpm-biz-activiti/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceServiceImpl.java index 190170b38..50dfc8d02 100644 --- a/yudao-module-bpm/yudao-module-bpm-biz-activiti/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceServiceImpl.java +++ b/yudao-module-bpm/yudao-module-bpm-biz-activiti/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceServiceImpl.java @@ -285,11 +285,11 @@ public class BpmProcessInstanceServiceImpl implements BpmProcessInstanceService } @Transactional(rollbackFor = Exception.class) - public void updateProcessInstanceExtReject(String id, String comment) { + public void updateProcessInstanceExtReject(String id, String reason) { // 需要主动查询,因为 instance 只有 id 属性 ProcessInstance processInstance = getProcessInstance(id); // 删除流程实例,以实现驳回任务时,取消整个审批流程 - deleteProcessInstance(id, StrUtil.format(BpmProcessInstanceDeleteReasonEnum.REJECT_TASK.format(comment))); + deleteProcessInstance(id, StrUtil.format(BpmProcessInstanceDeleteReasonEnum.REJECT_TASK.format(reason))); // 更新 status + result // 注意,不能和上面的逻辑更换位置。因为 deleteProcessInstance 会触发流程的取消,进而调用 updateProcessInstanceExtCancel 方法, @@ -300,7 +300,7 @@ public class BpmProcessInstanceServiceImpl implements BpmProcessInstanceService processInstanceExtMapper.updateByProcessInstanceId(instanceExtDO); // 发送流程被不通过的消息 - messageService.sendMessageWhenProcessInstanceReject(BpmProcessInstanceConvert.INSTANCE.convert(processInstance, comment)); + messageService.sendMessageWhenProcessInstanceReject(BpmProcessInstanceConvert.INSTANCE.convert(processInstance, reason)); // 发送流程实例的状态事件 processInstanceResultEventPublisher.sendProcessInstanceResultEvent( diff --git a/yudao-module-bpm/yudao-module-bpm-biz-activiti/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmTaskServiceImpl.java b/yudao-module-bpm/yudao-module-bpm-biz-activiti/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmTaskServiceImpl.java index b4cb99fb1..bfa71a4e2 100644 --- a/yudao-module-bpm/yudao-module-bpm-biz-activiti/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmTaskServiceImpl.java +++ b/yudao-module-bpm/yudao-module-bpm-biz-activiti/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmTaskServiceImpl.java @@ -226,7 +226,7 @@ public class BpmTaskServiceImpl implements BpmTaskService { taskService.complete(task.getId(), instance.getProcessVariables()); // TODO 芋艿:variables 的选择 // 更新任务拓展表为通过 taskExtMapper.updateByTaskId(new BpmTaskExtDO().setTaskId(task.getId()) - .setResult(BpmProcessInstanceResultEnum.APPROVE.getResult()).setComment(reqVO.getComment())); + .setResult(BpmProcessInstanceResultEnum.APPROVE.getResult()).setReason(reqVO.getReason())); // TODO 芋艿:添加评论 // taskService.addComment(task.getId(), task.getProcessInstanceId(), reqVO.getComment()); @@ -250,11 +250,11 @@ public class BpmTaskServiceImpl implements BpmTaskService { } // 更新流程实例为不通过 - processInstanceService.updateProcessInstanceExtReject(instance.getProcessInstanceId(), reqVO.getComment()); + processInstanceService.updateProcessInstanceExtReject(instance.getProcessInstanceId(), reqVO.getReason()); // 更新任务拓展表为不通过 taskExtMapper.updateByTaskId(new BpmTaskExtDO().setTaskId(task.getId()) - .setResult(BpmProcessInstanceResultEnum.REJECT.getResult()).setComment(reqVO.getComment())); + .setResult(BpmProcessInstanceResultEnum.REJECT.getResult()).setReason(reqVO.getReason())); // TODO 芋艿:添加评论 // taskService.addComment(task.getId(), task.getProcessInstanceId(), reqVO.getComment()); diff --git a/yudao-module-bpm/yudao-module-bpm-biz-flowable/src/main/java/cn/iocoder/yudao/module/bpm/convert/task/BpmProcessInstanceConvert.java b/yudao-module-bpm/yudao-module-bpm-biz-flowable/src/main/java/cn/iocoder/yudao/module/bpm/convert/task/BpmProcessInstanceConvert.java index c6f6cbee5..a1eea62e9 100644 --- a/yudao-module-bpm/yudao-module-bpm-biz-flowable/src/main/java/cn/iocoder/yudao/module/bpm/convert/task/BpmProcessInstanceConvert.java +++ b/yudao-module-bpm/yudao-module-bpm-biz-flowable/src/main/java/cn/iocoder/yudao/module/bpm/convert/task/BpmProcessInstanceConvert.java @@ -18,12 +18,10 @@ import org.flowable.task.api.Task; import org.mapstruct.Mapper; import org.mapstruct.Mapping; import org.mapstruct.MappingTarget; -import org.mapstruct.Mappings; import org.mapstruct.factory.Mappers; import java.util.List; import java.util.Map; -import java.util.Optional; /** * 流程实例 Convert @@ -105,11 +103,11 @@ public interface BpmProcessInstanceConvert { .setProcessInstanceName(instance.getName()); } - default BpmMessageSendWhenProcessInstanceRejectReqDTO convert2RejectReq(ProcessInstance instance, String comment) { + default BpmMessageSendWhenProcessInstanceRejectReqDTO convert2RejectReq(ProcessInstance instance, String reason) { return new BpmMessageSendWhenProcessInstanceRejectReqDTO() .setProcessInstanceName(instance.getName()) .setProcessInstanceId(instance.getId()) - .setComment(comment) + .setReason(reason) .setStartUserId(NumberUtils.parseLong(instance.getStartUserId())); } diff --git a/yudao-module-bpm/yudao-module-bpm-biz-flowable/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceService.java b/yudao-module-bpm/yudao-module-bpm-biz-flowable/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceService.java index 831af4d3d..c14866f8c 100644 --- a/yudao-module-bpm/yudao-module-bpm-biz-flowable/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceService.java +++ b/yudao-module-bpm/yudao-module-bpm-biz-flowable/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceService.java @@ -141,9 +141,9 @@ public interface BpmProcessInstanceService { * 更新 ProcessInstance 拓展记录为不通过 * * @param id 流程编号 - * @param comment 理由。例如说,审批不通过时,需要传递该值 + * @param reason 理由。例如说,审批不通过时,需要传递该值 */ - void updateProcessInstanceExtReject(String id, String comment); + void updateProcessInstanceExtReject(String id, String reason); } diff --git a/yudao-module-bpm/yudao-module-bpm-biz-flowable/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceServiceImpl.java b/yudao-module-bpm/yudao-module-bpm-biz-flowable/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceServiceImpl.java index 9c21bd8a9..2a4b2b6f3 100644 --- a/yudao-module-bpm/yudao-module-bpm-biz-flowable/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceServiceImpl.java +++ b/yudao-module-bpm/yudao-module-bpm-biz-flowable/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceServiceImpl.java @@ -250,11 +250,11 @@ public class BpmProcessInstanceServiceImpl implements BpmProcessInstanceService } @Transactional(rollbackFor = Exception.class) - public void updateProcessInstanceExtReject(String id, String comment) { + public void updateProcessInstanceExtReject(String id, String reason) { // 需要主动查询,因为 instance 只有 id 属性 ProcessInstance processInstance = getProcessInstance(id); // 删除流程实例,以实现驳回任务时,取消整个审批流程 - deleteProcessInstance(id, StrUtil.format(BpmProcessInstanceDeleteReasonEnum.REJECT_TASK.format(comment))); + deleteProcessInstance(id, StrUtil.format(BpmProcessInstanceDeleteReasonEnum.REJECT_TASK.format(reason))); // 更新 status + result // 注意,不能和上面的逻辑更换位置。因为 deleteProcessInstance 会触发流程的取消,进而调用 updateProcessInstanceExtCancel 方法, @@ -265,7 +265,7 @@ public class BpmProcessInstanceServiceImpl implements BpmProcessInstanceService processInstanceExtMapper.updateByProcessInstanceId(instanceExtDO); // 发送流程被不通过的消息 - messageService.sendMessageWhenProcessInstanceReject(BpmProcessInstanceConvert.INSTANCE.convert2RejectReq(processInstance, comment)); + messageService.sendMessageWhenProcessInstanceReject(BpmProcessInstanceConvert.INSTANCE.convert2RejectReq(processInstance, reason)); // 发送流程实例的状态事件 processInstanceResultEventPublisher.sendProcessInstanceResultEvent( diff --git a/yudao-module-bpm/yudao-module-bpm-biz-flowable/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmTaskServiceImpl.java b/yudao-module-bpm/yudao-module-bpm-biz-flowable/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmTaskServiceImpl.java index 5c004977c..a41b85266 100644 --- a/yudao-module-bpm/yudao-module-bpm-biz-flowable/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmTaskServiceImpl.java +++ b/yudao-module-bpm/yudao-module-bpm-biz-flowable/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmTaskServiceImpl.java @@ -182,7 +182,7 @@ public class BpmTaskServiceImpl implements BpmTaskService{ taskService.complete(task.getId(), instance.getProcessVariables()); // 更新任务拓展表为通过 taskExtMapper.updateByTaskId(new BpmTaskExtDO().setTaskId(task.getId()) - .setResult(BpmProcessInstanceResultEnum.APPROVE.getResult()).setComment(reqVO.getComment())); + .setResult(BpmProcessInstanceResultEnum.APPROVE.getResult()).setReason(reqVO.getReason())); } @Override @@ -196,11 +196,11 @@ public class BpmTaskServiceImpl implements BpmTaskService{ } // 更新流程实例为不通过 - processInstanceService.updateProcessInstanceExtReject(instance.getProcessInstanceId(), reqVO.getComment()); + processInstanceService.updateProcessInstanceExtReject(instance.getProcessInstanceId(), reqVO.getReason()); // 更新任务拓展表为不通过 taskExtMapper.updateByTaskId(new BpmTaskExtDO().setTaskId(task.getId()) - .setResult(BpmProcessInstanceResultEnum.REJECT.getResult()).setComment(reqVO.getComment())); + .setResult(BpmProcessInstanceResultEnum.REJECT.getResult()).setReason(reqVO.getReason())); } @Override diff --git a/yudao-server/src/main/resources/application-local.yaml b/yudao-server/src/main/resources/application-local.yaml index 89cb9cb4f..4ee5835ee 100644 --- a/yudao-server/src/main/resources/application-local.yaml +++ b/yudao-server/src/main/resources/application-local.yaml @@ -44,16 +44,16 @@ spring: datasource: master: name: ruoyi-vue-pro -# url: jdbc:mysql://127.0.0.1:3306/${spring.datasource.dynamic.datasource.master.name}?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=CTT # MySQL 连接的示例 + url: jdbc:mysql://127.0.0.1:3306/${spring.datasource.dynamic.datasource.master.name}?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=CTT # MySQL 连接的示例 # url: jdbc:postgresql://127.0.0.1:5432/${spring.datasource.dynamic.datasource.slave.name} # PostgreSQL 连接的示例 - url: jdbc:oracle:thin:@127.0.0.1:1521:xe # Oracle 连接的示例 +# url: jdbc:oracle:thin:@127.0.0.1:1521:xe # Oracle 连接的示例 username: root password: 123456 slave: # 模拟从库,可根据自己需要修改 name: ruoyi-vue-pro -# url: jdbc:mysql://127.0.0.1:3306/${spring.datasource.dynamic.datasource.slave.name}?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=CTT # MySQL 连接的示例 + url: jdbc:mysql://127.0.0.1:3306/${spring.datasource.dynamic.datasource.slave.name}?useSSL=false&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=CTT # MySQL 连接的示例 # url: jdbc:postgresql://127.0.0.1:5432/${spring.datasource.dynamic.datasource.slave.name} # PostgreSQL 连接的示例 - url: jdbc:oracle:thin:@127.0.0.1:1521:xe # Oracle 连接的示例 +# url: jdbc:oracle:thin:@127.0.0.1:1521:xe # Oracle 连接的示例 username: root password: 123456 diff --git a/yudao-ui-admin/src/components/bpmnProcessDesigner/package/designer/ProcessViewer.vue b/yudao-ui-admin/src/components/bpmnProcessDesigner/package/designer/ProcessViewer.vue index 73beb13fd..0588d4fda 100644 --- a/yudao-ui-admin/src/components/bpmnProcessDesigner/package/designer/ProcessViewer.vue +++ b/yudao-ui-admin/src/components/bpmnProcessDesigner/package/designer/ProcessViewer.vue @@ -292,8 +292,8 @@ export default { if (task.endTime) { html += `

结束时间:${this.parseTime(task.endTime)}

` } - if (task.comment) { - html += `

审批建议:${task.comment}

` + if (task.reason) { + html += `

审批建议:${task.reason}

` } } else if (element.type === 'bpmn:EndEvent' && this.processInstance) { html = `

结果:${this.getDictDataLabel(this.DICT_TYPE.BPM_PROCESS_INSTANCE_RESULT, this.processInstance.result)}

`; diff --git a/yudao-ui-admin/src/views/bpm/processInstance/detail.vue b/yudao-ui-admin/src/views/bpm/processInstance/detail.vue index f5d4992c2..d071925c4 100644 --- a/yudao-ui-admin/src/views/bpm/processInstance/detail.vue +++ b/yudao-ui-admin/src/views/bpm/processInstance/detail.vue @@ -14,8 +14,8 @@ {{ processInstance.startUser.nickname }} {{ processInstance.startUser.deptName }}
- - + +
@@ -66,8 +66,8 @@ -

- {{ item.comment }} +

+ {{ item.reason }}

@@ -148,7 +148,7 @@ export default { runningTasks: [], auditForms: [], auditRule: { - comment: [{ required: true, message: "审批建议不能为空", trigger: "blur" }], + reason: [{ required: true, message: "审批建议不能为空", trigger: "blur" }], }, // 转派审批人 @@ -259,7 +259,7 @@ export default { } this.runningTasks.push({...task}); this.auditForms.push({ - comment: '' + reason: '' }) }); @@ -351,7 +351,7 @@ export default { } const data = { id: task.id, - comment: this.auditForms[index].comment + reason: this.auditForms[index].reason } if (pass) { approveTask(data).then(response => { diff --git a/yudao-ui-admin/src/views/bpm/task/done.vue b/yudao-ui-admin/src/views/bpm/task/done.vue index c0b9a6683..b35dc597d 100644 --- a/yudao-ui-admin/src/views/bpm/task/done.vue +++ b/yudao-ui-admin/src/views/bpm/task/done.vue @@ -28,7 +28,7 @@ - + From 63e632ceb7c9df92b406017b16039a83ee3e9218 Mon Sep 17 00:00:00 2001 From: YunaiV Date: Wed, 11 May 2022 01:20:07 +0800 Subject: [PATCH 061/111] =?UTF-8?q?=E5=9B=BE=E7=89=87=E4=B8=8A=E4=BC=A0?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=20ImageUpload=20=E4=B8=8A=E4=BC=A0=E6=8A=A5?= =?UTF-8?q?=E9=94=99=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/admin/file/FileController.java | 4 +++- .../infra/service/file/FileServiceImpl.java | 10 ++++++++- .../src/components/ImageUpload/index.vue | 21 +++++++------------ 3 files changed, 20 insertions(+), 15 deletions(-) diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/controller/admin/file/FileController.java b/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/controller/admin/file/FileController.java index e3d810dec..4500133ed 100644 --- a/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/controller/admin/file/FileController.java +++ b/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/controller/admin/file/FileController.java @@ -4,6 +4,7 @@ import cn.hutool.core.io.IoUtil; import cn.iocoder.yudao.framework.common.pojo.CommonResult; import cn.iocoder.yudao.framework.common.pojo.PageResult; import cn.iocoder.yudao.framework.common.util.servlet.ServletUtils; +import cn.iocoder.yudao.framework.operatelog.core.annotations.OperateLog; import cn.iocoder.yudao.module.infra.controller.admin.file.vo.file.FilePageReqVO; import cn.iocoder.yudao.module.infra.controller.admin.file.vo.file.FileRespVO; import cn.iocoder.yudao.module.infra.convert.file.FileConvert; @@ -42,8 +43,9 @@ public class FileController { @ApiImplicitParam(name = "file", value = "文件附件", required = true, dataTypeClass = MultipartFile.class), @ApiImplicitParam(name = "path", value = "文件路径", example = "yudaoyuanma.png", dataTypeClass = String.class) }) + @OperateLog(logArgs = false) // 上传文件,没有记录操作日志的必要 public CommonResult uploadFile(@RequestParam("file") MultipartFile file, - @RequestParam("path") String path) throws Exception { + @RequestParam(value = "path", required = false) String path) throws Exception { return success(fileService.createFile(path, IoUtil.readBytes(file.getInputStream()))); } diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/service/file/FileServiceImpl.java b/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/service/file/FileServiceImpl.java index 66af402e0..4f3736f1b 100644 --- a/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/service/file/FileServiceImpl.java +++ b/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/service/file/FileServiceImpl.java @@ -2,6 +2,8 @@ package cn.iocoder.yudao.module.infra.service.file; import cn.hutool.core.io.FileTypeUtil; import cn.hutool.core.lang.Assert; +import cn.hutool.core.util.StrUtil; +import cn.hutool.crypto.digest.DigestUtil; import cn.iocoder.yudao.framework.common.pojo.PageResult; import cn.iocoder.yudao.framework.file.core.client.FileClient; import cn.iocoder.yudao.module.infra.controller.admin.file.vo.file.FilePageReqVO; @@ -36,6 +38,12 @@ public class FileServiceImpl implements FileService { @Override public String createFile(String path, byte[] content) throws Exception { + // 计算默认的 path 名 + String type = FileTypeUtil.getType(new ByteArrayInputStream(content)); + if (StrUtil.isEmpty(path)) { + path = DigestUtil.md5Hex(content) + '.' + type; + } + // 上传到文件存储器 FileClient client = fileConfigService.getMasterFileClient(); Assert.notNull(client, "客户端(master) 不能为空"); @@ -46,7 +54,7 @@ public class FileServiceImpl implements FileService { file.setConfigId(client.getId()); file.setPath(path); file.setUrl(url); - file.setType(FileTypeUtil.getType(new ByteArrayInputStream(content))); + file.setType(type); file.setSize(content.length); fileMapper.insert(file); return url; diff --git a/yudao-ui-admin/src/components/ImageUpload/index.vue b/yudao-ui-admin/src/components/ImageUpload/index.vue index 6fb6b5e11..e43fa780c 100644 --- a/yudao-ui-admin/src/components/ImageUpload/index.vue +++ b/yudao-ui-admin/src/components/ImageUpload/index.vue @@ -2,7 +2,7 @@
{ if (typeof item === "string") { - if (item.indexOf(this.baseUrl) === -1) { - item = { name: this.baseUrl + item, url: this.baseUrl + item }; - } else { - item = { name: item, url: item }; - } + // edit by 芋道源码 + item = { name: item, url: item }; } return item; }); @@ -127,7 +121,8 @@ export default { }, // 上传成功回调 handleUploadSuccess(res) { - this.uploadList.push({ name: res.fileName, url: res.fileName }); + // edit by 芋道源码 + this.uploadList.push({ name: res.data, url: res.data }); if (this.uploadList.length === this.number) { this.fileList = this.fileList.concat(this.uploadList); this.uploadList = []; @@ -188,7 +183,7 @@ export default { for (let i in list) { strs += list[i].url.replace(this.baseUrl, "") + separator; } - return strs != '' ? strs.substr(0, strs.length - 1) : ''; + return strs !== '' ? strs.substr(0, strs.length - 1) : ''; } } }; From 9d5d192175ed4b8f9bb16ce214ae0964a8e0e8ec Mon Sep 17 00:00:00 2001 From: baihongbin Date: Wed, 11 May 2022 02:51:29 +0000 Subject: [PATCH 062/111] =?UTF-8?q?fix=EF=BC=9A=E4=BD=BF=E7=94=A8=E4=B8=80?= =?UTF-8?q?=E9=94=AE=E6=94=B9=E5=8C=85=E4=B9=8B=E5=90=8E=EF=BC=8C=E5=8F=AF?= =?UTF-8?q?=E8=83=BD=E5=AF=BC=E8=87=B4=E7=9A=84=E8=87=AA=E5=AE=9A=E4=B9=89?= =?UTF-8?q?lock4j=E5=A4=B1=E8=B4=A5=E7=AD=96=E7=95=A5bean=E4=B8=8Elock4j?= =?UTF-8?q?=E6=8F=90=E4=BE=9B=E7=9A=84=E9=BB=98=E8=AE=A4=E5=A4=B1=E8=B4=A5?= =?UTF-8?q?=E7=AD=96=E7=95=A5bean=E5=86=B2=E7=AA=81=E9=97=AE=E9=A2=98=20?= =?UTF-8?q?=E8=A7=A3=E5=86=B3=E6=96=B9=E6=B3=95=EF=BC=9A=20=E4=BD=BF?= =?UTF-8?q?=E7=94=A8@AutoConfigureBefore=E6=B3=A8=E8=A7=A3=EF=BC=8C?= =?UTF-8?q?=E6=8C=87=E5=AE=9A=E8=87=AA=E5=AE=9A=E4=B9=89bean=E5=9C=A8LockA?= =?UTF-8?q?utoConfiguration=E4=B9=8B=E5=89=8D=E8=BF=9B=E8=A1=8C=E5=8A=A0?= =?UTF-8?q?=E8=BD=BD=EF=BC=8C=E4=BD=BF=E5=BE=97LockAutoConfiguration?= =?UTF-8?q?=E4=B8=AD=E7=9A=84=E5=A4=B1=E8=B4=A5=E7=AD=96=E7=95=A5bean?= =?UTF-8?q?=E4=B8=8A=E7=9A=84@ConditionalOnMissingBean=E6=B3=A8=E8=A7=A3?= =?UTF-8?q?=E7=94=9F=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../framework/lock4j/config/YudaoLock4jConfiguration.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/yudao-framework/yudao-spring-boot-starter-protection/src/main/java/cn/iocoder/yudao/framework/lock4j/config/YudaoLock4jConfiguration.java b/yudao-framework/yudao-spring-boot-starter-protection/src/main/java/cn/iocoder/yudao/framework/lock4j/config/YudaoLock4jConfiguration.java index 4919bf7c2..00cf23fb5 100644 --- a/yudao-framework/yudao-spring-boot-starter-protection/src/main/java/cn/iocoder/yudao/framework/lock4j/config/YudaoLock4jConfiguration.java +++ b/yudao-framework/yudao-spring-boot-starter-protection/src/main/java/cn/iocoder/yudao/framework/lock4j/config/YudaoLock4jConfiguration.java @@ -1,12 +1,15 @@ package cn.iocoder.yudao.framework.lock4j.config; import cn.hutool.core.util.ClassUtil; +import com.baomidou.lock.spring.boot.autoconfigure.LockAutoConfiguration; import cn.iocoder.yudao.framework.lock4j.core.DefaultLockFailureStrategy; import cn.iocoder.yudao.framework.lock4j.core.Lock4jRedisKeyConstants; +import org.springframework.boot.autoconfigure.AutoConfigureBefore; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration +@AutoConfigureBefore(LockAutoConfiguration.class) public class YudaoLock4jConfiguration { static { From b6cb6469f1fefb083e3c0134c0217ea14dcd7495 Mon Sep 17 00:00:00 2001 From: YunaiV Date: Wed, 11 May 2022 12:35:42 +0800 Subject: [PATCH 063/111] =?UTF-8?q?=E5=AF=8C=E6=96=87=E6=9C=AC=E7=BC=96?= =?UTF-8?q?=E8=BE=91=E5=99=A8=E7=9A=84=20Editor=20=E7=9A=84=E5=9B=BE?= =?UTF-8?q?=E7=89=87=E4=B8=8A=E4=BC=A0=E6=8A=A5=E9=94=99=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/Editor/index.vue | 18 ++--- .../src/components/ImageUpload/index.vue | 4 +- .../src/components/UploadImage/index.vue | 68 ------------------- 3 files changed, 11 insertions(+), 79 deletions(-) delete mode 100644 yudao-ui-admin/src/components/UploadImage/index.vue diff --git a/yudao-ui-admin/src/components/Editor/index.vue b/yudao-ui-admin/src/components/Editor/index.vue index 9cbb981ee..61d62434e 100644 --- a/yudao-ui-admin/src/components/Editor/index.vue +++ b/yudao-ui-admin/src/components/Editor/index.vue @@ -1,7 +1,7 @@ - - - - From 1f36af8e6a3c8a3b5f274df7180b075bb268254f Mon Sep 17 00:00:00 2001 From: YunaiV Date: Wed, 11 May 2022 12:40:54 +0800 Subject: [PATCH 064/111] =?UTF-8?q?=E6=96=87=E4=BB=B6=E4=B8=8A=E4=BC=A0?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=20FileUpload=20=E4=B8=8A=E4=BC=A0=E6=8A=A5?= =?UTF-8?q?=E9=94=99=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/FileUpload/index.vue | 17 +++++++---------- .../src/views/system/oauth2/client/index.vue | 5 ++++- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/yudao-ui-admin/src/components/FileUpload/index.vue b/yudao-ui-admin/src/components/FileUpload/index.vue index d19b7db91..84b7df236 100644 --- a/yudao-ui-admin/src/components/FileUpload/index.vue +++ b/yudao-ui-admin/src/components/FileUpload/index.vue @@ -28,7 +28,7 @@
  • - + {{ getFileName(file.name) }}
    @@ -72,11 +72,8 @@ export default { return { number: 0, uploadList: [], - baseUrl: process.env.VUE_APP_BASE_API, - uploadFileUrl: process.env.VUE_APP_BASE_API + "/common/upload", // 上传的图片服务器地址 - headers: { - Authorization: "Bearer " + getAccessToken(), - }, + uploadFileUrl: process.env.VUE_APP_BASE_API + "/admin-api/infra/file/upload", // 请求地址 + headers: { Authorization: "Bearer " + getAccessToken() }, // 设置上传的请求头部 fileList: [], }; }, @@ -121,8 +118,7 @@ export default { } const isTypeOk = this.fileType.some((type) => { if (file.type.indexOf(type) > -1) return true; - if (fileExtension && fileExtension.indexOf(type) > -1) return true; - return false; + return !!(fileExtension && fileExtension.indexOf(type) > -1); }); if (!isTypeOk) { this.$modal.msgError(`文件格式不正确, 请上传${this.fileType.join("/")}格式文件!`); @@ -152,7 +148,8 @@ export default { }, // 上传成功回调 handleUploadSuccess(res) { - this.uploadList.push({ name: res.fileName, url: res.fileName }); + // edit by 芋道源码 + this.uploadList.push({ name: res.data, url: res.data }); if (this.uploadList.length === this.number) { this.fileList = this.fileList.concat(this.uploadList); this.uploadList = []; @@ -181,7 +178,7 @@ export default { for (let i in list) { strs += list[i].url + separator; } - return strs != '' ? strs.substr(0, strs.length - 1) : ''; + return strs !== '' ? strs.substr(0, strs.length - 1) : ''; } } }; diff --git a/yudao-ui-admin/src/views/system/oauth2/client/index.vue b/yudao-ui-admin/src/views/system/oauth2/client/index.vue index 31cf94142..f80c847ca 100755 --- a/yudao-ui-admin/src/views/system/oauth2/client/index.vue +++ b/yudao-ui-admin/src/views/system/oauth2/client/index.vue @@ -70,7 +70,8 @@ - + + @@ -104,10 +105,12 @@ import { createOAuth2Client, updateOAuth2Client, deleteOAuth2Client, getOAuth2Cl import ImageUpload from '@/components/ImageUpload'; import Editor from '@/components/Editor'; import {CommonStatusEnum} from "@/utils/constants"; +import FileUpload from "@/components/FileUpload"; export default { name: "OAuth2Client", components: { + FileUpload, ImageUpload, Editor, }, From 41d049c35c04404599a15c29e62a08d47f57e186 Mon Sep 17 00:00:00 2001 From: Justubborn <289202313@qq.com> Date: Wed, 11 May 2022 15:13:20 +0000 Subject: [PATCH 065/111] =?UTF-8?q?pref:=20=E4=BB=A3=E7=A0=81=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../yudao/module/infra/service/codegen/CodegenServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/service/codegen/CodegenServiceImpl.java b/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/service/codegen/CodegenServiceImpl.java index 8b96db03d..333dbefa6 100644 --- a/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/service/codegen/CodegenServiceImpl.java +++ b/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/service/codegen/CodegenServiceImpl.java @@ -206,7 +206,7 @@ public class CodegenServiceImpl implements CodegenService { public Map generationCodes(Long tableId) { // 校验是否已经存在 CodegenTableDO table = codegenTableMapper.selectById(tableId); - if (codegenTableMapper.selectById(tableId) == null) { + if (table == null) { throw exception(CODEGEN_TABLE_NOT_EXISTS); } List columns = codegenColumnMapper.selectListByTableId(tableId); From 97db4586a82d2ce42e2a4ff0ecd47202ccb70212 Mon Sep 17 00:00:00 2001 From: YunaiV Date: Thu, 12 May 2022 01:09:16 +0800 Subject: [PATCH 066/111] =?UTF-8?q?=E5=AE=8C=E6=88=90=20OAuth2=20=E7=9A=84?= =?UTF-8?q?=E5=AE=A2=E6=88=B7=E7=AB=AF=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../framework/common/util/json/JsonUtils.java | 9 +- .../service/auth/MemberAuthServiceImpl.java | 6 +- .../system/api/auth/OAuth2TokenApi.java | 2 +- .../dto/OAuth2AccessTokenCreateReqDTO.java | 2 +- .../system/enums/ErrorCodeConstants.java | 1 + .../enums/auth/OAuth2ClientConstants.java | 12 ++ .../system/enums/auth/OAuth2ClientIdEnum.java | 17 --- .../enums/auth/OAuth2GrantTypeEnum.java | 24 ++++ .../system/api/auth/OAuth2TokenApiImpl.java | 2 +- .../admin/auth/OAuth2ClientController.http | 23 ++++ .../auth/vo/client/OAuth2ClientBaseVO.java | 36 ++++- .../auth/vo/client/OAuth2ClientRespVO.java | 3 + .../vo/client/OAuth2ClientUpdateReqVO.java | 7 + .../vo/token/OAuth2AccessTokenPageReqVO.java | 2 +- .../vo/token/OAuth2AccessTokenRespVO.java | 2 +- .../dataobject/auth/OAuth2AccessTokenDO.java | 2 +- .../dal/dataobject/auth/OAuth2ClientDO.java | 45 +++++-- .../dal/dataobject/auth/OAuth2CodeDO.java | 4 +- .../dataobject/auth/OAuth2RefreshTokenDO.java | 2 +- .../dal/mysql/auth/OAuth2ClientMapper.java | 10 ++ .../auth/OAuth2ClientRefreshConsumer.java | 29 ++++ .../auth/OAuth2ClientRefreshMessage.java | 21 +++ .../producer/auth/OAuth2ClientProducer.java | 26 ++++ .../service/auth/AdminAuthServiceImpl.java | 6 +- .../service/auth/OAuth2ClientService.java | 19 ++- .../service/auth/OAuth2ClientServiceImpl.java | 125 ++++++++++++++++-- .../service/auth/OAuth2TokenService.java | 4 +- .../service/auth/OAuth2TokenServiceImpl.java | 8 +- .../service/auth/AuthServiceImplTest.java | 2 +- .../auth/OAuth2ClientServiceImplTest.java | 71 +++++++--- .../src/test/resources/sql/create_tables.sql | 7 + .../src/components/generator/config.js | 2 +- yudao-ui-admin/src/utils/dict.js | 1 + .../src/views/system/oauth2/client/index.vue | 83 ++++++++++-- 34 files changed, 511 insertions(+), 104 deletions(-) create mode 100644 yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/auth/OAuth2ClientConstants.java delete mode 100644 yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/auth/OAuth2ClientIdEnum.java create mode 100644 yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/auth/OAuth2GrantTypeEnum.java create mode 100644 yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/OAuth2ClientController.http create mode 100644 yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/mq/consumer/auth/OAuth2ClientRefreshConsumer.java create mode 100644 yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/mq/message/auth/OAuth2ClientRefreshMessage.java create mode 100644 yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/mq/producer/auth/OAuth2ClientProducer.java diff --git a/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/json/JsonUtils.java b/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/json/JsonUtils.java index 21dc101f9..2a46edf6a 100644 --- a/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/json/JsonUtils.java +++ b/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/json/JsonUtils.java @@ -113,8 +113,7 @@ public class JsonUtils { } } - // TODO @Li:和上面的风格保持一致哈。parseTree - public static JsonNode readTree(String text) { + public static JsonNode parseTree(String text) { try { return objectMapper.readTree(text); } catch (IOException e) { @@ -123,7 +122,7 @@ public class JsonUtils { } } - public static JsonNode readTree(byte[] text) { + public static JsonNode parseTree(byte[] text) { try { return objectMapper.readTree(text); } catch (IOException e) { @@ -132,4 +131,8 @@ public class JsonUtils { } } + public static boolean isJson(String text) { + return JSONUtil.isJson(text); + } + } diff --git a/yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/service/auth/MemberAuthServiceImpl.java b/yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/service/auth/MemberAuthServiceImpl.java index 9fc86335e..a1d5b4d0b 100644 --- a/yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/service/auth/MemberAuthServiceImpl.java +++ b/yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/service/auth/MemberAuthServiceImpl.java @@ -18,7 +18,7 @@ import cn.iocoder.yudao.module.system.api.logger.LoginLogApi; import cn.iocoder.yudao.module.system.api.logger.dto.LoginLogCreateReqDTO; import cn.iocoder.yudao.module.system.api.sms.SmsCodeApi; import cn.iocoder.yudao.module.system.api.social.SocialUserApi; -import cn.iocoder.yudao.module.system.enums.auth.OAuth2ClientIdEnum; +import cn.iocoder.yudao.module.system.enums.auth.OAuth2ClientConstants; import cn.iocoder.yudao.module.system.enums.logger.LoginLogTypeEnum; import cn.iocoder.yudao.module.system.enums.logger.LoginResultEnum; import cn.iocoder.yudao.module.system.enums.sms.SmsSceneEnum; @@ -120,7 +120,7 @@ public class MemberAuthServiceImpl implements MemberAuthService { createLoginLog(user.getId(), mobile, logType, LoginResultEnum.SUCCESS); // 创建 Token 令牌 OAuth2AccessTokenRespDTO accessTokenRespDTO = oauth2TokenApi.createAccessToken(new OAuth2AccessTokenCreateReqDTO() - .setUserId(user.getId()).setUserType(getUserType().getValue()).setClientId(OAuth2ClientIdEnum.DEFAULT.getId())); + .setUserId(user.getId()).setUserType(getUserType().getValue()).setClientId(OAuth2ClientConstants.CLIENT_ID_DEFAULT)); // 构建返回结果 return AuthConvert.INSTANCE.convert(accessTokenRespDTO); } @@ -212,7 +212,7 @@ public class MemberAuthServiceImpl implements MemberAuthService { @Override public AppAuthLoginRespVO refreshToken(String refreshToken) { - OAuth2AccessTokenRespDTO accessTokenDO = oauth2TokenApi.refreshAccessToken(refreshToken, OAuth2ClientIdEnum.DEFAULT.getId()); + OAuth2AccessTokenRespDTO accessTokenDO = oauth2TokenApi.refreshAccessToken(refreshToken, OAuth2ClientConstants.CLIENT_ID_DEFAULT); return AuthConvert.INSTANCE.convert(accessTokenDO); } diff --git a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/auth/OAuth2TokenApi.java b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/auth/OAuth2TokenApi.java index ef82f5f53..5d0201565 100644 --- a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/auth/OAuth2TokenApi.java +++ b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/auth/OAuth2TokenApi.java @@ -44,6 +44,6 @@ public interface OAuth2TokenApi { * @param clientId 客户端编号 * @return 访问令牌的信息 */ - OAuth2AccessTokenRespDTO refreshAccessToken(String refreshToken, Long clientId); + OAuth2AccessTokenRespDTO refreshAccessToken(String refreshToken, String clientId); } diff --git a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/auth/dto/OAuth2AccessTokenCreateReqDTO.java b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/auth/dto/OAuth2AccessTokenCreateReqDTO.java index e9c5b953b..09bd6d8c9 100644 --- a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/auth/dto/OAuth2AccessTokenCreateReqDTO.java +++ b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/auth/dto/OAuth2AccessTokenCreateReqDTO.java @@ -30,6 +30,6 @@ public class OAuth2AccessTokenCreateReqDTO implements Serializable { * 客户端编号 */ @NotNull(message = "客户端编号不能为空") - private Long clientId; + private String clientId; } diff --git a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/ErrorCodeConstants.java b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/ErrorCodeConstants.java index 494f6937a..b8368200d 100644 --- a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/ErrorCodeConstants.java +++ b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/ErrorCodeConstants.java @@ -125,5 +125,6 @@ public interface ErrorCodeConstants { // ========== 系统敏感词 1002020000 ========= ErrorCode OAUTH2_CLIENT_NOT_EXISTS = new ErrorCode(1002020000, "OAuth2 客户端不存在"); + ErrorCode OAUTH2_CLIENT_EXISTS = new ErrorCode(1002020001, "OAuth2 客户端编号已存在"); } diff --git a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/auth/OAuth2ClientConstants.java b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/auth/OAuth2ClientConstants.java new file mode 100644 index 000000000..e48e132ff --- /dev/null +++ b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/auth/OAuth2ClientConstants.java @@ -0,0 +1,12 @@ +package cn.iocoder.yudao.module.system.enums.auth; + +/** + * OAuth2.0 客户端的通用枚举 + * + * @author 芋道源码 + */ +public interface OAuth2ClientConstants { + + String CLIENT_ID_DEFAULT = "default"; + +} diff --git a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/auth/OAuth2ClientIdEnum.java b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/auth/OAuth2ClientIdEnum.java deleted file mode 100644 index d41c2d25e..000000000 --- a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/auth/OAuth2ClientIdEnum.java +++ /dev/null @@ -1,17 +0,0 @@ -package cn.iocoder.yudao.module.system.enums.auth; - -import lombok.AllArgsConstructor; -import lombok.Getter; - -/** - * OAuth2.0 客户端的编号枚举 - */ -@AllArgsConstructor -@Getter -public enum OAuth2ClientIdEnum { - - DEFAULT(1L); // 系统默认 - - private final Long id; - -} diff --git a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/auth/OAuth2GrantTypeEnum.java b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/auth/OAuth2GrantTypeEnum.java new file mode 100644 index 000000000..f2394b7af --- /dev/null +++ b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/auth/OAuth2GrantTypeEnum.java @@ -0,0 +1,24 @@ +package cn.iocoder.yudao.module.system.enums.auth; + +import lombok.AllArgsConstructor; +import lombok.Getter; + +/** + * OAuth2 授权类型(模式)的枚举 + * + * @author 芋道源码 + */ +@AllArgsConstructor +@Getter +public enum OAuth2GrantTypeEnum { + + PASSWORD("password"), // 密码模式 + AUTHORIZATION_CODE("authorization_code"), // 授权码模式 + IMPLICIT("implicit"), // 简化模式 + CLIENT_CREDENTIALS("client_credentials"), // 客户端模式 + REFRESH_TOKEN("refresh_token"), // 刷新模式 + ; + + private final String grantType; + +} diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/api/auth/OAuth2TokenApiImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/api/auth/OAuth2TokenApiImpl.java index 80b7b1811..d9e873c6d 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/api/auth/OAuth2TokenApiImpl.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/api/auth/OAuth2TokenApiImpl.java @@ -40,7 +40,7 @@ public class OAuth2TokenApiImpl implements OAuth2TokenApi { } @Override - public OAuth2AccessTokenRespDTO refreshAccessToken(String refreshToken, Long clientId) { + public OAuth2AccessTokenRespDTO refreshAccessToken(String refreshToken, String clientId) { OAuth2AccessTokenDO accessTokenDO = oauth2TokenService.refreshAccessToken(refreshToken, clientId); return OAuth2TokenConvert.INSTANCE.convert2(accessTokenDO); } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/OAuth2ClientController.http b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/OAuth2ClientController.http new file mode 100644 index 000000000..dcf60a6cf --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/OAuth2ClientController.http @@ -0,0 +1,23 @@ +### 请求 /login 接口 => 成功 +POST {{baseUrl}}/system/oauth2-client/create +Content-Type: application/json +Authorization: Bearer {{token}} +tenant-id: {{adminTenentId}} + +{ + "id": "1", + "secret": "admin123", + "name": "芋道源码", + "logo": "https://www.iocoder.cn/images/favicon.ico", + "description": "我是描述", + "status": 0, + "accessTokenValiditySeconds": 180, + "refreshTokenValiditySeconds": 8640, + "redirectUris": ["https://www.iocoder.cn"], + "autoApprove": true, + "authorizedGrantTypes": ["password"], + "scopes": ["user_info"], + "authorities": ["system:user:query"], + "resource_ids": ["1024"], + "additionalInformation": "{}" +} diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/client/OAuth2ClientBaseVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/client/OAuth2ClientBaseVO.java index a281eed84..2cd2b7466 100755 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/client/OAuth2ClientBaseVO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/client/OAuth2ClientBaseVO.java @@ -1,8 +1,13 @@ package cn.iocoder.yudao.module.system.controller.admin.auth.vo.client; +import cn.hutool.core.util.StrUtil; +import cn.iocoder.yudao.framework.common.util.json.JsonUtils; import io.swagger.annotations.ApiModelProperty; import lombok.Data; +import org.hibernate.validator.constraints.URL; +import javax.validation.constraints.AssertTrue; +import javax.validation.constraints.NotEmpty; import javax.validation.constraints.NotNull; import java.util.List; @@ -15,7 +20,7 @@ public class OAuth2ClientBaseVO { @ApiModelProperty(value = "客户端编号", required = true) @NotNull(message = "客户端编号不能为空") - private Long id; + private String clientId; @ApiModelProperty(value = "客户端密钥", required = true) @NotNull(message = "客户端密钥不能为空") @@ -27,6 +32,7 @@ public class OAuth2ClientBaseVO { @ApiModelProperty(value = "应用图标", required = true) @NotNull(message = "应用图标不能为空") + @URL(message = "应用图标的地址不正确") private String logo; @ApiModelProperty(value = "应用描述") @@ -46,6 +52,32 @@ public class OAuth2ClientBaseVO { @ApiModelProperty(value = "可重定向的 URI 地址", required = true) @NotNull(message = "可重定向的 URI 地址不能为空") - private List redirectUris; + private List<@NotEmpty(message = "重定向的 URI 不能为空") + @URL(message = "重定向的 URI 格式不正确") String> redirectUris; + + @ApiModelProperty(value = "是否自动授权", required = true, example = "true") + @NotNull(message = "是否自动授权不能为空") + private Boolean autoApprove; + + @ApiModelProperty(value = "授权类型", required = true, example = "password", notes = "参见 OAuth2GrantTypeEnum 枚举") + @NotNull(message = "授权类型不能为空") + private List authorizedGrantTypes; + + @ApiModelProperty(value = "授权范围", example = "user_info") + private List scopes; + + @ApiModelProperty(value = "权限", example = "system:user:query") + private List authorities; + + @ApiModelProperty(value = "资源", example = "1024") + private List resourceIds; + + @ApiModelProperty(value = "附加信息", example = "{yunai: true}") + private String additionalInformation; + + @AssertTrue(message = "附加信息必须是 JSON 格式") + public boolean isAdditionalInformationJson() { + return StrUtil.isEmpty(additionalInformation) || JsonUtils.isJson(additionalInformation); + } } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/client/OAuth2ClientRespVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/client/OAuth2ClientRespVO.java index ba0197844..6416d7438 100755 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/client/OAuth2ClientRespVO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/client/OAuth2ClientRespVO.java @@ -14,6 +14,9 @@ import java.util.Date; @ToString(callSuper = true) public class OAuth2ClientRespVO extends OAuth2ClientBaseVO { + @ApiModelProperty(value = "编号", required = true) + private Long id; + @ApiModelProperty(value = "创建时间", required = true) private Date createTime; diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/client/OAuth2ClientUpdateReqVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/client/OAuth2ClientUpdateReqVO.java index bbcd96fd2..27479050c 100755 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/client/OAuth2ClientUpdateReqVO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/client/OAuth2ClientUpdateReqVO.java @@ -1,14 +1,21 @@ package cn.iocoder.yudao.module.system.controller.admin.auth.vo.client; import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.ToString; +import javax.validation.constraints.NotNull; + @ApiModel("管理后台 - OAuth2 客户端更新 Request VO") @Data @EqualsAndHashCode(callSuper = true) @ToString(callSuper = true) public class OAuth2ClientUpdateReqVO extends OAuth2ClientBaseVO { + @ApiModelProperty(value = "编号", required = true) + @NotNull(message = "编号不能为空") + private Long id; + } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/token/OAuth2AccessTokenPageReqVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/token/OAuth2AccessTokenPageReqVO.java index 77fbb0c4a..41dff4af3 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/token/OAuth2AccessTokenPageReqVO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/token/OAuth2AccessTokenPageReqVO.java @@ -18,6 +18,6 @@ public class OAuth2AccessTokenPageReqVO extends PageParam { private Integer userType; @ApiModelProperty(value = "客户端编号", required = true, example = "2") - private Long clientId; + private String clientId; } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/token/OAuth2AccessTokenRespVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/token/OAuth2AccessTokenRespVO.java index 4de251f93..678a2156d 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/token/OAuth2AccessTokenRespVO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/vo/token/OAuth2AccessTokenRespVO.java @@ -30,7 +30,7 @@ public class OAuth2AccessTokenRespVO { private Integer userType; @ApiModelProperty(value = "客户端编号", required = true, example = "2") - private Long clientId; + private String clientId; @ApiModelProperty(value = "创建时间", required = true) private Date createTime; diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/auth/OAuth2AccessTokenDO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/auth/OAuth2AccessTokenDO.java index aaaa8152c..bd7105aba 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/auth/OAuth2AccessTokenDO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/auth/OAuth2AccessTokenDO.java @@ -52,7 +52,7 @@ public class OAuth2AccessTokenDO extends TenantBaseDO { * * 关联 {@link OAuth2ClientDO#getId()} */ - private Long clientId; + private String clientId; /** * 过期时间 */ diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/auth/OAuth2ClientDO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/auth/OAuth2ClientDO.java index cac80f5c2..58b498e05 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/auth/OAuth2ClientDO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/auth/OAuth2ClientDO.java @@ -2,38 +2,37 @@ package cn.iocoder.yudao.module.system.dal.dataobject.auth; import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum; import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO; -import com.baomidou.mybatisplus.annotation.IdType; +import cn.iocoder.yudao.module.system.enums.auth.OAuth2GrantTypeEnum; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler; import lombok.Data; import lombok.EqualsAndHashCode; -import lombok.experimental.Accessors; import java.util.List; /** * OAuth2 客户端 DO * - * 如下字段,考虑到使用相对不是很高频,主要是一些开关,暂时不支持: - * authorized_grant_types、authorities、additional_information、autoapprove、resource_ids、scope - * * @author 芋道源码 */ @TableName(value = "system_oauth2_client", autoResultMap = true) @Data @EqualsAndHashCode(callSuper = true) -@Accessors(chain = true) public class OAuth2ClientDO extends BaseDO { /** - * 客户端编号 + * 编号,数据库自增 * * 由于 SQL Server 在存储 String 主键有点问题,所以暂时使用 Long 类型 */ - @TableId(type = IdType.INPUT) + @TableId private Long id; + /** + * 客户端编号 + */ + private String clientId; /** * 客户端密钥 */ @@ -69,5 +68,35 @@ public class OAuth2ClientDO extends BaseDO { */ @TableField(typeHandler = JacksonTypeHandler.class) private List redirectUris; + /** + * 是否自动授权 + */ + private Boolean autoApprove; + /** + * 授权类型(模式) + * + * 枚举 {@link OAuth2GrantTypeEnum} + */ + @TableField(typeHandler = JacksonTypeHandler.class) + private List authorizedGrantTypes; + /** + * 授权范围 + */ + @TableField(typeHandler = JacksonTypeHandler.class) + private List scopes; + /** + * 权限 + */ + @TableField(typeHandler = JacksonTypeHandler.class) + private List authorities; + /** + * 资源 + */ + @TableField(typeHandler = JacksonTypeHandler.class) + private List resourceIds; + /** + * 附加信息,JSON 格式 + */ + private String additionalInformation; } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/auth/OAuth2CodeDO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/auth/OAuth2CodeDO.java index 7a851b01d..5a54be9eb 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/auth/OAuth2CodeDO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/auth/OAuth2CodeDO.java @@ -5,7 +5,6 @@ import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import lombok.EqualsAndHashCode; -import lombok.experimental.Accessors; import java.util.Date; @@ -17,7 +16,6 @@ import java.util.Date; @TableName("system_oauth2_code") @Data @EqualsAndHashCode(callSuper = true) -@Accessors(chain = true) public class OAuth2CodeDO extends BaseDO { /** @@ -43,7 +41,7 @@ public class OAuth2CodeDO extends BaseDO { * * 关联 {@link OAuth2ClientDO#getId()} */ - private Long clientId; + private String clientId; /** * 刷新令牌 * diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/auth/OAuth2RefreshTokenDO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/auth/OAuth2RefreshTokenDO.java index 1f0aa3032..08664d942 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/auth/OAuth2RefreshTokenDO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/auth/OAuth2RefreshTokenDO.java @@ -43,7 +43,7 @@ public class OAuth2RefreshTokenDO extends BaseDO { * * 关联 {@link OAuth2ClientDO#getId()} */ - private Long clientId; + private String clientId; /** * 过期时间 */ diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/auth/OAuth2ClientMapper.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/auth/OAuth2ClientMapper.java index 818128128..ce128e164 100755 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/auth/OAuth2ClientMapper.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/auth/OAuth2ClientMapper.java @@ -6,6 +6,9 @@ import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX; import cn.iocoder.yudao.module.system.controller.admin.auth.vo.client.OAuth2ClientPageReqVO; import cn.iocoder.yudao.module.system.dal.dataobject.auth.OAuth2ClientDO; import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Select; + +import java.util.Date; /** * OAuth2 客户端 Mapper @@ -22,4 +25,11 @@ public interface OAuth2ClientMapper extends BaseMapperX { .orderByDesc(OAuth2ClientDO::getId)); } + default OAuth2ClientDO selectByClientId(String clientId) { + return selectOne(OAuth2ClientDO::getClientId, clientId); + } + + @Select("SELECT COUNT(*) FROM system_oauth2_client WHERE update_time > #{maxUpdateTime}") + int selectCountByUpdateTimeGt(Date maxUpdateTime); + } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/mq/consumer/auth/OAuth2ClientRefreshConsumer.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/mq/consumer/auth/OAuth2ClientRefreshConsumer.java new file mode 100644 index 000000000..f41dd3632 --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/mq/consumer/auth/OAuth2ClientRefreshConsumer.java @@ -0,0 +1,29 @@ +package cn.iocoder.yudao.module.system.mq.consumer.auth; + +import cn.iocoder.yudao.framework.mq.core.pubsub.AbstractChannelMessageListener; +import cn.iocoder.yudao.module.system.mq.message.auth.OAuth2ClientRefreshMessage; +import cn.iocoder.yudao.module.system.service.auth.OAuth2ClientService; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Component; + +import javax.annotation.Resource; + +/** + * 针对 {@link OAuth2ClientRefreshMessage} 的消费者 + * + * @author 芋道源码 + */ +@Component +@Slf4j +public class OAuth2ClientRefreshConsumer extends AbstractChannelMessageListener { + + @Resource + private OAuth2ClientService oauth2ClientService; + + @Override + public void onMessage(OAuth2ClientRefreshMessage message) { + log.info("[onMessage][收到 OAuth2Client 刷新消息]"); + oauth2ClientService.initLocalCache(); + } + +} diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/mq/message/auth/OAuth2ClientRefreshMessage.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/mq/message/auth/OAuth2ClientRefreshMessage.java new file mode 100644 index 000000000..3d18df150 --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/mq/message/auth/OAuth2ClientRefreshMessage.java @@ -0,0 +1,21 @@ +package cn.iocoder.yudao.module.system.mq.message.auth; + +import cn.iocoder.yudao.framework.mq.core.pubsub.AbstractChannelMessage; +import lombok.Data; +import lombok.EqualsAndHashCode; + +/** + * OAuth 2.0 客户端的数据刷新 Message + * + * @author 芋道源码 + */ +@Data +@EqualsAndHashCode(callSuper = true) +public class OAuth2ClientRefreshMessage extends AbstractChannelMessage { + + @Override + public String getChannel() { + return "system.oauth2-client.refresh"; + } + +} diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/mq/producer/auth/OAuth2ClientProducer.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/mq/producer/auth/OAuth2ClientProducer.java new file mode 100644 index 000000000..1a849efc6 --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/mq/producer/auth/OAuth2ClientProducer.java @@ -0,0 +1,26 @@ +package cn.iocoder.yudao.module.system.mq.producer.auth; + +import cn.iocoder.yudao.framework.mq.core.RedisMQTemplate; +import cn.iocoder.yudao.module.system.mq.message.auth.OAuth2ClientRefreshMessage; +import org.springframework.stereotype.Component; + +import javax.annotation.Resource; + +/** + * OAuth 2.0 客户端相关消息的 Producer + */ +@Component +public class OAuth2ClientProducer { + + @Resource + private RedisMQTemplate redisMQTemplate; + + /** + * 发送 {@link OAuth2ClientRefreshMessage} 消息 + */ + public void sendOAuth2ClientRefreshMessage() { + OAuth2ClientRefreshMessage message = new OAuth2ClientRefreshMessage(); + redisMQTemplate.send(message); + } + +} diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthServiceImpl.java index 743c72aaa..66c00a233 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthServiceImpl.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthServiceImpl.java @@ -12,7 +12,7 @@ import cn.iocoder.yudao.module.system.controller.admin.auth.vo.auth.*; import cn.iocoder.yudao.module.system.convert.auth.AuthConvert; import cn.iocoder.yudao.module.system.dal.dataobject.auth.OAuth2AccessTokenDO; import cn.iocoder.yudao.module.system.dal.dataobject.user.AdminUserDO; -import cn.iocoder.yudao.module.system.enums.auth.OAuth2ClientIdEnum; +import cn.iocoder.yudao.module.system.enums.auth.OAuth2ClientConstants; import cn.iocoder.yudao.module.system.enums.logger.LoginLogTypeEnum; import cn.iocoder.yudao.module.system.enums.logger.LoginResultEnum; import cn.iocoder.yudao.module.system.enums.sms.SmsSceneEnum; @@ -197,7 +197,7 @@ public class AdminAuthServiceImpl implements AdminAuthService { @Override public AuthLoginRespVO refreshToken(String refreshToken) { - OAuth2AccessTokenDO accessTokenDO = oauth2TokenService.refreshAccessToken(refreshToken, OAuth2ClientIdEnum.DEFAULT.getId()); + OAuth2AccessTokenDO accessTokenDO = oauth2TokenService.refreshAccessToken(refreshToken, OAuth2ClientConstants.CLIENT_ID_DEFAULT); return AuthConvert.INSTANCE.convert(accessTokenDO); } @@ -206,7 +206,7 @@ public class AdminAuthServiceImpl implements AdminAuthService { createLoginLog(userId, username, logType, LoginResultEnum.SUCCESS); // 创建访问令牌 OAuth2AccessTokenDO accessTokenDO = oauth2TokenService.createAccessToken(userId, getUserType().getValue(), - OAuth2ClientIdEnum.DEFAULT.getId()); + OAuth2ClientConstants.CLIENT_ID_DEFAULT); // 构建返回结果 return AuthConvert.INSTANCE.convert(accessTokenDO); } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/OAuth2ClientService.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/OAuth2ClientService.java index 8d97ded3d..1dd57277e 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/OAuth2ClientService.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/OAuth2ClientService.java @@ -18,7 +18,12 @@ import javax.validation.Valid; public interface OAuth2ClientService { /** - * 创建OAuth2 客户端 + * 初始化 OAuth2Client 的本地缓存 + */ + void initLocalCache(); + + /** + * 创建 OAuth2 客户端 * * @param createReqVO 创建信息 * @return 编号 @@ -26,21 +31,21 @@ public interface OAuth2ClientService { Long createOAuth2Client(@Valid OAuth2ClientCreateReqVO createReqVO); /** - * 更新OAuth2 客户端 + * 更新 OAuth2 客户端 * * @param updateReqVO 更新信息 */ void updateOAuth2Client(@Valid OAuth2ClientUpdateReqVO updateReqVO); /** - * 删除OAuth2 客户端 + * 删除 OAuth2 客户端 * * @param id 编号 */ void deleteOAuth2Client(Long id); /** - * 获得OAuth2 客户端 + * 获得 OAuth2 客户端 * * @param id 编号 * @return OAuth2 客户端 @@ -48,7 +53,7 @@ public interface OAuth2ClientService { OAuth2ClientDO getOAuth2Client(Long id); /** - * 获得OAuth2 客户端分页 + * 获得 OAuth2 客户端分页 * * @param pageReqVO 分页查询 * @return OAuth2 客户端分页 @@ -58,9 +63,9 @@ public interface OAuth2ClientService { /** * 从缓存中,校验客户端是否合法 * - * @param id 客户端编号 + * @param clientId 客户端编号 * @return 客户端 */ - OAuth2ClientDO validOAuthClientFromCache(Long id); + OAuth2ClientDO validOAuthClientFromCache(String clientId); } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/OAuth2ClientServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/OAuth2ClientServiceImpl.java index 51cde3f0f..a9df22a9e 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/OAuth2ClientServiceImpl.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/OAuth2ClientServiceImpl.java @@ -1,5 +1,6 @@ package cn.iocoder.yudao.module.system.service.auth; +import cn.hutool.core.collection.CollUtil; import cn.iocoder.yudao.framework.common.pojo.PageResult; import cn.iocoder.yudao.module.system.controller.admin.auth.vo.client.OAuth2ClientCreateReqVO; import cn.iocoder.yudao.module.system.controller.admin.auth.vo.client.OAuth2ClientPageReqVO; @@ -7,11 +8,24 @@ import cn.iocoder.yudao.module.system.controller.admin.auth.vo.client.OAuth2Clie import cn.iocoder.yudao.module.system.convert.auth.OAuth2ClientConvert; import cn.iocoder.yudao.module.system.dal.dataobject.auth.OAuth2ClientDO; import cn.iocoder.yudao.module.system.dal.mysql.auth.OAuth2ClientMapper; +import cn.iocoder.yudao.module.system.mq.producer.auth.OAuth2ClientProducer; +import com.google.common.annotations.VisibleForTesting; +import lombok.Getter; +import lombok.extern.slf4j.Slf4j; +import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Service; +import org.springframework.validation.annotation.Validated; +import javax.annotation.PostConstruct; import javax.annotation.Resource; +import java.util.Date; +import java.util.List; +import java.util.Map; import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception; +import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.convertMap; +import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.getMaxValue; +import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.OAUTH2_CLIENT_EXISTS; import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.OAUTH2_CLIENT_NOT_EXISTS; /** @@ -20,35 +34,113 @@ import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.OAUTH2_CLI * @author 芋道源码 */ @Service +@Validated +@Slf4j public class OAuth2ClientServiceImpl implements OAuth2ClientService { + /** + * 定时执行 {@link #schedulePeriodicRefresh()} 的周期 + * 因为已经通过 Redis Pub/Sub 机制,所以频率不需要高 + */ + private static final long SCHEDULER_PERIOD = 5 * 60 * 1000L; + + /** + * 客户端缓存 + * key:客户端编号 {@link OAuth2ClientDO#getClientId()} ()} + * + * 这里声明 volatile 修饰的原因是,每次刷新时,直接修改指向 + */ + @Getter + private volatile Map clientCache; + /** + * 缓存角色的最大更新时间,用于后续的增量轮询,判断是否有更新 + */ + @Getter + private volatile Date maxUpdateTime; + @Resource private OAuth2ClientMapper oauth2ClientMapper; + @Resource + private OAuth2ClientProducer oauth2ClientProducer; + + /** + * 初始化 {@link #clientCache} 缓存 + */ + @Override + @PostConstruct + public void initLocalCache() { + // 获取客户端列表,如果有更新 + List tenantList = loadOAuth2ClientIfUpdate(maxUpdateTime); + if (CollUtil.isEmpty(tenantList)) { + return; + } + + // 写入缓存 + clientCache = convertMap(tenantList, OAuth2ClientDO::getClientId); + maxUpdateTime = getMaxValue(tenantList, OAuth2ClientDO::getUpdateTime); + log.info("[initLocalCache][初始化 OAuth2Client 数量为 {}]", tenantList.size()); + } + + @Scheduled(fixedDelay = SCHEDULER_PERIOD, initialDelay = SCHEDULER_PERIOD) + public void schedulePeriodicRefresh() { + initLocalCache(); + } + + /** + * 如果客户端发生变化,从数据库中获取最新的全量客户端。 + * 如果未发生变化,则返回空 + * + * @param maxUpdateTime 当前客户端的最大更新时间 + * @return 客户端列表 + */ + private List loadOAuth2ClientIfUpdate(Date maxUpdateTime) { + // 第一步,判断是否要更新。 + if (maxUpdateTime == null) { // 如果更新时间为空,说明 DB 一定有新数据 + log.info("[loadOAuth2ClientIfUpdate][首次加载全量客户端]"); + } else { // 判断数据库中是否有更新的客户端 + if (oauth2ClientMapper.selectCountByUpdateTimeGt(maxUpdateTime) == 0) { + return null; + } + log.info("[loadOAuth2ClientIfUpdate][增量加载全量客户端]"); + } + // 第二步,如果有更新,则从数据库加载所有客户端 + return oauth2ClientMapper.selectList(); + } + @Override public Long createOAuth2Client(OAuth2ClientCreateReqVO createReqVO) { + validateClientIdExists(null, createReqVO.getClientId()); // 插入 - OAuth2ClientDO oAuth2Client = OAuth2ClientConvert.INSTANCE.convert(createReqVO); - oauth2ClientMapper.insert(oAuth2Client); - // 返回 - return oAuth2Client.getId(); + OAuth2ClientDO oauth2Client = OAuth2ClientConvert.INSTANCE.convert(createReqVO); + oauth2ClientMapper.insert(oauth2Client); + // 发送刷新消息 + oauth2ClientProducer.sendOAuth2ClientRefreshMessage(); + return oauth2Client.getId(); } @Override public void updateOAuth2Client(OAuth2ClientUpdateReqVO updateReqVO) { // 校验存在 - this.validateOAuth2ClientExists(updateReqVO.getId()); + validateOAuth2ClientExists(updateReqVO.getId()); + // 校验 Client 未被占用 + validateClientIdExists(updateReqVO.getId(), updateReqVO.getClientId()); + // 更新 OAuth2ClientDO updateObj = OAuth2ClientConvert.INSTANCE.convert(updateReqVO); oauth2ClientMapper.updateById(updateObj); + // 发送刷新消息 + oauth2ClientProducer.sendOAuth2ClientRefreshMessage(); } @Override public void deleteOAuth2Client(Long id) { // 校验存在 - this.validateOAuth2ClientExists(id); + validateOAuth2ClientExists(id); // 删除 oauth2ClientMapper.deleteById(id); + // 发送刷新消息 + oauth2ClientProducer.sendOAuth2ClientRefreshMessage(); } private void validateOAuth2ClientExists(Long id) { @@ -57,6 +149,21 @@ public class OAuth2ClientServiceImpl implements OAuth2ClientService { } } + @VisibleForTesting + public void validateClientIdExists(Long id, String clientId) { + OAuth2ClientDO client = oauth2ClientMapper.selectByClientId(clientId); + if (client == null) { + return; + } + // 如果 id 为空,说明不用比较是否为相同 id 的客户端 + if (id == null) { + throw exception(OAUTH2_CLIENT_EXISTS); + } + if (!client.getClientId().equals(clientId)) { + throw exception(OAUTH2_CLIENT_EXISTS); + } + } + @Override public OAuth2ClientDO getOAuth2Client(Long id) { return oauth2ClientMapper.selectById(id); @@ -68,10 +175,8 @@ public class OAuth2ClientServiceImpl implements OAuth2ClientService { } @Override - public OAuth2ClientDO validOAuthClientFromCache(Long id) { - return new OAuth2ClientDO().setId(id) - .setAccessTokenValiditySeconds(60 * 30) - .setRefreshTokenValiditySeconds(60 * 60 * 24 * 30); + public OAuth2ClientDO validOAuthClientFromCache(String clientId) { + return clientCache.get(clientId); } } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/OAuth2TokenService.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/OAuth2TokenService.java index 541d2c7c7..ad373bcfb 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/OAuth2TokenService.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/OAuth2TokenService.java @@ -24,7 +24,7 @@ public interface OAuth2TokenService { * @param clientId 客户端编号 * @return 访问令牌的信息 */ - OAuth2AccessTokenDO createAccessToken(Long userId, Integer userType, Long clientId); + OAuth2AccessTokenDO createAccessToken(Long userId, Integer userType, String clientId); /** * 刷新访问令牌 @@ -35,7 +35,7 @@ public interface OAuth2TokenService { * @param clientId 客户端编号 * @return 访问令牌的信息 */ - OAuth2AccessTokenDO refreshAccessToken(String refreshToken, Long clientId); + OAuth2AccessTokenDO refreshAccessToken(String refreshToken, String clientId); /** * 获得访问令牌 diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/OAuth2TokenServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/OAuth2TokenServiceImpl.java index f8d824690..8a417ad6a 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/OAuth2TokenServiceImpl.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/OAuth2TokenServiceImpl.java @@ -45,7 +45,7 @@ public class OAuth2TokenServiceImpl implements OAuth2TokenService { @Override @Transactional - public OAuth2AccessTokenDO createAccessToken(Long userId, Integer userType, Long clientId) { + public OAuth2AccessTokenDO createAccessToken(Long userId, Integer userType, String clientId) { OAuth2ClientDO clientDO = oauth2ClientService.validOAuthClientFromCache(clientId); // 创建刷新令牌 OAuth2RefreshTokenDO refreshTokenDO = createOAuth2RefreshToken(userId, userType, clientDO); @@ -54,7 +54,7 @@ public class OAuth2TokenServiceImpl implements OAuth2TokenService { } @Override - public OAuth2AccessTokenDO refreshAccessToken(String refreshToken, Long clientId) { + public OAuth2AccessTokenDO refreshAccessToken(String refreshToken, String clientId) { // 查询访问令牌 OAuth2RefreshTokenDO refreshTokenDO = oauth2RefreshTokenMapper.selectByRefreshToken(refreshToken); if (refreshTokenDO == null) { @@ -134,7 +134,7 @@ public class OAuth2TokenServiceImpl implements OAuth2TokenService { private OAuth2AccessTokenDO createOAuth2AccessToken(OAuth2RefreshTokenDO refreshTokenDO, OAuth2ClientDO clientDO) { OAuth2AccessTokenDO accessTokenDO = new OAuth2AccessTokenDO().setAccessToken(generateAccessToken()) - .setUserId(refreshTokenDO.getUserId()).setUserType(refreshTokenDO.getUserType()).setClientId(clientDO.getId()) + .setUserId(refreshTokenDO.getUserId()).setUserType(refreshTokenDO.getUserType()).setClientId(clientDO.getClientId()) .setRefreshToken(refreshTokenDO.getRefreshToken()) .setExpiresTime(DateUtils.addDate(Calendar.SECOND, clientDO.getAccessTokenValiditySeconds())); accessTokenDO.setTenantId(TenantContextHolder.getTenantId()); // 手动设置租户编号,避免缓存到 Redis 的时候,无对应的租户编号 @@ -146,7 +146,7 @@ public class OAuth2TokenServiceImpl implements OAuth2TokenService { private OAuth2RefreshTokenDO createOAuth2RefreshToken(Long userId, Integer userType, OAuth2ClientDO clientDO) { OAuth2RefreshTokenDO refreshToken = new OAuth2RefreshTokenDO().setRefreshToken(generateRefreshToken()) - .setUserId(userId).setUserType(userType).setClientId(clientDO.getId()) + .setUserId(userId).setUserType(userType).setClientId(clientDO.getClientId()) .setExpiresTime(DateUtils.addDate(Calendar.SECOND, clientDO.getRefreshTokenValiditySeconds())); oauth2RefreshTokenMapper.insert(refreshToken); return refreshToken; diff --git a/yudao-module-system/yudao-module-system-biz/src/test/java/cn/iocoder/yudao/module/system/service/auth/AuthServiceImplTest.java b/yudao-module-system/yudao-module-system-biz/src/test/java/cn/iocoder/yudao/module/system/service/auth/AuthServiceImplTest.java index 7355c4d77..a04a9719e 100644 --- a/yudao-module-system/yudao-module-system-biz/src/test/java/cn/iocoder/yudao/module/system/service/auth/AuthServiceImplTest.java +++ b/yudao-module-system/yudao-module-system-biz/src/test/java/cn/iocoder/yudao/module/system/service/auth/AuthServiceImplTest.java @@ -197,7 +197,7 @@ public class AuthServiceImplTest extends BaseDbUnitTest { // mock 缓存登录用户到 Redis OAuth2AccessTokenDO accessTokenDO = randomPojo(OAuth2AccessTokenDO.class, o -> o.setUserId(1L) .setUserType(UserTypeEnum.ADMIN.getValue())); - when(oauth2TokenService.createAccessToken(eq(1L), eq(UserTypeEnum.ADMIN.getValue()), eq(1L))) + when(oauth2TokenService.createAccessToken(eq(1L), eq(UserTypeEnum.ADMIN.getValue()), eq("default"))) .thenReturn(accessTokenDO); // 调用, 并断言异常 diff --git a/yudao-module-system/yudao-module-system-biz/src/test/java/cn/iocoder/yudao/module/system/service/auth/OAuth2ClientServiceImplTest.java b/yudao-module-system/yudao-module-system-biz/src/test/java/cn/iocoder/yudao/module/system/service/auth/OAuth2ClientServiceImplTest.java index 816215f4d..1fb688d6a 100755 --- a/yudao-module-system/yudao-module-system-biz/src/test/java/cn/iocoder/yudao/module/system/service/auth/OAuth2ClientServiceImplTest.java +++ b/yudao-module-system/yudao-module-system-biz/src/test/java/cn/iocoder/yudao/module/system/service/auth/OAuth2ClientServiceImplTest.java @@ -8,19 +8,23 @@ import cn.iocoder.yudao.module.system.controller.admin.auth.vo.client.OAuth2Clie import cn.iocoder.yudao.module.system.controller.admin.auth.vo.client.OAuth2ClientUpdateReqVO; import cn.iocoder.yudao.module.system.dal.dataobject.auth.OAuth2ClientDO; import cn.iocoder.yudao.module.system.dal.mysql.auth.OAuth2ClientMapper; +import cn.iocoder.yudao.module.system.mq.producer.auth.OAuth2ClientProducer; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; +import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.context.annotation.Import; import javax.annotation.Resource; +import java.util.Map; import static cn.iocoder.yudao.framework.common.util.object.ObjectUtils.cloneIgnoreId; +import static cn.iocoder.yudao.framework.common.util.object.ObjectUtils.max; import static cn.iocoder.yudao.framework.test.core.util.AssertUtils.assertPojoEquals; import static cn.iocoder.yudao.framework.test.core.util.AssertUtils.assertServiceException; -import static cn.iocoder.yudao.framework.test.core.util.RandomUtils.randomLongId; -import static cn.iocoder.yudao.framework.test.core.util.RandomUtils.randomPojo; +import static cn.iocoder.yudao.framework.test.core.util.RandomUtils.*; import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.OAUTH2_CLIENT_NOT_EXISTS; import static org.junit.jupiter.api.Assertions.*; +import static org.mockito.Mockito.verify; /** * {@link OAuth2ClientServiceImpl} 的单元测试类 @@ -31,40 +35,66 @@ import static org.junit.jupiter.api.Assertions.*; public class OAuth2ClientServiceImplTest extends BaseDbUnitTest { @Resource - private OAuth2ClientServiceImpl oAuth2ClientService; + private OAuth2ClientServiceImpl oauth2ClientService; @Resource - private OAuth2ClientMapper oAuth2ClientMapper; + private OAuth2ClientMapper oauth2ClientMapper; + + @MockBean + private OAuth2ClientProducer oauth2ClientProducer; + + @Test + public void testInitLocalCache() { + // mock 数据 + OAuth2ClientDO clientDO1 = randomPojo(OAuth2ClientDO.class); + oauth2ClientMapper.insert(clientDO1); + OAuth2ClientDO clientDO2 = randomPojo(OAuth2ClientDO.class); + oauth2ClientMapper.insert(clientDO2); + + // 调用 + oauth2ClientService.initLocalCache(); + // 断言 clientCache 缓存 + Map clientCache = oauth2ClientService.getClientCache(); + assertEquals(2, clientCache.size()); + assertPojoEquals(clientDO1, clientCache.get(clientDO1.getClientId())); + assertPojoEquals(clientDO2, clientCache.get(clientDO2.getClientId())); + // 断言 maxUpdateTime 缓存 + assertEquals(max(clientDO1.getUpdateTime(), clientDO2.getUpdateTime()), oauth2ClientService.getMaxUpdateTime()); + } @Test public void testCreateOAuth2Client_success() { // 准备参数 - OAuth2ClientCreateReqVO reqVO = randomPojo(OAuth2ClientCreateReqVO.class); + OAuth2ClientCreateReqVO reqVO = randomPojo(OAuth2ClientCreateReqVO.class, + o -> o.setLogo(randomString())); // 调用 - Long oauth2ClientId = oAuth2ClientService.createOAuth2Client(reqVO); + Long oauth2ClientId = oauth2ClientService.createOAuth2Client(reqVO); // 断言 assertNotNull(oauth2ClientId); // 校验记录的属性是否正确 - OAuth2ClientDO oAuth2Client = oAuth2ClientMapper.selectById(oauth2ClientId); + OAuth2ClientDO oAuth2Client = oauth2ClientMapper.selectById(oauth2ClientId); assertPojoEquals(reqVO, oAuth2Client); + verify(oauth2ClientProducer).sendOAuth2ClientRefreshMessage(); } @Test public void testUpdateOAuth2Client_success() { // mock 数据 OAuth2ClientDO dbOAuth2Client = randomPojo(OAuth2ClientDO.class); - oAuth2ClientMapper.insert(dbOAuth2Client);// @Sql: 先插入出一条存在的数据 + oauth2ClientMapper.insert(dbOAuth2Client);// @Sql: 先插入出一条存在的数据 // 准备参数 OAuth2ClientUpdateReqVO reqVO = randomPojo(OAuth2ClientUpdateReqVO.class, o -> { o.setId(dbOAuth2Client.getId()); // 设置更新的 ID + o.setLogo(randomString()); }); // 调用 - oAuth2ClientService.updateOAuth2Client(reqVO); + oauth2ClientService.updateOAuth2Client(reqVO); // 校验是否更新正确 - OAuth2ClientDO oAuth2Client = oAuth2ClientMapper.selectById(reqVO.getId()); // 获取最新的 + OAuth2ClientDO oAuth2Client = oauth2ClientMapper.selectById(reqVO.getId()); // 获取最新的 assertPojoEquals(reqVO, oAuth2Client); + verify(oauth2ClientProducer).sendOAuth2ClientRefreshMessage(); } @Test @@ -73,21 +103,22 @@ public class OAuth2ClientServiceImplTest extends BaseDbUnitTest { OAuth2ClientUpdateReqVO reqVO = randomPojo(OAuth2ClientUpdateReqVO.class); // 调用, 并断言异常 - assertServiceException(() -> oAuth2ClientService.updateOAuth2Client(reqVO), OAUTH2_CLIENT_NOT_EXISTS); + assertServiceException(() -> oauth2ClientService.updateOAuth2Client(reqVO), OAUTH2_CLIENT_NOT_EXISTS); } @Test public void testDeleteOAuth2Client_success() { // mock 数据 OAuth2ClientDO dbOAuth2Client = randomPojo(OAuth2ClientDO.class); - oAuth2ClientMapper.insert(dbOAuth2Client);// @Sql: 先插入出一条存在的数据 + oauth2ClientMapper.insert(dbOAuth2Client);// @Sql: 先插入出一条存在的数据 // 准备参数 Long id = dbOAuth2Client.getId(); // 调用 - oAuth2ClientService.deleteOAuth2Client(id); - // 校验数据不存在了 - assertNull(oAuth2ClientMapper.selectById(id)); + oauth2ClientService.deleteOAuth2Client(id); + // 校验数据不存在了 + assertNull(oauth2ClientMapper.selectById(id)); + verify(oauth2ClientProducer).sendOAuth2ClientRefreshMessage(); } @Test @@ -96,7 +127,7 @@ public class OAuth2ClientServiceImplTest extends BaseDbUnitTest { Long id = randomLongId(); // 调用, 并断言异常 - assertServiceException(() -> oAuth2ClientService.deleteOAuth2Client(id), OAUTH2_CLIENT_NOT_EXISTS); + assertServiceException(() -> oauth2ClientService.deleteOAuth2Client(id), OAUTH2_CLIENT_NOT_EXISTS); } @Test @@ -107,18 +138,18 @@ public class OAuth2ClientServiceImplTest extends BaseDbUnitTest { o.setName("潜龙"); o.setStatus(CommonStatusEnum.ENABLE.getStatus()); }); - oAuth2ClientMapper.insert(dbOAuth2Client); + oauth2ClientMapper.insert(dbOAuth2Client); // 测试 name 不匹配 - oAuth2ClientMapper.insert(cloneIgnoreId(dbOAuth2Client, o -> o.setName("凤凰"))); + oauth2ClientMapper.insert(cloneIgnoreId(dbOAuth2Client, o -> o.setName("凤凰"))); // 测试 status 不匹配 - oAuth2ClientMapper.insert(cloneIgnoreId(dbOAuth2Client, o -> o.setStatus(CommonStatusEnum.ENABLE.getStatus()))); + oauth2ClientMapper.insert(cloneIgnoreId(dbOAuth2Client, o -> o.setStatus(CommonStatusEnum.ENABLE.getStatus()))); // 准备参数 OAuth2ClientPageReqVO reqVO = new OAuth2ClientPageReqVO(); reqVO.setName("long"); reqVO.setStatus(CommonStatusEnum.ENABLE.getStatus()); // 调用 - PageResult pageResult = oAuth2ClientService.getOAuth2ClientPage(reqVO); + PageResult pageResult = oauth2ClientService.getOAuth2ClientPage(reqVO); // 断言 assertEquals(1, pageResult.getTotal()); assertEquals(1, pageResult.getList().size()); diff --git a/yudao-module-system/yudao-module-system-biz/src/test/resources/sql/create_tables.sql b/yudao-module-system/yudao-module-system-biz/src/test/resources/sql/create_tables.sql index c3a486ea0..3cc860101 100644 --- a/yudao-module-system/yudao-module-system-biz/src/test/resources/sql/create_tables.sql +++ b/yudao-module-system/yudao-module-system-biz/src/test/resources/sql/create_tables.sql @@ -473,6 +473,7 @@ CREATE TABLE IF NOT EXISTS "system_sensitive_word" ( CREATE TABLE IF NOT EXISTS "system_oauth2_client" ( "id" bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY, + "client_id" varchar NOT NULL, "secret" varchar NOT NULL, "name" varchar NOT NULL, "logo" varchar NOT NULL, @@ -481,6 +482,12 @@ CREATE TABLE IF NOT EXISTS "system_oauth2_client" ( "access_token_validity_seconds" int NOT NULL, "refresh_token_validity_seconds" int NOT NULL, "redirect_uris" varchar NOT NULL, + "auto_approve" bit NOT NULL DEFAULT FALSE, + "authorized_grant_types" varchar NOT NULL, + "scopes" varchar NOT NULL DEFAULT '', + "authorities" varchar NOT NULL DEFAULT '', + "resource_ids" varchar NOT NULL DEFAULT '', + "additional_information" varchar NOT NULL DEFAULT '', "creator" varchar DEFAULT '', "create_time" datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, "updater" varchar DEFAULT '', diff --git a/yudao-ui-admin/src/components/generator/config.js b/yudao-ui-admin/src/components/generator/config.js index be7354b85..f242f11d1 100644 --- a/yudao-ui-admin/src/components/generator/config.js +++ b/yudao-ui-admin/src/components/generator/config.js @@ -499,7 +499,7 @@ export const selectComponents = [ __slot__: { 'list-type': true }, - action: 'https://jsonplaceholder.typicode.com/posts/', + action: process.env.VUE_APP_BASE_API + "/admin-api/infra/file/upload", // 请求地址 disabled: false, accept: '', name: 'file', diff --git a/yudao-ui-admin/src/utils/dict.js b/yudao-ui-admin/src/utils/dict.js index 82fd4a88e..1ddde889a 100644 --- a/yudao-ui-admin/src/utils/dict.js +++ b/yudao-ui-admin/src/utils/dict.js @@ -23,6 +23,7 @@ export const DICT_TYPE = { SYSTEM_SMS_SEND_STATUS: 'system_sms_send_status', SYSTEM_SMS_RECEIVE_STATUS: 'system_sms_receive_status', SYSTEM_ERROR_CODE_TYPE: 'system_error_code_type', + SYSTEM_OAUTH2_GRANT_TYPE: 'system_oauth2_grant_type', // ========== INFRA 模块 ========== INFRA_BOOLEAN_STRING: 'infra_boolean_string', diff --git a/yudao-ui-admin/src/views/system/oauth2/client/index.vue b/yudao-ui-admin/src/views/system/oauth2/client/index.vue index f80c847ca..37f16635f 100755 --- a/yudao-ui-admin/src/views/system/oauth2/client/index.vue +++ b/yudao-ui-admin/src/views/system/oauth2/client/index.vue @@ -29,19 +29,32 @@ - + - - + + + - - - + + + + + + + + +